/* ═══════════════════════════════════════════════════════════════
   IDPS ISNAPUR — Production CSS
   PHP 7 compatible site — no build tools needed
   Fonts: Plus Jakarta Sans + Playfair Display
   Icons: Remixicon (ri-*)
   Primary: #006633  Gold: #D4A843
═══════════════════════════════════════════════════════════════ */

:root {
  --g1:     #003D1F;
  --g2:     #006633;
  --g3:     #008844;
  --g4:     #22c55e;
  --gold:   #D4A843;
  --gold2:  #FBBF24;
  --dark:   #080E0B;
  --dark2:  #101A13;
  --off:    #F0F9F4;
  --border: #E2EBE6;
  --text:   #1A2E22;
  --muted:  #64748B;
  --white:  #FFFFFF;
  --r:      12px;
  --rlg:    20px;
  --rxl:    28px;
  --sh:     0 4px 24px rgba(0,0,0,.08);
  --shlg:   0 16px 56px rgba(0,0,0,.14);
  --ease:   cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.72);
  font-size: 12.5px;
  padding: 7px 0;
  position: relative;
  z-index: 1100;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.72);
  transition: color .25s var(--ease);
}
.topbar-link:hover { color: var(--gold2); }
.topbar-link i { color: var(--gold2); font-size: 14px; }
.topbar-link--hide-sm { display: none; }
@media(min-width:576px){ .topbar-link--hide-sm { display: inline-flex; } }

/* Ticker */
.ticker-wrap { display: flex; align-items: center; gap: 8px; max-width: 400px; overflow: hidden; }
.ticker-badge {
  background: rgba(212,168,67,.15);
  border: 1px solid rgba(212,168,67,.35);
  color: var(--gold2);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 2px 9px; border-radius: 4px;
  white-space: nowrap; flex-shrink: 0;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-content {
  white-space: nowrap;
  display: inline-block;
  animation: tickerRun 24s linear infinite;
  font-size: 12px;
}
.ticker-content span { margin-right: 40px; }
.ticker-content span::before { content: '◆ '; color: var(--gold2); opacity: .45; font-size: 7px; vertical-align: middle; }
@keyframes tickerRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.topbar-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--g2); color: #fff;
  padding: 4px 14px; border-radius: 6px;
  font-size: 12px; font-weight: 600;
  white-space: nowrap;
  transition: background .25s var(--ease);
}
.topbar-btn:hover { background: var(--g3); color: #fff; }

/* ─── NAVBAR ──────────────────────────────────────────────── */
/* CRITICAL: zero gap between topbar + nav + hero */
.site-nav {
  background: rgba(8,14,11,.93);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-nav.scrolled {
  background: rgba(8,14,11,.98);
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
}
.site-nav .container-xl { padding-top: 10px; padding-bottom: 10px; }

/* Brand */
.brand {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__logo {
  height: 50px; width: 50px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  padding: 2px;
  flex-shrink: 0;
}
.brand__fallback {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--g2), var(--g4));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.brand__text {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.brand__intl {
  font-size: 9px; font-weight: 600;
  letter-spacing: 2.2px; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.brand__main {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 900;
  color: #fff; letter-spacing: .3px;
  text-transform: uppercase;
}
.brand__branch {
  font-size: 9px; color: rgba(255,255,255,.4);
  font-weight: 400; letter-spacing: .2px;
  margin-top: 1px;
}
@media(max-width:576px) {
  .brand__main { font-size: 13px; }
  .brand__branch { display: none; }
}

/* Nav links */
.site-nav .nav-link {
  color: rgba(255,255,255,.75) !important;
  font-size: 13.5px; font-weight: 500;
  padding: 7px 12px !important;
  border-radius: 8px;
  transition: all .22s var(--ease);
}
.site-nav .nav-link:hover { color: #fff !important; background: rgba(255,255,255,.07); }
.site-nav .nav-link.active {
  color: var(--gold2) !important;
  background: rgba(251,191,36,.1);
}
.site-dropdown {
  background: var(--dark2) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: var(--rlg) !important;
  padding: 7px !important;
  min-width: 205px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.5) !important;
  margin-top: 8px !important;
}
.site-dropdown .dropdown-item {
  color: rgba(255,255,255,.75) !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-size: 13.5px !important;
  display: flex !important; align-items: center !important; gap: 9px !important;
  transition: all .2s var(--ease) !important;
}
.site-dropdown .dropdown-item:hover { background: rgba(255,255,255,.07) !important; color: #fff !important; }
.site-dropdown .dropdown-item i { color: var(--gold2); font-size: 16px; }

/* Apply button */
.btn-apply {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--g2), var(--g4));
  color: #fff; border-radius: 100px;
  font-size: 13.5px; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0,102,51,.45);
  transition: all .3s var(--ease);
}
.btn-apply:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,102,51,.55); color: #fff; }

.site-nav__toggler { border: none !important; padding: 6px; background: transparent !important; }
.site-nav__toggler i { font-size: 24px; color: #fff; }

/* ─── HERO ────────────────────────────────────────────────── */
/* ZERO GAP: hero sits flush below nav — no margin-top */
.hero {
  height: 100vh;
  min-height: 580px;
  position: relative;
}
.hero__swiper { width: 100%; height: 100%; }
.hero__swiper .swiper-wrapper { height: 100%; }
.hero__slide {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.80) 0%, rgba(0,0,0,.35) 60%, transparent 100%);
}
.hero__content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(212,168,67,.14);
  border: 1px solid rgba(212,168,67,.4);
  color: var(--gold2);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 18px; width: fit-content;
  animation: fadeUp .8s var(--ease) both;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 900; color: #fff;
  line-height: 1.06; margin-bottom: 16px;
  animation: fadeUp .9s .1s var(--ease) both;
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.82);
  line-height: 1.7; max-width: 520px; margin-bottom: 30px;
  animation: fadeUp .9s .2s var(--ease) both;
}
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .9s .3s var(--ease) both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }

/* Hero buttons */
.btn-hero {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--g2), var(--g4));
  color: #fff; border-radius: 100px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 6px 28px rgba(0,102,51,.5);
  transition: all .35s var(--ease);
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,102,51,.6); color: #fff; }
.btn-hero--outline {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.5);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.btn-hero--outline:hover { background: rgba(255,255,255,.2); border-color: #fff; box-shadow: none; }

/* Swiper custom */
.hero__pag { bottom: 28px !important; }
.hero__pag .swiper-pagination-bullet {
  width: 28px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.35); opacity: 1;
  transition: all .3s var(--ease);
}
.hero__pag .swiper-pagination-bullet-active { width: 50px; background: var(--gold2); }
.hero__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 46px; height: 46px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; color: #fff; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s var(--ease);
  backdrop-filter: blur(8px);
}
.hero__nav:hover { background: rgba(255,255,255,.22); }
.hero__nav--prev { left: 22px; }
.hero__nav--next { right: 22px; }

/* ─── QUICK STRIP ─────────────────────────────────────────── */
.quick-strip {
  background: #fff;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  position: relative; z-index: 10;
}
.quick-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px;
  border-right: 1px solid var(--border);
  color: var(--text);
  transition: background .25s var(--ease);
}
.quick-item:last-child { border-right: none; }
.quick-item:hover { background: var(--off); }
.quick-item__icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(0,0,0,.04);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  transition: all .28s var(--ease);
}
.quick-item:hover .quick-item__icon { background: currentColor; }
.quick-item:hover .quick-item__icon i { color: #fff !important; filter: none; }
.quick-item__title { font-weight: 700; font-size: 14px; line-height: 1.2; }
.quick-item__sub   { font-size: 12px; color: var(--muted); margin-top: 2px; }
@media(max-width:768px) {
  .quick-strip__grid { grid-template-columns: repeat(2,1fr); }
  .quick-item { padding: 14px 14px; }
  .quick-item__icon { width: 40px; height: 40px; font-size: 18px; }
}

/* ─── SECTION COMMON ──────────────────────────────────────── */
.section { padding: 88px 0; }
.section--off { background: var(--off); }
.sec-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,102,51,.1); color: var(--g2);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 14px;
}
.sec-tag i { font-size: 13px; }
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 3.8vw, 2.8rem);
  font-weight: 900; color: var(--text); margin-bottom: 14px;
}
.sec-lead { color: #374151; font-size: 16px; line-height: 1.82; margin-bottom: 6px; }
.sec-desc { color: var(--muted); font-size: 15.5px; line-height: 1.75; }
.sec-divider {
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--g2), var(--gold2));
  border-radius: 2px; margin: 14px 0 20px;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-solid {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--g2), var(--g4));
  color: #fff; border-radius: 100px;
  font-size: 14.5px; font-weight: 700;
  box-shadow: 0 5px 20px rgba(0,102,51,.38);
  transition: all .3s var(--ease);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 9px 28px rgba(0,102,51,.5); color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid var(--g2); color: var(--g2);
  border-radius: 100px; font-size: 14.5px; font-weight: 700;
  transition: all .3s var(--ease);
}
.btn-outline:hover { background: var(--g2); color: #fff; }

/* ─── ABOUT ───────────────────────────────────────────────── */
.about-img-card {
  background: linear-gradient(145deg, #f0fdf4, #e8f5ee);
  border-radius: var(--rxl);
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  padding: 40px; position: relative;
  box-shadow: var(--shlg);
  border: 1px solid rgba(0,102,51,.14);
}
.about-img-card__logo {
  max-width: 70%; max-height: 260px;
  object-fit: contain;
}
.about-img-card__icon {
  font-size: 80px; color: var(--g2); opacity: .3;
}
.about-img-card__badge {
  position: absolute;
  background: #fff; border-radius: var(--rlg);
  padding: 14px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  display: flex; align-items: center; gap: 10px;
  text-align: center;
}
.about-img-card__badge--bl { bottom: 28px; left: -14px; }
.about-img-card__badge--tr { top: 28px; right: -12px; }
.stat-big {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 900; color: var(--g2); line-height: 1;
}
.stat-big span { font-size: 20px; }
.stat-label { font-size: 11px; color: var(--muted); font-weight: 600; line-height: 1.3; }
.about-address {
  display: flex; align-items: flex-start; gap: 8px;
  color: var(--muted); font-size: 14px; margin-top: 14px;
}
.about-address i { color: var(--g2); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 13px; margin: 22px 0 8px;
}
.about-feat {
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--off); border-radius: 12px; padding: 14px;
}
.about-feat__icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(0,102,51,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--g2); font-size: 17px; flex-shrink: 0;
}
.about-feat__name { font-weight: 700; font-size: 13.5px; }
.about-feat__val  { font-size: 12px; color: var(--muted); margin-top: 2px; }
@media(max-width:992px){ .about-features { grid-template-columns: 1fr; } }

/* ─── STATS ───────────────────────────────────────────────── */
.stats-section {
  background: var(--dark);
  padding: 80px 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,102,51,.28) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,168,67,.14) 0%, transparent 60%);
}
.stat-card {
  position: relative; padding: 36px 16px; text-align: center;
  border: 1px solid rgba(255,255,255,.07); border-radius: var(--rlg);
  background: rgba(255,255,255,.02); transition: all .35s var(--ease);
}
.stat-card:hover { border-color: rgba(255,255,255,.14); transform: translateY(-4px); }
.stat-card__icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.stat-card__num { font-family: 'Playfair Display',serif; font-size: 3rem; font-weight: 900; color: #fff; display: inline; }
.stat-card__sfx { font-size: 2rem; font-weight: 700; color: var(--gold2); display: inline; }
.stat-card__lbl { color: rgba(255,255,255,.5); font-size: 13px; margin-top: 8px; letter-spacing: .5px; }

/* ─── PROGRAMS ────────────────────────────────────────────── */
.prog-card {
  background: #fff; border-radius: var(--rlg);
  padding: 30px; height: 100%;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: all .35s var(--ease);
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shlg); border-color: transparent; }
.prog-card__accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--pc);
}
.prog-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--pc);
  background: color-mix(in srgb, var(--pc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--pc) 25%, transparent);
  margin-bottom: 16px;
}
.prog-card__lvl   { font-family: 'Playfair Display',serif; font-size: 19px; font-weight: 800; margin-bottom: 3px; }
.prog-card__range { font-size: 12.5px; font-weight: 700; color: var(--pc); margin-bottom: 12px; }
.prog-card__desc  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.prog-card__tags  { display: flex; flex-wrap: wrap; gap: 6px; }
.prog-card__tags span {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 100px; background: rgba(0,0,0,.04);
  color: var(--muted); border: 1px solid rgba(0,0,0,.07);
}

/* ─── WHY US ──────────────────────────────────────────────── */
.why-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
.why-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
.why-list li i { font-size: 20px; color: var(--g2); flex-shrink: 0; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.why-card {
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 18px; text-align: center;
  transition: all .3s var(--ease);
}
.why-card:hover { background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,.09); transform: translateY(-4px); }
.why-card__icon { font-size: 26px; margin-bottom: 10px; }
.why-card__title { font-weight: 800; font-size: 14px; margin-bottom: 5px; }
.why-card__sub   { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ─── EVENTS ──────────────────────────────────────────────── */
.ev-card {
  background: #fff; border-radius: var(--rlg); overflow: hidden;
  border: 1px solid var(--border); height: 100%;
  transition: all .35s var(--ease);
}
.ev-card:hover { transform: translateY(-6px); box-shadow: var(--shlg); }
.ev-card__banner {
  height: 170px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.ev-card__banner i { font-size: 60px; color: rgba(255,255,255,.14); }
.ev-card__date {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,.65); backdrop-filter: blur(6px);
  color: #fff; border-radius: 10px; padding: 8px 14px;
  text-align: center; border: 1px solid rgba(255,255,255,.12);
}
.ev-card__day { font-family: 'Playfair Display',serif; font-size: 22px; font-weight: 900; line-height: 1; }
.ev-card__mon { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold2); margin-top: 1px; }
.ev-card__past-pill {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,.6); color: rgba(255,255,255,.7);
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
}
.ev-card__body { padding: 20px; }
.ev-card__type {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 10px;
  background: rgba(0,102,51,.1); color: var(--g2);
}
.ev-card__type--hol { background: rgba(220,38,38,.1); color: #dc2626; }
.ev-card__title { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 8px; line-height: 1.3; }
.ev-card__desc  { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.ev-card__daterow { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.ev-card__daterow i { color: var(--g2); }

/* ─── GALLERY ─────────────────────────────────────────────── */
.gallery-section { background: var(--dark); padding: 88px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 200px;
  gap: 10px; margin-bottom: 16px;
}
.gallery-tile { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-tile--wide { grid-column: span 2; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-tile:hover img { transform: scale(1.07); }
.gallery-tile__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 28px; opacity: 0;
  transition: all .3s var(--ease);
}
.gallery-tile:hover .gallery-tile__overlay { background: rgba(0,0,0,.5); opacity: 1; }

/* ─── CTA / ADMISSION ─────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #0C2414 55%, var(--dark) 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
.cta-section__glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.cta-section__glow--1 {
  width: 600px; height: 600px; top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(0,102,51,.3) 0%, transparent 65%);
}
.cta-section__glow--2 {
  width: 500px; height: 500px; bottom: -150px; right: -80px;
  background: radial-gradient(circle, rgba(212,168,67,.18) 0%, transparent 65%);
}
.cta-section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: #fff;
  line-height: 1.1; margin: 16px 0;
}
.cta-section__title span { color: var(--gold2); }
.cta-section__sub { color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.75; margin-bottom: 22px; }
.cta-section__point {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.8); font-size: 14.5px; margin-bottom: 12px;
}
.cta-section__point i { color: var(--gold2); font-size: 18px; flex-shrink: 0; }

/* Admission form card */
.adm-form-card {
  background: #fff; border-radius: var(--rxl);
  padding: 40px; position: relative; z-index: 2;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.adm-form-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900; font-size: 20px;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
}
.adm-form-card__title i { color: var(--g2); font-size: 22px; }

/* Floating label fields */
.field { position: relative; }
.field__input {
  width: 100%; padding: 15px 16px 5px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 14.5px; color: var(--text);
  outline: none; background: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color .25s var(--ease);
}
.field__input:focus { border-color: var(--g2); }
.field__label {
  position: absolute; top: 14px; left: 16px;
  font-size: 13.5px; color: var(--muted);
  pointer-events: none; transition: all .2s var(--ease);
  background: #fff; padding: 0 3px;
}
.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label {
  top: -9px; font-size: 11px; color: var(--g2); font-weight: 700;
}
.field__select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 14px; color: var(--text);
  background: #fff; outline: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.field__select:focus { border-color: var(--g2); }

.adm-form-card__submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--g2), var(--g4));
  color: #fff; border: none; border-radius: 10px;
  font-size: 15.5px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .3s var(--ease);
}
.adm-form-card__submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,102,51,.5); }
.adm-form-card__submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

/* Alert boxes */
.adm-ok  { padding: 13px 16px; border-radius: 10px; background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; margin-bottom: 14px; font-size: 14px; }
.adm-err { padding: 13px 16px; border-radius: 10px; background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; margin-bottom: 14px; font-size: 14px; }

/* ─── FACILITIES ──────────────────────────────────────────── */
.fac-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--rlg); padding: 28px 22px;
  text-align: center; position: relative; overflow: hidden;
  height: 100%; transition: all .35s var(--ease);
}
.fac-card:hover { transform: translateY(-7px); box-shadow: var(--shlg); border-color: transparent; }
.fac-card__icon { font-size: 36px; margin-bottom: 14px; display: block; }
.fac-card__title { font-size: 15.5px; font-weight: 800; margin-bottom: 8px; }
.fac-card__desc  { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }
.fac-card__bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transition: transform .3s var(--ease);
}
.fac-card:hover .fac-card__bar { transform: scaleX(1); }

/* ─── NOTICES STRIP ───────────────────────────────────────── */
.notices-strip { background: var(--off); padding: 56px 0; }
.notices-box {
  display: flex; border: 1px solid var(--border);
  border-radius: var(--rlg); overflow: hidden; box-shadow: var(--sh);
}
.notices-box__hd {
  background: var(--dark); color: var(--gold2);
  padding: 18px 20px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 7px; min-width: 88px; text-align: center;
}
.notices-box__hd i { font-size: 22px; }
.notices-box__hd span { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.notices-box__list { flex: 1; background: #fff; max-height: 260px; overflow-y: auto; }
.notices-box__item {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px; border-bottom: 1px solid var(--off);
  font-size: 14px; transition: background .2s var(--ease);
}
.notices-box__item:last-child { border-bottom: none; }
.notices-box__item:hover { background: var(--off); }
.notices-box__item i { color: var(--g2); font-size: 13px; flex-shrink: 0; }

/* ─── CONTACT STRIP ───────────────────────────────────────── */
.contact-strip {
  background: linear-gradient(135deg, var(--g1), var(--g2));
  padding: 56px 0;
}
.contact-strip__item { display: flex; align-items: center; gap: 16px; color: #fff; }
.contact-strip__ic {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.12); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold2); flex-shrink: 0;
}
.contact-strip__lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: .65; font-weight: 600; }
.contact-strip__val { font-size: 15px; font-weight: 700; margin-top: 3px; }

/* ─── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0C2414 100%);
  padding: 72px 0 52px;
}
.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem,4vw,3rem); font-weight: 900;
  color: #fff; margin-bottom: 12px;
}
.breadcrumb { background: transparent !important; padding: 0; }
.breadcrumb-item a { color: var(--gold2); }
.breadcrumb-item.active { color: rgba(255,255,255,.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--dark2); color: rgba(255,255,255,.65); }
.footer__top { padding: 72px 0 52px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0; font-size: 13px; color: rgba(255,255,255,.4);
}
.footer__bottom a { color: rgba(255,255,255,.4); }
.footer__bottom a:hover { color: var(--gold2); }
.footer__logo { height: 48px; width: auto; margin-bottom: 12px; border-radius: 8px; }
.footer__name {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 8px;
}
.footer__desc { font-size: 13.5px; line-height: 1.75; margin-bottom: 20px; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,.65);
  transition: all .28s var(--ease);
}
.footer__socials a:hover { background: var(--g2); color: #fff; border-color: transparent; }
.footer__heading {
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: #fff; margin-bottom: 18px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 13.5px; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 6px;
  transition: all .22s var(--ease);
}
.footer__links a i { font-size: 12px; color: var(--g4); }
.footer__links a:hover { color: var(--gold2); padding-left: 4px; }
.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px;
}
.footer__contact-item i { color: var(--gold2); margin-top: 2px; font-size: 15px; flex-shrink: 0; }
.footer__contact-item a { color: rgba(255,255,255,.65); }
.footer__contact-item a:hover { color: var(--gold2); }
.footer__enq-row { display: flex; gap: 8px; margin-top: 12px; }
.footer__enq-input {
  flex: 1; padding: 9px 13px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 9px; color: #fff; font-size: 13.5px;
  outline: none; font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer__enq-input::placeholder { color: rgba(255,255,255,.35); }
.footer__enq-input:focus { border-color: var(--g4); }
.footer__enq-btn {
  padding: 9px 16px; background: var(--g2); color: #fff;
  border: none; border-radius: 9px; font-size: 16px;
  cursor: pointer; transition: background .25s var(--ease);
}
.footer__enq-btn:hover { background: var(--g3); }

/* ─── FABs ────────────────────────────────────────────────── */
.fab-wa {
  position: fixed; bottom: 26px; left: 26px;
  width: 52px; height: 52px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,.55);
  transition: all .3s var(--ease);
  animation: waPulse 2.5s ease-in-out infinite;
}
.fab-wa:hover { transform: scale(1.1); color: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.55); }
  50%      { box-shadow: 0 4px 42px rgba(37,211,102,.85); }
}
.fab-top {
  position: fixed; bottom: 26px; right: 26px;
  width: 44px; height: 44px;
  background: var(--dark); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; color: #fff; font-size: 18px;
  display: none; align-items: center; justify-content: center;
  cursor: pointer; z-index: 999; transition: all .3s var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.fab-top:hover { background: var(--g2); border-color: transparent; }
.fab-top.show { display: flex; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width:992px) {
  .section { padding: 64px 0; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 170px; }
  .gallery-tile--wide { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .about-features { grid-template-columns: 1fr; }
}
@media (max-width:768px) {
  .hero { height: 88vh; }
  .hero__title { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; }
  .btn-hero { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 140px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .adm-form-card { padding: 24px; }
  .about-img-card__badge--bl { left: 0; bottom: 20px; }
  .about-img-card__badge--tr { right: 0; top: 20px; }
}
@media (max-width:576px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .stats-section { padding: 56px 0; }
}
