/* =========================================
   BRIGHT HORIZON SCHOOL — style.css
   Theme: Deep Navy #1B2A4A | Gold #C9A84C
   Font: Cormorant Garamond + Jost
   ========================================= */

:root {
  --navy:        #1B2A4A;
  --navy-dark:   #111D33;
  --navy-light:  #2C3E60;
  --gold:        #C9A84C;
  --gold-light:  #E2C070;
  --gold-pale:   #F5EDD5;
  --white:       #FFFFFF;
  --off-white:   #F8F6F1;
  --text:        #2B2B2B;
  --text-muted:  #6B7280;
  --border:      #E5E0D4;
  --shadow-sm:   0 2px 12px rgba(27,42,74,0.08);
  --shadow-md:   0 8px 32px rgba(27,42,74,0.14);
  --shadow-lg:   0 20px 60px rgba(27,42,74,0.18);
  --radius:      12px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }

/* ---- TYPOGRAPHY ---- */
.section-eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

.section-sub {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-sub { margin: 16px auto 0; }

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   UTILITY BAR
====================================== */
.utility-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.03em;
}

.utility-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.motto-text {
  font-style: italic;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
}

.utility-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.utility-links a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.78rem;
  font-weight: 500;
}

.utility-links a:hover { color: var(--gold-light); }

.quick-links-wrap { position: relative; }

.ql-trigger { cursor: pointer; display: flex; align-items: center; gap: 5px; }
.ql-trigger .fa { font-size: 0.6rem; }

.ql-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: var(--transition);
  z-index: 1000;
}

.quick-links-wrap:hover .ql-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.ql-dropdown a {
  display: block;
  padding: 8px 18px;
  color: var(--text);
  font-size: 0.82rem;
  transition: var(--transition);
}

.ql-dropdown a:hover {
  background: var(--off-white);
  color: var(--navy);
  padding-left: 24px;
}

/* ======================================
   MAIN HEADER
====================================== */
.main-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition), box-shadow 0.3s;
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.main-header.scrolled .header-inner {
  height: 68px;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s ease;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  transition: transform 0.3s;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

.scrolled .logo-img { width: 44px; height: 44px; }

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-item > a:hover,
.nav-item:hover > a {
  background: var(--off-white);
  color: var(--gold);
}

.nav-arrow {
  font-size: 0.6rem;
  transition: transform 0.3s;
}

.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 998;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mega-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  gap: 48px;
}

.mega-col {
  display: flex;
  flex-direction: column;
  min-width: 170px;
}

.mega-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.mega-col a {
  font-size: 0.88rem;
  color: var(--text);
  padding: 6px 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-col a:hover { color: var(--gold); padding-left: 6px; }

.mega-highlight {
  margin-left: auto;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}

.mega-highlight p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.mega-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: var(--transition);
}

.mega-link:hover { color: var(--white); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }

.btn-apply {
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-apply:hover {
  background: var(--navy);
  color: var(--gold);
  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(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================
   MOBILE NAV
====================================== */
.mobile-nav {
  background: var(--navy-dark);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  position: sticky;
  top: 80px;
  z-index: 997;
}

.mobile-nav.open { max-height: 400px; }

.mobile-nav ul {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mob-item {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}

.mob-item:hover { background: rgba(255,255,255,0.08); color: var(--gold-light); }

.mob-btn {
  display: block;
  margin-top: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

/* ======================================
   HERO
====================================== */
.hero {
  min-height: 92vh;
  background: var(--navy-dark);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 120px;
  overflow: hidden;
  text-align: center;
}

/* Background geometric pattern */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(201,168,76,0.10) 0%, transparent 60%),
    radial-gradient(circle 400px at 80% 80%, rgba(44,62,96,0.8) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy-dark) 0%, #1a2d50 50%, #0f1c35 100%);
  z-index: 0;
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-bg-pattern::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 24px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-title strong {
  font-style: normal;
  display: block;
}

.hero-sub {
  color: rgba(255,255,255,0.68);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

.hero-motto {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.devanagari {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
}

.translation {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stats Bar */
.hero-stats {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ======================================
   BUTTONS
====================================== */
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 8px;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition);
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition);
  display: inline-block;
}

.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ======================================
   ANNOUNCEMENT BAR
====================================== */
.announcement-bar {
  background: var(--gold);
  padding: 0;
}

.ann-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-dark);
  flex-wrap: wrap;
}

.ann-inner i { font-size: 0.9rem; }

.ann-inner a {
  background: var(--navy);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
}

.ann-inner a:hover { background: var(--navy-dark); }

/* ======================================
   DIVISIONS
====================================== */
.divisions { background: var(--off-white); }

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.division-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.division-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.division-card:hover .div-icon { background: var(--navy); color: var(--gold); }

.div-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(27,42,74,0.06);
  line-height: 1;
  pointer-events: none;
}

.div-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--off-white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.div-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.division-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.div-grades {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.division-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

.div-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy);
  transition: var(--transition);
}

.div-link:hover { color: var(--gold); gap: 12px; }

/* ======================================
   WHY US
====================================== */
.why-us {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.why-emblem {
  width: 220px;
  height: 220px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 0 0 12px rgba(201,168,76,0.15), var(--shadow-lg);
}

.why-emblem img { width: 160px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); }

.why-quote-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 300px;
  border-left: 4px solid var(--gold);
}

.why-quote-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px;
}

.why-quote-card span {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 500;
}

.why-content .section-title { margin-bottom: 20px; }

.why-intro {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.75;
}

.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.pillar-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.pillar-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.pillar-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ======================================
   TESTIMONIALS
====================================== */
.testimonials { background: var(--off-white); }

.tab-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.tab-btn {
  background: none;
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover { border-color: var(--navy); color: var(--navy); }

.tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.t-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.t-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,168,76,0.15);
  pointer-events: none;
}

.t-featured {
  background: var(--navy);
  border-color: var(--navy);
}

.t-featured blockquote { color: rgba(255,255,255,0.85); }
.t-featured .t-name   { color: var(--gold-light); }
.t-featured .t-grade  { color: rgba(255,255,255,0.5); }

.t-featured::before { color: rgba(201,168,76,0.2); }

.t-avatar {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.t-featured .t-avatar { background: rgba(255,255,255,0.1); color: var(--gold-light); }

blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
}

.t-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.t-grade {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ======================================
   NEWS
====================================== */
.news { background: var(--white); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news-img-wrap {
  position: relative;
  height: 180px;
  background: var(--navy);
  overflow: hidden;
}

.news-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: rgba(201,168,76,0.4);
  font-size: 3.5rem;
}

.news-cat {
  position: absolute;
  bottom: 12px;
  left: 16px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.news-body { padding: 24px; }

.news-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}

.news-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.news-link:hover { color: var(--gold); gap: 12px; }

.news-footer { text-align: center; }

/* ======================================
   CTA BANNER
====================================== */
.cta-banner {
  background: var(--navy-dark);
  position: relative;
  padding: 100px 24px;
  overflow: hidden;
}

.cta-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 65%),
    linear-gradient(135deg, var(--navy-dark) 0%, #14213d 100%);
}

.cta-bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-emblem img {
  width: 90px;
  filter: brightness(1.1) drop-shadow(0 0 20px rgba(201,168,76,0.3));
}

.cta-content { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.cta-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ======================================
   FOOTER
====================================== */
.main-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); }

.footer-top { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  width: 70px;
  margin-bottom: 14px;
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.footer-school-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-tagline {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-address, .footer-contact {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.footer-address .fa, .footer-contact .fa { margin-top: 3px; flex-shrink: 0; color: var(--gold); }

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--gold-light); }

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-bg { display: none; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .btn-apply { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .t-card:not(.t-featured) { display: none; }
  .utility-bar .motto-text { display: none; }
  .hero-stats { padding: 20px 24px; }
  .stat-item { padding: 0 20px; }
}

@media (max-width: 640px) {
  .section-pad { padding: 64px 0; }
  .hero { min-height: 80vh; padding: 60px 20px 100px; }
  .hero-stats { flex-direction: column; align-items: center; gap: 12px; }
  .stat-divider { width: 40px; height: 1px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .divisions-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom .container { flex-direction: column; align-items: center; text-align: center; }
}
