/* ============================================================
   VEYRA VENTURE GENERAL TRADING LLC — MAIN STYLESHEET
   ============================================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy-deep: #071A3D;
  --navy-dark: #0A214A;
  --navy-royal: #102B57;
  --navy-medium: #153366;
  --gold-primary: #C99322;
  --gold-medium: #D6A53A;
  --gold-light: #E8C36A;
  --gold-pale: #F5E0A8;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --light-neutral: #F5F6F7;
  --text-dark: #1A1F2E;
  --text-body: #3D4A5C;
  --text-muted: #6B7A8D;
  --border-light: #E8EBF0;
  --shadow-sm: 0 2px 8px rgba(7, 26, 61, 0.06);
  --shadow-md: 0 8px 32px rgba(7, 26, 61, 0.10);
  --shadow-lg: 0 20px 60px rgba(7, 26, 61, 0.14);
  --shadow-gold: 0 8px 32px rgba(201, 147, 34, 0.20);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   PAGE LOAD OVERLAY
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #ffffff 0%, #f8f4ea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 190px;
  height: auto;
  background: transparent;
  filter: drop-shadow(0 12px 24px rgba(7, 26, 61, 0.12));
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-bar-wrap {
  width: 200px;
  height: 3px;
  background: rgba(7,26,61,0.12);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 2px;
  animation: loaderFill 1.4s ease forwards;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.97); }
}

@keyframes loaderFill {
  from { width: 0; }
  to { width: 100%; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  color: var(--navy-deep);
  line-height: 1.2;
  font-weight: 700;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
}

.section-eyebrow::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-heading .highlight {
  color: var(--gold-primary);
  position: relative;
}

.section-subtext {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
}

.gold-divider span {
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  flex: 1;
  max-width: 80px;
}

.gold-divider span:last-child {
  background: linear-gradient(270deg, var(--gold-primary), transparent);
}

.gold-divider i {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  transform: rotate(45deg);
  border-radius: 1px;
  display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-medium));
  color: var(--navy-deep);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 18px rgba(201, 147, 34, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 147, 34, 0.45);
}

.btn-primary .btn-arrow {
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}

.btn-navy:hover {
  background: var(--navy-royal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--navy-deep);
}

.btn-outline-navy:hover {
  background: var(--navy-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-color: #25D366;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 17px 36px;
  font-size: 0.95rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 7px 0;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 147, 34, 0.18);
  box-shadow: 0 8px 28px rgba(7, 26, 61, 0.08);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.985);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(7, 26, 61, 0.10);
  padding: 4px 0;
}

.navbar-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.navbar-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: transparent !important;
}

.navbar-logo img {
  width: 132px;
  max-height: 109px;
  height: auto;
  object-fit: contain;
  background: transparent !important;
  transition: all var(--transition-base);
  filter: drop-shadow(0 6px 14px rgba(7, 26, 61, 0.10));
}

.navbar.scrolled .navbar-logo img {
  width: 112px;
  max-height: 92px;
  filter: drop-shadow(0 4px 10px rgba(7, 26, 61, 0.08));
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover { color: var(--gold-primary); }

.navbar.scrolled .nav-link { color: var(--text-dark); }
.navbar.scrolled .nav-link:hover { color: var(--gold-primary); }
.navbar.scrolled .nav-link.active { color: var(--gold-primary); }

.navbar-cta { margin-left: 8px; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition-fast);
}

.nav-toggle:hover { background: rgba(255,255,255,0.1); }

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.navbar.scrolled .nav-toggle span { background: var(--navy-deep); }

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  padding: 145px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-logo {
  position: absolute;
  top: 14px;
  left: 28px;
}

.mobile-menu-logo img {
  width: 112px;
  max-height: 108px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 6px 16px rgba(255,255,255,0.12));
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--transition-fast);
}

.mobile-menu-close:hover { background: rgba(255,255,255,0.2); }

.mobile-menu-close svg { width: 20px; height: 20px; stroke: white; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
}

.mobile-nav-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link:hover { color: var(--gold-light); }

.mobile-nav-link svg { width: 18px; height: 18px; opacity: 0.5; }

.mobile-menu-cta { margin-top: auto; }

.mobile-menu-info {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.mobile-menu-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 1.05rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 26, 61, 0.97) 0%,
    rgba(10, 33, 74, 0.88) 50%,
    rgba(7, 26, 61, 0.80) 100%
  );
  z-index: 1;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(201, 147, 34, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 147, 34, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-floating-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(201, 147, 34, 0.15);
  border-radius: 50%;
  animation: shapeDrift 8s ease-in-out infinite;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
  border-color: rgba(201, 147, 34, 0.10);
}

.hero-shape-2 {
  width: 250px;
  height: 250px;
  bottom: 100px;
  left: -50px;
  animation-delay: -3s;
  border-color: rgba(201, 147, 34, 0.08);
}

.hero-shape-3 {
  width: 160px;
  height: 160px;
  top: 30%;
  right: 15%;
  animation-delay: -6s;
  border-color: rgba(201, 147, 34, 0.12);
}

@keyframes shapeDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1340px;
  margin: 0 auto;
  padding: 140px 28px 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-text-side {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 147, 34, 0.12);
  border: 1px solid rgba(201, 147, 34, 0.3);
  border-radius: 50px;
  padding: 8px 18px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.3s forwards;
}

.hero-eyebrow span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s 0.5s forwards;
}

.hero-h1 .gold-text {
  color: var(--gold-light);
  display: block;
}

.hero-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  padding-left: 18px;
  border-left: 3px solid var(--gold-primary);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.7s forwards;
}

.hero-desc {
  font-size: clamp(0.92rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.9s forwards;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 1.1s forwards;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 1.3s forwards;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition-fast);
}

.trust-badge:hover {
  background: rgba(201, 147, 34, 0.15);
  border-color: rgba(201, 147, 34, 0.3);
  color: var(--gold-light);
}

.trust-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-primary);
}

/* Hero Stats Card Side */
.hero-visual-side {
  position: relative;
  opacity: 0;
  transform: translateX(40px);
  animation: fadeLeft 0.8s 0.8s forwards;
}

.hero-stats-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.hero-stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
  animation: shimmer 3s ease-in-out infinite;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.stats-card-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.stat-item:hover {
  background: rgba(201, 147, 34, 0.1);
  border-color: rgba(201, 147, 34, 0.25);
}

.stat-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 147, 34, 0.15);
  border-radius: 10px;
}

.stat-icon svg { width: 18px; height: 18px; stroke: var(--gold-primary); }

.stat-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  text-align: center;
}

.hero-contact-card {
  background: linear-gradient(135deg, rgba(201, 147, 34, 0.15), rgba(201, 147, 34, 0.05));
  border: 1px solid rgba(201, 147, 34, 0.25);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-contact-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-medium));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-contact-icon svg { width: 20px; height: 20px; stroke: var(--navy-deep); }

.hero-contact-info { flex: 1; }

.hero-contact-label {
  font-size: 0.72rem;
  color: var(--gold-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.hero-contact-number {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes scaleIn {
  to { opacity: 1; transform: scale(1); }
}

/* Scroll Animation Base States */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Gold animated line */
.animated-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-line.active {
  transform: scaleX(1);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 100px 0;
}

.section-sm { padding: 70px 0; }
.section-lg { padding: 130px 0; }

.text-center { text-align: center; }
.text-center .section-subtext { margin-left: auto; margin-right: auto; }
.text-center .section-eyebrow { justify-content: center; }
.text-center .gold-divider { justify-content: center; }

/* ============================================================
   COMPANY INTRODUCTION SECTION
   ============================================================ */
.intro-section {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image-collage {
  position: relative;
  height: 520px;
}

.collage-img {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collage-img:hover img { transform: scale(1.06); }

.collage-main {
  width: 65%;
  height: 70%;
  top: 0;
  left: 0;
}

.collage-sec {
  width: 45%;
  height: 50%;
  bottom: 0;
  right: 0;
}

.collage-accent {
  width: 38%;
  height: 38%;
  top: 52%;
  left: 58%;
  transform: translate(-50%, -50%);
  box-shadow: none;
  border-radius: var(--radius-md);
}

.collage-badge {
  position: absolute;
  bottom: -16px;
  left: 20px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-royal));
  border: 2px solid rgba(201, 147, 34, 0.4);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.collage-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-medium));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.collage-badge-icon svg { width: 20px; height: 20px; stroke: var(--navy-deep); }

.collage-badge-text strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--white);
}

.collage-badge-text span {
  font-size: 0.75rem;
  color: var(--gold-light);
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.intro-stat-item {
  background: var(--light-neutral);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition-base);
}

.intro-stat-item:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.intro-stat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(201, 147, 34, 0.12), rgba(201, 147, 34, 0.06));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.intro-stat-icon svg { width: 20px; height: 20px; stroke: var(--gold-primary); }

.intro-stat-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 2px;
}

.intro-stat-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ============================================================
   TRADING DIVISIONS SECTION
   ============================================================ */
.divisions-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.divisions-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 147, 34, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.division-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  cursor: pointer;
}

.division-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 147, 34, 0.3);
}

.division-card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.division-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.division-card:hover .division-card-img img { transform: scale(1.08); }

.division-card-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--navy-deep);
  background: rgba(255,255,255,0.92);
  padding: 5px 11px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.division-card-body {
  padding: 26px 24px;
}

.division-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(201, 147, 34, 0.12), rgba(201, 147, 34, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all var(--transition-fast);
}

.division-card:hover .division-card-icon {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-medium));
}

.division-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-primary);
  transition: stroke var(--transition-fast);
}

.division-card:hover .division-card-icon svg { stroke: var(--navy-deep); }

.division-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.division-card-text {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.card-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-primary);
  transition: gap var(--transition-fast);
}

.card-learn-more svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.division-card:hover .card-learn-more svg { transform: translateX(4px); }

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */
.products-section {
  background: var(--white);
}

.product-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
  justify-content: center;
}

.filter-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--border-light);
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 147, 34, 0.3);
}

.product-card[style*="none"] {
  display: none !important;
}

.product-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-img img { transform: scale(1.08); }

.product-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--navy-deep);
  color: var(--gold-light);
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.product-card-body {
  padding: 22px 20px;
}

.product-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.product-card-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.product-price-badge {
  display: inline-block;
  background: rgba(201, 147, 34, 0.1);
  border: 1px solid rgba(201, 147, 34, 0.3);
  color: var(--gold-primary);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.product-card-actions {
  display: flex;
  gap: 10px;
}

.product-card-actions .btn {
  flex: 1;
  justify-content: center;
}

/* ============================================================
   HOW WE WORK SECTION
   ============================================================ */
.process-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 147, 34, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 147, 34, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.process-section .section-heading,
.process-section .section-subtext {
  color: var(--white);
}

.process-section .section-subtext { color: rgba(255,255,255,0.6); }

.process-timeline {
  position: relative;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.process-line {
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(201, 147, 34, 0.15);
  z-index: 0;
}

.process-line-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  width: 0;
  transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.process-line-fill.active { width: 100%; }

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}

.process-step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(201, 147, 34, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
}

.process-step:hover .process-step-icon {
  background: rgba(201, 147, 34, 0.15);
  border-color: var(--gold-primary);
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(201, 147, 34, 0.3);
}

.process-step-icon svg { width: 36px; height: 36px; stroke: var(--gold-light); }

.process-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-medium));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--navy-deep);
}

.process-step-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries-section {
  background: var(--light-neutral);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.industry-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  position: relative;
  cursor: pointer;
}

.industry-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-tile:hover img { transform: scale(1.1); }

.industry-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 26, 61, 0.9) 0%, rgba(7, 26, 61, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background var(--transition-base);
}

.industry-tile:hover .industry-tile-overlay {
  background: linear-gradient(to top, rgba(7, 26, 61, 0.95) 0%, rgba(7, 26, 61, 0.4) 60%, rgba(201, 147, 34, 0.1) 100%);
}

.industry-tile-icon {
  width: 38px;
  height: 38px;
  background: rgba(201, 147, 34, 0.2);
  border: 1px solid rgba(201, 147, 34, 0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all var(--transition-fast);
}

.industry-tile:hover .industry-tile-icon {
  background: var(--gold-primary);
}

.industry-tile-icon svg { width: 18px; height: 18px; stroke: var(--gold-light); }
.industry-tile:hover .industry-tile-icon svg { stroke: var(--navy-deep); }

.industry-tile-name {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 147, 34, 0.2);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(201, 147, 34, 0.12), rgba(201, 147, 34, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-medium));
}

.why-card-icon svg { width: 26px; height: 26px; stroke: var(--gold-primary); transition: stroke var(--transition-fast); }
.why-card:hover .why-card-icon svg { stroke: var(--navy-deep); }

.why-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.why-card-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   GLOBAL TRADE SECTION
   ============================================================ */
.trade-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.trade-section .section-heading { color: var(--white); }
.trade-section .section-subtext { color: rgba(255,255,255,0.6); }
.trade-section .section-eyebrow { color: var(--gold-light); }
.trade-section .section-eyebrow::before,
.trade-section .section-eyebrow::after { background: var(--gold-light); }

.trade-map-container {
  position: relative;
  height: 340px;
  margin: 48px 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 147, 34, 0.15);
}

.trade-map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.trade-map-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trade-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--gold-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.trade-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  opacity: 0;
  animation: dotPulse 2s ease-out infinite;
}

.trade-dot::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(201, 147, 34, 0.3);
  border-radius: 50%;
  opacity: 0;
  animation: dotPulse 2s ease-out 0.5s infinite;
}

@keyframes dotPulse {
  0% { opacity: 1; transform: scale(0.5); }
  100% { opacity: 0; transform: scale(2); }
}

.trade-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trade-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-base);
}

.trade-feature:hover {
  background: rgba(201, 147, 34, 0.08);
  border-color: rgba(201, 147, 34, 0.25);
  transform: translateY(-4px);
}

.trade-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 147, 34, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.trade-feature-icon svg { width: 22px; height: 22px; stroke: var(--gold-light); }

.trade-feature-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.trade-feature-text {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-royal) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 147, 34, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .section-heading { color: var(--white); }
.cta-section .section-subtext { color: rgba(255,255,255,0.65); max-width: 550px; margin: 0 auto 36px; }

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), var(--gold-light), var(--gold-primary), transparent);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--off-white);
}

.faq-container {
  max-width: 820px;
  margin: 56px auto 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 147, 34, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  gap: 16px;
}

.faq-question-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.4;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--light-neutral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.faq-item.open .faq-toggle {
  background: var(--gold-primary);
  transform: rotate(45deg);
}

.faq-toggle svg { width: 16px; height: 16px; stroke: var(--navy-deep); }
.faq-item.open .faq-toggle svg { stroke: var(--navy-deep); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 26px 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #040e22 100%);
  position: relative;
  overflow: hidden;
}

.footer-top-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), var(--gold-light), var(--gold-primary), transparent);
}

.footer-main {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.footer-brand { }

.footer-brand-name {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

.footer-brand-name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
}

.footer-brand-name span {
  font-family: 'Manrope', sans-serif;
  font-size: 1.24rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--white);
}

.footer-brand-name small {
  font-family: 'Manrope', sans-serif;
  font-size: 0.69rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--gold-light);
}

.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: rgba(201, 147, 34, 0.2);
  border-color: rgba(201, 147, 34, 0.4);
  color: var(--gold-light);
}

.footer-col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 147, 34, 0.25);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-link::before {
  content: '';
  width: 5px;
  height: 5px;
  background: rgba(201, 147, 34, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.footer-link:hover { color: var(--gold-light); }
.footer-link:hover::before { background: var(--gold-primary); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(201, 147, 34, 0.1);
  border: 1px solid rgba(201, 147, 34, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-icon svg { width: 16px; height: 16px; stroke: var(--gold-primary); }

.footer-contact-label {
  font-size: 0.73rem;
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.footer-contact-value {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.footer-contact-value a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
}

.footer-contact-value a:hover { color: var(--gold-light); }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 28px;
}

.footer-bottom {
  padding: 26px 0;
}

.footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-copyright strong { color: rgba(255,255,255,0.55); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover { color: var(--gold-light); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 28px;
  z-index: 800;
}

.whatsapp-float-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-fast);
  animation: waPulse 2.5s ease-in-out infinite;
  position: relative;
}

.whatsapp-float-link:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

.whatsapp-float-link svg { width: 28px; height: 28px; fill: white; }

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-deep);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-deep);
}

.whatsapp-float-link:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  min-height: 480px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-royal) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 132px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 26, 61, 0.95), rgba(16, 43, 87, 0.90));
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 147, 34, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 147, 34, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero-content {
  position: relative;
  z-index: 5;
  padding: 60px 28px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.breadcrumb a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover { color: var(--gold-light); }

.breadcrumb-sep { color: rgba(255,255,255,0.25); font-size: 0.8rem; }
.breadcrumb-current { font-size: 0.8rem; color: var(--gold-light); font-weight: 600; }

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 700px;
}

.page-hero-text {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.8;
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrap:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 28px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-medium));
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.about-img-badge-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.mvv-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 147, 34, 0.2);
}

.mvv-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201, 147, 34, 0.12), rgba(201, 147, 34, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mvv-card-icon svg { width: 26px; height: 26px; stroke: var(--gold-primary); }

.mvv-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 14px;
}

.mvv-card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.value-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition-fast);
}

.value-item:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.value-item-dot {
  width: 10px;
  height: 10px;
  background: var(--gold-primary);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.value-item-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-deep);
}

/* ============================================================
   PRODUCTS PAGE SPECIFIC
   ============================================================ */
.category-sections { }

.category-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.category-section:nth-child(even) {
  background: var(--off-white);
}

.category-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.category-section:nth-child(even) .category-inner {
  direction: rtl;
}

.category-section:nth-child(even) .category-inner > * {
  direction: ltr;
}

.category-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.category-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-img:hover img { transform: scale(1.05); }

.category-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.category-feature-tag {
  background: rgba(201, 147, 34, 0.08);
  border: 1px solid rgba(201, 147, 34, 0.2);
  color: var(--navy-deep);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ============================================================
   INDUSTRIES PAGE SPECIFIC
   ============================================================ */
.industry-detail-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.industry-detail-section:nth-child(even) {
  background: var(--off-white);
}

.industry-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.industry-detail-section:nth-child(odd) .industry-detail-inner {
  direction: rtl;
}

.industry-detail-section:nth-child(odd) .industry-detail-inner > * {
  direction: ltr;
}

.industry-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.industry-detail-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-detail-img:hover img { transform: scale(1.04); }

.industry-capabilities {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.industry-capability {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
}

.industry-capability::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C99322' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE SPECIFIC
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info-card {
  background: var(--navy-deep);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 147, 34, 0.15) 0%, transparent 70%);
}

.contact-info-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
}

.contact-info-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 147, 34, 0.12);
  border: 1px solid rgba(201, 147, 34, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 22px; height: 22px; stroke: var(--gold-primary); }

.contact-detail-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.contact-detail-value a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-detail-value a:hover { color: var(--gold-light); }

.contact-action-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.contact-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.contact-action-btn:hover {
  background: rgba(201, 147, 34, 0.12);
  border-color: rgba(201, 147, 34, 0.3);
  color: var(--gold-light);
  transform: translateX(4px);
}

.contact-action-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-action-btn.wa-btn { border-color: rgba(37, 211, 102, 0.3); }
.contact-action-btn.wa-btn:hover { background: rgba(37, 211, 102, 0.1); color: #25D366; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.contact-form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 4px rgba(201, 147, 34, 0.08);
}

.form-textarea { height: 130px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================================
   ONE PARTNER SECTION
   ============================================================ */
.one-partner-section {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-royal));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.one-partner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 147, 34, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 147, 34, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.one-partner-section .section-heading { color: var(--white); }
.one-partner-section .section-subtext { color: rgba(255,255,255,0.65); max-width: 700px; margin: 0 auto 36px; }
.one-partner-section .section-eyebrow { color: var(--gold-light); justify-content: center; }
.one-partner-section .section-eyebrow::before,
.one-partner-section .section-eyebrow::after { background: var(--gold-light); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1100px) {
  .divisions-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .trade-features { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual-side { display: none; }
  .mvv-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-image-collage { height: 360px; }
  .about-intro-grid { grid-template-columns: 1fr !important; }
  .about-img-badge { right: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .category-inner { grid-template-columns: 1fr !important; direction: ltr !important; }
  .industry-detail-inner { grid-template-columns: 1fr !important; direction: ltr !important; }
  .form-row { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-line { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  #quick-cards { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-lg { padding: 90px 0; }

  /* Navbar */
  .navbar-menu { display: none; }
  .navbar-cta { display: none; }
  .nav-toggle { display: flex; }
  .navbar-container { padding: 0 18px; }
  .navbar-logo img { width: 104px; max-height: 94px; }
  .navbar.scrolled .navbar-logo img { width: 94px; max-height: 84px; }

  /* Hero */
  .hero-content { padding: 120px 20px 60px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }

  /* Divisions */
  .divisions-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Industries */
  .industries-grid { grid-template-columns: 1fr 1fr; }

  /* Trade */
  .trade-features { grid-template-columns: 1fr; }
  .trade-map-container { height: 220px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-container { flex-direction: column; text-align: center; }

  /* Process */
  .process-timeline { grid-template-columns: 1fr; }

  /* MVV */
  .mvv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-form-wrap { padding: 32px 24px; }
  .contact-info-card { padding: 36px 28px; }

  /* Product filter */
  .product-filter-bar { gap: 8px; }

  /* Collage */
  .intro-image-collage { height: 280px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-h1 { font-size: 1.9rem; }
  .industries-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { gap: 8px; }
  .trust-badge { font-size: 0.72rem; padding: 6px 11px; }
  .navbar-logo img { width: 98px; max-height: 88px; }
  .navbar.scrolled .navbar-logo img { width: 90px; max-height: 80px; }
  .product-card-actions { flex-direction: column; }
  .whatsapp-float { bottom: 20px; right: 18px; }
  .intro-stats { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
  .hero-bg img { animation: none; }
  .hero-shape { animation: none; }
  .whatsapp-float-link { animation: none; }
}
