/* ==============================================
   GLOBAL EDUCATION V2 — Premium Design System
   DESIGN_VARIANCE: 8 | MOTION: 6 | DENSITY: 4
   Font: Outfit (headings) + Inter (body) — NO plain Inter for display
   Palette: Deep Navy + Warm Gold on Warm Cream
   ============================================== */

/* --- Tokens --- */
:root {
  --bg: #F8F7F4;
  --bg-alt: #F0EFE9;
  --bg-dark: #0C0C0C;
  --surface: #FFFFFF;
  --surface-raised: #FFFFFF;
  --text: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-tertiary: #8A8A8A;
  --text-on-dark: #F0EFE9;
  --text-on-dark-muted: rgba(240,239,233,0.55);
  --primary: #1A2B4A;
  --primary-hover: #243B60;
  --accent: #C8963E;
  --accent-hover: #B5842F;
  --accent-glow: rgba(200,150,62,0.18);
  --accent-subtle: rgba(200,150,62,0.08);
  --border: rgba(26,26,26,0.07);
  --border-strong: rgba(26,26,26,0.12);
  --border-on-dark: rgba(255,255,255,0.07);
  --border-on-dark-strong: rgba(255,255,255,0.12);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px -12px rgba(0,0,0,0.08);
  --shadow-lg: 0 25px 60px -20px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 80px -20px rgba(200,150,62,0.25);
  --radius-xs: 0.75rem;
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 2.5rem;
  --radius-2xl: 3rem;
  --radius-full: 9999px;
  --container: 1280px;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--text); }
img, video, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* --- Typography --- */
.font-display { font-family: 'Outfit', 'Inter', system-ui, sans-serif; }
.font-mono { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace; }
.tracking-tight { letter-spacing: -0.03em; }
.tracking-tighter { letter-spacing: -0.04em; }

/* --- Layout --- */
.container { max-width: var(--container); margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
@media(min-width:768px) { .container { padding-left: 3rem; padding-right: 3rem; } }

/* --- Grain --- */
.grain::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==============================================
   HEADER
   ============================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  transition: padding var(--transition-smooth);
}
.site-header.scrolled { padding: 0.5rem 0; }
.header-pill {
  display: flex; align-items: center; justify-content: space-between;
  max-width: min(94%, 1100px); margin: 0 auto;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}
.site-header.scrolled .header-pill {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.header-logo {
  display: flex; align-items: center; gap: 0.625rem;
}
.header-logo img {
  width: 32px; height: 32px; border-radius: 8px; object-fit: contain;
}
.header-logo span {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: -0.03em; color: var(--primary);
}
.header-nav {
  display: none; align-items: center; gap: 0.125rem;
}
@media(min-width:768px) { .header-nav { display: flex; } }
.header-nav a {
  padding: 0.375rem 0.875rem; border-radius: var(--radius-full);
  font-size: 0.8125rem; font-weight: 500; color: var(--text-secondary);
  transition: all 0.2s ease;
}
.header-nav a:hover { color: var(--text); background: rgba(0,0,0,0.03); }
.header-nav a.active { color: var(--text); font-weight: 600; }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.375rem 0.875rem; border-radius: var(--radius-full);
  font-size: 0.8125rem; font-weight: 500; color: var(--text-secondary);
  transition: all 0.2s ease; cursor: pointer;
}
.nav-dropdown-toggle:hover { color: var(--text); background: rgba(0,0,0,0.03); }
.nav-dropdown-toggle svg { transition: transform 0.2s ease; }
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 0.375rem); left: 50%; transform: translateX(-50%);
  min-width: 140px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.375rem;
  opacity: 0; visibility: hidden;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-md);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-menu a {
  display: block; padding: 0.5rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.8125rem; font-weight: 500; color: var(--text-secondary);
  transition: all 0.15s; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(0,0,0,0.03); color: var(--text); }
.nav-dropdown-menu a.active { color: var(--text); font-weight: 600; }

/* Mobile Nav Dropdown */
.nav-dropdown-mobile-toggle {
  display: block; padding: 0.875rem 1rem; border-radius: var(--radius-md);
  font-size: 0.9375rem; font-weight: 600; color: var(--text);
  cursor: pointer; transition: all 0.15s;
}
.nav-dropdown-mobile-toggle:hover { background: rgba(0,0,0,0.03); }
.nav-dropdown-mobile {
  display: none; padding-left: 1rem;
}
.nav-dropdown-mobile.open { display: block; }
.nav-dropdown-mobile a {
  display: block; padding: 0.75rem 1rem; border-radius: var(--radius-md);
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  transition: all 0.15s;
}
.nav-dropdown-mobile a:hover { background: rgba(0,0,0,0.03); color: var(--text); }
.header-right { display: flex; align-items: center; gap: 0.5rem; }
.btn-header {
  display: none; align-items: center; gap: 0.375rem;
  padding: 0.5rem 1.125rem; border-radius: var(--radius-full);
  background: var(--primary); color: #fff;
  font-size: 0.8125rem; font-weight: 600;
  transition: all 0.2s ease;
}
@media(min-width:768px) { .btn-header { display: inline-flex; } }
.btn-header:hover { background: var(--primary-hover); transform: scale(0.98); }
.btn-header .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-full);
  color: var(--text-secondary);
  transition: all 0.2s;
}
.menu-toggle:hover { background: rgba(0,0,0,0.04); }
@media(min-width:768px) { .menu-toggle { display: none; } }

/* Mobile Nav */
.mobile-nav {
  display: none; opacity: 0; transform: translateY(-6px);
  max-width: min(94%, 1100px); margin: 0.5rem auto 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 0.75rem; transition: all var(--transition-spring);
}
.mobile-nav.open { display: block; opacity: 1; transform: translateY(0); }
.mobile-nav a {
  display: block; padding: 0.875rem 1rem; border-radius: var(--radius-md);
  font-size: 0.9375rem; font-weight: 500; color: var(--text-secondary);
  transition: all 0.15s;
}
.mobile-nav a:hover { background: rgba(0,0,0,0.03); color: var(--text); }

/* ==============================================
   HERO — Split Layout (Left text, Right visual)
   ============================================== */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center;
  padding-top: 5rem; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  align-items: center; width: 100%;
  position: relative;
}
@media(min-width:1024px) {
  .hero-grid { grid-template-columns: 5fr 7fr; gap: 2rem; }
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; border-radius: var(--radius-full);
  background: var(--accent-subtle);
  border: 1px solid rgba(200,150,62,0.15);
  font-size: 0.75rem; font-weight: 600; color: var(--accent-hover);
  letter-spacing: 0.02em;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -0.04em; margin-top: 1.5rem;
  color: var(--text);
}
.hero-title .muted { color: var(--text-tertiary); }
.hero-description {
  margin-top: 1.25rem; max-width: 46ch;
  font-size: 1.0625rem; line-height: 1.7; color: var(--text-secondary);
}
.hero-actions {
  margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-full);
  background: var(--primary); color: #fff;
  font-size: 0.875rem; font-weight: 600;
  transition: all 0.2s ease;
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary .arrow-icon { transition: transform 0.2s; }
.btn-primary:hover .arrow-icon { transform: translateX(3px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-full);
  border: 1px solid var(--border-strong); background: var(--surface);
  font-size: 0.875rem; font-weight: 600; color: var(--text);
  transition: all 0.2s ease;
}
.btn-outline:hover { border-color: var(--text); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.75rem 0.5rem;
  font-size: 0.875rem; font-weight: 600; color: var(--text-secondary);
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

/* Globe container */
.hero-visual {
  position: relative; width: 100%;
  height: 320px;
}
@media(min-width:768px) {
  .hero-visual { height: 420px; }
}
@media(min-width:1024px) {
  .hero-visual { height: 560px; }
}
#globe-container {
  width: 100%; height: 100%;
  position: relative;
}
#globe-container canvas { display: block; }

/* ==============================================
   STATS STRIP
   ============================================== */
.stats-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
}
@media(min-width:768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  padding: 2rem 1.5rem; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
@media(min-width:768px) { .stat-item { padding: 2.5rem 2rem; } }
.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--primary);
}
@media(min-width:768px) { .stat-value { font-size: 2.5rem; } }
.stat-label {
  margin-top: 0.25rem; font-size: 0.8125rem; color: var(--text-tertiary);
  font-weight: 500;
}

/* ==============================================
   SECTIONS — Common
   ============================================== */
.section { padding: 6rem 0; }
@media(min-width:768px) { .section { padding: 8rem 0; } }
.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section-alt { background: var(--bg-alt); }
.section-header { max-width: 560px; }
.section-header.wide { max-width: 700px; }
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-tertiary);
}
.section-dark .section-label { color: var(--text-on-dark-muted); }
.section-title {
  font-family: 'Outfit', sans-serif;
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.035em;
}
.section-title .muted { color: var(--text-tertiary); }
.section-dark .section-title .muted { color: var(--text-on-dark-muted); }
.section-description {
  margin-top: 1rem; max-width: 48ch;
  font-size: 1rem; line-height: 1.7; color: var(--text-secondary);
}
.section-dark .section-description { color: var(--text-on-dark-muted); }

/* ==============================================
   BENTO GRID — Asymmetric Feature Layouts
   ============================================== */
.bento-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media(min-width:768px) {
  .bento-grid.cols-7-5 { grid-template-columns: 7fr 5fr; }
  .bento-grid.cols-5-7 { grid-template-columns: 5fr 7fr; }
  .bento-grid.cols-4-4-4 { grid-template-columns: repeat(3, 1fr); }
  .bento-grid.cols-6-6 { grid-template-columns: repeat(2, 1fr); }
  .bento-grid.cols-8-4 { grid-template-columns: 8fr 4fr; }
  .bento-grid.cols-4-8 { grid-template-columns: 4fr 8fr; }
}

/* Bento Card */
.bento-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem;
  transition: all var(--transition-smooth);
}
@media(min-width:768px) { .bento-card { padding: 2.5rem; } }
.bento-card:hover { border-color: var(--border-strong); }
.bento-card .card-glow {
  position: absolute; bottom: -5rem; right: -5rem;
  width: 14rem; height: 14rem; border-radius: 50%;
  background: var(--accent-glow); filter: blur(4rem);
  pointer-events: none; opacity: 0;
  transition: opacity 0.5s;
}
.bento-card:hover .card-glow { opacity: 1; }
.bento-card-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--accent-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.bento-card-icon svg { width: 20px; height: 20px; }
.bento-card h3 {
  font-family: 'Outfit', sans-serif;
  margin-top: 1.5rem;
  font-size: 1.375rem; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.2;
}
.bento-card p {
  margin-top: 0.625rem; font-size: 0.9375rem; line-height: 1.65;
  color: var(--text-secondary); max-width: 42ch;
}
.bento-card .card-number {
  position: absolute; top: 1.5rem; right: 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem; color: var(--text-tertiary);
}

/* Dark variant */
.bento-card-dark {
  background: var(--bg-dark); color: var(--text-on-dark);
  border-color: var(--border-on-dark);
}
.bento-card-dark:hover { border-color: var(--border-on-dark-strong); }
.bento-card-dark .bento-card-icon { background: rgba(200,150,62,0.12); color: var(--accent); }
.bento-card-dark h3 { color: var(--text-on-dark); }
.bento-card-dark p { color: var(--text-on-dark-muted); }

/* Gradient variant */
.bento-card-gradient {
  background: linear-gradient(145deg, rgba(200,150,62,0.06), rgba(26,43,74,0.04));
  border-color: rgba(200,150,62,0.12);
}

/* ==============================================
   MARQUEE
   ============================================== */
.marquee-section {
  overflow: hidden; padding: 3rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-dark);
}
.marquee-inner {
  display: flex; gap: 3rem;
  animation: marquee-scroll 45s linear infinite;
  width: max-content;
}
.marquee-item {
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: rgba(240,239,233,0.7);
}
.marquee-divider {
  display: inline-block; margin: 0 1.5rem;
  color: var(--accent); font-weight: 300;
}

/* ==============================================
   DESTINATIONS SECTION (Dark)
   ============================================== */
.destinations-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media(min-width:768px) { .destinations-grid { grid-template-columns: repeat(2, 1fr); } }
.destination-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  border: 1px solid var(--border-on-dark);
  min-height: 400px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.destination-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.4; transition: opacity 0.5s;
}
.destination-card:hover img { opacity: 0.55; }
.destination-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.9) 0%, rgba(12,12,12,0.2) 60%, transparent);
}
.destination-card .card-content {
  position: relative; z-index: 2; padding: 2.5rem;
}
.destination-card .flag { font-size: 1.5rem; margin-bottom: 0.75rem; }
.destination-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem; font-weight: 700; letter-spacing: -0.02em;
  color: #fff;
}
.destination-card p {
  margin-top: 0.5rem; font-size: 0.9375rem;
  color: rgba(255,255,255,0.6); max-width: 34ch;
}
.destination-card .card-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  margin-top: 1.25rem; font-size: 0.875rem; font-weight: 600;
  color: var(--accent); transition: gap 0.2s;
}
.destination-card:hover .card-link { gap: 0.625rem; }

/* ==============================================
   MAP SECTION (Dark)
   ============================================== */
.map-section {
  background: var(--bg-dark); overflow: hidden;
}
.map-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media(min-width:768px) { .map-grid { grid-template-columns: 5fr 7fr; } }
.map-container {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid var(--border-on-dark);
}
.map-container #map { width: 100%; height: 100%; background: #0a0a0a; }
/* Leaflet custom markers */
.glow-marker { background: none !important; border: none !important; }
.marker-dot {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px 2px rgba(200,150,62,0.6);
}
.marker-pulse {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(200,150,62,0.3);
  animation: marker-ping 2s ease-out infinite;
}
.marker-label {
  position: absolute; top: -28px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; padding: 2px 8px;
  border-radius: 4px; font-size: 11px; font-weight: 600;
  background: rgba(200,150,62,0.9); color: #0C0C0C;
  letter-spacing: 0.01em;
}

/* ==============================================
   COURSES & INTAKES
   ============================================== */
.courses-grid {
  display: grid; grid-template-columns: 1fr; gap: 0.75rem;
}
@media(min-width:768px) { .courses-grid { grid-template-columns: repeat(2, 1fr); } }
.course-chip {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; border-radius: var(--radius-md);
  background: var(--surface); border: 1px solid var(--border);
  font-size: 0.9375rem; font-weight: 600;
  transition: all 0.2s ease;
}
.course-chip:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.course-chip .check-icon { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.intake-pills { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1.5rem; }
.intake-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.125rem; border-radius: var(--radius-full);
  background: var(--surface); border: 1px solid var(--border);
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
}
.intake-pill svg { width: 16px; height: 16px; color: var(--accent); }

/* ==============================================
   TESTIMONIALS
   ============================================== */
.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media(min-width:768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
.testimonial-card {
  padding: 2rem; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--border);
  transition: all var(--transition-smooth);
}
.testimonial-card:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow-md); }
@media(min-width:768px) { .testimonial-card { padding: 2.5rem; } }
.testimonial-card .quote-mark {
  width: 28px; height: 28px; color: var(--accent); opacity: 0.6;
}
.testimonial-card .quote-text {
  margin-top: 1.25rem; font-size: 1.0625rem; line-height: 1.55;
  color: var(--text); font-weight: 500;
}
.testimonial-author {
  margin-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  flex-shrink: 0;
}
.author-name { font-size: 0.8125rem; font-weight: 600; }
.author-role { font-size: 0.75rem; color: var(--text-tertiary); }

/* ==============================================
   CTA
   ============================================== */
.cta-section { padding: 6rem 0; }
@media(min-width:768px) { .cta-section { padding: 8rem 0; } }
.cta-box {
  position: relative; overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--bg-dark); padding: 3rem;
  color: var(--text-on-dark);
}
@media(min-width:768px) { .cta-box { padding: 5rem; } }
.cta-box .bg-glow {
  position: absolute; border-radius: 50%; filter: blur(5rem);
  pointer-events: none;
}
.cta-box .glow-1 { top: -6rem; left: -4rem; width: 20rem; height: 20rem; background: rgba(200,150,62,0.18); }
.cta-box .glow-2 { bottom: -8rem; right: -4rem; width: 24rem; height: 24rem; background: rgba(26,43,74,0.35); }
.cta-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: end;
}
@media(min-width:768px) { .cta-inner { grid-template-columns: 7fr 5fr; } }
.cta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent);
}
.cta-title {
  font-family: 'Outfit', sans-serif;
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: #fff;
}
.cta-title .muted { color: rgba(255,255,255,0.35); }
.cta-description {
  margin-top: 1rem; max-width: 42ch;
  font-size: 1rem; line-height: 1.7;
  color: var(--text-on-dark-muted);
}
.cta-actions { display: flex; flex-direction: column; gap: 0.75rem; }
@media(min-width:768px) { .cta-actions { align-items: flex-end; } }
.btn-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.75rem; border-radius: var(--radius-full);
  background: var(--accent); color: var(--bg-dark);
  font-size: 0.9375rem; font-weight: 700;
  transition: all 0.2s;
}
.btn-cta:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-cta .arrow { transition: transform 0.2s; }
.btn-cta:hover .arrow { transform: translate(3px, -3px); }
.btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem; border-radius: var(--radius-full);
  border: 1px solid var(--border-on-dark-strong);
  font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.btn-cta-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.25); }

/* ==============================================
   PAGE HERO (Subpages)
   ============================================== */
.page-hero {
  position: relative; overflow: hidden;
  padding-top: 7rem; padding-bottom: 2rem;
}
@media(min-width:768px) { .page-hero { padding-top: 8rem; padding-bottom: 3rem; min-height: 70dvh; display: flex; align-items: center; } }
.page-hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
@media(min-width:1024px) { .page-hero-grid { grid-template-columns: 7fr 5fr; } }
.page-hero-image {
  display: none; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
}
@media(min-width:1024px) { .page-hero-image { display: block; } }
.page-hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero-image .image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,43,74,0.15), transparent);
}

/* ==============================================
   CONTACT
   ============================================== */
.contact-cards {
  display: grid; grid-template-columns: 1fr; gap: 0.75rem;
}
@media(min-width:768px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
.contact-card {
  padding: 1.5rem; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
}
.contact-card.span-2 { grid-column: 1 / -1; }
.contact-card .card-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--accent-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.contact-card .card-icon svg { width: 18px; height: 18px; }
.contact-card .card-label {
  margin-top: 0.875rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-tertiary);
}
.contact-card .card-value {
  margin-top: 0.25rem; font-size: 0.9375rem; font-weight: 600;
}

/* Form */
.contact-form-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media(min-width:768px) { .contact-form-grid { grid-template-columns: 4fr 8fr; } }
.form-card {
  padding: 2.5rem; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--border);
}
@media(min-width:768px) { .form-card { padding: 3rem; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media(min-width:768px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label {
  font-size: 0.6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-tertiary);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong); background: var(--bg);
  font-size: 0.9375rem; color: var(--text);
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-tertiary); }
.form-status { font-size: 0.8125rem; margin-top: 0.5rem; }
.form-status.success { color: #059669; }
.form-status.error { color: #DC2626; }

/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  background: var(--bg-dark); color: var(--text-on-dark);
  margin-top: 0;
}
.site-footer .header-logo span { color: #fff; }
.footer-top {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--border-on-dark);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media(min-width:768px) { .footer-grid { grid-template-columns: 5fr 2fr 2fr 2fr 1fr; } }
.footer-brand-text {
  margin-top: 1rem; max-width: 32ch;
  font-size: 0.9375rem; line-height: 1.65;
  color: var(--text-on-dark-muted);
}
.footer-socials {
  margin-top: 1.25rem; display: flex; gap: 0.5rem;
}
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-full);
  border: 1px solid var(--border-on-dark);
  color: var(--text-on-dark-muted);
  transition: all 0.2s;
}
.footer-social-link:hover { background: var(--accent); color: var(--bg-dark); border-color: var(--accent); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-on-dark-muted);
}
.footer-col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding: 1.5rem 0; display: flex;
  flex-direction: column; gap: 0.5rem;
  align-items: flex-start;
}
@media(min-width:768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem; color: var(--text-on-dark-muted);
}

/* ==============================================
   WHATSAPP FLOAT
   ============================================== */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: all 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.45); }
.whatsapp-float svg { width: 26px; height: 26px; }

/* ==============================================
   IMAGE HOLDERS (placeholder system)
   ============================================== */
.img-holder {
  position: relative; overflow: hidden; background: var(--bg-alt);
  border-radius: var(--radius-xl);
}
.img-holder img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}
.img-holder:hover img { transform: scale(1.03); }

/* ==============================================
   ANIMATIONS
   ============================================== */
@keyframes pulse-dot {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marker-ping {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* GSAP reveal targets */
.gsap-reveal { opacity: 0; transform: translateY(28px); }

/* Hero entrance */
.hero-enter { opacity: 0; transform: translateY(16px); }
.hero-enter.active { animation: fade-up 0.7s var(--transition-spring) forwards; }
.hero-enter-d1 { animation-delay: 0.05s; }
.hero-enter-d2 { animation-delay: 0.12s; }
.hero-enter-d3 { animation-delay: 0.2s; }
.hero-enter-d4 { animation-delay: 0.3s; }

/* ==============================================
   UTILITY
   ============================================== */
.text-balance { text-wrap: balance; }
.hidden-mobile { display: none !important; }
@media(min-width:768px) { .hidden-mobile { display: inline-flex !important; } }
.show-mobile { display: flex !important; }
@media(min-width:768px) { .show-mobile { display: none !important; } }

/* ==============================================
   MOBILE RESPONSIVENESS OVERRIDES
   ============================================== */
@media(max-width:767px) {
  /* Hero */
  .hero { min-height: auto; padding-top: 5.5rem; padding-bottom: 2rem; }
  .hero-title { font-size: 2.5rem !important; }
  .hero-description { font-size: 0.9375rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { justify-content: center; width: 100%; }
  .hero-actions .btn-ghost { justify-content: center; }

  /* Stats */
  .stat-item { padding: 1.25rem 1rem; }
  .stat-value { font-size: 1.5rem !important; }
  .stat-label { font-size: 0.6875rem; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  /* Sections */
  .section { padding: 4rem 0; }
  .section-title { font-size: 1.75rem !important; }

  /* Bento grids — stack on mobile */
  .bento-grid { grid-template-columns: 1fr !important; }
  .bento-card { padding: 1.5rem !important; }
  .bento-card h3 { font-size: 1.125rem !important; }
  .bento-card p { font-size: 0.875rem; }

  /* Destinations */
  .destination-card { min-height: 280px; }
  .destination-card .card-content { padding: 1.5rem; }
  .destination-card h3 { font-size: 1.375rem; }

  /* Marquee */
  .marquee-section { padding: 2rem 0; }
  .marquee-item { font-size: 1.75rem !important; }

  /* Testimonials */
  .testimonial-card { padding: 1.5rem !important; }
  .testimonial-card .quote-text { font-size: 0.9375rem; }

  /* CTA */
  .cta-box { padding: 2rem !important; border-radius: var(--radius-xl) !important; }
  .cta-actions { align-items: stretch !important; }
  .btn-cta, .btn-cta-ghost { justify-content: center; width: 100%; }

  /* Map */
  .map-grid { grid-template-columns: 1fr !important; }
  .map-container { aspect-ratio: 16/10; min-height: 250px; }

  /* Courses */
  .courses-grid { grid-template-columns: 1fr !important; }
  .course-chip { padding: 0.75rem 1rem; font-size: 0.875rem; }

  /* Contact */
  .contact-form-grid { grid-template-columns: 1fr !important; }
  .form-card { padding: 1.5rem !important; }
  .form-row { grid-template-columns: 1fr !important; }

  /* Footer */
  .footer-top { padding: 3rem 0 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { padding: 1.25rem 0; }

  /* Page hero */
  .page-hero { min-height: auto !important; }
  .page-hero-grid { gap: 1.5rem; }

  /* Globe */
  .hero-visual { height: 280px; margin-top: 1rem; }
}

/* Tablet adjustments */
@media(min-width:768px) and (max-width:1023px) {
  .bento-grid.cols-7-5,
  .bento-grid.cols-5-7 { grid-template-columns: 1fr 1fr !important; }
  .bento-grid.cols-8-4,
  .bento-grid.cols-4-8 { grid-template-columns: 1fr 1fr !important; }
  .map-grid { grid-template-columns: 1fr !important; }
  .map-container { min-height: 350px; }
  .hero-visual { height: 400px; }
}
