/* ============================================================
   JAASIEL EDUCATION CENTRE – MAIN STYLESHEET v2
   Premium · Navy & Gold · Elevated
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --navy:        #07112b;
  --navy-light:  #0e1f47;
  --navy-mid:    #162d65;
  --gold:        #c9922a;
  --gold-light:  #e8b84b;
  --gold-pale:   #fdf3dc;
  --green:       #006b35; /* Nigerian flag accent */
  --white:       #ffffff;
  --off-white:   #f7f6f2;
  --text:        #111827;
  --text-muted:  #6b7280;
  --border:      rgba(201,146,42,0.18);
  --radius:      18px;
  --radius-sm:   10px;
  --shadow:      0 8px 48px rgba(7,17,43,0.13);
  --shadow-gold: 0 8px 40px rgba(201,146,42,0.22);
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display:'Cabinet Grotesk', 'Syne', sans-serif;
  --font-body:   'Satoshi', 'DM Sans', sans-serif;
  --font-serif:  'Cormorant Garamond', 'Playfair Display', serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ---------- LOADER ---------- */
.loader {
  position: fixed; inset: 0; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.7s, visibility 0.7s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.loader-logo { width: 88px; height: 88px; object-fit: contain; animation: logoPulse 1.5s ease-in-out infinite; }
@keyframes logoPulse { 0%,100%{transform:scale(1);filter:drop-shadow(0 0 12px #c9922a70)} 50%{transform:scale(1.08);filter:drop-shadow(0 0 28px #c9922acc)} }
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.12); border-radius: 99px; overflow: hidden; }
.loader-fill { height: 100%; width: 0; background: linear-gradient(90deg,var(--gold),var(--gold-light)); border-radius: 99px; animation: loadFill 1.8s ease forwards; }
@keyframes loadFill { to { width: 100%; } }
.loader-text { color: rgba(255,255,255,0.5); font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(7,17,43,0.97);
  backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1300px; margin: auto; padding: 0 36px;
  display: flex; align-items: center; gap: 32px;
}
.nav-brand { display: flex; align-items: center; gap: 13px; }
.nav-logo { width: 46px; height: 46px; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-name { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--white); letter-spacing: -0.01em; }
.nav-sub { font-size: 0.65rem; color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  color: rgba(255,255,255,0.78); font-family: var(--font-display); font-size: 0.875rem;
  font-weight: 500; padding: 8px 14px; border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold-light); border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 55%; }
.btn-nav {
  background: linear-gradient(135deg,var(--gold),var(--gold-light));
  color: var(--navy); font-family: var(--font-display);
  font-weight: 700; font-size: 0.84rem; padding: 10px 24px;
  border-radius: 99px; transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,146,42,0.45); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; }
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('assets/schooluniform.jpeg');
  background-size: cover; background-position: center 25%;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(7,17,43,0.97) 0%, rgba(7,17,43,0.75) 50%, rgba(7,17,43,0.45) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,146,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,146,42,0.05) 1px, transparent 1px);
  background-size: 70px 70px;
}
.hero-bg::before {
  content:''; position:absolute; width:700px; height:700px; border-radius:50%;
  background:radial-gradient(circle, rgba(201,146,42,0.12) 0%, transparent 65%);
  top:-150px; right:-100px; pointer-events:none;
}
.hero-bg::after {
  content:''; position:absolute; width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle, rgba(0,107,53,0.1) 0%, transparent 65%);
  bottom:0; left:-80px; pointer-events:none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1300px; margin: auto; padding: 130px 36px 90px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 30px;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(201,146,42,0.1); border: 1px solid rgba(201,146,42,0.32);
  color: var(--gold-light); font-size: 0.78rem; font-family: var(--font-display);
  padding: 8px 18px; border-radius: 99px; letter-spacing: 0.05em;
  animation: fadeDown 0.8s ease both;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(201,146,42,0.25);
  animation: pulse 2s ease infinite;
}
.badge-dot.pulse { animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px rgba(201,146,42,0.25)} 50%{box-shadow:0 0 0 7px rgba(201,146,42,0.1)} }
.hero-title {
  font-family: var(--font-serif); font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 700; color: var(--white); line-height: 1.06;
  letter-spacing: -0.02em;
  animation: fadeUp 0.9s 0.1s ease both;
}
.highlight { color: var(--gold-light); font-style: italic; }
.highlight-gold {
  color: transparent;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  font-style: italic;
}
.hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,0.7); max-width: 540px; line-height: 1.75;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 32px;
  padding-top: 12px; animation: fadeUp 0.9s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--gold-light); line-height: 1; min-width: 4ch; display: inline-block; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; text-transform: uppercase; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.18); }
.hero-scroll-hint {
  position: absolute; bottom: 36px; right: 48px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-family: var(--font-display);
}
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom,rgba(201,146,42,0.6),transparent); }

/* ---------- HERO IMAGE (right panel for desktop) ---------- */
.hero-image-panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 48%; overflow: hidden; z-index: 1;
}
.hero-image-panel img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  opacity: 0.85;
}
.hero-image-panel::before {
  content:''; position:absolute; inset:0; z-index:2;
  background: linear-gradient(to right, var(--navy) 0%, rgba(7,17,43,0.1) 40%, transparent 100%);
}

/* ---------- TICKER ---------- */
.ticker-wrap {
  background: linear-gradient(90deg,var(--navy),var(--navy-mid),var(--navy));
  overflow: hidden; padding: 14px 0;
  border-top: 1px solid rgba(201,146,42,0.15);
  border-bottom: 1px solid rgba(201,146,42,0.15);
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.75); letter-spacing: 0.03em;
}
.ticker-track span { color: var(--gold-light); }
.ticker-track b { color: white; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ---------- SECTIONS ---------- */
.section { padding: 96px 0; }
.section.alt-bg { background: var(--off-white); }
.container { max-width: 1300px; margin: auto; padding: 0 36px; }
.section-eyebrow {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; display: block;
}
.section-eyebrow.center { text-align: center; }
.section-eyebrow.light { color: rgba(255,255,255,0.7); }
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--navy); line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.section-title.center { text-align: center; }
.body-text { color: var(--text-muted); line-height: 1.8; font-size: 1rem; margin-bottom: 18px; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 100%);
  color: var(--navy); font-family: var(--font-display); font-weight: 700;
  font-size: 0.9rem; padding: 14px 30px; border-radius: 99px;
  border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-primary.full-btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--white);
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  padding: 13px 28px; border-radius: 99px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-ghost-sm {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  color: var(--gold); border: 1.5px solid var(--border); padding: 8px 18px; border-radius: 99px;
  transition: background var(--transition), color var(--transition);
}
.btn-ghost-sm:hover { background: var(--gold); color: var(--navy); }

/* ---------- ABOUT SNAP ---------- */
.about-snap-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center;
}
.about-snap-grid.reverse { grid-template-columns: 1.15fr 1fr; }
.about-snap-grid.reverse .about-snap-img-col { order: -1; }
.img-stack { position: relative; }
.img-main {
  width: 100%; height: 460px; object-fit: cover; border-radius: 24px;
  box-shadow: var(--shadow);
}
.img-badge-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--navy);
  padding: 16px 22px; border-radius: 16px; box-shadow: var(--shadow-gold);
  display: flex; flex-direction: column; gap: 2px; min-width: 130px;
}
.badge-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1; }
.badge-desc { font-size: 0.75rem; font-weight: 600; opacity: 0.75; letter-spacing: 0.04em; }

/* ---------- CHECK LIST ---------- */
.check-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 28px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text); }
.chk {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg,var(--gold),var(--gold-light));
  color: var(--navy); font-size: 0.7rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}

/* ---------- FEATURES GRID ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.feature-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 20px;
  padding: 32px 28px; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.feature-card--gold { background: linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%); border-color: transparent; }
.feature-card--gold h3, .feature-card--gold p { color: var(--white); }
.feature-card--gold .feature-icon { background: rgba(201,146,42,0.15); color: var(--gold-light); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold); margin-bottom: 18px;
}
.feature-icon i { font-size: 1.3rem; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ---------- PROGRAMS GRID ---------- */
.programs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.program-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 20px;
  padding: 30px 24px; display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.program-card--highlight {
  background: linear-gradient(150deg,var(--navy) 0%,var(--navy-mid) 100%);
  border-color: transparent;
}
.program-card--highlight h3, .program-card--highlight p, .program-card--highlight .program-num { color: var(--white); }
.program-card--highlight .program-arrow { color: var(--gold-light); }
.program-num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--gold); opacity: 0.5; line-height: 1; }
.program-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); }
.program-card p { font-size: 0.87rem; color: var(--text-muted); flex: 1; }
.program-arrow { font-size: 1.1rem; color: var(--gold); font-weight: 700; }

/* ---------- TESTIMONIALS ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.testi-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 20px;
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-card--gold { background: linear-gradient(150deg,var(--navy),var(--navy-mid)); border-color: transparent; }
.testi-card--gold p, .testi-card--gold .testi-stars { color: rgba(255,255,255,0.85); }
.testi-card--gold strong { color: white; }
.testi-card--gold small { color: rgba(255,255,255,0.5); }
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.testi-card > p { font-size: 0.95rem; color: var(--text); line-height: 1.75; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg,var(--navy),var(--navy-mid));
  color: var(--gold-light); font-family: var(--font-display);
  font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-card--gold .testi-avatar { background: rgba(201,146,42,0.2); }
.testi-author strong { font-family: var(--font-display); font-size: 0.9rem; color: var(--navy); display: block; }
.testi-card--gold .testi-author strong { color: white; }
.testi-author small { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- NEWS ---------- */
.news-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.news-card { border-radius: 20px; overflow: hidden; border: 1.5px solid var(--border); background: var(--white); transition: transform var(--transition), box-shadow var(--transition); }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-card--big { grid-row: span 2; display: flex; flex-direction: column; }
.news-img-wrap { position: relative; overflow: hidden; flex-shrink: 0; }
.news-img-wrap img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .news-img-wrap img { transform: scale(1.04); }
.news-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy); font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700; padding: 5px 12px; border-radius: 99px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.news-body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.news-body time { font-size: 0.78rem; color: var(--gold); font-family: var(--font-display); letter-spacing: 0.05em; }
.news-body h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.news-body p { font-size: 0.9rem; color: var(--text-muted); flex: 1; }
.news-side { display: flex; flex-direction: column; gap: 16px; }
.news-card-sm {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 16px;
  padding: 20px 24px; display: flex; flex-direction: column; gap: 8px;
  transition: transform var(--transition), border-color var(--transition);
}
.news-card-sm:hover { transform: translateX(4px); border-color: var(--gold); }
.news-card-sm time { font-size: 0.75rem; color: var(--gold); font-family: var(--font-display); }
.news-card-sm h4 { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.read-more { font-size: 0.82rem; color: var(--gold); font-family: var(--font-display); font-weight: 600; margin-top: 4px; display: inline-flex; align-items: center; gap: 4px; }
.read-more:hover { color: var(--navy); }

/* ---------- STATS BANNER ---------- */
.stats-banner { background: linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%); padding: 60px 0; }
.stats-row { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.stat-big { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-num-big { font-family: var(--font-serif); font-size: 3.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; min-width: 5ch; display: inline-block; text-align: center; }
.stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-display); }

/* ---------- CTA BAND ---------- */
.cta-band { background: linear-gradient(120deg,var(--navy) 0%,var(--navy-mid) 60%,var(--navy) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.cta-band::before {
  content:''; position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1.2' fill='%23c9922a' opacity='0.1'/%3E%3C/svg%3E");
}
.cta-inner { position:relative; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-text h2 { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.cta-text p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-top: 8px; }
.cta-buttons { display: flex; gap: 16px; flex-shrink: 0; }

/* ---------- PAGE HERO ---------- */
.page-hero { position: relative; height: 56vh; min-height: 360px; display: flex; align-items: flex-end; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,43,0.95) 0%, rgba(7,17,43,0.5) 50%, rgba(7,17,43,0.2) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 1300px; margin: auto; padding: 0 36px 60px; width: 100%; }
.page-hero-content h1 { font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; color: var(--white); line-height: 1.1; }
.page-hero-content p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-top: 8px; }

/* ---------- NOTICE BAR ---------- */
.notice-bar {
  background: var(--gold-pale); border-bottom: 2px solid var(--gold);
  padding: 14px 36px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 0.9rem; color: var(--navy);
}
.notice-bar a { color: var(--gold); font-weight: 700; text-decoration: underline; }

/* ---------- MVV ---------- */
.mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mvv-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 20px;
  padding: 36px 32px; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mvv-card--gold { background: linear-gradient(150deg,var(--navy),var(--navy-mid)); border-color: transparent; }
.mvv-card--gold h3, .mvv-card--gold p { color: white; }
.mvv-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 18px; color: var(--gold);
}
.mvv-card--gold .mvv-icon { background: rgba(201,146,42,0.15); }
.mvv-icon i { font-size: 1.4rem; }
.mvv-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.mvv-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ---------- TEAM ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.team-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 20px;
  padding: 28px; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--gold-light);
}
.team-card h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--gold); font-family: var(--font-display); font-weight: 600; letter-spacing: 0.03em; margin-bottom: 10px; display: block; }
.team-bio { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- ACADEMICS ---------- */
.subject-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.subject-pills span {
  background: var(--gold-pale); color: var(--navy); border: 1px solid var(--border);
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 99px;
  transition: background var(--transition), color var(--transition);
}
.subject-pills span:hover { background: var(--gold); color: var(--navy); }
.tracks-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px; }
.track-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.track-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.track-card h4 { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.track-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
.extra-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 40px; }
.extra-item {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 14px;
  padding: 16px 20px; font-family: var(--font-display); font-size: 0.88rem; font-weight: 600;
  color: var(--navy); text-align: center; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.extra-item:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); }
.extra-item i { font-size: 1rem; color: var(--gold); }

/* ---------- GALLERY ---------- */
.gallery-filters { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  padding: 9px 20px; border-radius: 99px; border: 1.5px solid var(--border);
  background: transparent; color: var(--text-muted); cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.gallery-item { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top,rgba(7,17,43,0.85),transparent);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.93);
  display: none; align-items: center; justify-content: center; z-index: 9998;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 12px; }
.lb-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }
.lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 2rem; cursor: pointer; padding: 8px 18px; border-radius: 10px; transition: background var(--transition); }
.lb-prev:hover, .lb-next:hover { background: rgba(201,146,42,0.4); }
.lb-prev { left: 20px; } .lb-next { right: 20px; }

/* ---------- ADMISSIONS ---------- */
.process-steps { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-top: 48px; }
.step { flex: 1; min-width: 160px; background: var(--white); border: 1.5px solid var(--border); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: transform var(--transition), box-shadow var(--transition); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold); }
.step-num { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; opacity: 0.6; }
.step-body h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-body p { font-size: 0.87rem; color: var(--text-muted); }
.step-arrow { font-size: 2rem; color: var(--gold); padding-top: 24px; opacity: 0.5; }

/* Requirements only - fee table removed */
.requirements-full { max-width: 640px; margin: 48px auto 0; }
.requirements-full ul.check-list { margin: 0; }

/* ---------- FORM ---------- */
.form-wrap {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 24px; padding: 48px; box-shadow: var(--shadow); max-width: 800px; margin: 0 auto;
}
.form-wrap h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.app-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.93rem; color: var(--text);
  background: var(--off-white); transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,146,42,0.1); }
.form-success { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 48px; text-align: center; }
.success-icon { font-size: 3rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); }
.form-success p { color: var(--text-muted); }

/* ---------- CONTACT ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 24px; margin: 28px 0; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.contact-item strong { font-family: var(--font-display); font-size: 0.87rem; font-weight: 700; display: block; margin-bottom: 4px; color: var(--navy); }
.contact-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.social-links-big { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  background: var(--navy); color: var(--white); font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600; padding: 10px 18px; border-radius: 99px;
  display: flex; align-items: center; gap: 8px;
  transition: background var(--transition), transform var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.map-section { height: 420px; }
.map-section iframe { display: block; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { width: 56px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.75; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1); transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h4 { font-family: var(--font-display); font-size: 0.87rem; font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.5); font-size: 0.87rem; transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col address p { color: rgba(255,255,255,0.5); font-size: 0.87rem; margin-bottom: 10px; line-height: 1.6; display: flex; align-items: flex-start; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-18px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .about-snap-grid, .about-snap-grid.reverse { grid-template-columns: 1fr; gap: 44px; }
  .about-snap-grid.reverse .about-snap-img-col { order: unset; }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tracks-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .extra-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .hero-image-panel { display: none; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100dvh; /* fills true viewport height regardless of scroll position */
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 1001;
    padding-top: 0;
    overflow: hidden; /* no inner scroll */
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; }
  /* Hamburger sits ABOVE the full-screen nav drawer at all times */
  .hamburger { display: flex; z-index: 1010; position: fixed; top: 18px; right: 24px; }
  .btn-nav { display: none; }
  .hero-content { padding: 110px 20px 70px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-div { display: none; }
  .hero-scroll-hint { display: none; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .img-main { height: 280px; }
  .img-badge-card { right: 0; bottom: -14px; }
  .process-steps { flex-direction: column; }
  .step-arrow { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }
  .extra-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .news-header-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }
  .page-hero { height: 42vh; min-height: 300px; }
  .page-hero-content h1 { font-size: 2.4rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.6rem; }
  .section-title { font-size: 1.9rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .extra-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { flex-direction: column; align-items: center; gap: 32px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .tracks-grid { grid-template-columns: 1fr; }
}