:root {
  --navy: #1B2A4A;
  --coral: #F1592A;
  --coral-light: #FF8C6B;
  --bg-light: #F6F7FA;
  --border: #E4E7EE;
  --muted: #5B6472;
  --faint: #9CA3AF;
  --footer-bg: #162236;
}

html {
  scroll-behavior: smooth;
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  min-height: 100% !important;
  height: auto !important;
  position: relative !important;
  overflow-x: hidden !important;
  overflow-y: visible !important;
}
body.admin-bar .navbar {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  body.admin-bar .navbar {
    top: 46px !important;
  }
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: 'Inter', sans-serif; }
img { display: block; max-width: 100%; }
input, textarea, select { font-family: 'Inter', sans-serif; outline: none; }
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; }
ul, li { list-style: none; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.sec-pad { padding: 96px 0; }
.center { text-align: center; }
.text-white { color: #fff; }

/* ─── Keyframes ─── */
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes quizIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes spinRing { to { transform: rotate(360deg); } }
@keyframes pinDrop { 0% { transform: translateY(-20px) scale(0.6); opacity: 0; } 60% { transform: translateY(4px) scale(1.1); } 100% { transform: translateY(0) scale(1); opacity: 1; } }
@keyframes floatBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatBobAlt { 0%, 100% { transform: translateY(-6px); } 50% { transform: translateY(8px); } }
@keyframes planeFly { 0% { transform: translateX(-130px) translateY(20px) rotate(-8deg); opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { transform: translateX(110vw) translateY(-90px) rotate(8deg); opacity: 0; } }
@keyframes pulseRing { 0%, 100% { transform: scale(1); opacity: 0.12; } 50% { transform: scale(1.04); opacity: 0.2; } }

/* ─── Buttons ─── */
.btn-c { display: inline-flex; align-items: center; gap: 8px; background: var(--coral); color: #fff; border-radius: 999px; padding: 12px 28px; font-size: 15px; font-weight: 600; transition: filter 180ms, transform 160ms, box-shadow 180ms; box-shadow: 0 4px 14px rgba(241,89,42,0.28); }
.btn-c:hover { filter: brightness(0.91); transform: scale(1.02); box-shadow: 0 6px 22px rgba(241,89,42,0.38); }
.btn-o { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--coral); border-radius: 999px; padding: 11px 28px; font-size: 15px; font-weight: 600; border: 2px solid var(--coral); transition: all 200ms; }
.btn-o:hover { background: var(--coral); color: #fff; }
.btn-w { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #fff; color: var(--navy); border-radius: 999px; padding: 12px 28px; font-size: 15px; font-weight: 600; transition: all 200ms; }
.btn-w:hover { background: var(--bg-light); transform: scale(1.02); }
.btn-n { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: #fff; border-radius: 999px; padding: 12px 28px; font-size: 15px; font-weight: 600; transition: filter 180ms, transform 160ms; }
.btn-n:hover { filter: brightness(1.18); transform: scale(1.02); }
.btn-sm { font-size: 13px; padding: 9px 18px; }
.btn-lg { font-size: 16px; padding: 14px 36px; }
.btn-block { width: 100%; justify-content: center; }

.card-lift { transition: transform 250ms ease-out, box-shadow 250ms ease-out; }
.card-lift:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(27,42,74,0.14); }

.quiz-opt { width: 100%; text-align: left; padding: 14px 18px; border: 2px solid var(--border); border-radius: 12px; background: #fff; font-size: 15px; font-weight: 500; color: var(--navy); cursor: pointer; transition: all 190ms; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.quiz-opt:hover { border-color: var(--coral); background: rgba(241,89,42,0.04); color: var(--coral); }
.input-f { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 15px; color: var(--navy); background: #fff; transition: border-color 200ms; margin-bottom: 12px; display: block; }
.input-f:focus { border-color: var(--coral); }

/* ─── Section heading blocks ─── */
.section-head { text-align: center; margin-bottom: 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(241,89,42,0.08); border-radius: 999px; padding: 5px 16px; margin-bottom: 16px; }
.eyebrow-dark { background: rgba(241,89,42,0.15); }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.eyebrow span { font-size: 12px; font-weight: 600; color: var(--coral); letter-spacing: 0.6px; text-transform: uppercase; }
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.6; max-width: 540px; margin: 0 auto; }
.section-italic { font-size: 16px; color: var(--muted); font-style: italic; }
.h2s { font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.blob { position: absolute; border-radius: 50%; pointer-events: none; }

/* ═══ NAVBAR ═══ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #fff; box-shadow: 0 1px 0 #EEF0F4; transition: box-shadow 250ms ease; }
.navbar.scrolled { box-shadow: 0 2px 20px rgba(27,42,74,0.08); }
.navbar-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }
.navbar-logo { flex-shrink: 0; display: flex; align-items: center; transition: opacity 200ms ease; }
.navbar-logo:hover { opacity: 0.82; }
.navbar-links { display: flex; align-items: center; gap: 40px; flex: 1; justify-content: center; }
.navbar-actions { display: flex; align-items: center; gap: 24px; flex-shrink: 0; }
.navbar-phone { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--navy); white-space: nowrap; transition: color 200ms ease; }
.navbar-phone:hover { color: var(--coral); }
@media (max-width: 1180px) { .navbar-phone { display: none; } }
.hamburger { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; background: var(--bg-light); flex-shrink: 0; }

.nav-link { position: relative; font-size: 15px; font-weight: 500; color: var(--navy); padding: 6px 0; transition: color 200ms; white-space: nowrap; letter-spacing: 0.1px; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--coral); transition: width 260ms cubic-bezier(.4,0,.2,1), left 260ms cubic-bezier(.4,0,.2,1); border-radius: 2px; }
.nav-link:hover, .nav-link.hl { color: var(--coral); }
.nav-link:hover::after, .nav-link.hl::after { width: 100%; left: 0; }

/* ═══ HERO ═══ */
.hero { background: var(--navy); padding: 140px 0 80px; position: relative; overflow: hidden; min-height: 680px; }

/* ═══ HERO BANNER (full-width image) ═══ */
.hero-banner { padding: 0; min-height: 92vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: kenBurns 22s ease-in-out infinite alternate; }
@keyframes kenBurns { 0% { transform: scale(1) translate(0, 0); } 100% { transform: scale(1.12) translate(-1.5%, -1%); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(27,42,74,0.94) 0%, rgba(27,42,74,0.82) 38%, rgba(27,42,74,0.45) 70%, rgba(27,42,74,0.55) 100%); }
.hero-banner-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 140px 32px 100px; width: 100%; }
.hero-h1-accent { color: var(--coral); position: relative; display: inline-block; }
.hero-h1-accent::after { content: ''; position: absolute; left: 0; bottom: 2px; width: 100%; height: 10px; background: rgba(241,89,42,0.25); border-radius: 4px; z-index: -1; }
.hero-banner .hero-lead { max-width: 560px; font-size: 19px; }
.hero-banner-plane { position: absolute; top: 20%; left: -80px; z-index: 2; animation: planeFly 16s linear 2s infinite; opacity: 0.85; pointer-events: none; }
.hero-banner-ring { position: absolute; right: -160px; top: -160px; width: 560px; height: 560px; border-radius: 50%; border: 1px dashed rgba(241,89,42,0.3); z-index: 1; pointer-events: none; animation: spinRing 60s linear infinite; }
.hero-banner-dots { position: absolute; bottom: 60px; right: 60px; z-index: 1; pointer-events: none; }
.hero-banner .scroll-ind { z-index: 2; }

/* ═══ HERO V3 — split + feature cards (reference layout) ═══ */
.hero-banner { flex-direction: column; justify-content: center; }
.hero-v3-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; padding: 140px 32px 36px; }
.hero-v3-left { min-width: 0; }

/* Right-side airplane window scene */
.hero-v3-right { position: relative; }
.hero-window-scene { position: relative; width: 100%; max-width: 460px; aspect-ratio: 0.96; margin: 0 auto; }

/* Decorative brand shapes */
.hw-shape { position: absolute; pointer-events: none; }
.hw-shape-1 { width: 130px; height: 130px; top: 10%; left: 2%; background: rgba(241,89,42,0.35); border-radius: 0 0 100% 0; }
.hw-shape-2 { width: 90px; height: 90px; top: 16%; right: 4%; background: rgba(255,255,255,0.12); border-radius: 0 0 0 100%; }
.hw-shape-3 { width: 200px; height: 130px; bottom: 12%; left: 0; background: rgba(255,144,112,0.16); border-radius: 100px 0 0 100px; }
.hw-shape-4 { width: 160px; height: 170px; bottom: 8%; right: 0; background: rgba(255,255,255,0.09); border-radius: 0 24px 24px 90px; }

/* Porthole window — 3D white frame */
.hero-window { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 60%; aspect-ratio: 0.68; background: linear-gradient(150deg, #ffffff 0%, #e6e9f1 55%, #d4d9e6 100%); border-radius: 999px; display: flex; align-items: center; justify-content: center; box-shadow: 0 34px 80px rgba(0,0,0,0.5), inset 0 -10px 24px rgba(27,42,74,0.14), inset 0 8px 18px rgba(255,255,255,0.95); z-index: 1; }
.hero-window-inner { width: 72%; height: 80%; border-radius: 999px; overflow: hidden; position: relative; background: #0a1220; box-shadow: inset 0 0 0 5px rgba(27,42,74,0.18), inset 0 12px 32px rgba(0,0,0,0.45); }
.hw-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; will-change: transform, opacity; }

/* Floating icon chips */
.hw-float { position: absolute; width: 62px; height: 62px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 34px rgba(0,0,0,0.35); z-index: 2; }
.hw-float-1 { top: 8%; left: 6%; animation: floatBob 3.4s ease-in-out infinite; }
.hw-float-2 { top: 10%; right: 7%; animation: floatBob 3.9s ease-in-out 0.6s infinite; }
.hw-float-3 { bottom: 12%; left: 8%; animation: floatBob 3.2s ease-in-out 1.1s infinite; }
.hw-float-4 { bottom: 14%; right: 9%; animation: floatBob 4.2s ease-in-out 1.6s infinite; }

/* Feature cards strip */
.hero-feature-row { position: relative; z-index: 2; max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hf-card { background: #fff; border-radius: 14px; padding: 24px 22px; display: flex; align-items: flex-start; gap: 16px; position: relative; overflow: hidden; box-shadow: 0 18px 44px rgba(0,0,0,0.3); transition: transform 260ms, box-shadow 260ms; }
.hf-card:hover { transform: translateY(-5px); box-shadow: 0 24px 54px rgba(0,0,0,0.38); }
.hf-ribbon { position: absolute; top: 0; left: 0; width: 0; height: 0; border-top: 46px solid var(--coral); border-right: 46px solid transparent; }
.hf-icon { width: 52px; height: 52px; border-radius: 50%; border: 2px solid rgba(241,89,42,0.35); background: rgba(241,89,42,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-left: 8px; transition: background 240ms, border-color 240ms; }
.hf-card:hover .hf-icon { background: var(--coral); border-color: var(--coral); }
.hf-card:hover .hf-icon svg { stroke: #fff; }
.hf-icon svg { transition: stroke 240ms; }
.hf-body { min-width: 0; }
.hf-title { font-family: 'Plus Jakarta Sans'; font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 6px; }
.hf-text { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* Quote strip */
.hero-quote-bar { position: relative; z-index: 2; max-width: 1200px; width: calc(100% - 64px); margin: 22px auto 48px; background: #fff; border: 1.5px solid rgba(241,89,42,0.5); border-radius: 12px; padding: 13px 22px; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; box-shadow: 0 14px 36px rgba(0,0,0,0.25); }
.hero-quote-text { font-size: 13.5px; color: var(--navy); font-weight: 500; }
.hero-quote-link { font-size: 13.5px; font-weight: 700; color: var(--coral); text-decoration: underline; text-underline-offset: 3px; background: none; border: none; cursor: pointer; padding: 0; font-family: 'Inter', sans-serif; transition: filter 180ms; }
.hero-quote-link:hover { filter: brightness(0.85); }
.hero-quote-phone { display: inline-flex; align-items: center; gap: 7px; background: var(--coral); color: #fff; font-size: 13px; font-weight: 700; border-radius: 999px; padding: 7px 16px; transition: filter 180ms; }
.hero-quote-phone:hover { filter: brightness(0.9); }
.hero-blob { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 88% 30%, rgba(241,89,42,0.22) 0%, transparent 55%), radial-gradient(ellipse at 15% 85%, rgba(241,89,42,0.08) 0%, transparent 40%); }
.hero-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-ring-outer { right: -180px; top: -180px; width: 700px; height: 700px; border: 1px solid rgba(241,89,42,0.12); }
.hero-ring-inner { right: -80px; top: -80px; width: 480px; height: 480px; border: 1px solid rgba(241,89,42,0.18); }
.hero-au-watermark { position: absolute; left: -60px; bottom: -120px; font-family: 'Plus Jakarta Sans'; font-size: 220px; font-weight: 800; color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none; user-select: none; }

.floating-world { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.aus-map { position: absolute; right: -20px; top: 50%; transform: translateY(-52%); width: 360px; opacity: 0.13; }
.spin-ring { position: absolute; right: -160px; top: -140px; width: 580px; height: 580px; border-radius: 50%; border: 1.5px dashed rgba(241,89,42,0.14); }
.pulse-ring { position: absolute; right: -120px; top: -100px; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(241,89,42,0.08); animation: pulseRing 4s ease-in-out infinite; }
.dot-grid { position: absolute; }
.dot-grid-tl { top: 12%; left: 3%; opacity: 0.06; }
.dot-grid-br { bottom: 8%; right: 3%; opacity: 0.05; }

.hero-plane { position: absolute; top: 19%; left: -90px; z-index: 3; display: flex; align-items: center; animation: planeFly 14s linear 2s infinite; }
.plane-trail { display: flex; gap: 5px; align-items: center; padding-right: 6px; }
.trail-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--coral); }
.trail-dot-lg { width: 6px; height: 6px; }
.plane-body { width: 60px; height: 60px; background: var(--coral); border-radius: 18px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px rgba(241,89,42,0.45); }

.float-card { position: absolute; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-radius: 16px; padding: 13px 18px; box-shadow: 0 12px 36px rgba(27,42,74,0.14); display: flex; align-items: center; gap: 12px; }
.float-approved { top: 10%; right: 8%; animation: floatBob 2.8s ease-in-out infinite; }
.float-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-icon-green { background: #22C55E; }
.float-title { font-family: 'Plus Jakarta Sans'; font-size: 13px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.float-sub { font-size: 11px; color: #22C55E; font-weight: 600; margin-top: 2px; }

.float-rate-badge { position: absolute; bottom: 18%; right: 5%; background: var(--navy); border-radius: 18px; padding: 16px 22px; box-shadow: 0 14px 36px rgba(27,42,74,0.28); text-align: center; animation: floatBobAlt 3.3s ease-in-out infinite 0.6s; }
.rate-number { font-family: 'Plus Jakarta Sans'; font-size: 32px; font-weight: 800; color: var(--coral); line-height: 1; }
.rate-label { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 500; margin-top: 4px; letter-spacing: 0.4px; text-transform: uppercase; }
.rate-bar { display: flex; gap: 3px; justify-content: center; margin-top: 6px; }
.rate-bar-fill { width: 24px; height: 3px; border-radius: 999px; background: var(--coral); }
.rate-bar-rest { width: 8px; height: 3px; border-radius: 999px; background: rgba(241,89,42,0.35); }

.float-passport { position: absolute; top: 55%; left: 48%; background: linear-gradient(135deg, var(--navy), #243558); border-radius: 14px; padding: 14px 16px; box-shadow: 0 10px 30px rgba(27,42,74,0.3); min-width: 130px; animation: floatBob 3.8s ease-in-out infinite 1.2s; }
.passport-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.passport-head span { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 0.4px; }
.passport-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 8px; }
.passport-country { font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 500; }
.passport-status { font-family: 'Plus Jakarta Sans'; font-size: 13px; font-weight: 700; color: #fff; margin-top: 1px; }

.loc-pin { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 2px; animation: pinDrop 0.6s ease-out both; }
.loc-pin-sydney { bottom: 38%; right: 22%; }
.loc-pin-melbourne { bottom: 30%; right: 14%; animation-delay: 0.4s; }
.loc-pin-perth { bottom: 48%; right: 34%; animation-delay: 0.8s; }
.pin-label { color: white; font-family: 'Plus Jakarta Sans'; font-size: 9px; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.pin-coral { background: var(--coral); box-shadow: 0 3px 10px rgba(241,89,42,0.4); }
.pin-navy { background: var(--navy); box-shadow: 0 3px 10px rgba(27,42,74,0.4); }
.pin-white { background: white; color: var(--navy); box-shadow: 0 3px 10px rgba(0,0,0,0.1); }
.pin-stem { width: 1.5px; height: 16px; }
.pin-stem-coral { background: linear-gradient(to bottom, rgba(241,89,42,0.8), rgba(241,89,42,0)); }
.pin-stem-navy { height: 14px; background: linear-gradient(to bottom, rgba(27,42,74,0.8), rgba(27,42,74,0)); }
.pin-stem-white { height: 12px; background: linear-gradient(to bottom, rgba(27,42,74,0.4), transparent); }

.scroll-ind { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 5px; }
.scroll-ind span { font-size: 10px; font-weight: 600; color: var(--faint); letter-spacing: 1.5px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 28px; background: linear-gradient(to bottom, var(--faint), transparent); }
.scroll-arrow { width: 6px; height: 6px; border-right: 1.5px solid var(--faint); border-bottom: 1.5px solid var(--faint); transform: rotate(45deg); margin-top: -6px; }

.hero-split { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 64px; position: relative; z-index: 2; }
.hero-text-col { flex: 1; min-width: 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(241,89,42,0.18); border: 1px solid rgba(241,89,42,0.35); border-radius: 999px; padding: 6px 16px; margin-bottom: 28px; }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }
.hero-badge span { font-size: 12px; font-weight: 600; color: #FF9070; letter-spacing: 0.4px; white-space: nowrap; }
.hero-h1 { font-family: 'Plus Jakarta Sans'; font-size: 52px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.5px; }
.hero-lead { font-size: 18px; color: rgba(255,255,255,0.78); line-height: 1.65; margin-bottom: 14px; max-width: 480px; }
.hero-body { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.6; margin-bottom: 36px; max-width: 440px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-outline { color: #fff; border-color: #fff; }
.hero-outline:hover { background: #fff; color: var(--navy); }

.trust-strip { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.5); }
.trust-item svg { stroke: rgba(255,255,255,0.5); }
.trust-item span { font-size: 12px; font-weight: 500; }

.hero-img-col { flex: 0 0 460px; position: relative; }
.hero-img-frame { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; background: #DDE3F0; position: relative; box-shadow: 0 24px 60px rgba(27,42,74,0.18); }
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-badge { position: absolute; bottom: 24px; left: 24px; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); border-radius: 16px; padding: 14px 18px; box-shadow: 0 8px 24px rgba(27,42,74,0.15); display: flex; align-items: center; gap: 12px; }
.hero-img-badge-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--coral); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-img-badge-title { font-family: 'Plus Jakarta Sans'; font-size: 16px; font-weight: 700; color: var(--navy); }
.hero-img-badge-sub { font-size: 12px; color: var(--muted); margin-top: 1px; }
.hero-img-tag { position: absolute; top: 20px; right: 20px; background: var(--navy); border-radius: 10px; padding: 8px 12px; }
.hero-img-tag-title { font-family: 'Plus Jakarta Sans'; font-size: 11px; font-weight: 700; color: var(--coral); letter-spacing: 0.5px; }
.hero-img-tag-sub { font-size: 10px; color: rgba(255,255,255,0.7); margin-top: 1px; }

/* ═══ STATS BAND ═══ */
.stats-band { background: var(--coral); padding: 60px 0; position: relative; overflow: hidden; }
.stats-circle-tl { left: -80px; top: -80px; width: 280px; height: 280px; border-radius: 50%; background: rgba(241,89,42,0.07); position: absolute; pointer-events: none; }
.stats-circle-br { right: -60px; bottom: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(241,89,42,0.07); position: absolute; pointer-events: none; }
.stats-plane { position: absolute; top: 16px; right: 140px; opacity: 0.1; pointer-events: none; transform: rotate(-30deg); }
.stats-dashed-ring { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 500px; height: 500px; border-radius: 50%; border: 1px dashed rgba(241,89,42,0.1); pointer-events: none; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stat-cell { padding: 24px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-cell-last { border-right: none; }
.stat-number { font-family: 'Plus Jakarta Sans'; font-size: 44px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; letter-spacing: -1px; }
.stat-label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); letter-spacing: 0.3px; text-transform: uppercase; }

/* ═══ SERVICES ═══ */
.services { background: var(--bg-light); position: relative; overflow: hidden; }
.blob-services-1 { top: -60px; left: -60px; width: 300px; height: 300px; background: rgba(241,89,42,0.05); }
.blob-services-2 { bottom: -80px; right: -40px; width: 360px; height: 360px; background: rgba(27,42,74,0.04); }
.dot-grid-services { position: absolute; top: 32px; right: 40px; opacity: 0.06; pointer-events: none; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { border-radius: 20px; padding: 40px; position: relative; overflow: hidden; }
.service-card-light { background: #fff; box-shadow: 0 8px 24px rgba(27,42,74,0.08); border: 1px solid rgba(27,42,74,0.05); }
.service-card-dark { background: var(--navy); box-shadow: 0 8px 24px rgba(27,42,74,0.2); }
.service-card-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--coral), var(--coral-light)); }
.service-card-orb { position: absolute; bottom: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(241,89,42,0.08); pointer-events: none; }
.service-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; }
.service-icon-light { background: rgba(241,89,42,0.1); }
.service-icon-dark { background: rgba(241,89,42,0.2); }
.service-pill { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 4px 12px; margin-bottom: 16px; }
.service-pill-light { background: var(--bg-light); }
.service-pill-light span { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.4px; text-transform: uppercase; }
.service-pill-dark { background: rgba(255,255,255,0.1); }
.service-pill-dark span { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.4px; text-transform: uppercase; }
.service-card h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.service-desc-light { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.service-desc-dark { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 28px; }
.service-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-list-item { display: flex; align-items: center; gap: 10px; }
.dot-coral { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }
.service-list-text-light { font-size: 14px; color: var(--muted); }
.service-list-text-dark { font-size: 14px; color: rgba(255,255,255,0.7); }

/* ═══ VISAS ═══ */
.visas { background: #fff; position: relative; overflow: hidden; }
.passport-stamp { position: absolute; top: 40px; right: 60px; opacity: 0.04; pointer-events: none; transform: rotate(15deg); }
.blob-visas-1 { bottom: -120px; left: -80px; width: 380px; height: 380px; background: rgba(241,89,42,0.04); }
.dashed-arc { position: absolute; top: -100px; left: -100px; width: 320px; height: 320px; border-radius: 50%; border: 1.5px dashed rgba(241,89,42,0.1); pointer-events: none; }
.sec-orb { position: absolute; border-radius: 50%; background: var(--coral); pointer-events: none; }
.sec-orb-1 { top: 18%; right: 4%; width: 18px; height: 18px; opacity: 0.18; }
.sec-orb-2 { bottom: 22%; left: 5%; width: 12px; height: 12px; opacity: 0.22; }
.filter-pills { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-pill { padding: 9px 20px; border-radius: 999px; font-size: 14px; font-weight: 500; background: #fff; color: var(--muted); border: 1.5px solid var(--border); transition: all 200ms; }
.filter-pill.active { background: var(--coral); color: #fff; border-color: var(--coral); }
.visas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.visa-card { background: #fff; border-radius: 16px; padding: 28px; border: 1.5px solid var(--border); box-shadow: 0 4px 16px rgba(27,42,74,0.06); cursor: pointer; transition: border-color 250ms, transform 250ms, box-shadow 250ms; }
.visa-card:hover { border-color: var(--coral); }
.visa-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(241,89,42,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.visa-code { font-size: 11px; font-weight: 600; color: var(--coral); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px; }
.visa-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.visa-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
.visa-link { font-size: 13px; font-weight: 600; color: var(--coral); display: flex; align-items: center; gap: 4px; }

/* ═══ ELIGIBILITY ═══ */
.eligibility { background: var(--coral); padding: 72px 0; position: relative; overflow: hidden; }
.eligibility-pattern { position: absolute; inset: 0; pointer-events: none; opacity: 0.4; background: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 80 80%22><circle cx=%2240%22 cy=%2240%22 r=%2238%22 fill=%22none%22 stroke=%22rgba(255,255,255,0.06)%22 stroke-width=%221%22/></svg>') repeat; }
.eligibility-compass { position: absolute; left: 5%; top: 50%; transform: translateY(-50%); opacity: 0.15; pointer-events: none; }
.eligibility-dots { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); opacity: 0.12; pointer-events: none; }
.eligibility-inner { max-width: 720px; margin: 0 auto; padding: 0 32px; text-align: center; position: relative; }
.eligibility-inner h2 { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.15; }
.eligibility-inner p { font-size: 18px; color: rgba(255,255,255,0.88); line-height: 1.6; margin-bottom: 36px; }

/* ═══ WHY US ═══ */
.why-us { background: var(--navy); position: relative; overflow: hidden; }
.blob-why-1 { top: -120px; right: -120px; width: 500px; height: 500px; background: rgba(241,89,42,0.07); }
.blob-why-2 { bottom: -100px; left: -80px; width: 380px; height: 380px; background: rgba(241,89,42,0.05); }
.why-ring-1 { position: absolute; top: 50%; left: -180px; transform: translateY(-50%); width: 500px; height: 500px; border-radius: 50%; border: 1.5px dashed rgba(241,89,42,0.12); pointer-events: none; }
.why-ring-2 { position: absolute; top: 50%; right: -200px; transform: translateY(-50%); width: 520px; height: 520px; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.06); pointer-events: none; }
.why-plane { position: absolute; top: 28px; left: 220px; opacity: 0.08; pointer-events: none; transform: rotate(20deg); }
.why-dots { position: absolute; bottom: 24px; right: 60px; opacity: 0.07; pointer-events: none; }
.why-orb-a, .why-orb-b, .why-orb-c { position: absolute; border-radius: 50%; pointer-events: none; }
.why-orb-a { top: 20%; left: 30%; width: 16px; height: 16px; background: var(--coral); opacity: 0.25; }
.why-orb-b { bottom: 25%; right: 28%; width: 10px; height: 10px; background: var(--coral); opacity: 0.3; }
.why-orb-c { top: 60%; left: 18%; width: 8px; height: 8px; background: rgba(255,255,255,0.15); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-item { text-align: center; }
.why-icon { width: 64px; height: 64px; border-radius: 18px; background: rgba(241,89,42,0.18); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.why-item h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-item p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
/* Dark background — override default dark heading/text colors */
.why-us .h2s { color: #fff; }
.why-us .section-sub { color: rgba(255,255,255,0.65); }
.why-us .eyebrow span { color: var(--coral); }

/* ═══ TEAM ═══ */
.team { background: var(--bg-light); position: relative; overflow: hidden; }
.blob-team-1 { top: -80px; right: -80px; width: 340px; height: 340px; background: rgba(241,89,42,0.05); }
.blob-team-2 { bottom: -60px; left: -60px; width: 280px; height: 280px; background: rgba(27,42,74,0.04); }
.team-watermark { position: absolute; top: 50%; right: 20px; transform: translateY(-50%); opacity: 0.05; pointer-events: none; }
.dot-grid-team { position: absolute; top: 40px; left: 30px; opacity: 0.06; pointer-events: none; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.team-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 24px rgba(27,42,74,0.08); }
.team-photo { height: 220px; background: #DDE3F0; overflow: hidden; position: relative; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-cred { position: absolute; bottom: 12px; left: 12px; background: var(--coral); border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 0.4px; }
.team-body { padding: 24px; }
.team-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-body p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.team-socials { display: flex; gap: 10px; }
.team-socials a { width: 32px; height: 32px; border-radius: 8px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; transition: background 200ms; }
.team-socials a:hover { background: var(--border); }

/* ═══ PARTNERS MARQUEE ═══ */
.partners { background: #fff; padding: 72px 0; border-top: 1px solid #F0F1F5; border-bottom: 1px solid #F0F1F5; }
.partners-head { text-align: center; margin-bottom: 36px; }
.marq-wrap { overflow: hidden; position: relative; }
.marq-fade { position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1; pointer-events: none; }
.marq-fade-left { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marq-fade-right { right: 0; background: linear-gradient(270deg, #fff, transparent); }
.marq-track { display: flex; align-items: center; gap: 0; width: max-content; animation: marquee 36s linear infinite; will-change: transform; }
.marq-wrap:hover .marq-track { animation-play-state: paused; }
.marq-item { flex-shrink: 0; padding: 12px 36px; display: flex; align-items: center; }
.marq-pill { padding: 10px 24px; border: 1.5px solid var(--border); border-radius: 10px; background: #fff; white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--faint); transition: all 200ms; }
.marq-pill:hover { border-color: var(--coral); color: var(--navy); }

/* ═══ TESTIMONIALS ═══ */
.testimonials { background: var(--bg-light); position: relative; overflow: hidden; }
.globe-watermark { position: absolute; right: -60px; bottom: -60px; opacity: 0.04; pointer-events: none; }
.blob-testim-1 { top: -60px; left: -40px; width: 260px; height: 260px; background: rgba(241,89,42,0.05); }
.tesim-orb, .tesim-orb2 { position: absolute; border-radius: 50%; background: var(--coral); pointer-events: none; }
.tesim-orb { top: 30%; right: 3%; width: 20px; height: 20px; opacity: 0.15; }
.tesim-orb2 { bottom: 20%; left: 2%; width: 14px; height: 14px; opacity: 0.2; }
.testim-dashed-ring { position: absolute; top: 50%; left: -200px; transform: translateY(-50%); width: 440px; height: 440px; border-radius: 50%; border: 1.5px dashed rgba(241,89,42,0.08); pointer-events: none; }
.google-rating { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 36px; }
.google-rating-card { display: flex; align-items: center; gap: 6px; background: #fff; border-radius: 12px; padding: 10px 20px; box-shadow: 0 4px 14px rgba(27,42,74,0.08); }
.google-rating-num { font-family: 'Plus Jakarta Sans'; font-size: 16px; font-weight: 700; color: var(--navy); }
.stars { color: #FBBC05; font-size: 14px; letter-spacing: 2px; }
.stars-lg { font-size: 18px; margin-bottom: 20px; }
.google-rating-count { font-size: 13px; color: var(--muted); }
.testimonial-card-wrap { background: #fff; border-radius: 20px; padding: 40px 48px; box-shadow: 0 8px 28px rgba(27,42,74,0.09); position: relative; margin-bottom: 32px; min-height: 220px; }
.quote-mark { position: absolute; top: 28px; left: 40px; font-size: 64px; line-height: 1; color: var(--coral); opacity: 0.15; font-family: Georgia, serif; }
.testimonial-card-content { font-size: 17px; color: var(--navy); line-height: 1.7; margin-bottom: 28px; font-style: italic; }
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans'; font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0; }
.testimonial-name { font-family: 'Plus Jakarta Sans'; font-size: 16px; font-weight: 700; color: var(--navy); }
.testimonial-meta { font-size: 13px; color: var(--muted); margin-top: 2px; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 20px; }
.testim-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; transition: all 200ms; }
.testim-arrow:hover { border-color: var(--coral); }
.testim-dots { display: flex; gap: 8px; align-items: center; }
.testim-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all 200ms; flex-shrink: 0; }
.testim-dot.active { width: 11px; height: 11px; background: var(--coral); }
.testim-ctas { text-align: center; margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══ BLOG ═══ */
.blog { background: #fff; position: relative; overflow: hidden; }
.blog-plane { position: absolute; top: 36px; left: -80px; opacity: 0; pointer-events: none; }
.blog-plane-body { width: 42px; height: 42px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(27,42,74,0.28); }
.blob-blog-1 { bottom: -100px; right: -80px; width: 360px; height: 360px; background: rgba(241,89,42,0.04); }
.blob-blog-2 { top: -60px; left: -40px; width: 240px; height: 240px; background: rgba(27,42,74,0.03); }
.dot-grid-blog { position: absolute; bottom: 40px; left: 40px; opacity: 0.05; pointer-events: none; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.blog-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border); box-shadow: 0 4px 16px rgba(27,42,74,0.06); }
.blog-img { height: 180px; background: #DDE3F0; overflow: hidden; position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-tag { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 4px 12px; margin-bottom: 14px; }
.blog-tag span { font-size: 11px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; }
.blog-tag-migration { background: rgba(241,89,42,0.1); }
.blog-tag-migration span { color: var(--coral); }
.blog-tag-education { background: rgba(46,139,87,0.1); }
.blog-tag-education span { color: #2E8B57; }
.blog-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.blog-body > p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.blog-author { display: flex; align-items: center; gap: 8px; padding-top: 14px; border-top: 1px solid #F0F1F5; }
.blog-author-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; flex-shrink: 0; }
.blog-author-name { font-size: 12px; font-weight: 600; color: var(--navy); }
.blog-author-date { font-size: 11px; color: var(--faint); }

/* ═══ FINAL CTA ═══ */
.final-cta { background: var(--navy); position: relative; overflow: hidden; }
.blob-finalcta-1 { right: -100px; bottom: -100px; width: 400px; height: 400px; background: rgba(241,89,42,0.08); }
.blob-finalcta-2 { left: -80px; top: -80px; width: 300px; height: 300px; background: rgba(241,89,42,0.06); }
.finalcta-plane { position: absolute; pointer-events: none; }
.finalcta-plane-1 { top: 20px; right: 80px; opacity: 0.12; transform: rotate(-20deg); }
.finalcta-plane-2 { bottom: 20px; left: 80px; opacity: 0.08; transform: rotate(15deg); }
.finalcta-inner { max-width: 680px; margin: 0 auto; padding: 0 32px; text-align: center; position: relative; }
.finalcta-inner h2 { font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.15; }
.finalcta-inner p { font-size: 18px; color: rgba(255,255,255,0.72); line-height: 1.6; margin-bottom: 36px; }

/* ═══ FOOTER ═══ */
.footer { background: var(--footer-bg); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { margin-bottom: 20px; filter: brightness(10); opacity: 0.95; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 200ms; }
.footer-socials a:hover { background: rgba(241,89,42,0.3); }
.footer h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 20px; letter-spacing: 0.3px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 200ms; }
.footer-links a:hover { color: var(--coral); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-row { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-row svg { margin-top: 2px; flex-shrink: 0; }
.footer-contact-row p, .footer-contact-row span { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-contact-row p + p { margin-top: 6px; }
.footer-contact-link { align-items: center; }
.footer-contact-link svg { margin-top: 0; }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 200ms; }

/* ═══ QUIZ MODAL ═══ */
.quiz-overlay { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; background: rgba(22,34,54,0.65); backdrop-filter: blur(6px); padding: 24px; }
.quiz-overlay.open { display: flex; }
.quiz-modal { background: #fff; border-radius: 24px; max-width: 560px; width: 100%; max-height: 92vh; overflow-y: auto; position: relative; box-shadow: 0 32px 80px rgba(22,34,54,0.28); }
.quiz-close { position: absolute; top: 16px; right: 16px; z-index: 1; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; transition: background 200ms; }
.quiz-close:hover { background: var(--border); }
.quiz-body { padding: 40px; }
.quiz-anim { animation: quizIn 280ms ease-out; }
.quiz-progress-track { background: #F0F1F5; border-radius: 999px; height: 5px; margin-bottom: 8px; overflow: hidden; }
.quiz-progress-fill { height: 100%; width: 20%; background: var(--coral); border-radius: 999px; transition: width 300ms ease; }
.quiz-progress-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.quiz-progress-row span { font-size: 13px; font-weight: 500; color: var(--faint); }
.quiz-eyebrow { margin-bottom: 8px; font-size: 12px; font-weight: 600; color: var(--coral); letter-spacing: 0.5px; text-transform: uppercase; }
.quiz-body h2 { font-family: 'Plus Jakarta Sans'; font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.25; }
.quiz-subtitle { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.quiz-options { display: flex; flex-direction: column; }
.quiz-back { margin-top: 20px; font-size: 14px; font-weight: 500; color: var(--faint); display: flex; align-items: center; gap: 6px; transition: color 200ms; }
.quiz-back:hover { color: var(--navy); }
.quiz-back-block { margin-top: 14px; width: 100%; text-align: center; justify-content: center; display: flex; }

.quiz-result-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(241,89,42,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.quiz-body h2#quiz-result-pathway { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.quiz-points-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(241,89,42,0.1); border-radius: 999px; padding: 6px 16px; margin-bottom: 16px; }
.quiz-points-pill span { font-size: 13px; font-weight: 700; color: var(--coral); }
.quiz-result-desc { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.quiz-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.quiz-tag { background: var(--bg-light); border: 1px solid var(--border); border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 500; color: var(--navy); }
.quiz-disclaimer { background: var(--bg-light); border-radius: 14px; padding: 16px; margin-bottom: 28px; border-left: 3px solid var(--coral); }
.quiz-disclaimer p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.quiz-disclaimer strong { color: var(--navy); }

.quiz-consent { margin-bottom: 20px; }
.quiz-consent label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.quiz-consent input { margin-top: 3px; accent-color: var(--coral); }
.quiz-consent span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.quiz-secure { font-size: 12px; color: var(--faint); text-align: center; margin-top: 14px; }

.quiz-submitted { text-align: center; padding: 20px 0; }
.quiz-submitted-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(241,89,42,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.quiz-submitted h2 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.quiz-submitted p { font-size: 16px; color: var(--muted); line-height: 1.65; margin-bottom: 32px; }

/* ═══ MOBILE MENU ═══ */
.mobile-overlay { position: fixed; inset: 0; z-index: 990; background: rgba(22,34,54,0.5); opacity: 0; pointer-events: none; transition: opacity 300ms; }
.mobile-overlay.show { opacity: 1; pointer-events: all; }
.mobile-menu { position: fixed; top: 0; right: 0; bottom: 0; width: 300px; z-index: 991; background: #fff; transform: translateX(100%); transition: transform 320ms cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(22,34,54,0.18); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #F0F1F5; }
.mobile-menu-head button { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; }
.mobile-menu-links { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-link { display: block; padding: 13px 16px; border-radius: 10px; font-size: 15px; font-weight: 500; color: var(--navy); transition: background 200ms; }
.mobile-link:hover { background: var(--bg-light); }
.mobile-link-hl { font-weight: 600; color: var(--coral); background: rgba(241,89,42,0.06); }
.mobile-menu-phone-box { margin-top: 20px; padding: 16px; background: var(--bg-light); border-radius: 12px; }
.mobile-menu-phone { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--navy); }
.mobile-menu-phone-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--coral); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mobile-menu-cta { padding: 20px 24px; border-top: 1px solid #F0F1F5; }

/* ═══ TESTIMONIAL MULTI-CARD SLIDER ═══ */
.ts-slider-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.ts-slider-header .section-head { margin-bottom: 0; text-align: left; }
.ts-slider-header .section-head .eyebrow { justify-content: flex-start; }
.ts-nav-btns { display: flex; gap: 10px; flex-shrink: 0; }
.ts-nav-btn { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 200ms; box-shadow: 0 2px 10px rgba(27,42,74,0.07); flex-shrink: 0; }
.ts-nav-btn:hover { border-color: var(--coral); background: var(--coral); }
.ts-nav-btn:hover svg { stroke: #fff; }
.ts-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.ts-nav-btn:disabled:hover { border-color: var(--border); background: #fff; }
.ts-nav-btn:disabled:hover svg { stroke: var(--navy); }
.ts-viewport { overflow: hidden; width: 100%; padding: 12px 0; box-sizing: border-box; }
.ts-track { display: flex; gap: 20px; will-change: transform; cursor: grab; user-select: none; width: 100%; box-sizing: border-box; }
.ts-track:active { cursor: grabbing; }
.ts-card { box-sizing: border-box; flex-shrink: 0; background: #fff; border-radius: 20px; padding: 28px 24px; border: 1.5px solid var(--border); box-shadow: 0 4px 18px rgba(27,42,74,0.06); position: relative; overflow: hidden; display: flex; flex-direction: column; min-height: 260px; transition: transform 260ms ease-out, box-shadow 260ms ease-out; }
.ts-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(27,42,74,0.12); }
.ts-card-quote-bg { position: absolute; top: -10px; left: -6px; color: var(--coral); opacity: 0.07; pointer-events: none; line-height: 1; font-size: 90px; font-family: Georgia, serif; }
.ts-stars { color: #FBBC05; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.ts-quote { font-size: 14.5px; color: var(--navy); line-height: 1.72; flex: 1; font-style: italic; position: relative; z-index: 1; }
.ts-divider { height: 1px; background: var(--border); margin: 20px 0 16px; }
.ts-author { display: flex; align-items: center; gap: 12px; }
.ts-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans'; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; border: 2.5px solid #fff; box-shadow: 0 3px 10px rgba(241,89,42,0.28); }
.ts-author-info { flex: 1; min-width: 0; }
.ts-name { font-family: 'Plus Jakarta Sans'; font-size: 14px; font-weight: 700; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ts-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.ts-dots { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 32px; }
.ts-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all 260ms; padding: 0; flex-shrink: 0; }
.ts-dot.active { width: 28px; border-radius: 999px; background: var(--coral); }
.ts-google-bar { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; }
.ts-google-label { font-size: 11.5px; font-weight: 600; color: #5F6368; flex: 1; }
.ts-date { font-size: 11px; color: var(--faint); white-space: nowrap; }
.ts-verified-icon { flex-shrink: 0; margin-left: auto; }
.testim-google-strip { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 36px; background: #fff; border: 1.5px solid var(--border); border-radius: 18px; padding: 22px 28px; box-shadow: 0 4px 18px rgba(27,42,74,0.06); }
.testim-google-info { display: flex; align-items: center; gap: 14px; }
.testim-google-rating { display: flex; align-items: center; gap: 10px; }
.testim-google-score { font-family: 'Plus Jakarta Sans'; font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1; }
.testim-google-stars { color: #FBBC05; font-size: 17px; letter-spacing: 2px; }
.testim-google-count { font-size: 14px; font-weight: 600; color: var(--coral); background: rgba(241,89,42,0.08); padding: 3px 10px; border-radius: 999px; }
.testim-google-sub { font-size: 12px; color: var(--muted); margin-top: 5px; }
.testim-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
/* ═══ PLANE LAUNCH SECTION ═══ */
.plane-launch { background: linear-gradient(160deg, var(--bg-light) 0%, #fff 100%); padding: 110px 0; position: relative; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pl-watermark { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Plus Jakarta Sans'; font-size: clamp(48px, 12vw, 140px); font-weight: 800; color: rgba(27,42,74,0.035); white-space: nowrap; pointer-events: none; user-select: none; letter-spacing: -3px; }
.pl-plane-wrap { position: absolute; bottom: 18%; left: 0; z-index: 3; pointer-events: none; }
.pl-plane-svg { filter: drop-shadow(0 8px 24px rgba(241,89,42,0.5)); }
.pl-dashes { position: absolute; bottom: 18%; left: 0; right: 0; height: 4px; pointer-events: none; z-index: 2; overflow: visible; }
.pl-runway { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(241,89,42,0.12) 30%, rgba(241,89,42,0.12) 70%, transparent); }
.pl-dots-tl { position: absolute; top: 24px; left: 40px; opacity: 0.07; pointer-events: none; }
.pl-dots-br { position: absolute; bottom: 24px; right: 40px; opacity: 0.07; pointer-events: none; }
.pl-content { text-align: center; position: relative; z-index: 4; }
.pl-h2 { font-family: 'Plus Jakarta Sans'; font-size: clamp(28px, 5vw, 52px); font-weight: 800; color: var(--navy); line-height: 1.12; margin: 16px 0 18px; letter-spacing: -0.5px; }
.pl-sub { font-size: 17px; color: var(--muted); line-height: 1.65; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.pl-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(241,89,42,0.09); border-radius: 999px; padding: 5px 16px; }
.pl-badge span { font-size: 12px; font-weight: 700; color: var(--coral); letter-spacing: 0.6px; text-transform: uppercase; }
.pl-clouds { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.pl-cloud { position: absolute; background: rgba(27,42,74,0.025); border-radius: 50%; }
.pl-cloud-1 { width: 200px; height: 80px; top: 15%; left: 10%; border-radius: 40px; }
.pl-cloud-2 { width: 140px; height: 60px; top: 25%; right: 12%; border-radius: 30px; }
.pl-cloud-3 { width: 100px; height: 40px; bottom: 30%; left: 25%; border-radius: 20px; }

/* ═══ GLOBAL REACH SECTION ═══ */
.global-reach { background: var(--navy); position: relative; overflow: hidden; }
.blob-global-1 { top: -120px; left: -120px; width: 450px; height: 450px; background: rgba(241,89,42,0.07); }
.blob-global-2 { bottom: -80px; right: -80px; width: 320px; height: 320px; background: rgba(241,89,42,0.05); }
.global-ring { position: absolute; right: -200px; top: 50%; transform: translateY(-50%); width: 640px; height: 640px; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.04); pointer-events: none; }
.global-reach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.global-reach-text .h2s { color: #fff; margin-bottom: 14px; }
.global-reach-text .section-sub { color: rgba(255,255,255,0.62); text-align: left; margin: 0 0 32px; }
.global-stats-row { display: flex; gap: 36px; margin-bottom: 36px; }
.global-stat-num { font-family: 'Plus Jakarta Sans'; font-size: 30px; font-weight: 800; color: var(--coral); line-height: 1; margin-bottom: 4px; }
.global-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.global-canvas-wrap { position: relative; border-radius: 24px; overflow: hidden; background: #060D1A; box-shadow: 0 24px 60px rgba(0,0,0,0.4); min-height: 380px; display: flex; align-items: center; justify-content: center; }
#globe-canvas { display: block; border-radius: 24px; }
.globe-hint { position: absolute; bottom: 14px; left: 14px; font-size: 11px; color: rgba(255,255,255,0.35); background: rgba(0,0,0,0.35); padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px); pointer-events: none; }
.globe-loading { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.globe-loading span { font-size: 13px; color: rgba(255,255,255,0.45); letter-spacing: 0.3px; }
.globe-spinner { width: 34px; height: 34px; border: 2.5px solid rgba(241,89,42,0.2); border-top-color: var(--coral); border-radius: 50%; animation: spinRing 0.75s linear infinite; }
@keyframes globePulse { 0%,100%{opacity:0.4} 50%{opacity:0.7} }

/* ═══ WHAT WE DO — SVC GRID (dark navy bg) ═══ */
.services { background: var(--navy); position: relative; overflow: hidden; }

/* Section heading overrides for dark bg */
.services .eyebrow span { color: var(--coral); }
.services .eyebrow-dot { background: var(--coral); }
.services .h2s { color: #fff; }
.services .section-sub { color: rgba(255,255,255,0.62); }

.svc-bg-orb { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.svc-bg-orb-1 { width: 520px; height: 520px; background: rgba(241,89,42,0.10); top: -140px; right: -80px; }
.svc-bg-orb-2 { width: 400px; height: 400px; background: rgba(241,89,42,0.06); bottom: -100px; left: -80px; }
.svc-dots-tl { position: absolute; top: 28px; left: 36px; pointer-events: none; }
.svc-dots-br { position: absolute; bottom: 28px; right: 36px; pointer-events: none; }

/* Grid lines bg decoration */
.services::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; }

/* Horizontal slider track — cards keep natural (content-driven) heights, zigzag offsets */
.svc-slider { position: relative; z-index: 1; margin-bottom: 40px; }
.svc-grid { display: flex; gap: 22px; overflow-x: auto; align-items: start; padding: 40px 4px 30px; scroll-snap-type: x mandatory; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.svc-grid::-webkit-scrollbar { display: none; }
/* Each card: fixed portrait width, snaps */
.svc-grid .svc-card { flex: 0 0 268px; scroll-snap-align: start; }
/* Unique vertical offset per card — scattered zigzag, like the reference slider */
.svc-grid .svc-card:nth-child(6n+1) { margin-top: 40px; }
.svc-grid .svc-card:nth-child(6n+2) { margin-top: 0; }
.svc-grid .svc-card:nth-child(6n+3) { margin-top: 26px; }
.svc-grid .svc-card:nth-child(6n+4) { margin-top: 8px; }
.svc-grid .svc-card:nth-child(6n+5) { margin-top: 34px; }
.svc-grid .svc-card:nth-child(6n+6) { margin-top: 14px; }

/* Slider nav arrows (bottom center) */
.svc-nav { display: flex; align-items: center; justify-content: center; gap: 12px; }
.svc-nav-btn { width: 44px; height: 44px; border-radius: 10px; background: var(--coral); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: filter 180ms, transform 180ms; box-shadow: 0 6px 18px rgba(241,89,42,0.35); }
.svc-nav-btn:hover { filter: brightness(0.92); transform: translateY(-2px); }
.svc-nav-btn:disabled { opacity: 0.35; cursor: default; filter: none; transform: none; }

/* Individual card — portrait, content-height, rounded */
.svc-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(6px); border-radius: 18px; padding: 30px 24px 22px; border: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; transition: border-color 280ms, box-shadow 280ms, transform 280ms, background 280ms; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--coral), var(--coral-light)); transform: scaleY(0); transform-origin: top; transition: transform 360ms cubic-bezier(0.4,0,0.2,1); }
.svc-card:hover { border-color: rgba(241,89,42,0.4); background: rgba(255,255,255,0.07); box-shadow: 0 22px 52px rgba(0,0,0,0.4); transform: translateY(-6px); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-card:hover .svc-card-icon-wrap { background: var(--coral); box-shadow: 0 8px 24px rgba(241,89,42,0.4); }
.svc-card:hover .svc-card-icon-wrap svg { stroke: #fff; }
.svc-card:hover .svc-arrow { background: var(--coral); border-color: var(--coral); color: #fff; }
.svc-card:hover .svc-num { color: rgba(241,89,42,0.28); }

/* Icon box */
.svc-card-icon-wrap { width: 58px; height: 58px; border-radius: 14px; background: rgba(241,89,42,0.13); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 280ms, box-shadow 280ms; }
.svc-card-icon-wrap svg { stroke: var(--coral); transition: stroke 280ms; }

/* Thin separator under icon */
.svc-sep { width: 40px; height: 3px; border-radius: 2px; background: var(--coral); opacity: 0.85; }

/* Card title */
.svc-card-title { font-family: 'Plus Jakarta Sans'; font-size: 17px; font-weight: 700; color: #fff; line-height: 1.3; }

/* Card description */
.svc-card-desc { font-size: 13.5px; color: rgba(255,255,255,0.58); line-height: 1.72; flex: 1; }

/* Footer: arrow button + big faded number */
.svc-card-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 6px; }
.svc-arrow { width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.18); background: transparent; color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 240ms, border-color 240ms, color 240ms, transform 240ms; flex-shrink: 0; }
.svc-arrow:hover { transform: translateX(3px); }
.svc-num { font-family: 'Plus Jakarta Sans'; font-size: 52px; font-weight: 800; line-height: 0.8; color: rgba(255,255,255,0.07); letter-spacing: -1px; transition: color 280ms; user-select: none; }

/* Bottom strip */
.svc-bottom-strip { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 22px 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.svc-cred-pills { display: flex; gap: 20px; flex-wrap: wrap; }
.svc-cred-pill { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); }

/* ═══ OUR CATEGORIES SECTION ═══ */
.categories { background: var(--bg-light); position: relative; overflow: hidden; }
.cat-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.cat-blob-1 { width: 500px; height: 500px; background: rgba(241,89,42,0.06); top: -120px; right: -100px; }
.cat-blob-2 { width: 380px; height: 380px; background: rgba(27,42,74,0.04); bottom: -80px; left: -60px; }
.cat-line-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(27,42,74,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(27,42,74,0.025) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.cat-dots-tl { position: absolute; top: 32px; left: 40px; pointer-events: none; }
.cat-dots-br { position: absolute; bottom: 32px; right: 40px; pointer-events: none; }

/* ── Hover-expand image accordion ── */
.acc { display: flex; gap: 14px; height: 480px; margin-bottom: 56px; position: relative; z-index: 1; }

/* Each panel: image bg + navy overlay, grows when open */
.acc-panel { position: relative; flex: 1 1 0; min-width: 0; border-radius: 18px; overflow: hidden; cursor: pointer; background: #0a1220; background-image: var(--acc-img); background-size: cover; background-position: center; box-shadow: 0 14px 40px rgba(27,42,74,0.18); transition: flex-grow 560ms cubic-bezier(0.4,0,0.2,1); }
.acc-panel.is-open { flex-grow: 4.4; }

/* Navy gradient overlay — lighter when open */
.acc-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,42,74,0.35) 0%, rgba(27,42,74,0.92) 82%); transition: background 400ms; }
.acc-panel.is-open .acc-overlay { background: linear-gradient(180deg, rgba(27,42,74,0.15) 0%, rgba(27,42,74,0.55) 45%, rgba(27,42,74,0.9) 100%); }
/* Coral accent bar on the open panel */
.acc-panel.is-open::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: linear-gradient(90deg, var(--coral), var(--coral-light)); z-index: 3; }

/* Icon chip (coral) */
.acc-ico { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 8px 20px rgba(241,89,42,0.35); }
.acc-ico-lg { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 4px; }

/* Collapsed strip — number, icon, vertical title */
.acc-strip { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 24px 0; opacity: 1; transition: opacity 260ms; }
.acc-panel.is-open .acc-strip { opacity: 0; pointer-events: none; }
.acc-num { font-family: 'Plus Jakarta Sans'; font-size: 20px; font-weight: 800; color: rgba(255,255,255,0.45); }
.acc-vtitle { writing-mode: vertical-rl; transform: rotate(180deg); font-family: 'Plus Jakarta Sans'; font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 0.4px; white-space: nowrap; }

/* Expanded content */
.acc-full { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 30px 28px; display: flex; flex-direction: column; gap: 12px; opacity: 0; transform: translateY(16px); transition: opacity 380ms 120ms, transform 380ms 120ms; pointer-events: none; }
.acc-panel.is-open .acc-full { opacity: 1; transform: none; pointer-events: auto; }
.acc-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.7px; text-transform: uppercase; color: var(--coral-light); }
.acc-title { font-family: 'Plus Jakarta Sans'; font-size: 23px; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -0.3px; }
.acc-desc { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.65; max-width: 360px; }
.acc-full .btn-c { align-self: flex-start; margin-top: 4px; }

/* Bottom CTA row */
.cat-bottom-cta { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.cat-bottom-text { font-size: 16px; color: var(--muted); font-weight: 500; }

/* Dark background — override default dark heading/text colors */
.why-us .h2s { color: #fff; }
.why-us .section-sub { color: rgba(255,255,255,0.65); }
.why-us .eyebrow span { color: var(--coral); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .dn-m { display: none !important; }
  .db-m { display: flex !important; }
  .hero-img-col { display: none !important; }
  .hero-split { flex-direction: column !important; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .stats-g { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-g { grid-template-columns: repeat(2, 1fr) !important; }
  .global-reach-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .ts-slider-header { flex-direction: column; align-items: flex-start; }
  .global-stats-row { gap: 20px !important; }
  /* Accordion → stacked full image cards on tablet/mobile */
  .acc { flex-direction: column; height: auto; }
  .acc-panel { flex: none; min-height: 168px; }
  .acc-panel.is-open { flex-grow: 0; }
  .acc-strip { display: none; }
  .acc-full { position: relative; opacity: 1; transform: none; pointer-events: auto; }
  .acc-panel .acc-overlay { background: linear-gradient(180deg, rgba(27,42,74,0.35) 0%, rgba(27,42,74,0.85) 100%); }
  .svc-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .svc-bottom-strip { flex-direction: column; align-items: flex-start; }
  .hero-v3-grid { grid-template-columns: 1fr !important; gap: 36px; padding-top: 120px; }
  .hero-v3-right { max-width: 520px; }
  .hero-feature-row { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr !important; }
  .grid-4 { grid-template-columns: 1fr !important; }
  .stats-g { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-g { grid-template-columns: 1fr !important; }
  .h1s { font-size: 30px !important; line-height: 1.2 !important; }
  .h2s { font-size: 24px !important; }
  .sec-pad { padding: 56px 20px !important; }
  .plane-launch { padding: 72px 0 !important; }
  .global-stats-row { flex-wrap: wrap; gap: 16px !important; }
  .pl-h2 { font-size: 28px !important; }
  .acc-title { font-size: 20px; }
  .cat-bottom-cta { flex-direction: column; gap: 12px; text-align: center; }
  .svc-grid { grid-template-columns: 1fr !important; }
  .svc-bottom-strip { padding: 18px 20px; }
  .subpage-grid { grid-template-columns: 1fr !important; }
}

/* ═══ NAV DROPDOWN STYLING (SUBCLASS ITEMS ARE FINAL DIRECT LINKS - ZERO 4TH LEVEL MENUS) ═══ */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown:hover > .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.dropdown-chevron { width: 12px; height: 12px; margin-left: 4px; vertical-align: middle; transition: transform 200ms; }
.nav-item-dropdown:hover > .dropdown-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
  border: 1px solid #EAEAEA;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  pointer-events: none;
}

.nav-dropdown-item { position: relative; }
.nav-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  font-size: 14.5px;
  font-weight: 600;
  color: #333333;
  line-height: 1.4;
  transition: background 180ms, color 180ms;
}
.nav-dropdown-link:hover {
  background: #F8F9FA;
  color: var(--coral);
}

/* Level 2 Submenu (Categories) */
.nav-dropdown-item:hover > .nav-sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.nav-sub-dropdown {
  position: absolute;
  top: -10px;
  left: 100%;
  min-width: 330px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.15);
  border: 1px solid #EAEAEA;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
  pointer-events: none;
}

.nav-sub-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #444444;
  line-height: 1.45;
  transition: background 180ms, color 180ms, padding-left 180ms;
  text-decoration: none;
}
.nav-sub-dropdown-link:hover {
  background: #F8F9FA;
  color: var(--coral);
}

/* Level 3 Submenu (Category Sub-items) */
.nav-dropdown-item:hover > .nav-deep-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.nav-deep-dropdown {
  position: absolute;
  top: -10px;
  left: 100%;
  min-width: 320px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.15);
  border: 1px solid #EAEAEA;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1002;
  pointer-events: none;
}

/* ═══ GOOGLE REVIEWS & AUTHORITY STYLING ═══ */
.google-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 250ms ease;
  margin-bottom: 16px;
}
.google-trust-pill:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}
.google-badge-highlight {
  background: linear-gradient(135deg, #F1592A 0%, #FF8A65 100%);
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.google-reviews-sec {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  padding: 70px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.google-reviews-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 900px) {
  .google-reviews-card { flex-direction: column; text-align: center; padding: 32px 20px; }
}
.google-stars {
  color: #FFB800;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.google-btn-c {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #ffffff;
  color: #0F172A;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 250ms ease;
  white-space: nowrap;
}
.google-btn-c:hover {
  transform: translateY(-3px);
  background: #F8FAFC;
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
}

/* ═══ POPULAR VISAS SECTION MINIMAL BACKGROUND TEXTURE ═══ */
.visas {
  position: relative;
  background-color: #F8FAFC;
  background-image: 
    radial-gradient(rgba(27, 42, 74, 0.06) 1.2px, transparent 1.2px),
    radial-gradient(rgba(241, 89, 42, 0.05) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
}

.visas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 42, 74, 0.08) 20%, rgba(27, 42, 74, 0.08) 80%, transparent);
}

/* ═══ SCROLL REVEAL ANIMATIONS ═══ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ 5-COLUMN FOOTER STYLING & RESPONSIVENESS ═══ */
.footer-sitemap-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.1fr 1.3fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 1024px) {
  .footer-sitemap-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }
}


/* ═══ SUBPAGE CONTAINER & NAVBAR CLEARANCE ═══ */
.subpage-wrapper,
.page-top-pad,
.main-content,
body.page section:first-of-type {
  padding-top: 100px;
}

body.admin-bar.page .subpage-wrapper,
body.admin-bar.page .page-top-pad,
body.admin-bar.page .main-content,
body.admin-bar.page section:first-of-type {
  padding-top: 132px;
}


