/* ============================================================
   ZOE LIFE LEGACY ACADEMY — Main Stylesheet
   Colors: Navy #1B3A6B | Gold #B8922A | Cream #F5ECD7
   Fonts: Playfair Display (headings) | Inter (body)
   ============================================================ */

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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1B3A6B;
  --navy-light:  #2C4E8A;
  --navy-dark:   #0F2347;
  --gold:        #B8922A;
  --gold-light:  #D4A843;
  --gold-pale:   #F0D98A;
  --cream:       #F5ECD7;
  --cream-dark:  #EDE0C4;
  --white:       #FFFFFF;
  --charcoal:    #1A1A2E;
  --grey:        #6B7280;
  --grey-light:  #F3F4F6;
  --success:     #2D7A4F;
  --error:       #C0392B;
  --wa-green:    #25D366;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(27,58,107,0.10);
  --shadow-lg: 0 8px 48px rgba(27,58,107,0.18);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--navy-dark);
  color: var(--white);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1000;
}
.announcement-bar .bar-cta {
  background: var(--gold);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--transition);
  white-space: nowrap;
}
.announcement-bar .bar-cta:hover { background: var(--gold-light); }
.announcement-bar .bar-dismiss {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.announcement-bar .bar-dismiss:hover { opacity: 1; }
.bar-icon { color: var(--gold-light); font-size: 1rem; }

/* ── Navbar ── */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-brand-motto {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a, .nav-links .nav-dropdown > span {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links .nav-dropdown > span:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-links a.active { color: var(--gold-light); }

.nav-dropdown { position: relative; }
.nav-dropdown > span { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > span::after { content: '▾'; font-size: 0.7rem; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition);
  overflow: hidden;
  border-top: 3px solid var(--gold);
}
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  color: var(--charcoal);
  font-size: 0.875rem;
  transition: all var(--transition);
  border-bottom: 1px solid var(--grey-light);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--cream); color: var(--navy); }
.dropdown-menu a .dm-badge {
  font-size: 0.65rem;
  background: var(--gold);
  color: var(--white);
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 600;
  margin-left: auto;
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Language Toggle */
.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 2px;
  gap: 2px;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 16px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--white);
}

.nav-wa-btn {
  background: var(--wa-green);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-wa-btn:hover { background: #1fad56; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  z-index: 1100;
  flex-direction: column;
  padding: 32px 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.mobile-nav-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-links a:hover { color: var(--gold-light); }
.mobile-sub { padding-left: 16px; }
.mobile-sub a { font-size: 0.95rem; border-bottom-color: rgba(255,255,255,0.05); }
.mobile-nav-bottom { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.mobile-lang { display: flex; gap: 12px; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,35,71,0.97) 0%, rgba(27,58,107,0.88) 50%, rgba(44,78,138,0.75) 100%);
}
/* Decorative gold lines */
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-decor::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(184,146,42,0.15);
  border-radius: 50%;
}
.hero-decor::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: 5%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(184,146,42,0.1);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-left { display: flex; flex-direction: column; gap: 28px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hero-title .gold-word { color: var(--gold-light); }

.hero-motto {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,146,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Right — Crest Card */
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-crest-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,146,42,0.25);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 340px;
}
.hero-crest-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.hero-crest-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.hero-crest-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-crest-level {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.hero-level-pill {
  background: rgba(184,146,42,0.15);
  border: 1px solid rgba(184,146,42,0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-level-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Scroll indicator */
/* scroll hint removed */

/* ── Section Base ── */
.section { padding: 96px 24px; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); }
.section-navy-dark { background: var(--navy-dark); }

.container { max-width: 1280px; margin: 0 auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-title.white { color: var(--white); }

.section-subtitle {
  font-size: 1rem;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.section-subtitle.white { color: rgba(255,255,255,0.7); }

/* ── Our Schools / Levels ── */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.level-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(27,58,107,0.08);
}
.level-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.level-card-header {
  padding: 32px 24px 24px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.level-card-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(184,146,42,0.2);
  border-radius: 50%;
}
.level-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.level-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.level-card-ages {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.level-card-badge {
  display: inline-block;
  margin-top: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.level-card-badge.soon {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}
.level-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.level-card-features { display: flex; flex-direction: column; gap: 8px; }
.level-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.level-feature::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.level-card-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap var(--transition);
}
.level-card-link:hover { gap: 12px; color: var(--gold); }
.level-card-link.disabled { color: var(--grey); cursor: default; }

/* ── Founder Section ── */
.founder-section { padding: 96px 24px; }
.founder-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.founder-img-wrap {
  position: relative;
}
.founder-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.founder-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.founder-img-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.founder-img-badge-text { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; margin-top: 2px; }

.founder-right { display: flex; flex-direction: column; gap: 24px; }
.founder-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1.5;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  margin: 8px 0;
}
.founder-bio { color: var(--grey); line-height: 1.8; }
.founder-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.founder-title-text { font-size: 0.85rem; color: var(--gold); font-weight: 600; }

/* ── Leadership Teaser ── */
.leadership-teaser { padding: 96px 24px; background: var(--cream); }
.leadership-teaser .container { max-width: 1280px; margin: 0 auto; }
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-align: center;
}
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.leader-img-wrap {
  height: 240px;
  overflow: hidden;
  background: var(--navy);
  position: relative;
}
.leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.leader-card:hover .leader-img { transform: scale(1.04); }
.leader-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: rgba(255,255,255,0.2);
}
.leader-body { padding: 24px 20px; }
.leader-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.leader-role {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.leadership-cta { text-align: center; margin-top: 48px; }

/* ── Why Zoe ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.why-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,146,42,0.2);
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(184,146,42,0.4);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.why-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── Gallery Strip ── */
.gallery-strip {
  padding: 0;
  overflow: hidden;
}
.gallery-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  height: 360px;
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,35,71,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-caption { color: var(--white); font-size: 0.8rem; font-weight: 500; }

/* ── Admissions CTA Banner ── */
.admissions-banner {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.admissions-banner::before {
  content: 'Z';
  position: absolute;
  right: -40px;
  top: -40px;
  font-family: var(--font-display);
  font-size: 300px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.admissions-banner .container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.banner-left { display: flex; flex-direction: column; gap: 12px; }
.banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.banner-title span { color: var(--gold-light); }
.banner-desc { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 500px; }
.banner-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Testimonials ── */
.testimonials { padding: 96px 24px; background: var(--cream); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-pale);
  line-height: 1;
  font-weight: 700;
}
.testi-text {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.75;
  margin-top: 24px;
  font-style: italic;
}
.testi-author { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.testi-role { font-size: 0.75rem; color: var(--grey); }

/* ── Contact Strip ── */
.contact-strip { padding: 64px 24px; background: var(--navy); }
.contact-strip .container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(184,146,42,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-label { font-size: 0.75rem; color: var(--gold-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-value { color: var(--white); font-size: 0.95rem; line-height: 1.5; }

/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  padding: 64px 24px 32px;
  color: rgba(255,255,255,0.65);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-motto {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.9rem;
}
.footer-desc { font-size: 0.85rem; line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Floating WhatsApp ── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.wa-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
  animation: none;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1); }
}
.wa-float-label {
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-float-label { opacity: 1; }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.gold { color: var(--gold); }
.gold-light { color: var(--gold-light); }

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  border: 2px solid var(--wa-green);
}
.btn-wa:hover {
  background: #1fad56;
  border-color: #1fad56;
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .levels-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-row { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-row .gallery-item { height: 220px; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .founder-inner { grid-template-columns: 1fr; }
  .founder-img-wrap { max-width: 400px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .admissions-banner .container { flex-direction: column; align-items: flex-start; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .contact-strip .container { grid-template-columns: 1fr; gap: 24px; }
  .nav-links { display: none; }
  .nav-actions .nav-wa-btn { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 72px 16px; }
  .levels-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .announcement-bar { font-size: 0.78rem; padding: 10px 40px 10px 16px; }
  .gallery-row { grid-template-columns: 1fr 1fr; }
  .banner-actions { flex-direction: column; }
  .wa-float { bottom: 20px; right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ── Site Icons (SVG replacements for all emojis) ── */
.site-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
}
.site-icon svg {
  width: 1.1em;
  height: 1.1em;
}

/* Contact strip icons */
.contact-icon .site-icon svg { width: 1.4rem; height: 1.4rem; }
.contact-icon { display: flex; align-items: center; justify-content: center; }

/* Announcement bar icon */
.bar-icon .site-icon svg { width: 1rem; height: 1rem; }

/* Button icons */
.btn-primary .site-icon svg,
.btn-wa .site-icon svg,
.btn-outline .site-icon svg { width: 1rem; height: 1rem; }

/* Nav WhatsApp button icon */
.nav-wa-btn .site-icon svg { width: 0.9rem; height: 0.9rem; }

/* Floating WhatsApp */
.wa-float-btn .site-icon svg { width: 1.5rem; height: 1.5rem; }

/* Level card icons */
.level-icon .site-icon svg { width: 1.8rem; height: 1.8rem; }
.level-icon { font-size: 1rem; }

/* Why section icons */
.why-icon .site-icon svg { width: 1.8rem; height: 1.8rem; }
.why-icon { font-size: 1rem; }

/* Value card icons */
.value-icon .site-icon svg { width: 1.6rem; height: 1.6rem; }

/* Form info icons */
.info-icon .site-icon svg { width: 1.3rem; height: 1.3rem; }

/* Coming soon icon */
.coming-soon-icon .site-icon svg { width: 3rem; height: 3rem; }

/* University programme icons */
.uni-programme-icon .site-icon svg { width: 1.5rem; height: 1.5rem; }

/* Check icons in lists */
.icon-check svg { width: 0.9rem; height: 0.9rem; color: var(--gold); }

/* Close button */
.bar-dismiss svg, .mobile-nav-close svg { 
  width: 1rem; height: 1rem; 
  vertical-align: middle;
}

/* Contact detail icons */
.contact-detail-icon .site-icon svg { width: 1.3rem; height: 1.3rem; }

/* ── SVG Icon Gold Coloring ── */
.site-icon svg {
  color: var(--gold);
  stroke: var(--gold);
}

/* Icons that use fill not stroke (WhatsApp logo, Facebook) */
.icon-wa svg,
.icon-fb svg {
  fill: var(--gold);
  stroke: none;
  color: var(--gold);
}

/* Nav WhatsApp button — keep white since it's on green bg */
.nav-wa-btn .site-icon svg {
  color: var(--white);
  stroke: var(--white);
}

/* Floating WA button — white on green */
.wa-float-btn .site-icon svg {
  fill: var(--white);
  stroke: none;
  color: var(--white);
}

/* WA send button in forms — white on green */
.btn-wa .site-icon svg {
  fill: var(--white);
  stroke: none;
  color: var(--white);
}

/* Close buttons — keep white/muted */
.bar-dismiss .site-icon svg,
.mobile-nav-close .site-icon svg {
  color: rgba(255,255,255,0.8);
  stroke: rgba(255,255,255,0.8);
}

/* Check icons in lists — gold */
.icon-check svg {
  color: var(--gold);
  stroke: var(--gold);
}

/* Why section cards — icons on navy bg, gold */
.why-card .site-icon svg {
  color: var(--gold-light);
  stroke: var(--gold-light);
}

/* Contact strip icons on navy bg */
.contact-icon .site-icon svg {
  color: var(--gold-light);
  stroke: var(--gold-light);
}

/* Contact detail icons on cream bg */
.contact-detail-icon .site-icon svg {
  color: var(--gold);
  stroke: var(--gold);
}

/* University programme cards on navy */
.uni-programme-card .site-icon svg {
  color: var(--gold-light);
  stroke: var(--gold-light);
}

/* Coming soon icon */
.coming-soon-icon .site-icon svg {
  color: var(--gold-light);
  stroke: var(--gold-light);
}

/* Form info icons */
.info-icon .site-icon svg {
  color: var(--gold);
  stroke: var(--gold);
}

/* Step numbers already gold — step icons if any */
.step-body .site-icon svg {
  color: var(--gold);
  stroke: var(--gold);
}

/* Value cards */
.value-card .site-icon svg {
  color: var(--gold);
  stroke: var(--gold);
}

/* About page mission/vision icons */
.section-navy .site-icon svg {
  color: var(--gold-light);
  stroke: var(--gold-light);
}

/* Primary buttons — icon white on gold bg */
.btn-primary .site-icon svg {
  color: var(--white);
  stroke: var(--white);
}

/* Outline buttons — icon white */
.btn-outline .site-icon svg {
  color: var(--white);
  stroke: var(--white);
}

/* Announcement bar icon */
.bar-icon .site-icon svg,
.announcement-bar .site-icon svg {
  color: var(--gold-light);
  stroke: var(--gold-light);
}

/* ── Homepage mobile fixes ── */
@media (max-width: 768px) {
  /* Hero */
  .hero-content {
    grid-template-columns: 1fr !important;
    padding: 60px 20px 80px !important;
    gap: 40px !important;
  }
  .hero-right { display: none !important; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem) !important; }
  .hero-desc { font-size: 0.95rem !important; }

  /* Schools grid */
  .levels-grid { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }

  /* Gallery */
  .gallery-row { height: 200px !important; }

  /* Founder */
  .founder-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  .founder-img { height: 360px !important; }
  .founder-img-badge { right: 0 !important; bottom: -16px !important; }

  /* Leadership teaser */
  .leadership-grid { grid-template-columns: 1fr !important; }

  /* Why grid */
  .why-grid, .why-grid-hp { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }

  /* Admissions banner */
  .admissions-banner .container { flex-direction: column !important; gap: 24px !important; }
  .banner-actions { flex-direction: column !important; width: 100%; }
  .banner-actions a { width: 100% !important; justify-content: center !important; }

  /* Adm form index */
  .adm-inner { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr !important; }

  /* Contact strip */
  .contact-strip .container { grid-template-columns: 1fr !important; gap: 20px !important; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
  .footer-bottom { flex-direction: column !important; text-align: center !important; gap: 8px !important; }

  /* Section padding */
  .section { padding: 64px 16px !important; }
  .founder-section { padding: 64px 16px !important; }
  .leadership-teaser { padding: 64px 16px !important; }

  /* Adm section */
  .adm-section { padding: 56px 16px !important; }
  .form-card { padding: 24px !important; }
  .form-grid { grid-template-columns: 1fr !important; }
  .form-actions { flex-direction: column !important; }
  .form-actions .btn-primary, .form-actions .btn-wa { min-width: 100% !important; }
}

@media (max-width: 480px) {
  .levels-grid { grid-template-columns: 1fr !important; }
  .why-grid, .why-grid-hp { grid-template-columns: 1fr !important; }
  .footer-inner { grid-template-columns: 1fr !important; }
  .hero-stats { gap: 16px !important; flex-wrap: wrap !important; }
}
