/* ============================================
   ABBACY GLOBAL GROUP — PREMIUM STYLE SYSTEM
   Next-Level · Glassmorphism · Animated
   ============================================ */

:root {
  --navy: #1B3A5C;
  --navy-dark: #0F2540;
  --navy-deep: #081829;
  --navy-light: #254E7A;
  --gold: #C4952D;
  --gold-light: #E5AC30;
  --gold-hover: #D6A333;
  --gold-glow: rgba(201, 151, 58, .35);
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --green: #16A34A;
  --red: #DC2626;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-h: 70px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
  --shadow-glow: 0 8px 32px var(--gold-glow);
  --t: .3s cubic-bezier(.4,0,.2,1);
  --t-slow: .6s cubic-bezier(.4,0,.2,1);
}

/* ─── KEYFRAME ANIMATIONS ─────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-18px) rotate(2deg); }
  66% { transform: translateY(8px) rotate(-1deg); }
}
@keyframes float-reverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(12px) rotate(-2deg); }
  66% { transform: translateY(-15px) rotate(1deg); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201,151,58,.15); }
  50% { box-shadow: 0 0 40px rgba(201,151,58,.3); }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes hero-badge-entrance {
  from { opacity: 0; transform: translateY(-10px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes border-glow {
  0%, 100% { border-color: rgba(201,151,58,.2); }
  50% { border-color: rgba(201,151,58,.5); }
}
@keyframes typing-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ─── RESET ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--gray-700); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; color: var(--navy); line-height: 1.15; letter-spacing: -.025em; }
p { line-height: 1.75; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── LAYOUT ─────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; position: relative; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); margin-bottom: 16px; position: relative; display: inline-block; }
.section-header p { color: var(--gray-500); font-size: 1.08rem; max-width: 580px; margin: 0 auto; line-height: 1.7; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(201,151,58,.08), rgba(201,151,58,.15));
  padding: 7px 16px; border-radius: var(--radius-full);
  margin-bottom: 14px; border: 1px solid rgba(201,151,58,.15);
}

/* ─── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius-full); font-size: .95rem;
  font-weight: 600; font-family: var(--font-head); border: 2px solid transparent;
  transition: all var(--t); cursor: pointer; white-space: nowrap; position: relative;
  overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0; transition: opacity var(--t);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white); box-shadow: 0 4px 16px rgba(196,149,45,.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196,149,45,.4);
}
.btn-outline { background: transparent; border-color: rgba(255,255,255,.4); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-navy { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); }
.btn-navy:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(27,58,92,.35); }
.btn-ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn-full { width: 100%; }

/* Shimmer CTA effect */
.btn-shimmer {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(196,149,45,.35);
}
.btn-shimmer:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(196,149,45,.5); }

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: rgba(255,255,255,.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06); z-index: 1000;
  display: flex; align-items: center; transition: all var(--t);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.08); background: rgba(255,255,255,.97); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 42px; width: auto; mix-blend-mode: multiply; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.brand-sub { font-size: .63rem; color: var(--gray-500); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 14px; border-radius: 10px; font-size: .88rem; font-weight: 500;
  color: var(--gray-700); transition: all var(--t); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
  background: var(--gold); border-radius: 2px; transition: all var(--t); transform: translateX(-50%);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--gray-100); }
.nav-links a.active::after { width: 20px; }
.nav-cta { margin-left: 16px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--t); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 999; }

/* ─── HERO ─────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-dark) 30%, var(--navy) 60%, var(--navy-light) 100%);
  background-size: 300% 300%;
  animation: gradient-shift 12s ease infinite;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
/* Radial glow */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(201,151,58,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(37,78,122,.2) 0%, transparent 50%);
  pointer-events: none;
}
/* Grid overlay for depth */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; opacity: .5;
}

/* Floating decorative shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape {
  position: absolute; border-radius: 50%; opacity: .08;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.hero-shape-1 { width: 400px; height: 400px; top: -100px; right: -80px; animation: float-slow 10s ease-in-out infinite; }
.hero-shape-2 { width: 250px; height: 250px; bottom: -50px; left: -60px; animation: float-reverse 12s ease-in-out infinite; opacity: .06; }
.hero-shape-3 { width: 150px; height: 150px; top: 40%; left: 15%; animation: float-slow 14s ease-in-out infinite; opacity: .04; }
.hero-shape-4 {
  width: 80px; height: 80px; top: 20%; right: 30%;
  border-radius: 20px; transform: rotate(45deg);
  border: 2px solid rgba(201,151,58,.15); background: transparent; opacity: .3;
  animation: float-reverse 8s ease-in-out infinite, spin-slow 30s linear infinite;
}

.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; padding: 60px 0; position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,151,58,.12);
  border: 1px solid rgba(201,151,58,.25);
  color: var(--gold-light); font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--radius-full);
  margin-bottom: 22px; backdrop-filter: blur(8px);
  animation: hero-badge-entrance .8s ease-out;
}
.hero h1 {
  font-size: clamp(2.1rem,4.5vw,3.4rem); color: var(--white); font-weight: 900;
  margin-bottom: 20px; line-height: 1.1;
}
.hero h1 .accent {
  display: block; min-height: 1.15em;
  background: linear-gradient(135deg, var(--gold-light), #F0C850, var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}
/* Typing cursor for rotating text */
.hero-typing-wrapper { display: inline; }
.hero-typing {
  display: inline;
  border-right: 3px solid var(--gold-light);
  animation: typing-cursor .8s step-end infinite;
}

.hero-desc { color: rgba(255,255,255,.78); font-size: 1.08rem; line-height: 1.8; margin-bottom: 34px; max-width: 540px; }
.hero-desc strong { color: var(--white); font-weight: 600; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats { display: flex; gap: 0; background: rgba(255,255,255,.04); border-radius: var(--radius); border: 1px solid rgba(255,255,255,.08); }
.hero-stat { padding: 18px 26px; border-right: 1px solid rgba(255,255,255,.08); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-head); font-size: 1.7rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), #F0C850);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; display: flex; align-items: baseline; gap: 2px;
}
.hero-stat-label { font-size: .73rem; color: rgba(255,255,255,.55); margin-top: 6px; font-weight: 500; letter-spacing: .02em; }

/* Hero Card / Quick Form — Glassmorphism */
.hero-card {
  background: rgba(255,255,255,.96); border-radius: var(--radius-xl); padding: 34px 30px;
  box-shadow: 0 24px 80px rgba(0,0,0,.2), 0 0 0 1px rgba(255,255,255,.1);
  position: relative; overflow: hidden;
  animation: fadeInScale .8s ease-out .3s both;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%; animation: shimmer 3s ease-in-out infinite;
}
.hero-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 6px; }
.hero-card > p { font-size: .85rem; color: var(--gray-500); margin-bottom: 22px; }
.qform { display: flex; flex-direction: column; gap: 12px; }
.qform input, .qform select {
  padding: 13px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-size: .9rem; font-family: var(--font-body); color: var(--gray-900); background: var(--white);
  transition: all var(--t); outline: none;
}
.qform input:focus, .qform select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,151,58,.1); }
.qform input::placeholder { color: var(--gray-400); }
.qform-note { text-align: center; font-size: .74rem; color: var(--gray-400); margin-top: 10px; }
.qform-note span { color: var(--green); font-weight: 600; }

/* ─── SVG WAVE DIVIDERS ─────────────────── */
.wave-divider { position: relative; width: 100%; overflow: hidden; line-height: 0; margin-top: -1px; }
.wave-divider svg { display: block; width: 100%; height: auto; }
.wave-divider.flip { transform: scaleY(-1); margin-top: 0; margin-bottom: -1px; }

/* ─── TRUST STRIP — Animated Marquee ─────── */
.trust-strip { padding: 18px 0; background: linear-gradient(135deg, var(--navy-deep), var(--navy-dark)); overflow: hidden; position: relative; }
.trust-strip::before, .trust-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.trust-strip::before { left: 0; background: linear-gradient(90deg, var(--navy-deep), transparent); }
.trust-strip::after { right: 0; background: linear-gradient(-90deg, var(--navy-deep), transparent); }
.trust-marquee { display: flex; animation: marquee 25s linear infinite; width: max-content; }
.trust-items { display: flex; align-items: center; gap: 48px; padding: 0 24px; flex-shrink: 0; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 500; white-space: nowrap; }
.trust-item i { color: var(--gold-light); font-size: 1.05rem; }

/* ─── UNIVERSITY PARTNERS MARQUEE ────────── */
.partners-section { padding: 48px 0; background: var(--white); overflow: hidden; border-bottom: 1px solid var(--gray-100); }
.partners-section .section-label {
  text-align: center; font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 28px;
}
.partners-marquee { display: flex; animation: marquee 35s linear infinite; width: max-content; }
.partners-marquee:hover { animation-play-state: paused; }
.partner-logos { display: flex; align-items: center; gap: 56px; padding: 0 28px; flex-shrink: 0; }
.partner-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: .95rem; font-weight: 700;
  color: var(--gray-400); white-space: nowrap; transition: color var(--t);
  opacity: .6;
}
.partner-logo:hover { opacity: 1; color: var(--navy); }
.partner-logo i { font-size: 1.4rem; }

/* ─── SERVICES — Glassmorphism Cards ──────── */
.services-section { background: var(--gray-50) !important; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: all var(--t); text-align: center; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,151,58,.03), transparent);
  opacity: 0; transition: opacity var(--t);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  border-color: rgba(201,151,58,.3);
  transform: translateY(-6px);
}
.service-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(27,58,92,.06), rgba(201,151,58,.1));
  border-radius: 18px; font-size: 1.6rem; color: var(--navy);
  transition: all var(--t); position: relative;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white); transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(27,58,92,.2);
}
.service-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.service-card p { font-size: .85rem; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* ─── DESTINATIONS ──────────────────────── */
.destinations-section { background: var(--white) !important; }
.destinations-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.dest-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); overflow: hidden; transition: all var(--t);
  position: relative;
}
.dest-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
  transform: translateY(-6px);
  border-color: rgba(201,151,58,.25);
}
.dest-flag {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy), var(--navy-light));
  padding: 40px 24px; display: flex; flex-direction: column; align-items: center; gap: 12px;
  position: relative; overflow: hidden;
}
.dest-flag::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(201,151,58,.1) 0%, transparent 60%);
}
.dest-flag img { width: 68px; border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,.3); position: relative; z-index: 1; transition: transform var(--t); }
.dest-card:hover .dest-flag img { transform: scale(1.1); }
.dest-flag span { font-family: var(--font-head); font-size: 1.12rem; font-weight: 700; color: var(--white); position: relative; z-index: 1; }
.dest-body { padding: 20px 22px; }
.dest-body p { font-size: .83rem; color: var(--gray-500); margin-bottom: 8px; line-height: 1.6; }
.dest-body p:last-child { margin-bottom: 0; }
.dest-body strong { color: var(--navy); }

/* ─── WHY CHOOSE US — Glass Dark Cards ──── */
.why-section { background: linear-gradient(135deg, var(--navy-deep), var(--navy-dark), var(--navy)) !important; position: relative; overflow: hidden; }
.why-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,151,58,.06) 0%, transparent 60%);
  pointer-events: none;
}
.why-section .section-header h2 { color: var(--white); }
.why-section .section-header p { color: rgba(255,255,255,.6); }
.why-section .section-tag { background: rgba(201,151,58,.15); border-color: rgba(201,151,58,.2); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; position: relative; z-index: 1; }
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 32px 26px; text-align: center;
  transition: all var(--t); backdrop-filter: blur(12px); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,151,58,.2), transparent, rgba(201,151,58,.1));
  opacity: 0; transition: opacity var(--t); z-index: -1;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,151,58,.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}
.why-icon { font-size: 2.2rem; color: var(--gold-light); margin-bottom: 16px; }
.why-card h3 { font-size: 1.02rem; color: var(--gold-light); margin-bottom: 10px; }
.why-card p { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.65; margin: 0; }

/* ─── JOURNEY / PROCESS — Connected Timeline ── */
.journey-section { background: var(--gray-50) !important; }
.journey-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: step; }
.journey-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px 26px;
  position: relative; transition: all var(--t);
}
.journey-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,.06); border-color: rgba(201,151,58,.3); transform: translateY(-4px); }
.step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white); border-radius: 50%;
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(196,149,45,.25);
  transition: all var(--t);
}
.journey-card:hover .step-num { transform: scale(1.1); box-shadow: 0 8px 28px rgba(196,149,45,.4); }
.journey-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.journey-card p { font-size: .85rem; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* ─── ABOUT ─────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text p { font-size: .95rem; color: var(--gray-500); line-height: 1.85; margin-bottom: 16px; }
.about-text p:last-of-type { margin-bottom: 24px; }
.about-text strong { color: var(--navy); }
.about-pillars { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 28px; }
.pillar {
  display: flex; align-items: center; gap: 12px;
  background: var(--gray-50); border-radius: var(--radius);
  padding: 14px 16px; border: 1px solid var(--gray-200);
  transition: all var(--t);
}
.pillar:hover { border-color: rgba(201,151,58,.3); box-shadow: 0 4px 16px rgba(0,0,0,.04); transform: translateX(4px); }
.pillar i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.pillar span { font-size: .85rem; font-weight: 600; color: var(--navy); }

.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.stat-box {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-radius: var(--radius-xl); padding: 30px 22px; text-align: center;
  position: relative; overflow: hidden; transition: all var(--t);
}
.stat-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,151,58,.1) 0%, transparent 60%);
}
.stat-box:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.stat-box-num {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), #F0C850);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; position: relative;
}
.stat-box-label { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 8px; font-weight: 500; position: relative; }

/* ─── TESTIMONIALS CAROUSEL ────────────── */
.testimonials-section { background: var(--gray-50) !important; }
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tcard {
  flex: 0 0 calc(33.333% - 15px); margin: 0 11px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 30px 26px;
  transition: all var(--t); position: relative; overflow: hidden;
}
.tcard::before {
  content: '"'; position: absolute; top: 10px; right: 22px;
  font-size: 88px; font-family: Georgia,serif;
  background: linear-gradient(135deg, rgba(201,151,58,.1), rgba(201,151,58,.04));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; pointer-events: none;
}
.tcard:hover { box-shadow: 0 20px 50px rgba(0,0,0,.08); border-color: rgba(201,151,58,.25); transform: translateY(-4px); }
.t-stars { font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.tcard > p { font-size: .88rem; color: var(--gray-500); line-height: 1.75; font-style: italic; margin-bottom: 22px; }
.t-author h4 { font-size: .95rem; color: var(--navy); margin-bottom: 3px; }
.t-author p { font-size: .8rem; color: var(--gold); font-weight: 600; margin: 0; }

/* Carousel dots */
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray-300, #D1D5DB); border: none; cursor: pointer;
  transition: all var(--t); padding: 0;
}
.carousel-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* Carousel arrows */
.carousel-arrows { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.carousel-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1rem; cursor: pointer;
  transition: all var(--t);
}
.carousel-arrow:hover { background: var(--navy); border-color: var(--navy); color: var(--white); transform: scale(1.08); }

/* Static grid fallback for smaller screens */
.testimonials-grid { display: none; }

/* ─── ELIGIBILITY CHECKER ──────────────── */
.eligibility-section {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-dark), var(--navy)) !important;
  position: relative; overflow: hidden;
}
.eligibility-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(201,151,58,.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(201,151,58,.06) 0%, transparent 50%);
  pointer-events: none;
}
.eligibility-section .section-header h2 { color: var(--white); }
.eligibility-section .section-header p { color: rgba(255,255,255,.65); }
.eligibility-section .section-tag { background: rgba(201,151,58,.15); border-color: rgba(201,151,58,.25); }

.eligibility-card {
  max-width: 640px; margin: 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 40px 36px;
  backdrop-filter: blur(16px); position: relative; z-index: 1;
}

/* Progress bar */
.eligibility-progress { display: flex; gap: 8px; margin-bottom: 32px; }
.eligibility-step-indicator {
  flex: 1; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,.1); transition: all var(--t);
}
.eligibility-step-indicator.active { background: var(--gold); }
.eligibility-step-indicator.done { background: var(--gold-light); }

/* Steps */
.eligibility-step {
  display: none;
}
.eligibility-step.active {
  display: block;
  animation: eligStepIn .4s ease-out;
}
@keyframes eligStepIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.eligibility-step h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 8px; }
.eligibility-step p { color: rgba(255,255,255,.6); font-size: .88rem; margin-bottom: 24px; }

.elig-options { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-bottom: 24px; }
.elig-option {
  padding: 16px; border: 2px solid rgba(255,255,255,.12);
  border-radius: var(--radius); text-align: center;
  color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500;
  cursor: pointer; transition: all var(--t); background: rgba(255,255,255,.03);
}
.elig-option:hover { border-color: rgba(201,151,58,.4); background: rgba(201,151,58,.08); }
.elig-option.selected {
  border-color: var(--gold); background: rgba(201,151,58,.15); color: var(--gold-light);
  transform: scale(1.03); box-shadow: 0 0 20px rgba(201,151,58,.15);
  position: relative;
}
.elig-option.selected::after {
  content: '✓'; position: absolute; top: 8px; right: 10px;
  font-size: .7rem; font-weight: 700; color: var(--navy-deep);
  background: var(--gold-light); width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.elig-option i { display: block; font-size: 1.6rem; margin-bottom: 8px; }

.elig-nav { display: flex; gap: 12px; justify-content: space-between; }
.elig-nav .btn { min-width: 140px; }
.elig-nav.elig-hidden { display: none; }

/* Result */
.eligibility-result { text-align: center; animation: fadeInScale .5s ease-out; }
.eligibility-result .result-icon { font-size: 3rem; margin-bottom: 16px; }
.eligibility-result h3 { color: var(--gold-light); font-size: 1.4rem; margin-bottom: 10px; }
.eligibility-result p { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 28px; }

/* ─── VIDEO SECTION ────────────────────── */
.video-section { background: var(--white) !important; }
.video-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.video-card {
  border-radius: var(--radius-xl); overflow: hidden; position: relative;
  background: var(--gray-100); aspect-ratio: 16/9;
  border: 1px solid var(--gray-200); transition: all var(--t);
}
.video-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,.1); transform: translateY(-4px); }
.video-card iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* YouTube Shorts — vertical 9:16 layout */
.video-grid-shorts { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.video-short { aspect-ratio: 9/16; width: 100%; max-width: 290px; }

/* ─── LOCAL HYDERABAD SECTION ──────────── */
.local-section { background: var(--gray-50) !important; }
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.local-content h3 { font-size: 1.3rem; margin-bottom: 16px; color: var(--navy); }
.local-content p { font-size: .92rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; }
.local-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; margin-bottom: 24px; }
.local-tag {
  padding: 6px 14px; border-radius: var(--radius-full);
  background: var(--white); border: 1px solid var(--gray-200);
  font-size: .78rem; font-weight: 600; color: var(--navy);
  transition: all var(--t);
}
.local-tag:hover { border-color: var(--gold); background: rgba(201,151,58,.05); }
.local-map {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow);
}
.local-map iframe { width: 100%; height: 380px; display: block; border: none; }

/* ─── BLOG PREVIEW SECTION ─────────────── */
.blog-section { background: var(--white) !important; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all var(--t); position: relative;
}
.blog-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,.08); transform: translateY(-6px); border-color: rgba(201,151,58,.25); }
a.blog-card { color: inherit; text-decoration: none; display: block; }
.blog-card-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.blog-card-img.blog-usa { background: linear-gradient(135deg, #1B2838, #2C4A6E); }
.blog-card-img.blog-ielts { background: linear-gradient(135deg, #1B3A2F, #2E6B4A); }
.blog-card-img.blog-loan { background: linear-gradient(135deg, #3A1B2F, #6B2E4A); }
.blog-card-body { padding: 22px; }
.blog-tag {
  display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--gold); margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.35; }
.blog-card-body p { font-size: .83rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 14px; }
.blog-read-more {
  font-size: .83rem; font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px; transition: all var(--t);
}
.blog-read-more:hover { color: var(--gold); gap: 10px; }

/* ─── AWARDS / RECOGNITION BAR ─────────── */
.awards-strip { padding: 40px 0; background: var(--white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.awards-grid { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.award-item { display: flex; align-items: center; gap: 12px; }
.award-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(27,58,92,.06), rgba(201,151,58,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold); flex-shrink: 0;
}
.award-text { display: flex; flex-direction: column; }
.award-text strong { font-family: var(--font-head); font-size: .88rem; color: var(--navy); font-weight: 700; }
.award-text span { font-size: .72rem; color: var(--gray-500); }

/* ─── FAQ ─────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--t); background: var(--white);
}
.faq-item:hover, .faq-item.open { border-color: rgba(201,151,58,.35); box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 24px; background: none; border: none;
  font-family: var(--font-head); font-size: .95rem; font-weight: 600;
  color: var(--navy); text-align: left; gap: 14px; transition: color var(--t);
}
.faq-q i { color: var(--gold); font-size: .85rem; transition: transform var(--t); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s ease; }
.faq-a-inner { padding: 0 24px 20px; font-size: .88rem; color: var(--gray-500); line-height: 1.8; }
.faq-a-inner ul { margin-top: 8px; display: flex; flex-direction: column; gap: 5px; }
.faq-a-inner ul li { padding-left: 20px; position: relative; }
.faq-a-inner ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.faq-item.open .faq-a { max-height: 600px; }

/* ─── CONTACT SECTION (homepage) ─────────── */
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form-box {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 38px;
  box-shadow: 0 8px 32px rgba(0,0,0,.04);
}
.contact-form-box h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-box > p { font-size: .88rem; color: var(--gray-500); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
label.flabel { display: block; font-size: .8rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.finput {
  display: block; width: 100%; padding: 13px 16px; border: 2px solid var(--gray-200);
  border-radius: var(--radius); font-size: .9rem; font-family: var(--font-body);
  color: var(--gray-900); background: var(--white); outline: none; transition: all var(--t);
}
.finput:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,151,58,.1); }
.finput::placeholder { color: var(--gray-400); }
textarea.finput { min-height: 110px; resize: vertical; }
select.finput { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M6 8l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 38px; }
.form-msg { padding: 14px 18px; border-radius: var(--radius); font-size: .88rem; font-weight: 500; margin-bottom: 16px; display: none; }
.form-msg.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; display: block; }
.form-msg.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

.contact-info-box { display: flex; flex-direction: column; gap: 14px; }
.contact-info-box h3 { font-size: 1.4rem; margin-bottom: 6px; }
.cinfo-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px;
  transition: all var(--t);
}
.cinfo-card:hover { border-color: rgba(201,151,58,.4); transform: translateX(6px); box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.cinfo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(196,149,45,.2);
}
.cinfo-card h4 { font-size: .88rem; color: var(--navy); margin-bottom: 3px; }
.cinfo-card p, .cinfo-card a { font-size: .85rem; color: var(--gray-500); line-height: 1.55; transition: color var(--t); }
.cinfo-card a:hover { color: var(--gold); }

/* ─── CONTACT PAGE HERO ─────────────────── */
.contact-page-hero {
  padding: calc(var(--nav-h) + 56px) 0 56px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-dark), var(--navy));
  text-align: center; position: relative; overflow: hidden;
}
.contact-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(201,151,58,.1) 0%, transparent 60%);
}
.contact-page-hero h1 { color: var(--white); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 14px; position: relative; }
.contact-page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 500px; margin: 0 auto; position: relative; }
.contact-page-hero .urgency-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  background: rgba(201,151,58,.15); border: 1px solid rgba(201,151,58,.3);
  padding: 8px 18px; border-radius: var(--radius-full);
  color: var(--gold-light); font-size: .8rem; font-weight: 600;
  animation: glow-pulse 2s ease-in-out infinite; position: relative;
}

/* Map */
.map-wrap { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow); margin-top: 14px; }
.map-wrap iframe { width: 100%; height: 320px; display: block; border: none; }

/* ─── FOOTER CTA ─────────────────────────── */
.footer-cta {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-dark), var(--navy));
  text-align: center; padding: 80px 0; position: relative; overflow: hidden;
}
.footer-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,151,58,.08) 0%, transparent 60%);
}
.footer-cta h2 { color: var(--white); font-size: clamp(1.6rem,3vw,2.3rem); margin-bottom: 14px; position: relative; }
.footer-cta p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }
.footer-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── FOOTER ─────────────────────────────── */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.6); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 52px; }
.footer h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 16px; }
.footer h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 16px; font-family: var(--font-head); }
.footer p { font-size: .85rem; line-height: 1.8; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: all var(--t); padding-left: 0; display: inline-flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '→'; opacity: 0; transition: all var(--t); margin-left: -12px; font-size: .75rem; color: var(--gold-light); }
.footer-links a:hover { color: var(--gold-light); padding-left: 0; }
.footer-links a:hover::before { opacity: 1; margin-left: 0; }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; font-size: .83rem; margin-bottom: 10px; }
.footer-contact i { color: var(--gold); font-size: .85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.6); transition: color var(--t); }
.footer-contact a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; color: rgba(255,255,255,.6); font-size: .95rem; transition: all var(--t);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(196,149,45,.3); }
.footer-bar { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; text-align: center; font-size: .78rem; color: rgba(255,255,255,.3); }

/* ─── FLOATING BUTTONS — Enhanced ────────── */
.fab-whatsapp {
  position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px;
  background: linear-gradient(135deg, #25D366, #20BA5C); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: all var(--t); animation: fadeInUp .5s ease-out 1s both;
}
.fab-whatsapp::before {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: rgba(37,211,102,.3); z-index: -1;
  animation: pulse-ring 2s ease-out infinite;
}
.fab-whatsapp:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,.55); color: var(--white); }

.fab-call {
  position: fixed; bottom: 96px; right: 24px; width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; z-index: 999;
  box-shadow: 0 6px 24px rgba(201,151,58,.4);
  transition: all var(--t); animation: fadeInUp .5s ease-out 1.2s both;
}
.fab-call:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(201,151,58,.55); color: var(--white); }

/* FAB tooltips */
.fab-whatsapp .fab-tooltip,
.fab-call .fab-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--gray-900); color: var(--white); font-size: .78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: all var(--t);
}
.fab-whatsapp:hover .fab-tooltip,
.fab-call:hover .fab-tooltip { opacity: 1; right: 74px; }

/* ─── BACK TO TOP ────────────────────────── */
.back-to-top {
  position: fixed; bottom: 168px; right: 28px; width: 44px; height: 44px;
  background: var(--white); border: 2px solid var(--gray-200); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1rem; z-index: 998;
  opacity: 0; pointer-events: none; transition: all var(--t);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--navy); border-color: var(--navy); color: var(--white); transform: translateY(-3px); }

/* ─── STICKY MOBILE CTA ─────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--gray-200);
  padding: 12px 18px; z-index: 997;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  transform: translateY(100%); transition: transform var(--t);
}
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-mobile-cta .btn { width: 100%; }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .destinations-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .tcard { flex: 0 0 calc(50% - 12px); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 440px; }
  .local-grid { grid-template-columns: 1fr; gap: 32px; }
  .video-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .awards-grid { gap: 28px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .section-header { margin-bottom: 40px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: block;
    background: var(--white);
    padding: 0; border: none; box-shadow: none;
    max-height: 0; overflow: hidden;
    pointer-events: none;
    transition: max-height .35s ease, padding .25s ease, opacity .2s ease;
    opacity: 0;
  }
  .mobile-menu.open {
    max-height: 480px; padding: 12px 18px 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    pointer-events: auto;
    opacity: 1;
  }
  .mobile-menu a { display: block; padding: 13px 0; font-size: .95rem; font-weight: 500; color: var(--navy); border-bottom: 1px solid var(--gray-100); }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu .m-cta { display: block; margin-top: 12px; text-align: center; }

  .hero { min-height: auto; padding-top: var(--nav-h); align-items: flex-start; }
  .hero-inner { grid-template-columns: 1fr; padding: 28px 0 40px; }
  .hero-card { display: none; }
  .hero-badge { margin-bottom: 16px; font-size: .72rem; padding: 6px 14px; }
  .hero h1 { margin-bottom: 14px; }
  .hero-desc { font-size: .95rem; margin-bottom: 24px; line-height: 1.7; }
  .hero-actions { margin-bottom: 30px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { padding: 12px 16px; }
  .hero-stat-num { font-size: 1.35rem; }
  .hero-shape { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-items { gap: 24px; }
  .footer-cta-btns { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-cta { padding: 56px 0; }
  .about-text p { font-size: .9rem; margin-bottom: 12px; }

  /* Carousel → stacked on mobile */
  .tcard { flex: 0 0 calc(100% - 22px); }
  .blog-grid { grid-template-columns: 1fr; }
  .local-grid { grid-template-columns: 1fr; }
  .elig-options { grid-template-columns: 1fr 1fr; }

  /* Sticky mobile CTA */
  .sticky-mobile-cta { display: block; }
  .fab-whatsapp { bottom: 80px; }
  .fab-call { bottom: 150px; }
  .back-to-top { bottom: 220px; }

  .awards-grid { gap: 20px; }
  .partner-logos { gap: 32px; }
}

@media (max-width: 480px) {
  section { padding: 44px 0; }
  .section-header { margin-bottom: 30px; }
  .section-header h2 { font-size: 1.5rem; }
  .hero h1 { font-size: 1.65rem; }
  .hero-stat { flex: 1 1 calc(50% - 8px); }
  .hero-desc { font-size: .9rem; }
  .elig-options { grid-template-columns: 1fr; }
  .eligibility-card { padding: 28px 20px; }
  .awards-grid { gap: 16px; flex-direction: column; align-items: stretch; }
  .award-item { justify-content: center; }
}