/* ═══════════════════════════════════════════════════
   Matthew Okpebholo Foundation — Design System
   Aesthetic: Dignified Luxury · Gold & Navy · Editorial
   ═══════════════════════════════════════════════════ */

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

:root {
  --navy:        #0b1f3a;
  --navy-mid:    #163260;
  --navy-light:  #1e4080;
  --gold:        #c9a84c;
  --gold-light:  #e2c46b;
  --gold-pale:   #f5e9c8;
  --white:       #ffffff;
  --cream:       #faf8f3;
  --offwhite:    #f2ede4;
  --text:        #1a1a2e;
  --text-mid:    #4a4a6a;
  --text-light:  #8a8aaa;
  --border:      #e0d9cc;
  --shadow:      rgba(11,31,58,.12);
  --shadow-deep: rgba(11,31,58,.25);

  --font-display: 'Cinzel', serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  --radius:    6px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

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

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.2rem,5vw,4rem); }
h2 { font-size: clamp(1.8rem,4vw,3rem); }
h3 { font-size: clamp(1.3rem,2.5vw,2rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1.05rem; color: var(--text-mid); }

.display-title {
  font-family: var(--font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── Utility ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-center{ text-align: center; }
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 4px 16px;
  margin-bottom: 14px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-deep);
}

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px var(--shadow-deep);
}
.navbar.solid {
  background: var(--navy);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .top    { font-family: var(--font-display); font-size: .75rem; letter-spacing: .1em; color: var(--gold); text-transform: uppercase; }
.nav-logo-text .bottom { font-family: var(--font-serif); font-size: 1rem; color: var(--white); font-weight: 600; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 12px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0e2a50 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream), transparent);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.08) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { }
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem,5vw,4.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero-title .gold { color: var(--gold); }
.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.hero-stat .label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-image-wrap {
  position: relative;
}
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
}
.hero-image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
}
.hero-image-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 12px 32px rgba(201,168,76,.4);
}
.hero-image-badge .badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.hero-image-badge .badge-text {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-gold-line {
  position: absolute;
  top: -16px; right: -16px;
  width: 80px; height: 80px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  opacity: .4;
}

/* ═══════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  color: var(--navy);
  margin-bottom: 16px;
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
}
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto;
  border-radius: 2px;
}

/* ═══════════════════════════════════
   ABOUT STRIP
═══════════════════════════════════ */
.about-strip {
  background: var(--navy);
  padding: 80px 0;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip h2 { color: var(--white); margin-bottom: 20px; }
.about-strip p  { color: rgba(255,255,255,.7); margin-bottom: 16px; }
.about-strip .tag { border-color: var(--gold); color: var(--gold); }
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-img-grid .main-img {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
}
.about-img-grid .main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-stat-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.about-stat-box .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}
.about-stat-box .lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════
   PROGRAMS / ACTIVITIES
═══════════════════════════════════ */
.programs { background: var(--cream); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px var(--shadow);
  border-color: var(--gold-pale);
}
.program-card:hover::before { transform: scaleX(1); }
.program-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.program-card h4 { color: var(--navy); margin-bottom: 10px; font-family: var(--font-serif); font-size: 1.2rem; }
.program-card p  { font-size: .92rem; }

/* ═══════════════════════════════════
   2026 EVENTS SCHEDULE
═══════════════════════════════════ */
.events-section { background: var(--offwhite); }
.events-year-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .12em;
  margin-bottom: 40px;
}
.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.schedule-day {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 180px 1fr;
}
.schedule-day.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.schedule-date-col {
  background: var(--navy);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.schedule-day.featured .schedule-date-col { background: var(--gold); }
.schedule-day.featured .schedule-date-col .day-name,
.schedule-day.featured .schedule-date-col .day-num,
.schedule-day.featured .schedule-date-col .day-month { color: var(--navy) !important; }
.day-name  { font-family: var(--font-display); font-size: .7rem; letter-spacing: .14em; color: var(--gold); text-transform: uppercase; }
.day-num   { font-family: var(--font-serif); font-size: 2.8rem; color: var(--white); line-height: 1; font-weight: 700; }
.day-month { font-size: .78rem; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; }
.schedule-events-col { padding: 28px 32px; }
.schedule-events-col h4 { color: var(--navy); font-family: var(--font-serif); margin-bottom: 14px; font-size: 1.1rem; }
.event-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.event-item:last-child { border-bottom: none; }
.event-time {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 70px;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding-top: 2px;
}
.event-desc { font-size: .92rem; color: var(--text-mid); }
.event-emoji { font-size: 1rem; }

/* ═══════════════════════════════════
   SCHOLARSHIP BANNER
═══════════════════════════════════ */
.scholarship-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.scholarship-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,.15) 0%, transparent 60%);
}
.scholarship-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.scholarship-inner h2 { color: var(--white); margin-bottom: 16px; }
.scholarship-inner p  { color: rgba(255,255,255,.7); margin-bottom: 24px; }
.scholarship-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.highlight-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius);
  padding: 20px;
}
.highlight-box .hl-val { font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.highlight-box .hl-key { font-size: .78rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; }
.scholarship-notice {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.scholarship-notice h3 { color: var(--gold); margin-bottom: 16px; font-family: var(--font-serif); }
.criteria-list { display: flex; flex-direction: column; gap: 10px; }
.criteria-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.criteria-item::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ═══════════════════════════════════
   IMPACT COUNTER
═══════════════════════════════════ */
.impact-strip {
  background: var(--gold);
  padding: 60px 0;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.impact-item .num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.impact-item .plus { font-size: 2rem; }
.impact-item .lbl {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .75;
  margin-top: 8px;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: #07152a;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-name { font-family: var(--font-serif); color: var(--white); font-size: 1rem; font-weight: 600; line-height: 1.2; }
.footer-desc { font-size: .9rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-family: var(--font-display); font-size: .75rem; letter-spacing: .14em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.footer-contact-item span:first-child { color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════
   FORMS (Application)
═══════════════════════════════════ */
.form-page {
  background: var(--offwhite);
  padding-top: 100px;
  min-height: 100vh;
}
.form-header {
  background: var(--navy);
  padding: 60px 24px 40px;
  text-align: center;
  position: relative;
}
.form-header h1 { color: var(--white); font-size: 1.6rem; font-family: var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.form-header .subtitle { color: var(--gold); font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; margin-top: 6px; }
.form-header .edition { font-size: .78rem; color: rgba(255,255,255,.5); letter-spacing: .1em; margin-top: 8px; text-transform: uppercase; }
.form-body { max-width: 900px; margin: 0 auto; padding: 48px 24px; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
  box-shadow: 0 4px 24px var(--shadow);
}
.form-card h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold-pale);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-card h3 .section-num {
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row-full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.field label .req { color: #e53e3e; margin-left: 3px; }
.field input,
.field select,
.field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(30,64,128,.1);
}
.field textarea { resize: vertical; min-height: 90px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a4a6a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-notice {
  background: #fff8e8;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: .9rem;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.form-notice strong { color: var(--navy); }
.form-submit-wrap { text-align: center; }
.form-submit-wrap .btn { padding: 16px 48px; font-size: 1rem; }

/* ═══════════════════════════════════
   CBT EXAM ENGINE
═══════════════════════════════════ */
.exam-page { background: #f0f4f9; min-height: 100vh; padding-top: 80px; }
.exam-header-bar {
  background: var(--navy);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
}
.exam-header-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.exam-title { color: var(--white); font-family: var(--font-display); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.exam-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  padding: 8px 20px;
  border-radius: 100px;
}
.exam-timer .time-icon { color: var(--gold); }
.exam-timer .time-val { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); }
.exam-timer.urgent .time-val { color: #ff6b6b; animation: pulse 1s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
.exam-progress-bar {
  height: 4px;
  background: rgba(255,255,255,.15);
  position: fixed;
  top: 56px; left: 0; right: 0;
  z-index: 100;
}
.exam-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width .5s ease;
}
.exam-body { max-width: 900px; margin: 0 auto; padding: 32px 24px 80px; }
.exam-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.q-counter { font-family: var(--font-serif); color: var(--text-mid); font-size: 1rem; }
.q-counter strong { color: var(--navy); font-size: 1.3rem; }
.q-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  animation: fadeIn .4s ease;
}
@keyframes fadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
.q-number {
  font-family: var(--font-display);
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.q-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 28px;
}
.options-grid { display: flex; flex-direction: column; gap: 12px; }
.option-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.option-label:hover { border-color: var(--navy-light); background: #f0f4fb; }
.option-label input[type="radio"] { display: none; }
.option-label input[type="radio"]:checked + .opt-letter { background: var(--navy); color: var(--white); border-color: var(--navy); }
.option-label:has(input:checked) { border-color: var(--navy); background: #eef3fb; }
.opt-letter {
  width: 34px; height: 34px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--text-mid);
  flex-shrink: 0;
  transition: var(--transition);
}
.opt-text { font-size: .95rem; color: var(--text); }
.exam-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  border: 1px solid var(--border);
}
.q-dot-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 500px;
}
.q-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--offwhite);
  color: var(--text-mid);
  border: 2px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.q-dot.answered { background: var(--navy); color: var(--white); border-color: var(--navy); }
.q-dot.current  { border-color: var(--gold); }

/* ═══════════════════════════════════
   ADMIN PANEL
═══════════════════════════════════ */
.admin-wrap { display: flex; min-height: 100vh; background: #f0f2f5; }
.admin-sidebar {
  width: 240px;
  background: var(--navy);
  position: fixed;
  top: 0; bottom: 0;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.admin-sidebar-logo .logo-text { color: var(--white); font-family: var(--font-serif); font-size: .95rem; font-weight: 600; }
.admin-sidebar-logo .logo-sub { color: var(--gold); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.admin-nav { padding: 20px 0; flex: 1; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  font-weight: 500;
  transition: var(--transition);
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,.07); color: var(--white); border-left: 3px solid var(--gold); }
.admin-content { margin-left: 240px; padding: 32px; flex: 1; }
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.admin-topbar h1 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--navy); }
.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
}
.stat-card .sc-num { font-family: var(--font-serif); font-size: 2.2rem; color: var(--navy); font-weight: 700; }
.stat-card .sc-lbl { font-size: .8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; }
.stat-card .sc-icon { font-size: 1.8rem; margin-bottom: 12px; }
.admin-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.admin-table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.admin-table-head h3 { font-family: var(--font-serif); color: var(--navy); }
.admin-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.admin-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-light);
  border-bottom: 2px solid var(--border);
}
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text); }
.admin-table tr:hover td { background: var(--cream); }
.badge-score {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
}
.badge-score.high   { background: #d4edda; color: #155724; }
.badge-score.mid    { background: #fff3cd; color: #856404; }
.badge-score.low    { background: #f8d7da; color: #721c24; }
.badge-score.pending{ background: var(--offwhite); color: var(--text-mid); }

/* ═══════════════════════════════════
   SUCCESS / RESULT PAGE
═══════════════════════════════════ */
.result-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.result-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 540px;
  width: 100%;
  box-shadow: 0 40px 80px rgba(0,0,0,.3);
}
.result-icon { font-size: 4rem; margin-bottom: 24px; }
.result-card h2 { font-family: var(--font-serif); color: var(--navy); margin-bottom: 12px; }
.result-card p { margin-bottom: 20px; }
.score-display {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  margin: 24px 0;
}
.score-display .score-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.score-display .score-total { color: rgba(255,255,255,.6); font-size: .9rem; }
.app-id-display {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px;
  margin: 16px 0;
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: .1em;
}

/* ═══════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--cream), transparent);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════
   MOBILE
═══════════════════════════════════ */
@media (max-width: 900px) {
  .hero-content         { grid-template-columns: 1fr; }
  .hero-image-wrap      { display: none; }
  .about-strip-inner    { grid-template-columns: 1fr; }
  .programs-grid        { grid-template-columns: 1fr 1fr; }
  .scholarship-inner    { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .impact-grid          { grid-template-columns: 1fr 1fr; }
  .stats-cards          { grid-template-columns: 1fr 1fr; }
  .schedule-day         { grid-template-columns: 120px 1fr; }
  .admin-sidebar        { display: none; }
  .admin-content        { margin-left: 0; }
}
@media (max-width: 640px) {
  .nav-links            { display: none; }
  .nav-hamburger        { display: flex; }
  .programs-grid        { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }
  .form-row-3           { grid-template-columns: 1fr; }
  .scholarship-highlights { grid-template-columns: 1fr 1fr; }
  .footer-grid          { grid-template-columns: 1fr; }
  .impact-grid          { grid-template-columns: 1fr 1fr; }
  .schedule-day         { grid-template-columns: 1fr; }
  .schedule-date-col    { flex-direction: row; gap: 12px; justify-content: flex-start; padding: 16px 20px; }
  .form-card            { padding: 28px 20px; }
  .hero-stats           { flex-wrap: wrap; }
  .nav-cta              { display: none; }
  .stats-cards          { grid-template-columns: 1fr 1fr; }
}

/* Print */
@media print {
  .navbar, .footer { display: none; }
}

/* ── Animate on scroll ── */
.aos-fade { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.aos-fade.visible { opacity: 1; transform: none; }
