/* JBM Global School — Main Stylesheet v1.0 */
/* Fonts loaded via wp_enqueue_style in functions.php */


/* ─── RESET & ROOT ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1A1F36;
  background: #F6F8FC;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ─── CSS VARIABLES ────────────────────────────────── */
:root {
  --navy:       #1A0400;  /* deep dark maroon — hero/footer bg */
  --navy-mid:   #2D0900;  /* stats bar bg */
  --navy-light: #8B1500;  /* crimson — labels, links, step nums */
  --navy-pale:  #FBF0EE;  /* light peach — card highlights */
  --gold:       #8B2500;  /* dark orange-red — small labels */
  --gold-mid:   #E8520A;  /* brand orange — CTAs (matches logo) */
  --gold-light: #F47216;  /* flame orange — hero highlights */
  --gold-bg:    #FDF3EE;  /* light peach bg — rating pills */
  --gold-border:#F5A060;  /* peach border */
  --white:      #FFFFFF;
  --off:        #F6F8FC;
  --border:     #DDE3EF;
  --text:       #1A1F36;
  --muted:      #5A6480;
  --light:      #8A96B0;
  --radius:     12px;
  --radius-lg:  18px;
  --shadow:     0 2px 12px rgba(26,5,0,.08);
  --shadow-md:  0 6px 28px rgba(26,5,0,.12);
}

/* ─── UTILITY ──────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.serif { font-family: 'Playfair Display', Georgia, serif; }
.section-label {
  font-size: 11px; font-weight: 600; color: var(--gold);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 12px;
}
.section-sub {
  font-size: 15px; color: var(--muted);
  line-height: 1.75; max-width: 580px; margin-bottom: 32px;
}
.s-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--navy-light);
  border-bottom: 1.5px solid var(--navy-pale);
  padding-bottom: 2px; margin-top: 20px; transition: color .2s, border-color .2s;
}
.s-link:hover { color: var(--gold); border-color: var(--gold-border); }
.s-link::after { content: '→'; font-size: 16px; }

/* ─── ANNOUNCEMENT BAR ─────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.topbar-text {
  font-size: 13px; color: #FFD0B0; font-weight: 400;
}
.topbar-text strong { color: var(--gold-light); font-weight: 600; }
.topbar-btn {
  background: var(--gold-mid); color: var(--navy);
  font-size: 12px; font-weight: 700;
  padding: 6px 18px; border-radius: 20px;
  letter-spacing: .03em; transition: background .2s;
}
.topbar-btn:hover { background: var(--gold-light); }

/* ─── NAVIGATION ───────────────────────────────────── */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text {
  display: none; align-items: center; gap: 8px;
}
.nav-logo-text .nl-main { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); }
.nav-logo-text .nl-sub  { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-item {
  font-size: 13px; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: color .2s; white-space: nowrap;
}
.nav-item:hover { color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-enquire {
  background: var(--white); color: var(--navy);
  font-size: 13px; font-weight: 600;
  padding: 9px 20px; border-radius: 9px;
  border: 1.5px solid var(--border);
  transition: border-color .2s;
}
.btn-enquire:hover { border-color: var(--navy-light); }
.btn-register {
  background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 10px 22px; border-radius: 9px;
  transition: background .2s;
}
.btn-register:hover { background: var(--navy-light); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; display: block; }

/* Mobile nav drawer */
.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 14px 24px;
  font-size: 15px; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-footer {
  display: flex; gap: 10px; padding: 16px 24px;
}
.mobile-nav-footer .btn-register { flex: 1; text-align: center; }
.mobile-nav-footer .btn-enquire { flex: 1; text-align: center; }

/* ─── HERO — full-screen video/image background ─────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
/* Background video */
.hero-video {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover; z-index: 0;
}
/* Fallback image when video not loaded */
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/telescope-hero.jpg');
  background-size: cover; background-position: center 25%;
  z-index: 0;
}
/* Warm dark overlay — enough for text readability, not suffocating */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(15,4,0,.72) 0%,
    rgba(20,6,0,.58) 50%,
    rgba(10,3,0,.65) 100%
  );
}
/* Subtle warm vignette at bottom */
.hero-overlay::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(transparent, rgba(8,2,0,.5));
}
/* Content sits above everything */
.hero-inner {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.hero-inner > * { animation: fadeUp .7s ease both; }
.hero-inner > *:nth-child(1){animation-delay:.05s}
.hero-inner > *:nth-child(2){animation-delay:.2s}
.hero-inner > *:nth-child(3){animation-delay:.32s}
.hero-inner > *:nth-child(4){animation-delay:.42s}
.hero-inner > *:nth-child(5){animation-delay:.5s}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,82,10,.18);
  border: 1px solid rgba(232,82,10,.4);
  border-radius: 20px; padding: 6px 16px;
  margin-bottom: 20px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-mid); animation: pulse 2s infinite; }
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.35}}
.hero-eyebrow-text { font-size: 11px; color: var(--gold-light); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 700; color: #fff;
  line-height: 1.15; margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.hero h1 em { color: var(--gold-light); font-style: normal; }

.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.82);
  line-height: 1.75; max-width: 520px;
  margin: 0 auto 28px;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 32px;
}
.hero-tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px; padding: 5px 14px;
  font-size: 12px; color: rgba(255,255,255,.85); font-weight: 500;
  backdrop-filter: blur(4px);
}
.hero-btns {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 48px;
}
.btn-gold {
  background: var(--gold-mid); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 15px 34px; border-radius: 10px;
  letter-spacing: .02em;
  box-shadow: 0 4px 24px rgba(232,82,10,.5);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,82,10,.55); }
.btn-ghost {
  background: rgba(255,255,255,.12); color: #fff;
  font-size: 14px; font-weight: 500;
  padding: 14px 28px; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); }

/* Bottom info strip */
.hero-bottom {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  padding: 0 24px 32px;
}
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px; padding: 10px 16px;
  backdrop-filter: blur(8px);
}
.hero-badge-icon { font-size: 18px; }
.hero-badge-text strong { display: block; font-size: 13px; color: #fff; font-weight: 600; }
.hero-badge-text span { font-size: 11px; color: rgba(255,255,255,.65); }
.hero-rating {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px; padding: 10px 16px;
  backdrop-filter: blur(8px);
}
.hero-rating-stars { font-size: 16px; color: #FFD060; letter-spacing: 2px; }
.hero-rating-text { font-size: 12px; color: rgba(255,255,255,.7); }
.hero-rating-text strong { color: #fff; font-weight: 700; font-size: 14px; }
/* Video play hint */
.hero-video-note {
  position: relative; z-index: 2;
  text-align: center; padding-bottom: 24px;
  font-size: 11px; color: rgba(255,255,255,.35);
  letter-spacing: .05em; text-transform: uppercase;
}

/* ─── STATS BAR — white, clean ─────────────────────── */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 24px 16px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--navy-light);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--muted); margin-top: 5px; font-weight: 500; }

/* ─── GENERIC SECTION ─────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }

/* ─── WHY JBM ──────────────────────────────────────── */
.why-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.why-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 180px;
  gap: 10px;
}
.why-gallery img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius);
}
.why-gallery img:first-child {
  grid-row: span 2; height: 100%;
}
.rating-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 24px; padding: 8px 16px; margin-bottom: 24px;
}
.rating-pill-stars { color: var(--gold); font-size: 14px; letter-spacing: 1.5px; }
.rating-pill-text { font-size: 13px; color: #8A6200; font-weight: 600; }
.why-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 20px;
}
.why-card {
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
  transition: box-shadow .2s, border-color .2s;
}
.why-card:hover { box-shadow: var(--shadow); border-color: #C4D3EB; }
.why-card-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: #FBF0EE;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.why-card-icon svg { width: 20px; height: 20px; }
.why-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ─── INFRASTRUCTURE ───────────────────────────────── */
.infra-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.infra-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .25s, transform .2s;
}
.infra-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.infra-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.infra-card-body { padding: 16px 18px; }
.infra-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.infra-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ─── ACADEMICS ────────────────────────────────────── */
.stages-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 28px;
}
.stage-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px 16px; text-align: center;
  position: relative; overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.stage-card:hover { border-color: var(--navy-light); box-shadow: var(--shadow); }
.stage-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--navy);
}
.stage-age {
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 6px;
}
.stage-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.stage-grades { font-size: 12px; color: var(--muted); }
.curriculum-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.curriculum-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow);
}
.curriculum-badge {
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; letter-spacing: .04em; text-transform: uppercase;
  display: inline-block; margin-bottom: 12px;
}
.cbse { background: #EEF3FD; color: #1E3A8A; }
.cambridge { background: #ECFDF5; color: #065F46; }
.curriculum-card h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.curriculum-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.curriculum-card ul { list-style: none; margin-top: 10px; }
.curriculum-card ul li {
  font-size: 13px; color: var(--muted); padding: 4px 0;
  display: flex; align-items: flex-start; gap: 8px;
}
.curriculum-card ul li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ─── HOUSE SYSTEM ──────────────────────────────────── */
.houses-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.house-card {
  border-radius: var(--radius-lg); padding: 24px 20px;
  border: 1.5px solid; transition: transform .2s, box-shadow .2s;
}
.house-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.house-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; font-size: 20px;
}
.house-card h4 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.house-card p { font-size: 13px; line-height: 1.6; }
.h-e { background: #EEF4FD; border-color: #BDD0EE; }
.h-e .house-icon { background: #D6E6FA; }
.h-e h4, .h-e p { color: #1E3A8A; }
.h-g { background: #ECFDF5; border-color: #A7EED0; }
.h-g .house-icon { background: #BBF7D0; }
.h-g h4, .h-g p { color: #065F46; }
.h-i { background: #F5F3FF; border-color: #C4B5FD; }
.h-i .house-icon { background: #DDD6FE; }
.h-i h4, .h-i p { color: #4C1D95; }
.h-h { background: #FFFBEB; border-color: #FCD34D; }
.h-h .house-icon { background: #FEF3C7; }
.h-h h4, .h-h p { color: #78350F; }

/* ─── TESTIMONIALS ──────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .2s;
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-top { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  overflow: hidden; border: 2.5px solid var(--navy-pale); flex-shrink: 0;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 1px; }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 1.5px; }
.testi-quote {
  font-size: 14px; color: var(--text); line-height: 1.7;
  font-style: italic; flex: 1;
}
.testi-quote::before { content: '\201C'; font-size: 24px; color: var(--gold); line-height: 0; vertical-align: -.4em; margin-right: 2px; }

/* ─── BLOG ──────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.blog-body { padding: 18px; }
.blog-tag {
  font-size: 10px; font-weight: 700; color: var(--gold);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px;
}
.blog-body h4 {
  font-size: 15px; font-weight: 600; color: var(--navy);
  line-height: 1.4; margin-bottom: 6px;
}
.blog-date { font-size: 12px; color: var(--light); }

/* ─── AFFILIATIONS ───────────────────────────────────── */
.affil-wrap {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 8px;
}
.affil-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 20px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow); transition: border-color .2s, box-shadow .2s;
}
.affil-pill:hover { border-color: var(--navy-light); box-shadow: var(--shadow-md); }
.affil-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

/* ─── ADMISSIONS STEPS ──────────────────────────────── */
.admission-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 16px; padding: 14px 0; position: relative; }
.step-item:not(:last-child)::after {
  content: ''; position: absolute;
  left: 15px; top: 46px; bottom: 0;
  width: 1.5px; background: var(--border);
}
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1;
}
.step-content {}
.step-title { font-size: 14px; font-weight: 600; color: var(--navy); }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-top: 2px; }

/* ─── CTA FORM BOX ──────────────────────────────────── */
.cta-box {
  background: var(--navy); border-radius: 20px;
  padding: 44px 40px; position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(139,21,0,.35);
  pointer-events: none;
}
.cta-label {
  font-size: 11px; font-weight: 700; color: var(--gold-mid);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: #fff;
  margin-bottom: 10px; line-height: 1.2;
}
.cta-sub { font-size: 14px; color: #6A90B8; line-height: 1.65; margin-bottom: 28px; max-width: 380px; }
.cta-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.cta-input {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 9px; padding: 12px 16px;
  font-size: 13px; color: #fff; font-family: inherit;
  outline: none; width: 100%;
  transition: border-color .2s;
}
.cta-input::placeholder { color: #4A6A90; }
.cta-input:focus { border-color: rgba(232,168,32,.5); }
.cta-submit {
  grid-column: 1 / -1;
  background: var(--gold-mid); color: var(--navy);
  font-size: 14px; font-weight: 700;
  padding: 14px; border-radius: 10px;
  letter-spacing: .02em;
  transition: background .2s, transform .15s;
}
.cta-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.cta-contacts {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px;
}
.cta-contact-btn {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  color: #D4907A; font-size: 13px;
  padding: 9px 18px; border-radius: 8px;
  display: flex; align-items: center; gap: 6px;
  transition: background .2s;
}
.cta-contact-btn:hover { background: rgba(255,255,255,.12); }
.cta-wa { background: rgba(37,211,102,.15); border-color: rgba(37,211,102,.3); color: #6EDB9A; }
.cta-wa:hover { background: rgba(37,211,102,.25); }
.cta-note { font-size: 12px; color: #9A4020; }

/* ─── FOOTER ────────────────────────────────────────── */
.footer { background: #0D0200; padding: 60px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 48px;
}
.footer-logo img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1); opacity: .7;
  margin-bottom: 14px;
}
.footer-desc { font-size: 13px; color: #3A5070; line-height: 1.8; }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.footer-soc {
  width: 34px; height: 34px; border-radius: 9px;
  background: #0F1C35; border: 1px solid #1A2A40;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.footer-soc:hover { background: #3D1000; }
.footer-soc svg { width: 15px; height: 15px; fill: #3A5A80; }
.footer-col h5 {
  font-size: 11px; font-weight: 700; color: #9A4020;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 13px; color: #2A3A50;
  margin-bottom: 9px; transition: color .2s;
}
.footer-col a:hover { color: #5A7A90; }
.footer-contact-info { font-size: 13px; color: #2A3A50; line-height: 1.9; }
.footer-divider { border: none; border-top: 1px solid #111D30; margin-bottom: 20px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: #1E2E40; }
.footer-links-row { display: flex; gap: 20px; }
.footer-links-row a { font-size: 12px; color: #1E2E40; }
.footer-links-row a:hover { color: #E8520A; }

/* ─── FLOATING ACTION BUTTONS ──────────────────────── */
.fab-container {
  position: fixed; bottom: 24px; right: 20px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 200;
}
.fab {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 28px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap; border: none;
}
.fab:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.fab svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.fab-wa { background: #25D366; color: #fff; }
.fab-call { background: var(--navy); color: #fff; border: 1px solid rgba(255,255,255,.1); }

/* ─── ANIMATIONS ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-inner > * {
  animation: fadeUp .6s ease both;
}
.hero-inner > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > *:nth-child(2) { animation-delay: .15s; }
.hero-inner > *:nth-child(3) { animation-delay: .25s; }
.hero-inner > *:nth-child(4) { animation-delay: .32s; }
.hero-inner > *:nth-child(5) { animation-delay: .38s; }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-layout { grid-template-columns: 1fr; }
  .why-gallery { max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .infra-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid  { grid-template-columns: 1fr 1fr; }
  .admission-layout { grid-template-columns: 1fr; }
  .houses-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .btn-register { display: none; }
  .hamburger { display: flex; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--border); }
  .stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .stages-row { grid-template-columns: repeat(2, 1fr); }
  .curriculum-row { grid-template-columns: 1fr; }
  .cta-box { padding: 32px 24px; }
  .cta-form { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
  .hero-inner { padding: 60px 20px 40px; }
  .hero-bottom { gap: 10px; padding: 0 16px 24px; }
}
@media (max-width: 560px) {
  .section { padding: 52px 0; }
  .infra-grid { grid-template-columns: 1fr 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .fab-call { display: none; }
  .fab { padding: 11px 16px; font-size: 12px; }
}
@media (max-width: 400px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-gold, .btn-ghost { width: 100%; max-width: 280px; text-align: center; }
  .houses-grid { grid-template-columns: 1fr; }
}


/* ─── ADMISSIONS PAGE STYLES ─────────────────────────── */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;color:#1A1F36;background:#F6F8FC;overflow-x:hidden}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button{cursor:pointer;font-family:inherit;border:none}
:root{
  --navy:#1A0400;--navy-mid:#2D0900;--navy-light:#8B1500;--navy-pale:#FBF0EE;
  --gold:#8B2500;--gold-mid:#E8520A;--gold-light:#F47216;--gold-bg:#FDF3EE;--gold-border:#F5A060;
  --white:#FFFFFF;--off:#F6F8FC;--border:#DDE3EF;--text:#1A1F36;--muted:#5A6480;--light:#8A96B0;
  --r:12px;--rl:18px;--sh:0 2px 12px rgba(26,5,0,.08);--shm:0 6px 28px rgba(26,5,0,.13)
}
.container{max-width:1160px;margin:0 auto;padding:0 24px}
.section-label{font-size:11px;font-weight:600;color:var(--gold);letter-spacing:.1em;text-transform:uppercase;margin-bottom:8px}
.section-title{font-family:'Playfair Display',serif;font-size:clamp(22px,3.5vw,36px);font-weight:700;color:var(--navy);line-height:1.2;margin-bottom:12px}
.section-sub{font-size:15px;color:var(--muted);line-height:1.75;max-width:580px;margin-bottom:32px}
.s{padding:80px 0}
.s-w{background:var(--white)}
.s-o{background:var(--off)}

/* TOPBAR */
.topbar{background:var(--navy);padding:9px 24px;display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap}
.topbar-text{font-size:13px;color:#FFD0B0}
.topbar-text strong{color:var(--gold-light);font-weight:600}
.topbar-btn{background:var(--gold-mid);color:#fff;font-size:12px;font-weight:700;padding:6px 18px;border-radius:20px;transition:background .2s}
.topbar-btn:hover{background:var(--gold-light)}

/* NAV */
.nav{background:var(--white);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:100;box-shadow:0 1px 8px rgba(26,5,0,.06)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:68px;gap:16px}
.nav-logo img{height:52px;width:auto}
.nav-menu{display:flex;align-items:center;gap:26px}
.nav-item{font-size:13px;font-weight:500;color:var(--muted);cursor:pointer;transition:color .2s}
.nav-item:hover{color:var(--navy)}
.nav-item.active{color:var(--navy-light);font-weight:600;border-bottom:2px solid var(--gold-mid);padding-bottom:2px}
.nav-actions{display:flex;align-items:center;gap:10px}
.btn-outline{background:var(--white);color:var(--navy);font-size:13px;font-weight:600;padding:9px 20px;border-radius:9px;border:1.5px solid var(--border);transition:border-color .2s}
.btn-outline:hover{border-color:var(--navy-light)}
.btn-solid{background:var(--navy-light);color:#fff;font-size:13px;font-weight:700;padding:10px 22px;border-radius:9px;transition:background .2s}
.btn-solid:hover{background:var(--gold-mid)}
.ham{display:none;flex-direction:column;gap:5px;background:none;border:none;padding:6px}
.ham span{width:22px;height:2px;background:var(--navy);border-radius:2px;display:block}
.mobile-nav{display:none;flex-direction:column;background:var(--white);border-bottom:1px solid var(--border)}
.mobile-nav.open{display:flex}
.mobile-nav a{display:block;padding:14px 24px;font-size:15px;font-weight:500;color:var(--text);border-bottom:1px solid var(--border)}
.mn-ctas{display:flex;gap:10px;padding:16px 24px}
.mn-ctas button{flex:1;text-align:center}

/* PAGE HERO */
.page-hero{background:var(--navy);position:relative;overflow:hidden;padding:72px 24px 0;text-align:center}
.page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 55% at 50% 0%,rgba(139,21,0,.5) 0%,transparent 70%);pointer-events:none}
.hero-inner{position:relative;z-index:2;max-width:680px;margin:0 auto}
@keyframes fu{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.hero-inner>*{animation:fu .65s ease both}
.hero-inner>*:nth-child(1){animation-delay:.05s}
.hero-inner>*:nth-child(2){animation-delay:.18s}
.hero-inner>*:nth-child(3){animation-delay:.28s}
.hero-inner>*:nth-child(4){animation-delay:.38s}
.hero-inner>*:nth-child(5){animation-delay:.46s}
.breadcrumb{display:flex;align-items:center;justify-content:center;gap:6px;font-size:12px;color:rgba(255,255,255,.4);margin-bottom:16px}
.breadcrumb a{color:rgba(255,255,255,.4);transition:color .2s}
.breadcrumb a:hover{color:var(--gold-light)}
.breadcrumb span{color:var(--gold-light)}
.page-hero h1{font-family:'Playfair Display',serif;font-size:clamp(26px,5vw,48px);font-weight:700;color:#fff;line-height:1.15;margin-bottom:14px;text-shadow:0 2px 20px rgba(0,0,0,.2)}
.page-hero h1 em{color:var(--gold-light);font-style:normal}
.page-hero p{font-size:16px;color:rgba(255,255,255,.72);line-height:1.75;max-width:480px;margin:0 auto 28px}
.hero-btns{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:0}
.btn-gold{background:var(--gold-mid);color:#fff;font-size:14px;font-weight:700;padding:14px 32px;border-radius:10px;box-shadow:0 4px 24px rgba(232,82,10,.45);transition:background .2s,transform .15s}
.btn-gold:hover{background:var(--gold-light);transform:translateY(-1px)}
.btn-ghost{background:rgba(255,255,255,.1);color:#fff;font-size:14px;font-weight:500;padding:13px 26px;border-radius:10px;border:1.5px solid rgba(255,255,255,.3);backdrop-filter:blur(4px);transition:all .2s}
.btn-ghost:hover{background:rgba(255,255,255,.2)}
/* Hero image */
.hero-img{position:relative;max-width:900px;margin:32px auto 0}
.hero-img img{width:100%;height:300px;object-fit:cover;object-position:center 30%;border-radius:16px 16px 0 0;display:block}
.hero-strip{position:absolute;bottom:0;left:0;right:0;background:rgba(26,5,0,.65);backdrop-filter:blur(8px);padding:14px 24px;display:flex;align-items:center;justify-content:space-evenly;gap:12px;flex-wrap:wrap}
.strip-item{display:flex;align-items:center;gap:8px}
.strip-icon{font-size:18px}
.strip-text strong{display:block;font-size:13px;color:#fff;font-weight:600}
.strip-text span{font-size:11px;color:rgba(255,255,255,.55)}

/* JUMP NAV */
.jump-nav{background:var(--white);border-bottom:1px solid var(--border);position:sticky;top:68px;z-index:90}
.jump-inner{display:flex;gap:0;overflow-x:auto;scrollbar-width:none}
.jump-inner::-webkit-scrollbar{display:none}
.jlink{font-size:13px;font-weight:500;color:var(--muted);padding:14px 18px;white-space:nowrap;cursor:pointer;border-bottom:2px solid transparent;transition:all .2s;flex-shrink:0}
.jlink:hover{color:var(--navy-light)}
.jlink.active{color:var(--navy-light);border-bottom-color:var(--gold-mid);font-weight:600}

/* WHY CARDS */
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.why-card{background:var(--white);border:1px solid var(--border);border-radius:var(--rl);padding:24px;box-shadow:var(--sh);transition:box-shadow .2s,transform .2s,border-color .2s}
.why-card:hover{box-shadow:var(--shm);transform:translateY(-3px);border-color:var(--gold-border)}
.why-num{font-family:'Playfair Display',serif;font-size:36px;font-weight:700;color:var(--navy-pale);line-height:1;margin-bottom:12px}
.why-card h4{font-size:15px;font-weight:600;color:var(--navy);margin-bottom:6px}
.why-card p{font-size:13px;color:var(--muted);line-height:1.65}

/* PROCESS */
.process-layout{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.steps{display:flex;flex-direction:column}
.step{display:flex;gap:20px;padding:18px 0;position:relative;cursor:pointer}
.step:not(:last-child)::after{content:'';position:absolute;left:19px;top:54px;bottom:0;width:2px;background:linear-gradient(var(--border),transparent)}
.step-circle{width:40px;height:40px;border-radius:50%;background:var(--navy-pale);border:2px solid var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-family:'Playfair Display',serif;font-size:16px;font-weight:700;color:var(--navy-light);transition:all .25s;z-index:1}
.step.active .step-circle,.step:hover .step-circle{background:var(--navy-light);border-color:var(--navy-light);color:#fff}
.step-t{font-size:15px;font-weight:600;color:var(--navy);padding-top:7px;transition:color .2s}
.step.active .step-t{color:var(--navy-light)}
.step-d{font-size:12px;color:var(--muted);margin-top:2px}
/* Detail */
.detail-wrap{background:var(--white);border:1px solid var(--border);border-radius:var(--rl);padding:32px;box-shadow:var(--sh);position:sticky;top:160px;min-height:320px}
.dpanel{display:none}
.dpanel.active{display:block}
.d-num{font-family:'Playfair Display',serif;font-size:52px;font-weight:700;color:var(--navy-pale);line-height:1;margin-bottom:8px}
.d-title{font-family:'Playfair Display',serif;font-size:21px;font-weight:700;color:var(--navy);margin-bottom:10px}
.d-body{font-size:14px;color:var(--muted);line-height:1.75;margin-bottom:16px}
.d-list{list-style:none;display:flex;flex-direction:column;gap:8px;margin-bottom:16px}
.d-list li{display:flex;align-items:flex-start;gap:10px;font-size:13px;color:var(--text);line-height:1.55}
.d-list li::before{content:'✓';color:var(--gold-mid);font-weight:700;flex-shrink:0;margin-top:1px}
.d-note{background:var(--gold-bg);border:1px solid var(--gold-border);border-radius:var(--r);padding:12px 16px;font-size:13px;color:var(--navy-light);line-height:1.6}
.d-cta{display:flex;gap:10px;margin-top:20px;flex-wrap:wrap}
.d-cta .btn-gold{flex:1;text-align:center;padding:12px;font-size:13px}
.d-cta .btn-outline{flex:1;text-align:center}

/* STAGES */
.stages-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.stage{background:var(--white);border:1.5px solid var(--border);border-radius:var(--rl);padding:24px 16px;text-align:center;position:relative;overflow:hidden;transition:border-color .2s,box-shadow .2s}
.stage::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#8B1500,#E8520A)}
.stage:hover{border-color:var(--gold-border);box-shadow:var(--sh)}
.stage-age{font-size:11px;font-weight:700;color:var(--gold);letter-spacing:.06em;text-transform:uppercase;margin-bottom:8px}
.stage-name{font-family:'Playfair Display',serif;font-size:17px;font-weight:700;color:var(--navy);margin-bottom:4px}
.stage-grades{font-size:12px;color:var(--muted);margin-bottom:12px}
.stage-desc{font-size:12px;color:var(--muted);line-height:1.6}

/* CURRICULUM */
.curr-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.curr-card{background:var(--white);border:1px solid var(--border);border-radius:var(--rl);padding:28px;box-shadow:var(--sh);transition:box-shadow .2s}
.curr-card:hover{box-shadow:var(--shm)}
.cbse{background:#EEF3FD;color:#1E3A8A;font-size:11px;font-weight:700;padding:4px 12px;border-radius:20px;letter-spacing:.04em;text-transform:uppercase;display:inline-block;margin-bottom:14px}
.cam{background:#ECFDF5;color:#065F46;font-size:11px;font-weight:700;padding:4px 12px;border-radius:20px;letter-spacing:.04em;text-transform:uppercase;display:inline-block;margin-bottom:14px}
.curr-card h4{font-family:'Playfair Display',serif;font-size:18px;font-weight:700;color:var(--navy);margin-bottom:8px}
.curr-card p{font-size:13px;color:var(--muted);line-height:1.7;margin-bottom:14px}
.curr-card ul{list-style:none;display:flex;flex-direction:column;gap:8px}
.curr-card li{display:flex;align-items:flex-start;gap:10px;font-size:13px;color:var(--text);line-height:1.5}
.curr-card li::before{content:'✓';color:var(--gold-mid);font-weight:700;flex-shrink:0;margin-top:1px}

/* DOCS */
.docs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.doc{display:flex;align-items:flex-start;gap:12px;background:var(--white);border:1px solid var(--border);border-radius:var(--r);padding:14px 16px;transition:border-color .2s}
.doc:hover{border-color:var(--gold-border)}
.doc-icon{width:36px;height:36px;border-radius:9px;background:var(--gold-bg);border:1px solid var(--gold-border);display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0}
.doc-t{font-size:13px;font-weight:500;color:var(--navy);line-height:1.4}
.doc-s{font-size:11px;color:var(--muted);margin-top:2px}
.docs-note{background:var(--gold-bg);border:1px solid var(--gold-border);border-radius:var(--r);padding:14px 18px;font-size:13px;color:var(--navy-light);line-height:1.7;margin-top:16px}

/* BOOKING */
.book-layout{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.bq{font-family:'Playfair Display',serif;font-size:18px;font-style:italic;color:var(--navy);line-height:1.6;border-left:3px solid var(--gold-mid);padding-left:18px;margin-bottom:24px}
.cms{display:flex;flex-direction:column;gap:10px;margin-top:20px}
.cm{display:flex;align-items:center;gap:12px;background:var(--white);border:1px solid var(--border);border-radius:var(--r);padding:12px 16px;transition:border-color .2s,box-shadow .2s;text-decoration:none}
.cm:hover{border-color:var(--gold-border);box-shadow:var(--sh)}
.cm-icon{width:36px;height:36px;border-radius:9px;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0}
.cm-wa{background:#DCFCE7}.cm-ph{background:var(--navy-pale)}.cm-em{background:#EEF3FD}
.cm-t strong{display:block;font-size:13px;font-weight:600;color:var(--navy)}
.cm-t span{font-size:12px;color:var(--muted)}
/* Form */
.form-box{background:var(--navy);border-radius:20px;padding:40px;position:relative;overflow:hidden}
.form-box::before{content:'';position:absolute;top:-50px;right:-50px;width:200px;height:200px;border-radius:50%;background:rgba(139,21,0,.35);pointer-events:none}
.form-box::after{content:'';position:absolute;bottom:-60px;left:-30px;width:160px;height:160px;border-radius:50%;background:rgba(26,5,0,.45);pointer-events:none}
.fl{font-size:11px;font-weight:700;color:var(--gold-mid);letter-spacing:.1em;text-transform:uppercase;margin-bottom:6px;position:relative;z-index:1}
.ft{font-family:'Playfair Display',serif;font-size:22px;font-weight:700;color:#fff;margin-bottom:4px;position:relative;z-index:1;line-height:1.2}
.fs{font-size:13px;color:rgba(255,255,255,.5);margin-bottom:22px;position:relative;z-index:1}
.fg{display:grid;grid-template-columns:1fr 1fr;gap:10px;position:relative;z-index:1}
.fi{background:rgba(255,255,255,.08);border:1.5px solid rgba(255,255,255,.14);border-radius:9px;padding:12px 14px;font-size:13px;color:#fff;font-family:inherit;outline:none;width:100%;transition:border-color .2s}
.fi::placeholder{color:rgba(255,255,255,.3)}
.fi:focus{border-color:rgba(232,82,10,.6)}
.fsel{background:rgba(255,255,255,.08);border:1.5px solid rgba(255,255,255,.14);border-radius:9px;padding:12px 14px;font-size:13px;color:#fff;font-family:inherit;outline:none;width:100%;cursor:pointer}
.fsel option{background:#2D0900;color:#fff}
.fta{background:rgba(255,255,255,.08);border:1.5px solid rgba(255,255,255,.14);border-radius:9px;padding:12px 14px;font-size:13px;color:#fff;font-family:inherit;outline:none;width:100%;resize:vertical;min-height:80px}
.fta::placeholder{color:rgba(255,255,255,.3)}
.ffc{grid-column:1/-1}
.mtypes{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;grid-column:1/-1}
.mtype{background:rgba(255,255,255,.07);border:1.5px solid rgba(255,255,255,.12);border-radius:9px;padding:10px 8px;text-align:center;cursor:pointer;transition:all .2s;font-size:12px;color:rgba(255,255,255,.6);font-weight:500}
.mtype:hover,.mtype.sel{background:rgba(232,82,10,.2);border-color:rgba(232,82,10,.5);color:#fff}
.mtype-i{font-size:18px;display:block;margin-bottom:4px}
.fsub{grid-column:1/-1;background:var(--gold-mid);color:#fff;font-size:14px;font-weight:700;padding:14px;border-radius:10px;box-shadow:0 4px 20px rgba(232,82,10,.4);transition:background .2s,transform .15s}
.fsub:hover{background:var(--gold-light);transform:translateY(-1px)}
.fnote{font-size:11px;color:rgba(255,255,255,.3);text-align:center;grid-column:1/-1;margin-top:2px}

/* SCHOLARSHIPS */
.schol-layout{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.schol-q{font-family:'Playfair Display',serif;font-size:19px;font-style:italic;color:var(--navy);line-height:1.6;border-left:4px solid var(--gold-mid);padding-left:18px;margin-bottom:24px}
.schol-cards{display:flex;flex-direction:column;gap:12px}
.sc{display:flex;align-items:center;gap:16px;background:var(--white);border:1px solid var(--border);border-radius:var(--r);padding:16px 18px;transition:border-color .2s,box-shadow .2s}
.sc:hover{border-color:var(--gold-border);box-shadow:var(--sh)}
.sc-icon{width:42px;height:42px;border-radius:10px;background:var(--gold-bg);border:1px solid var(--gold-border);display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0}
.sc-t{font-size:14px;font-weight:600;color:var(--navy);margin-bottom:2px}
.sc-d{font-size:12px;color:var(--muted);line-height:1.5}
.schol-img{border-radius:var(--rl);overflow:hidden;box-shadow:var(--shm)}
.schol-img img{width:100%;height:380px;object-fit:cover}

/* TESTIMONIALS */
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.tc{background:var(--white);border:1px solid var(--border);border-radius:var(--rl);padding:24px;box-shadow:var(--sh);display:flex;flex-direction:column;gap:12px}
.tc-top{display:flex;align-items:center;gap:12px}
.tc-av{width:48px;height:48px;border-radius:50%;overflow:hidden;border:2.5px solid var(--navy-pale);flex-shrink:0}
.tc-av img{width:100%;height:100%;object-fit:cover}
.tc-n{font-size:14px;font-weight:600;color:var(--navy)}
.tc-r{font-size:12px;color:var(--muted)}
.tc-s{color:var(--gold);font-size:14px;letter-spacing:1px}
.tc-q{font-size:13px;color:var(--text);line-height:1.75;font-style:italic;flex:1}
.tc-q::before{content:'\201C';font-size:26px;color:var(--gold-mid);line-height:0;vertical-align:-.4em;margin-right:2px;font-family:'Playfair Display',serif}

/* FAQS */
.faq-tabs{display:flex;gap:8px;margin-bottom:24px;flex-wrap:wrap}
.ftab{font-size:13px;font-weight:500;padding:8px 18px;border-radius:20px;border:1.5px solid var(--border);color:var(--muted);cursor:pointer;transition:all .2s;background:var(--white)}
.ftab:hover,.ftab.active{background:var(--navy-light);color:#fff;border-color:var(--navy-light)}
.fgroup{display:none;flex-direction:column;gap:8px}
.fgroup.active{display:flex}
.fitem{background:var(--white);border:1px solid var(--border);border-radius:var(--r);overflow:hidden;transition:border-color .2s}
.fitem.open{border-color:var(--gold-border)}
.fq{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 20px;cursor:pointer;font-size:14px;font-weight:600;color:var(--navy);line-height:1.4}
.fq:hover{color:var(--navy-light)}
.fitem.open .fq{color:var(--navy-light)}
.fchev{width:20px;height:20px;flex-shrink:0;transition:transform .25s;color:var(--light)}
.fitem.open .fchev{transform:rotate(180deg);color:var(--gold-mid)}
.fa{display:none;padding:0 20px 16px;font-size:13px;color:var(--muted);line-height:1.75}
.fitem.open .fa{display:block}

/* CONTACT STRIP */
.cstrip{background:var(--navy);padding:40px;border-radius:var(--rl);display:grid;grid-template-columns:repeat(4,1fr);gap:20px;text-align:center}
.cs-icon{font-size:24px;margin-bottom:8px}
.cs-label{font-size:10px;font-weight:700;color:rgba(255,255,255,.35);letter-spacing:.08em;text-transform:uppercase;margin-bottom:4px}
.cs-val{font-size:13px;font-weight:600;color:#fff;line-height:1.6}
.cs-val a{color:var(--gold-light)}
.cs-sub{font-size:11px;color:rgba(255,255,255,.35);margin-top:2px}

/* FOOTER */
.footer{background:#0D0200;padding:56px 0 20px}
.fg-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:32px;margin-bottom:40px}
.fl-img img{height:38px;width:auto;filter:brightness(0) invert(1);opacity:.7;margin-bottom:14px}
.f-desc{font-size:13px;color:#6A3020;line-height:1.85}
.fsocs{display:flex;gap:8px;margin-top:18px}
.fsoc{width:32px;height:32px;border-radius:8px;background:#250800;border:1px solid #3D1000;display:flex;align-items:center;justify-content:center;transition:background .2s}
.fsoc:hover{background:#3D1000}
.fsoc svg{width:14px;height:14px;fill:#7A2A10}
.fc h5{font-size:11px;font-weight:700;color:#8A3A18;text-transform:uppercase;letter-spacing:.08em;margin-bottom:12px}
.fc a{display:block;font-size:13px;color:#6A2810;margin-bottom:8px;transition:color .2s}
.fc a:hover{color:var(--gold-mid)}
.fci{font-size:13px;color:#6A2810;line-height:1.9}
.fhr{border:none;border-top:1px solid #2D0900;margin-bottom:18px}
.fb{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px}
.fcopy{font-size:12px;color:#4A1808}
.flinks{display:flex;gap:18px}
.flinks a{font-size:12px;color:#4A1808}
.flinks a:hover{color:var(--gold-mid)}

/* FABs */
.fabc{position:fixed;bottom:24px;right:20px;display:flex;flex-direction:column;gap:10px;z-index:200}
.fab{display:flex;align-items:center;gap:8px;padding:12px 20px;border-radius:28px;font-size:13px;font-weight:600;box-shadow:0 4px 20px rgba(0,0,0,.25);transition:transform .2s,box-shadow .2s;white-space:nowrap;text-decoration:none;border:none}
.fab:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(0,0,0,.3)}
.fab svg{width:18px;height:18px;fill:#fff;flex-shrink:0}
.fab-wa{background:#25D366;color:#fff}
.fab-call{background:var(--navy-light);color:#fff}

/* RESPONSIVE */
@media(max-width:1024px){
  .process-layout{grid-template-columns:1fr}
  .detail-wrap{position:static}
  .book-layout{grid-template-columns:1fr}
  .schol-layout{grid-template-columns:1fr}
  .fg-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:900px){
  .why-grid{grid-template-columns:1fr 1fr}
  .stages-grid{grid-template-columns:repeat(2,1fr)}
  .curr-grid{grid-template-columns:1fr}
  .docs-grid{grid-template-columns:1fr 1fr}
  .testi-grid{grid-template-columns:1fr;max-width:480px;margin:0 auto}
  .cstrip{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .nav-menu{display:none}.btn-solid{display:none}.ham{display:flex}
  .jump-nav{top:60px}
  .why-grid{grid-template-columns:1fr}
}
@media(max-width:560px){
  .docs-grid{grid-template-columns:1fr}
  .fg-grid{grid-template-columns:1fr}
  .cstrip{grid-template-columns:1fr;text-align:left}
  .fab-call{display:none}
  .hero-img img{height:220px}
  .fg{grid-template-columns:1fr}
  .mtypes{grid-template-columns:1fr}
  .stages-grid{grid-template-columns:1fr 1fr}
}
