/* ═══════════════════════════════════════════════════════════
   EMS ADMISSIONS – MAIN STYLESHEET
   Brand: Crimson Red (#C0392B) + Navy (#0D1B2A) + White
   Fonts: Playfair Display (headings) + DM Sans (body)
═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --red:         #C0392B;
  --red-dark:    #96281B;
  --red-light:   #E74C3C;
  --red-pale:    #FDECEA;
  --navy:        #0D1B2A;
  --navy-mid:    #1B2E44;
  --slate:       #4A5F72;
  --silver:      #8FA3B1;
  --smoke:       #F7F8F9;
  --border:      #E8ECEF;
  --white:       #FFFFFF;
  --gold:        #C9962A;
  --gold-light:  #F5D98B;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   24px;
  --shadow-xs:   0 1px 4px rgba(13,27,42,.07);
  --shadow-sm:   0 2px 12px rgba(13,27,42,.09);
  --shadow-md:   0 8px 32px rgba(13,27,42,.12);
  --shadow-lg:   0 20px 60px rgba(13,27,42,.16);
  --max-w:       1180px;
  --header-h:    76px;
  --transition:  .22s ease;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--red); color: var(--white); }

/* ─── CONTAINER ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p { line-height: 1.75; }

/* ─── UTILITY CLASSES ─── */
.section-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); background: var(--red-pale);
  padding: .32rem .9rem; border-radius: 40px;
  margin-bottom: .9rem;
}
.section-tag--white { color: var(--white); background: rgba(255,255,255,.15); }
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { font-size: 1.05rem; color: var(--slate); max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-header p { margin-left: auto; margin-right: auto; }
section { padding: 96px 0; }
.bg-smoke { background: var(--smoke); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-red { background: var(--red); color: var(--white); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--red); color: var(--white);
  padding: .85rem 1.8rem; border-radius: 40px;
  font-weight: 600; font-size: .95rem;
  border: 2px solid var(--red);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(192,57,43,.3);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,.38); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--navy);
  padding: .83rem 1.8rem; border-radius: 40px;
  font-weight: 600; font-size: .95rem;
  border: 2px solid var(--navy);
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline--white { color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline--white:hover { background: var(--white); color: var(--navy); }
.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--white);
  padding: .9rem 2rem; border-radius: 40px;
  font-weight: 700; font-size: 1rem;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(201,150,42,.4);
  transition: all var(--transition);
}
.btn-gold:hover { background: #b8841a; border-color: #b8841a; transform: translateY(-2px); }
.btn-full { display: flex; width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

/* Logo */
.site-logo { flex-shrink: 0; }
.logo-lockup {
  display: flex; align-items: center; gap: 8px;
}
.logo-text-study {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 900;
  color: var(--red); letter-spacing: .05em;
}
.logo-cap { width: 38px; height: auto; flex-shrink: 0; }
.logo-text-mark {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); letter-spacing: .08em;
}
.logo-lockup--white .logo-text-study,
.logo-lockup--white .logo-text-mark { color: var(--white); }

/* Desktop Nav */
.primary-nav { display: flex; align-items: center; gap: 1.8rem; }
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-menu li a {
  font-size: .88rem; font-weight: 500; color: var(--navy);
  padding: .45rem .75rem; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a { color: var(--red); background: var(--red-pale); }
.nav-cta-btn {
  background: var(--red); color: var(--white);
  padding: .6rem 1.3rem; border-radius: 40px;
  font-size: .85rem; font-weight: 600;
  white-space: nowrap; flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 3px 12px rgba(192,57,43,.3);
}
.nav-cta-btn:hover { background: var(--red-dark); transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem;
  z-index: 300;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0; top: var(--header-h);
  background: var(--white); z-index: 199;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-nav-inner { padding: 2rem 24px; }
.mobile-nav-menu li { border-bottom: 1px solid var(--border); }
.mobile-nav-menu li a {
  display: block; padding: 1rem 0;
  font-size: 1.1rem; font-weight: 600; color: var(--navy);
  transition: color var(--transition);
}
.mobile-nav-menu li a:hover { color: var(--red); }
.mobile-nav-menu li.current-menu-item a { color: var(--red); }
.mobile-nav-inner .btn-primary { margin-top: 2rem; }

/* ═══════════════════════════════════════════════
   PAGE HERO (shared)
═══════════════════════════════════════════════ */
.page-hero-banner {
  padding: calc(var(--header-h) + 72px) 0 72px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(192,57,43,.25) 0%, transparent 70%);
}
.page-hero-banner .container { position: relative; z-index: 1; }
.page-hero-banner h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-banner p { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ═══════════════════════════════════════════════
   HOME PAGE HERO
═══════════════════════════════════════════════ */
.home-hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  background: linear-gradient(145deg, var(--smoke) 0%, #eef1f3 100%);
  position: relative; overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,.08) 0%, transparent 70%);
  pointer-events: none;
}
.home-hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,27,42,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 80px 0;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1.5px solid #E8C8C5;
  color: var(--red); font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .38rem 1rem; border-radius: 40px;
  margin-bottom: 1.4rem; box-shadow: var(--shadow-xs);
}
.hero-badge::before { content: '🎓'; }
.hero-title { color: var(--navy); margin-bottom: 1.2rem; }
.hero-title em { color: var(--red); font-style: normal; display: block; }
.hero-sub { font-size: 1.05rem; color: var(--slate); max-width: 500px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat { }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900; color: var(--red); line-height: 1;
}
.hero-stat-label { font-size: .8rem; color: var(--slate); margin-top: .2rem; font-weight: 500; }
.hero-stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* Hero cards panel */
.hero-visual { display: flex; flex-direction: column; gap: 16px; position: relative; }
.hero-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card {
  border-radius: var(--radius-lg); padding: 1.8rem;
  position: relative; overflow: hidden;
}
.hero-card--red { background: var(--red); color: var(--white); }
.hero-card--navy { background: var(--navy); color: var(--white); }
.hero-card--white { background: var(--white); box-shadow: var(--shadow-md); color: var(--navy); }
.hero-card--pale { background: var(--red-pale); color: var(--navy); }
.hero-card-emoji { font-size: 2.2rem; margin-bottom: .75rem; display: block; }
.hero-card-label { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.hero-card-sub { font-size: .8rem; opacity: .75; line-height: 1.4; }
.hero-card-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1; }
.hero-float-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--white);
  font-size: .7rem; font-weight: 700;
  padding: .3rem .65rem; border-radius: 20px;
}

/* Trust bar */
.trust-bar {
  background: var(--navy); padding: 1.1rem 0;
}
.trust-bar-inner {
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; justify-content: center;
}
.trust-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); white-space: nowrap; }
.trust-schools { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-school {
  font-family: var(--font-display); font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.6); white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   DESTINATIONS GRID
═══════════════════════════════════════════════ */
.dest-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px;
}
.dest-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-xs);
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none; color: inherit;
  display: block;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--red); }
.dest-flag { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; background: var(--smoke); }
.dest-info { padding: 1rem 1.2rem 1.4rem; }
.dest-country { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.dest-detail { font-size: .8rem; color: var(--slate); margin-top: .25rem; line-height: 1.5; }
.dest-pill {
  display: inline-block; margin-top: .6rem;
  background: var(--red-pale); color: var(--red);
  font-size: .7rem; font-weight: 700; padding: .2rem .65rem; border-radius: 20px;
}

/* ═══════════════════════════════════════════════
   PROCESS / STEPS
═══════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.step-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); border-color: var(--red); transform: translateY(-4px); }
.step-number {
  font-family: var(--font-display); font-size: 4rem; font-weight: 900;
  color: var(--red-pale); line-height: 1; margin-bottom: .5rem;
}
.step-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.step-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.step-desc { font-size: .88rem; color: var(--slate); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.service-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2.2rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.service-card:hover { background: rgba(255,255,255,.1); border-color: rgba(192,57,43,.5); transform: translateY(-4px); }
.service-icon { font-size: 2.2rem; margin-bottom: 1.1rem; display: block; }
.service-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: .65rem; }
.service-desc { font-size: .88rem; color: rgba(255,255,255,.62); line-height: 1.75; }
.service-more {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1.1rem; font-size: .85rem; font-weight: 600;
  color: var(--gold-light); text-decoration: none;
  transition: color var(--transition);
}
.service-more:hover { color: var(--gold); }

/* Light services variant */
.service-card--light {
  background: var(--white); border: 1.5px solid var(--border); color: var(--navy);
}
.service-card--light:hover { border-color: var(--red); }
.service-card--light .service-title { color: var(--navy); }
.service-card--light .service-desc { color: var(--slate); }
.service-card--light .service-more { color: var(--red); }
.service-card--light .service-more:hover { color: var(--red-dark); }
.service-icon-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red-pale); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.2rem;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testi-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: .75rem; letter-spacing: .1em; }
.testi-quote-mark { font-family: Georgia; font-size: 4rem; color: var(--red-pale); line-height: .7; margin-bottom: .4rem; display: block; }
.testi-text { font-size: .92rem; color: #3D4F5E; line-height: 1.75; margin-bottom: 1.4rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.testi-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testi-meta { font-size: .78rem; color: var(--slate); margin-top: .15rem; }

/* ═══════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: .9rem; }
.cta-band p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2.2rem; }

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.4rem 0; text-align: left; cursor: pointer;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--red-pale); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 300; transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red); color: var(--white); }
.faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer-inner { padding-bottom: 1.4rem; font-size: .92rem; color: var(--slate); line-height: 1.8; }

/* ═══════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.contact-info p { color: var(--slate); font-size: .95rem; margin-bottom: 2rem; }
.contact-detail-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--smoke); border-radius: var(--radius); padding: 1rem;
}
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-body strong { display: block; font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: .15rem; }
.contact-detail-body span { font-size: .88rem; color: var(--slate); }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.8rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.contact-form-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: .8rem 1rem;
  font-family: var(--font-body); font-size: .9rem; color: var(--navy); background: var(--white);
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5F72' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem; padding-right: 2.5rem; }
.form-submit {
  width: 100%; background: var(--red); color: var(--white);
  border: none; padding: 1.05rem; border-radius: 40px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(192,57,43,.3);
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(192,57,43,.38); }
.form-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.form-notice { font-size: .78rem; color: var(--silver); text-align: center; margin-top: .85rem; }
.form-message { padding: .9rem 1rem; border-radius: var(--radius-sm); margin-top: 1rem; font-size: .9rem; font-weight: 500; display: none; }
.form-message.success { background: #d4edda; color: #155724; display: block; }
.form-message.error   { background: #f8d7da; color: #721c24; display: block; }

/* ═══════════════════════════════════════════════
   WHO WE ARE PAGE
═══════════════════════════════════════════════ */
.about-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-stack { position: relative; }
.about-main-img {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
.about-main-img-placeholder {
  text-align: center; color: var(--white); padding: 2rem;
}
.about-main-img-placeholder .emoji { font-size: 5rem; display: block; margin-bottom: 1rem; }
.about-main-img-placeholder p { font-family: var(--font-display); font-size: 1.2rem; opacity: .9; }
.about-float-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--white); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--red);
  min-width: 180px;
}
.about-float-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--red); line-height: 1; }
.about-float-label { font-size: .82rem; color: var(--slate); margin-top: .2rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.value-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.value-icon { font-size: 2rem; margin-bottom: .9rem; }
.value-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.value-desc { font-size: .88rem; color: var(--slate); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.team-card { text-align: center; }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--white);
}
.team-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.team-role { font-size: .85rem; color: var(--red); font-weight: 600; margin-top: .25rem; }
.team-bio { font-size: .84rem; color: var(--slate); margin-top: .5rem; line-height: 1.65; }

/* ═══════════════════════════════════════════════
   DESTINATIONS PAGE
═══════════════════════════════════════════════ */
.dest-full-card {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center;
  padding: 80px 0; border-bottom: 1.5px solid var(--border);
}
.dest-full-card:last-child { border-bottom: none; }
.dest-full-card.reverse { direction: rtl; }
.dest-full-card.reverse > * { direction: ltr; }
.dest-country-visual {
  border-radius: var(--radius-lg); padding: 3rem 2rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.dest-country-flag { font-size: 5rem; }
.dest-country-name { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--white); }
.dest-country-tagline { font-size: .95rem; color: rgba(255,255,255,.75); }
.dest-detail-h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.dest-detail-p { color: var(--slate); font-size: .95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.dest-detail-list { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.dest-detail-list li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: var(--navy);
}
.dest-detail-list li::before { content: '✓'; color: var(--red); font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.dest-pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.dest-pill-item {
  background: var(--red-pale); color: var(--red);
  font-size: .78rem; font-weight: 700; padding: .3rem .85rem; border-radius: 20px;
}

/* ═══════════════════════════════════════════════
   CONSULTATION PAGE
═══════════════════════════════════════════════ */
.consultation-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.consult-info { position: sticky; top: calc(var(--header-h) + 32px); }
.consult-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1.5px solid var(--border); margin-bottom: 1.5rem;
}
.consult-card h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: .75rem; }
.consult-list { display: flex; flex-direction: column; gap: .6rem; }
.consult-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .88rem; color: var(--slate); }
.consult-list li::before { content: '→'; color: var(--red); font-weight: 800; flex-shrink: 0; margin-top: .05rem; }
.package-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-bottom: 3.5rem; }
.package-card {
  border-radius: var(--radius-lg); padding: 2rem; border: 2px solid var(--border);
  transition: all var(--transition); position: relative; background: var(--white);
}
.package-card:hover, .package-card.featured { border-color: var(--red); box-shadow: var(--shadow-md); }
.package-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  font-size: .72rem; font-weight: 700; padding: .28rem .9rem; border-radius: 20px; white-space: nowrap;
}
.package-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.package-price { font-size: .85rem; color: var(--slate); margin-bottom: 1.2rem; }
.package-price strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--red); font-weight: 900; }
.package-features { display: flex; flex-direction: column; gap: .55rem; }
.package-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: var(--slate); }
.package-features li::before { content: '✓'; color: var(--red); font-weight: 800; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════ */
.stats-band { background: var(--red); padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-label { font-size: .88rem; color: rgba(255,255,255,.75); margin-top: .4rem; font-weight: 500; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer-top { background: var(--navy); padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 280px; margin-top: .9rem; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-btn svg { width: 15px; height: 15px; }
.social-btn:hover { border-color: var(--red); color: var(--white); background: var(--red); }
.footer-col h4 { font-size: .8rem; font-weight: 700; color: var(--white); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a { font-size: .87rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-list li { display: flex; align-items: center; gap: .75rem; font-size: .87rem; color: rgba(255,255,255,.5); }
.footer-icon { width: 16px; height: 16px; flex-shrink: 0; }
.footer-bottom { background: rgba(0,0,0,.25); padding: 1.2rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-domain { font-family: var(--font-display); font-weight: 700; }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp .7s ease both; }
.delay-100 { animation-delay: .1s; }
.delay-200 { animation-delay: .2s; }
.delay-300 { animation-delay: .3s; }
.delay-400 { animation-delay: .4s; }
.delay-500 { animation-delay: .5s; }

[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .about-two-col { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .consultation-grid { grid-template-columns: 1fr; }
  .consult-info { position: static; }
  .dest-full-card { grid-template-columns: 1fr; gap: 40px; }
  .dest-full-card.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  section { padding: 64px 0; }
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav-overlay { display: block; }
  .hero-card-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-schools { gap: 1.5rem; }
  .trust-bar-inner { gap: 1.2rem; }
  .contact-form-card { padding: 1.8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-float-card { right: 0; bottom: -20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-stats { gap: 1.5rem; }
  .hero-card-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-num { font-size: 2.2rem; }
  .cta-band { padding: 64px 0; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ─── WORDPRESS SPECIFIC ─── */
.wp-caption { max-width: 100%; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }

/* ─── PRINT ─── */
@media print {
  .site-header, .site-footer, .nav-toggle, .btn-primary { display: none; }
  body { font-size: 12pt; }
}
