/* =============================================
   CHESTOR GROUP OF SCHOOLS — STYLESHEET
   Colors: Navy #1A3A6B | Gold #D4A520 | Red #CC2233
============================================= */

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

:root {
  --navy:   #1A3A6B;
  --navy-dark: #0F2347;
  --navy-light: #2A5298;
  --gold:   #D4A520;
  --gold-light: #F0C040;
  --gold-pale: #FDF3C8;
  --red:    #CC2233;
  --red-light: #E84455;
  --white:  #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #EEF1F5;
  --mid-gray: #7A8AA0;
  --dark:   #1A1A2E;
  --text:   #2D3748;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26,58,107,0.12);
  --shadow-lg: 0 12px 48px rgba(26,58,107,0.18);
  --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy-dark);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 3px solid var(--gold);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.nav-brand-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.nav-brand-text span:last-child {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(212,165,32,0.12);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  overflow: hidden;
  border-top: 3px solid var(--gold);
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  color: var(--navy-dark);
  padding: 12px 20px;
  font-size: 14px;
  transition: var(--transition);
  border-bottom: 1px solid var(--light-gray);
}

.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover {
  background: var(--gold-pale);
  color: var(--navy);
  padding-left: 28px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO - HOME ===== */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(42,82,152,0.55) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy-dark) 0%, #0D1F3C 100%);
}

.hero-svg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,165,32,0.18);
  border: 1px solid rgba(212,165,32,0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-title .highlight {
  color: var(--gold);
  display: block;
}

.hero-subtitle-line {
  width: 80px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 4px;
  margin: 16px 0 20px;
}

.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin-bottom: 40px;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.5px;
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,165,32,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid var(--red);
  transition: var(--transition);
}

.btn-red:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,34,51,0.35);
}

/* Hero stats row */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 4px;
  margin: 0 auto 16px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--mid-gray);
  font-size: 1rem;
}

/* ===== SCHOOLS SECTION ===== */
.schools-section {
  padding: 100px 0;
  background: var(--off-white);
}

.schools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.school-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(26,58,107,0.06);
}

.school-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.school-card-header {
  padding: 36px 32px 28px;
  text-align: center;
  position: relative;
}

.school-card-header.prep-header { background: linear-gradient(135deg, #0F2347 0%, #1A3A6B 100%); }
.school-card-header.academy-header { background: linear-gradient(135deg, #1A3A6B 0%, #2A5298 100%); }
.school-card-header.jss-header { background: linear-gradient(135deg, #7B1A1A 0%, #CC2233 100%); }

.school-card-logo {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--white);
  margin: 0 auto 20px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.school-card-logo img { width: 90px; height: 90px; object-fit: contain; border-radius: 50%; }

.school-card-logo-placeholder {
  width: 90px; height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.school-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.school-card-motto {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.school-card-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,165,32,0.25);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 12px;
}

.school-card-body { padding: 28px 32px 32px; }

.school-card-desc {
  color: var(--mid-gray);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.school-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  background: var(--light-gray);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.tag.gold-tag { background: var(--gold-pale); color: #7A5E00; }
.tag.red-tag { background: #FDECEA; color: #8B0000; }

.school-card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy-dark);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.school-card-link:hover {
  background: var(--navy);
  gap: 12px;
}

.school-card-link.gold-btn { background: var(--gold); color: var(--navy-dark); }
.school-card-link.gold-btn:hover { background: var(--gold-light); }

.school-card-link.red-btn { background: var(--red); color: var(--white); }
.school-card-link.red-btn:hover { background: var(--red-light); }

/* ===== WHY CHESTOR ===== */
.why-section {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-svg-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
}

.why-points { display: flex; flex-direction: column; gap: 28px; }

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  border-radius: 12px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-point:hover {
  background: var(--off-white);
  border-color: var(--light-gray);
}

.why-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.why-icon.blue { background: rgba(26,58,107,0.1); }
.why-icon.gold { background: rgba(212,165,32,0.15); }
.why-icon.red  { background: rgba(204,34,51,0.1); }
.why-icon.green { background: rgba(34,139,34,0.1); }

.why-point h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.why-point p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ===== NEWS / HIGHLIGHTS ===== */
.highlights-section {
  padding: 100px 0;
  background: var(--navy-dark);
}

.highlights-section .section-title,
.highlights-section .section-kicker { color: var(--gold); }
.highlights-section .section-desc { color: rgba(255,255,255,0.6); }
.highlights-section .section-divider { background: linear-gradient(90deg, var(--gold), transparent); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.highlight-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 24px;
  transition: var(--transition);
}

.highlight-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,165,32,0.4);
  transform: translateY(-4px);
}

.highlight-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.highlight-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.highlight-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ===== MAP / LOCATION ===== */
.location-section {
  padding: 100px 0;
  background: var(--off-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.location-info p {
  color: var(--mid-gray);
  margin-bottom: 24px;
}

.location-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.93rem;
}

.location-detail:last-of-type { border-bottom: none; }

.location-detail-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
  background: #080F1E;
  color: rgba(255,255,255,0.65);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== SCHOOL HERO (inner pages) ===== */
.school-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.school-hero.prep-bg {
  background: linear-gradient(135deg, #0A1929 0%, #1A3A6B 60%, #2A5298 100%);
}

.school-hero.academy-bg {
  background: linear-gradient(135deg, #0A1929 0%, #1A3A6B 60%, #1565C0 100%);
}

.school-hero.jss-bg {
  background: linear-gradient(135deg, #1A0505 0%, #7B1A1A 60%, #CC2233 100%);
}

.school-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.school-hero-logo {
  width: 150px; height: 150px;
  background: var(--white);
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.school-hero-logo img { width: 124px; height: 124px; object-fit: contain; border-radius: 50%; }

.school-hero-logo-text {
  width: 124px; height: 124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.school-hero-text .kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.school-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.school-hero-text .motto {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  margin-bottom: 20px;
}

.school-hero-text .hero-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 3px;
  margin-bottom: 16px;
}

.school-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

.chip.gold-chip { background: rgba(212,165,32,0.25); border-color: rgba(212,165,32,0.5); color: var(--gold-light); }

/* ===== ABOUT SECTION (school pages) ===== */
.about-section {
  padding: 90px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 { font-size: 2rem; margin-bottom: 16px; }
.about-divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 3px;
  margin-bottom: 20px;
}
.about-text p { color: var(--mid-gray); font-size: 0.95rem; margin-bottom: 16px; line-height: 1.8; }

/* ===== PROGRAMS ===== */
.programs-section {
  padding: 90px 0;
  background: var(--off-white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.program-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.program-card.navy-accent { border-bottom-color: var(--navy); }
.program-card.gold-accent { border-bottom-color: var(--gold); }
.program-card.red-accent  { border-bottom-color: var(--red); }
.program-card.green-accent { border-bottom-color: #2E7D32; }

.program-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.program-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.program-card p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

/* ===== BOARDING (Prep page) ===== */
.boarding-section {
  padding: 90px 0;
  background: var(--navy-dark);
}

.boarding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.boarding-text h2 { color: var(--white); font-size: 2rem; margin-bottom: 16px; }
.boarding-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.8; margin-bottom: 14px; }

.boarding-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.boarding-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.93rem;
}

.boarding-feature::before {
  content: '✓';
  width: 24px; height: 24px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.boarding-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.boarding-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.boarding-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(212,165,32,0.4);
}

.boarding-card-icon { font-size: 32px; margin-bottom: 10px; }
.boarding-card h5 { color: var(--gold-light); font-size: 0.95rem; margin-bottom: 6px; }
.boarding-card p { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.5; }

/* ===== ADMISSIONS ===== */
.admissions-section {
  padding: 90px 0;
  background: var(--white);
}

.admissions-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 60px; height: 60px;
  background: var(--navy-dark);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.step-num::after {
  content: '';
  position: absolute;
  top: 50%; left: 100%;
  width: 100%; height: 2px;
  background: var(--light-gray);
  z-index: 0;
}

.step:last-child .step-num::after { display: none; }

.step h4 { font-size: 1rem; color: var(--navy-dark); margin-bottom: 8px; }
.step p { font-size: 0.87rem; color: var(--mid-gray); line-height: 1.6; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%);
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(26,58,107,0.75);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ===== FACTS ROW ===== */
.facts-row {
  background: var(--navy);
  padding: 50px 0;
}

.facts-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}

.fact-item-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.fact-item-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== JSS BUILDING SECTION ===== */
.jss-new-section {
  padding: 90px 0;
  background: var(--white);
}

.new-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF3E0;
  border: 1px solid #FF9800;
  color: #E65100;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  position: relative;
}

.timeline-year {
  text-align: right;
  padding-right: 32px;
  padding-top: 4px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
}

.timeline-year::after {
  content: '';
  position: absolute;
  top: 12px; right: -6px;
  width: 12px; height: 12px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-content {
  padding: 0 0 36px 32px;
  border-left: 2px solid var(--light-gray);
}

.timeline-content h4 { font-size: 1.05rem; color: var(--navy-dark); margin-bottom: 6px; }
.timeline-content p { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.65; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid,
  .about-grid,
  .location-grid,
  .boarding-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.6rem; }

  .schools-grid { grid-template-columns: 1fr; }

  .school-hero-inner { flex-direction: column; text-align: center; gap: 32px; }
  .school-hero-logo { width: 120px; height: 120px; }
  .school-hero-chips { justify-content: center; }

  .boarding-cards { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .location-grid { grid-template-columns: 1fr; }

  .admissions-steps { grid-template-columns: 1fr 1fr; }

  .step-num::after { display: none; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline, .btn-red { text-align: center; }
  .admissions-steps { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fadein { animation: fadeInUp 0.7s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

.floating { animation: float 4s ease-in-out infinite; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
