/* ═══════════════════════════════════════════════════════════
   FRONTGATE GLOBAL HOLDINGS — Design 4 Inner Pages
   Palette: Cream #F7F3EC | Navy #0D1B3E | Steel Blue #4A72B8 | Gold #C9A84C
   Fonts: Cormorant Garamond (display) + DM Sans (body/labels)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B3E;
  --blue: #4A72B8;
  --gold: #C9A84C;
  --cream: #F7F3EC;
  --cream-dark: #EDE8DF;
  --white: #ffffff;
  --text-body: rgba(13,27,62,0.7);
  --text-dim: rgba(13,27,62,0.5);
}

html { 
  scroll-behavior: smooth; 
  font-size: 18px; 
}
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid rgba(74,114,184,0.2);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.transparent {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 80px;
  gap: 2rem;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 3rem; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.75rem;
  color: var(--blue);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }

.nav-back {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  transition: color 0.2s;
  margin-right: auto;
}
.nav-back:hover { color: var(--navy); }

.btn-nav-blue {
  padding: 0.55rem 1.5rem;
  background: var(--blue);
  color: var(--cream) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-nav-blue:hover { opacity: 0.88; }

.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(13,27,62,0.2);
  color: var(--navy);
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  margin-left: auto;
}

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
  display: none;
}
.mobile-overlay.show { display: block; }
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100vh;
  background: var(--cream);
  z-index: 2000;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: right 0.3s ease;
  border-left: 1px solid rgba(74,114,184,0.2);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: 1px solid rgba(13,27,62,0.2);
  color: var(--navy);
  width: 36px; height: 36px;
  cursor: pointer;
  margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu a {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--navy);
  border-bottom: 1px solid rgba(13,27,62,0.08);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--blue); }

/* ── HERO ────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-hero > .container {
  width: 100%;
  padding-left: 0;
  padding-right: 2rem;
}
@media (min-width: 1024px) {
  .page-hero > .container {
    padding-right: 3rem;
  }
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
}
.page-hero-stripe {
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--blue);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
  max-width: 640px;
  width: min(100%, 640px);
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.4);
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--blue); }
.hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero-label-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74,114,184,0.2);
}
.hero-label-icon svg { width: 16px; height: 16px; color: var(--blue); }
.hero-label-text {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.06;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(247,243,236,0.5);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(247,243,236,0.6);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--blue);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-blue:hover { opacity: 0.88; }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(247,243,236,0.4);
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-outline-white:hover { border-color: rgba(247,243,236,0.8); }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(247,243,236,0.4);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.imc-badge {
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(247,243,236,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.35);
  text-align: right;
}
.imc-badge-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.imc-badge-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
}
.imc-badge-sub {
  font-size: 0.85rem;
  color: rgba(247,243,236,0.5);
}

/* ── SECTION BASES ───────────────────────────────────────── */
.section-cream { background: var(--cream); padding: 6rem 0; }
.section-white { background: var(--white); padding: 6rem 0; }
.section-navy { background: var(--navy); padding: 6rem 0; }
.section-navy-mid { background: #0f2147; padding: 6rem 0; }

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.section-eyebrow.gold { color: var(--gold); }

h2.display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
h2.display em {
  font-style: italic;
  color: var(--blue);
}
h2.display.light { color: var(--cream); }
h2.display.light em { color: var(--blue); }
h2.display.gold-em em { color: var(--gold); }

p.body {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
p.body.light { color: rgba(247,243,236,0.6); }

/* ── TWO-COL LAYOUT ──────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 3rem; } }

.img-block {
  position: relative;
}
.img-block img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.img-block-corner {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  width: 7rem;
  height: 7rem;
  border: 2px solid var(--gold);
  z-index: -1;
}

/* ── FEATURE LIST ────────────────────────────────────────── */
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(13,27,62,0.08);
}
.feature-list li:last-child { border-bottom: none; }
.feature-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74,114,184,0.1);
  flex-shrink: 0;
}
.feature-icon svg { width: 17px; height: 17px; color: var(--blue); }
.feature-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.feature-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── BULLET LIST ─────────────────────────────────────────── */
.bullet-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  margin: 1.5rem 0;
}
.bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-body);
}
.bullet-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ── FULL-BLEED SECTION ──────────────────────────────────── */
.full-bleed {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.full-bleed-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.full-bleed-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,27,62,0.88) 0%, rgba(13,27,62,0.45) 55%, rgba(0,0,0,0.05) 100%);
}
.full-bleed-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 5rem 0;
}
.full-bleed-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.full-bleed-content h2 em {
  font-style: italic;
  color: var(--gold);
}

/* ── ELIGIBILITY QUIZ ────────────────────────────────────── */
.quiz-section {
  background: var(--navy);
  padding: 6rem 0;
}
.quiz-header {
  text-align: center;
  margin-bottom: 3rem;
}
.quiz-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.quiz-header p {
  font-size: 0.88rem;
  color: rgba(247,243,236,0.5);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.quiz-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}
.quiz-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.quiz-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(247,243,236,0.1);
  color: rgba(247,243,236,0.4);
  border: 1px solid rgba(247,243,236,0.15);
  transition: background 0.2s, color 0.2s;
}
.quiz-step.active .quiz-step-num {
  background: var(--blue);
  color: var(--cream);
  border-color: var(--blue);
}
.quiz-step-label {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.3);
}
.quiz-step.active .quiz-step-label { color: rgba(247,243,236,0.7); }
.quiz-connector {
  width: 60px; height: 1px;
  background: rgba(247,243,236,0.1);
  margin-bottom: 1.2rem;
}
.quiz-card {
  background: var(--cream);
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
}
.quiz-q-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.quiz-q-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.quiz-q-sub {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.quiz-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.quiz-option {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(13,27,62,0.15);
  background: var(--white);
  font-size: 0.82rem;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
}
.quiz-option:hover { border-color: var(--blue); background: rgba(74,114,184,0.04); }
.quiz-option.selected { border-color: var(--blue); background: rgba(74,114,184,0.08); color: var(--blue); }

/* ── PROGRAMMES GRID ─────────────────────────────────────── */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .programmes-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .programmes-grid { grid-template-columns: 1fr; } }

.programme-card {
  padding: 2rem;
  border: 1px solid rgba(13,27,62,0.1);
  background: var(--white);
  transition: border-color 0.2s;
}
.programme-card.featured {
  background: var(--navy);
  border-color: transparent;
}
.programme-card:hover { border-color: var(--blue); }
.programme-card.featured:hover { border-color: var(--blue); }
.prog-flag {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.prog-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.prog-country {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.programme-card.featured .prog-country { color: var(--cream); }
.prog-min {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.programme-card.featured .prog-min { color: rgba(247,243,236,0.4); }
.prog-desc {
  font-size: 0.78rem;
  color: var(--text-body);
  line-height: 1.6;
}
.programme-card.featured .prog-desc { color: rgba(247,243,236,0.6); }

/* ── PROCESS STEPS ───────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

.process-card {
  padding: 2rem;
  border: 1px solid rgba(247,243,236,0.08);
  transition: border-color 0.2s;
  cursor: pointer;
}
.process-card:hover, .process-card.active { border-color: var(--blue); }
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(247,243,236,0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-card.active .process-num { color: var(--blue); }
.process-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.process-desc {
  font-size: 0.78rem;
  color: rgba(247,243,236,0.45);
  line-height: 1.6;
}
.process-card.active .process-desc { color: rgba(247,243,236,0.7); }

/* ── CONSULTATION SPLIT ──────────────────────────────────── */
.consult-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
@media (max-width: 900px) { .consult-split { grid-template-columns: 1fr; } }

.consult-img {
  position: relative;
  min-height: 300px;
}
.consult-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.consult-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(13,27,62,0.25) 100%);
}
.consult-form {
  background: var(--navy);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.consult-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.consult-form h3 em {
  font-style: italic;
  color: var(--gold);
}
.consult-form p {
  font-size: 0.82rem;
  color: rgba(247,243,236,0.5);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.form-row.single { grid-template-columns: 1fr; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(247,243,236,0.07);
  border: 1px solid rgba(247,243,236,0.1);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: rgba(247,243,236,0.3); }
select { cursor: pointer; }
select option { background: var(--navy); color: var(--cream); }
input:focus, select:focus, textarea:focus { border-color: rgba(74,114,184,0.5); }
.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 0.75rem;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.88; }
.consult-contact-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.consult-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(247,243,236,0.5);
}
.consult-contact-item svg { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }
.consult-contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.3);
  min-width: 60px;
}
.consult-contact-val {
  font-size: 0.95rem;
  color: rgba(247,243,236,0.7);
}

/* ── FOUR SPECIALISATIONS ────────────────────────────────── */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 700px) { .spec-grid { grid-template-columns: 1fr; } }

.spec-card {
  padding: 2.5rem;
  border: 1px solid rgba(247,243,236,0.1);
  transition: border-color 0.2s;
}
.spec-card:hover { border-color: rgba(74,114,184,0.4); }
.spec-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74,114,184,0.15);
  margin-bottom: 1.25rem;
}
.spec-icon svg { width: 16px; height: 16px; color: var(--blue); }
.spec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.spec-desc {
  font-size: 0.95rem;
  color: rgba(247,243,236,0.5);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.spec-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.spec-items li {
  font-size: 0.9rem;
  color: rgba(247,243,236,0.4);
  padding-left: 1rem;
  position: relative;
}
.spec-items li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* ── PHILOSOPHY SECTION ──────────────────────────────────── */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) { .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; } }

.stats-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-tile {
  background: var(--navy);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
}
.stat-tile-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-tile-label {
  font-size: 0.85rem;
  color: rgba(247,243,236,0.4);
  letter-spacing: 0.05em;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-body);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13,27,62,0.1);
}
.testimonial-cite {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
  font-style: normal;
}

/* ── SECTORS GRID ────────────────────────────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 900px) { .sectors-grid { grid-template-columns: repeat(4, 1fr); } }

.sector-card {
  background: var(--navy);
  padding: 2rem 1.75rem;
  position: relative;
}
.sector-card::before {
  content: '';
  position: absolute;
  top: 1.25rem; left: 1.75rem;
  width: 1.5rem; height: 2px;
  background: var(--blue);
}
.sector-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.sector-desc {
  font-size: 0.9rem;
  color: rgba(247,243,236,0.4);
  line-height: 1.6;
}

/* ── SERVICES GRID ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  padding: 2.5rem;
  border: 1px solid rgba(13,27,62,0.1);
  background: var(--white);
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--blue); }
.service-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74,114,184,0.1);
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 20px; height: 20px; color: var(--blue); }
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.service-items li {
  font-size: 0.9rem;
  color: var(--text-dim);
  padding-left: 1rem;
  position: relative;
}
.service-items li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* ── EVENTS CONTACT FORM ─────────────────────────────────── */
.events-contact {
  background: var(--navy);
  padding: 6rem 0;
  text-align: center;
}
.events-contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}
.events-contact p {
  font-size: 1rem;
  color: rgba(247,243,236,0.5);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.events-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #060e1f;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(74,114,184,0.15);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(247,243,236,0.35);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.25rem;
}
.footer-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-badge {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(201,168,76,0.3);
  color: rgba(201,168,76,0.7);
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(247,243,236,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(247,243,236,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(247,243,236,0.25);
}

/* ── FADE ANIMATIONS ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; align-items: center; }
  .page-hero-content { padding: 7rem 0 4rem; }
  .imc-badge { display: none; }
  .hero-stats { gap: 1.5rem; }
  .quiz-options { grid-template-columns: 1fr 1fr; }
  .bullet-list { grid-template-columns: 1fr; }
  .consult-form { padding: 2.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
