/* ============================================================
   BLESSED GROUP OF SCHOOLS — MASTER STYLESHEET
   Version: 1.0 | Author: BGS Frontend
   ============================================================ */

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --brand:        #0E49A5;
  --brand-dark:   #092d6b;
  --brand-light:  #3b72d4;
  --brand-xlight: #e8f0fd;
  --gold:         #c8a55a;
  --ink:          #0a0f1e;
  --ink2:         #1e2640;
  --muted:        #6b7494;
  --border:       #e4e8f5;
  --cream:        #f8f9fd;
  --white:        #fff;
  --red:          #e53e3e;
  --green:        #22c55e;
  --shadow:       0 4px 24px rgba(14,73,165,.12);
  --shadow-lg:    0 16px 56px rgba(14,73,165,.18);
  --radius:       12px;
  --radius-lg:    20px;
  --nav-h:        72px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
  max-width: 100%;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f4fb; }
::-webkit-scrollbar-thumb { background: var(--brand-light); border-radius: 3px; }


/* ============================================================
   4. NAVIGATION  (HW.com style)
   ============================================================ */

/* Top strip — transparent, transitions to dark on scroll */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition: background .35s, box-shadow .35s;
}
.site-nav.scrolled {
  background: rgba(9,29,75,.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text strong {
  font-size: 14px; font-weight: 700;
  color: #fff; letter-spacing: .3px;
}
.nav-logo-text span {
  font-size: 9px; color: rgba(255,255,255,.55);
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* Right side utility bar (always visible) */
.nav-utils {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.nav-portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  position: relative;
}
.nav-portal-btn:hover,
.nav-portal-btn.active { border-color: var(--gold); color: var(--gold); }
.nav-portal-btn svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform .25s; }
.nav-portal-btn.active svg { transform: rotate(180deg); }

/* Portal dropdown */
.nav-portal-drop {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s;
  z-index: 100;
}
.nav-portal-drop.open { opacity: 1; visibility: visible; transform: none; }
.nav-portal-drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: background .15s, color .15s;
}
.nav-portal-drop a:hover { background: var(--cream); color: var(--brand); }
.nav-portal-drop a svg { width: 15px; height: 15px; stroke: var(--brand); fill: none; stroke-width: 2; flex-shrink: 0; }

/* MENU button (HW style — right side) */
.nav-menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--gold);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s;
}
.nav-menu-btn:hover { background: #b8953d; }
.nav-menu-btn span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-menu-btn .hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-menu-btn .hamburger-lines i {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}
.nav-menu-btn.open .hamburger-lines i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-menu-btn.open .hamburger-lines i:nth-child(2) { opacity: 0; }
.nav-menu-btn.open .hamburger-lines i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- FULLSCREEN MENU PANEL (HW.com style) ---- */
.nav-panel {
  position: fixed;
  inset: 0;
  z-index: 8900;
  display: grid;
  grid-template-columns: 1fr 420px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .38s ease, visibility .38s ease;
}
.nav-panel.open { opacity: 1; visibility: visible; }

/* Left: main menu list */
.nav-panel-left {
  background: #f4f1ec;
  padding: 110px 56px 56px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  border-bottom: 1.5px solid rgba(0,0,0,.15);
  padding-bottom: 14px;
}
.nav-search svg { width: 18px; height: 18px; stroke: var(--muted); fill: none; stroke-width: 2; flex-shrink: 0; }
.nav-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.nav-search input::placeholder { color: var(--muted); }
.nav-main-list { flex: 1; }
.nav-main-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,.1);
  cursor: pointer;
  transition: padding-left .2s;
}
.nav-main-item:hover { padding-left: 6px; }
.nav-main-item.active-item > .nav-main-link { color: var(--gold); }
.nav-main-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1;
  transition: color .2s;
}
.nav-main-item:hover .nav-main-link { color: var(--brand); }
.nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.2);
  transition: all .2s;
  flex-shrink: 0;
}
.nav-main-item:hover .nav-arrow { border-color: var(--brand); background: var(--brand); }
.nav-arrow svg { width: 14px; height: 14px; stroke: var(--ink); fill: none; stroke-width: 2.5; transition: stroke .2s; }
.nav-main-item:hover .nav-arrow svg { stroke: #fff; }

/* Submenu panel — slides in from left over main list */
.nav-sub-panel {
  position: absolute;
  top: 0; left: 0;
  width: calc(100% - 420px);
  height: 100%;
  background: #f4f1ec;
  padding: 110px 56px 56px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .35s ease;
  z-index: 10;
}
.nav-sub-panel.open { transform: translateX(0); }
.nav-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: 36px;
  background: none;
  border: none;
  transition: color .2s;
}
.nav-back-btn:hover { color: var(--brand); }
.nav-back-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.nav-sub-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.nav-sub-list a {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: color .2s, padding-left .2s;
}
.nav-sub-list a:first-child { color: var(--brand); }
.nav-sub-list a:hover { color: var(--brand); padding-left: 8px; }

/* Right: featured image panel */
.nav-panel-right {
  background: var(--brand-dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.nav-panel-right-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 28px;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.nav-close-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--gold);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.nav-close-btn:hover { background: #b8953d; }
.nav-close-btn svg { width: 14px; height: 14px; stroke: var(--ink); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.nav-feature-imgs {
  flex: 1;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  overflow: hidden;
}
.nav-feat-img {
  position: relative;
  overflow: hidden;
}
.nav-feat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.nav-feat-img:hover img { transform: scale(1.05); }
.nav-feat-label {
  position: absolute;
  bottom: 14px; left: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.45);
  padding: 5px 12px;
  border-radius: 4px;
}

/* ============================================================
   5. SHARED LAYOUT & TYPOGRAPHY
   ============================================================ */
.sec { padding: 96px 60px; }
.ctr { max-width: 1200px; margin: 0 auto; width: 100%; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--brand); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gold); }
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px,4vw,56px);
  font-weight: 700; line-height: 1.08;
  color: var(--ink); letter-spacing: -1px; margin-bottom: 16px;
}
.sec-title em { font-style: italic; color: var(--brand); }
.sec-lead {
  font-size: 15px; font-weight: 300;
  color: var(--muted); line-height: 1.9; max-width: 540px;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .75s, transform .75s; }
.reveal.v { opacity: 1; transform: none; }
.rl { opacity: 0; transform: translateX(-36px); transition: opacity .75s, transform .75s; }
.rl.v { opacity: 1; transform: none; }
.rr { opacity: 0; transform: translateX(36px); transition: opacity .75s, transform .75s; }
.rr.v { opacity: 1; transform: none; }

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn-p {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff;
  padding: 14px 30px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  transition: all .3s; border: 2px solid transparent;
}
.btn-p:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(14,73,165,.35); }
.btn-s {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 14px 30px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  transition: all .3s; border: 2px solid rgba(255,255,255,.42);
}
.btn-s:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
.btn-g {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--ink);
  padding: 14px 30px; border-radius: 100px;
  font-size: 14px; font-weight: 700; transition: all .3s;
}
.btn-g:hover { background: #b8953d; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,165,90,.35); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--brand);
  padding: 13px 28px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  transition: all .3s; border: 2px solid var(--brand);
}
.btn-outline:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }

/* ============================================================
   7. MARQUEE
   ============================================================ */
.mq-bar { background: var(--brand); padding: 12px 0; overflow: hidden; width: 100%; }
.mq-track { display: flex; animation: mq 34s linear infinite; width: max-content; }
.mq-item {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.68);
  padding: 0 44px; display: flex; align-items: center; gap: 18px; white-space: nowrap;
}
.mq-item::after { content: '◆'; font-size: 7px; color: var(--gold); opacity: .7; }
@keyframes mq { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 580px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../images/hero-fallback.jpg') center/cover no-repeat;
}
/* Local video background */
.hero-video-wrap {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1;
}
.hero-video-wrap video {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
}
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(155deg,rgba(9,45,107,.82) 0%,rgba(14,73,165,.62) 55%,rgba(9,45,107,.78) 100%);
  z-index: 2;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 3; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(200,165,90,.55); animation: floatP linear infinite;
}
@keyframes floatP {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 5;
  text-align: center; color: #fff;
  max-width: 840px; padding: 0 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,165,90,.18); border: 1px solid rgba(200,165,90,.38);
  color: var(--gold); padding: 8px 20px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 28px;
  animation: fadeD .8s ease both;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px,7vw,88px); font-weight: 700;
  line-height: 1.02; margin-bottom: 20px;
  animation: fadeU .9s .2s ease both;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(14px,2vw,17px); font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,.82); max-width: 540px;
  margin: 0 auto 44px; animation: fadeU .9s .4s ease both;
}
.hero-actions {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; animation: fadeU .9s .6s ease both;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center;
  gap: 8px; animation: fadeIn 1s 1.2s ease both;
}
.hero-scroll span { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.5); }
.scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom,rgba(255,255,255,.5),transparent);
  animation: sP 2s ease-in-out infinite;
}
@keyframes sP { 0%,100% { opacity:.5; transform:scaleY(1); } 50% { opacity:1; transform:scaleY(1.2); } }
@keyframes fadeD { from { opacity:0; transform:translateY(-18px); } to { opacity:1; transform:none; } }
@keyframes fadeU { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-img-wrap { position: relative; padding-bottom: 46px; padding-right: 26px; }
.about-img-main { width: 100%; height: 500px; object-fit: cover; object-position: top; border-radius: var(--radius-lg); display: block; }
.about-img-float { position: absolute; bottom: 0; right: 0; width: 190px; height: 230px; object-fit: cover; border-radius: var(--radius); border: 6px solid #fff; box-shadow: var(--shadow-lg); display: block; }
.about-badge { position: absolute; top: 26px; left: -18px; background: var(--brand); color: #fff; padding: 16px 20px; border-radius: var(--radius); box-shadow: var(--shadow); z-index: 2; }
.about-badge .n { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 700; line-height: 1; display: block; }
.about-badge .t { font-size: 11px; opacity: .8; line-height: 1.5; }
.avals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.aval { background: var(--cream); border-radius: var(--radius); padding: 16px; border: 1px solid var(--border); transition: all .3s; }
.aval:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.aval-ic { width: 36px; height: 36px; background: var(--brand-xlight); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.aval-ic svg { width: 18px; height: 18px; fill: none; stroke: var(--brand); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.aval-t { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.aval-d { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   10. GALLERY
   ============================================================ */
.gal-sec { background: var(--cream); }
.gal-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; gap: 16px; flex-wrap: wrap; }
.gal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gal-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; display: flex; flex-direction: column; }
.gal-item img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .6s; flex-shrink: 0; }
.gal-item:hover img { transform: scale(1.05); }
.gal-info { background: var(--brand); padding: 16px 18px; flex-shrink: 0; }
.gi-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.3; }
.gi-desc { font-size: 12px; color: rgba(255,255,255,.75); line-height: 1.5; margin-bottom: 8px; }
.gi-link { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: .5px; text-transform: uppercase; }
.gi-link svg { width: 12px; height: 12px; stroke: var(--gold); stroke-width: 2.5; fill: none; transition: transform .2s; }
.gal-item:hover .gi-link svg { transform: translateX(3px); }

/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.96); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .3s; }
.lb.open { opacity: 1; visibility: visible; }
.lb-img { max-width: 88vw; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.lb-btn { position: absolute; width: 44px; height: 44px; background: rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: background .2s; }
.lb-btn:hover { background: rgba(255,255,255,.25); }
.lb-btn svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 2; fill: none; }
.lb-close { top: 20px; right: 20px; }
.lb-prev { top: 50%; left: 18px; transform: translateY(-50%); }
.lb-next { top: 50%; right: 18px; transform: translateY(-50%); }
.lb-cap { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); text-align: center; color: #fff; width: 90%; max-width: 540px; }
.lb-cap h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.lb-cap p { font-size: 13px; color: rgba(255,255,255,.6); }

/* ============================================================
   11. VIDEO SECTION
   ============================================================ */
.vid-sec { background: var(--ink); }
.vid-sec .sec-title { color: #fff; }
.vid-sec .eyebrow { color: var(--gold); }
.vid-sec .eyebrow::before { background: var(--gold); }
.vid-sec .sec-lead { color: rgba(255,255,255,.52); }
.vid-hdr { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px; }
.vid-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
.vid-card { background: #161c2e; border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all .3s; }
.vid-card:hover { border-color: rgba(14,73,165,.5); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.vid-thumb-wrap { position: relative; overflow: hidden; }
.vid-thumb { width: 100%; height: 190px; object-fit: cover; transition: transform .5s; display: block; background: #1a2035; }
.vid-card:hover .vid-thumb { transform: scale(1.05); }
.vid-dur { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.75); color: #fff; font-size: 11px; padding: 2px 7px; border-radius: 4px; font-weight: 600; }
.vid-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.vid-play-c { width: 60px; height: 60px; border: 2.5px solid rgba(255,255,255,.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .3s; background: rgba(14,73,165,.6); backdrop-filter: blur(4px); }
.vid-card:hover .vid-play-c { background: var(--brand); border-color: #fff; transform: scale(1.12); }
.vid-play-c svg { width: 22px; height: 22px; fill: #fff; margin-left: 4px; }
.vid-body { padding: 16px; }
.vid-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.vid-title { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.5; margin-bottom: 5px; }
.vid-desc { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6; }

/* Video Player Modal */
.vp-modal { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.94); align-items: center; justify-content: center; padding: 16px; display: none; }
.vp-modal.open { display: flex; }
.vp-wrap { width: 100%; max-width: 860px; background: #0d1117; border-radius: 20px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.7); position: relative; }
.vp-close { position: absolute; top: 14px; right: 14px; z-index: 10; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.12); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.vp-close:hover { background: rgba(255,255,255,.25); }
.vp-close svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 2.2; fill: none; stroke-linecap: round; }
.vp-player { position: relative; aspect-ratio: 16/9; background: #000; overflow: hidden; }
.vp-thumb-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.vp-thumb-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.vp-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: none; opacity: 0; transition: opacity .4s; pointer-events: none; }
.vp-modal.loaded .vp-frame { opacity: 1; pointer-events: auto; }
.vp-modal.loaded .vp-thumb-bg, .vp-modal.loaded .vp-thumb-overlay, .vp-modal.loaded .vp-fallback { opacity: 0; pointer-events: none; }
.vp-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; padding: 24px; }
.vp-fallback h3 { font-family: 'Cormorant Garamond',serif; font-size: 22px; font-weight: 700; color: #fff; }
.vp-fallback p { font-size: 13px; color: rgba(255,255,255,.55); max-width: 320px; line-height: 1.6; }
.vp-yt-btn { display: inline-flex; align-items: center; gap: 10px; background: #FF0000; color: #fff; padding: 13px 26px; border-radius: 100px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all .3s; }
.vp-yt-btn:hover { background: #cc0000; transform: translateY(-2px); }
.vp-yt-btn svg { width: 20px; height: 20px; fill: #fff; }
.vp-info { padding: 18px 22px 20px; }
.vp-info-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.vp-info-title { font-family: 'Cormorant Garamond',serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.vp-info-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ============================================================
   12. STATS FLOAT BAR
   ============================================================ */
.stats-float { padding: 0 60px; margin-top: -80px; position: relative; z-index: 10; }
.stats-card { background: #fff; border-radius: var(--radius-lg); box-shadow: 0 24px 64px rgba(14,73,165,.16); display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border: 1px solid var(--border); }
.st-cell { padding: 32px 24px; text-align: center; border-right: 1px solid var(--border); transition: background .3s; }
.st-cell:last-child { border-right: none; }
.st-cell:hover { background: var(--cream); }
.st-num { font-family: 'Cormorant Garamond',serif; font-size: 48px; font-weight: 700; color: var(--brand); line-height: 1; display: block; }
.st-plus { color: var(--gold); }
.st-lbl { font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: .3px; margin-top: 4px; display: block; }

/* ============================================================
   13. TEACHERS
   ============================================================ */
.teachers-sec { background: var(--cream); }
.teachers-hdr { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.teachers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.tc { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all .35s; }
.tc:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.tc-img-wrap { background: var(--cream); padding: 24px 24px 0; display: flex; justify-content: center; }
.tc-img-frame { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; border: 3px solid var(--brand-xlight); }
.tc-img { width: 100%; height: 100%; object-fit: cover; }
.tc-body { padding: 14px 18px 20px; text-align: center; }
.tc-name { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.tc-pos { font-size: 11px; font-weight: 600; color: var(--brand); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 10px; }
.tc-desc { font-size: 12px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.tc-soc { display: flex; justify-content: center; gap: 8px; }
.tc-s { width: 30px; height: 30px; border-radius: 50%; background: var(--brand-xlight); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.tc-s:hover { background: var(--brand); }
.tc-s svg { width: 13px; height: 13px; fill: var(--brand); transition: fill .2s; stroke: none; }
.tc-s:hover svg { fill: #fff; }

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */
.testi-sec { padding: 120px 60px 80px; background: var(--brand-dark); position: relative; overflow: hidden; }
.testi-sec::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%,rgba(200,165,90,.08) 0%,transparent 60%); }
.testi-wrap { position: relative; z-index: 1; }
.testi-q { font-family: 'Cormorant Garamond',serif; font-size: clamp(22px,3vw,36px); font-style: italic; color: #fff; line-height: 1.55; margin-bottom: 32px; max-width: 760px; }
.testi-q::before { content: '\201C'; font-size: 80px; color: var(--gold); opacity: .4; line-height: .5; display: block; margin-bottom: 8px; }
.testi-auth { display: flex; align-items: center; gap: 14px; }
.testi-av { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testi-name { font-size: 14px; font-weight: 700; color: #fff; }
.testi-role { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
.testi-nav { display: flex; gap: 12px; justify-content: center; margin-top: 40px; }
.tdn { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; cursor: pointer; background: transparent; transition: all .2s; }
.tdn:hover { border-color: var(--gold); background: rgba(200,165,90,.15); }
.tdn svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; }
.testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.tdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); cursor: pointer; transition: all .2s; }
.tdot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================================
   15. BROCHURE
   ============================================================ */
.broch-sec { background: var(--brand); position: relative; overflow: hidden; }
.broch-sec::before { content: ''; position: absolute; inset: 0; opacity: .04; background-image: repeating-linear-gradient(45deg,#fff 0,#fff 1px,transparent 0,transparent 50%); background-size: 20px 20px; }
.broch-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.broch-text .eyebrow { color: var(--gold); }
.broch-text .eyebrow::before { background: var(--gold); }
.broch-text .sec-title { color: #fff; }
.broch-text .sec-title em { color: var(--gold); }
.broch-text .sec-lead { color: rgba(255,255,255,.7); }
.broch-mock { display: flex; justify-content: center; align-items: flex-end; gap: 16px; }
.bm-card { width: 220px; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.3); transform: rotate(-3deg); transition: transform .4s; }
.bm-card:hover { transform: rotate(0deg) scale(1.03); }
.bm-img { width: 100%; height: 160px; object-fit: cover; }
.bm-body { padding: 14px 16px; }
.bm-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.bm-sub { font-size: 11px; color: var(--muted); }

/* ============================================================
   16. ACADEMIC / INFO SECTIONS
   ============================================================ */
.ac-sec { background: #fff; }
.ac-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 36px 0; }
.ac-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: all .3s; }
.ac-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-3px); }
.ac-ic { width: 44px; height: 44px; background: var(--brand-xlight); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ac-ic svg { width: 22px; height: 22px; fill: none; stroke: var(--brand); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ac-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.ac-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.ac-list { margin-bottom: 18px; }
.ac-li { font-size: 12px; color: var(--ink2); padding: 5px 0; border-bottom: 1px solid var(--border); }
.ac-cta { font-size: 12px; font-weight: 700; color: var(--brand); display: inline-flex; align-items: center; gap: 5px; }
.ac-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.info-sec { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.ip { padding: 56px 44px; border-right: 1px solid var(--border); }
.ip:last-child { border-right: none; }
.ip-title { font-family: 'Cormorant Garamond',serif; font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.ip-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.ip-ic { width: 36px; height: 36px; background: var(--brand-xlight); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ip-ic svg { width: 16px; height: 16px; fill: none; stroke: var(--brand); stroke-width: 2; stroke-linecap: round; }
.ip-label { font-size: 11px; font-weight: 700; color: var(--brand); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 3px; }
.ip-val { font-size: 13px; color: var(--muted); line-height: 1.6; }
.hours-p .ip-title { color: var(--brand); }

/* EOY */
.eoy-sec { background: var(--cream); }
.eoy-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 12px; }
.eoy-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.eoy-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all .3s; }
.eoy-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.eoy-img { width: 100%; height: 160px; object-fit: cover; }
.eoy-body { padding: 16px; }
.eoy-badge { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand); margin-bottom: 6px; }
.eoy-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; line-height: 1.3; }
.eoy-date { font-size: 12px; color: var(--muted); }

/* News bar */
.nb-bar { background: var(--ink2); padding: 28px 60px; }
.nb-inner { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.nb-item { padding: 20px; background: rgba(255,255,255,.05); border-radius: var(--radius); border: 1px solid rgba(255,255,255,.08); transition: all .3s; }
.nb-item:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.nb-badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; background: var(--gold); color: var(--ink); margin-bottom: 10px; }
.nb-title { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.55; margin-bottom: 8px; }
.nb-date { font-size: 11px; color: rgba(255,255,255,.4); margin-bottom: 12px; }
.nb-read { font-size: 11px; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 5px; }

/* Disc CTA */
.disc-sec { text-align: center; padding: 120px 40px 160px; background: linear-gradient(180deg,#fff 0%,var(--brand-xlight) 100%); position: relative; overflow: hidden; }
.disc-sec::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 60%,rgba(14,73,165,.07) 0%,transparent 50%),radial-gradient(circle at 80% 20%,rgba(200,165,90,.06) 0%,transparent 50%); }
.disc-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.disc-title { font-family: 'Cormorant Garamond',serif; font-size: clamp(44px,7vw,88px); font-weight: 700; color: var(--ink); letter-spacing: -3px; line-height: .95; margin-bottom: 20px; }
.disc-title em { font-style: italic; color: var(--brand); }
.disc-lead { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.9; margin-bottom: 40px; }
.disc-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.disc-btns .btn-s { color: var(--ink); border-color: rgba(14,73,165,.3); }
.disc-btns .btn-s:hover { background: var(--brand-xlight); color: var(--brand); border-color: var(--brand); }

/* ============================================================
   17. FOOTER
   ============================================================ */

/* WhatsApp FAB */
.whatsapp-fab { position: fixed; bottom: 28px; right: 28px; z-index: 888; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.4); transition: transform .2s; }
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }

/* ============================================================
   18. PAGE-SPECIFIC: EVENTS
   ============================================================ */
.ev-hero { position: relative; height: 86vh; min-height: 560px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ev-hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: fadeIn 1s 1.2s ease both; }
.ev-hero-scroll span { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.5); white-space: nowrap; }
.ev-hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1920&q=85') center/cover no-repeat; }
.ev-hero-ov { position: absolute; inset: 0; background: linear-gradient(155deg,rgba(9,45,107,.88) 0%,rgba(14,73,165,.72) 55%,rgba(9,45,107,.86) 100%); }
.ev-hero-content { position: relative; z-index: 3; text-align: center; color: #fff; max-width: 860px; padding: 0 24px; }
.ev-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,165,90,.18); border: 1px solid rgba(200,165,90,.38); color: var(--gold); padding: 8px 20px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 28px; }
.ev-hero h1 { font-family: 'Cormorant Garamond',serif; font-size: clamp(44px,7vw,86px); font-weight: 700; line-height: 1.02; margin-bottom: 20px; }
.ev-hero h1 em { font-style: italic; color: var(--gold); }
.ev-hero-sub { font-size: clamp(14px,2vw,17px); font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.82); max-width: 600px; margin: 0 auto 44px; }
.ev-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.feat-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 72px rgba(14,73,165,.13); border: 1px solid var(--border); margin-bottom: 40px; transition: box-shadow .4s; }
.feat-card:hover { box-shadow: 0 32px 90px rgba(14,73,165,.2); }
.feat-card.reverse { direction: rtl; }
.feat-card.reverse > * { direction: ltr; }
.feat-img-wrap { position: relative; overflow: hidden; min-height: 420px; }
.feat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.feat-card:hover .feat-img-wrap img { transform: scale(1.04); }
.feat-img-ov { position: absolute; inset: 0; background: linear-gradient(to right,transparent 60%,rgba(9,45,107,.35)); }
.feat-card.reverse .feat-img-ov { background: linear-gradient(to left,transparent 60%,rgba(9,45,107,.35)); }
.feat-cat-pill { position: absolute; top: 20px; left: 20px; background: var(--gold); color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; }
.feat-card.reverse .feat-cat-pill { left: auto; right: 20px; }
.feat-body { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; background: #fff; }
.feat-meta-row { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.feat-meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); font-weight: 500; }
.feat-meta svg { width: 14px; height: 14px; stroke: var(--brand); stroke-width: 2; fill: none; }
.feat-title { font-family: 'Cormorant Garamond',serif; font-size: clamp(24px,3vw,38px); font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 16px; letter-spacing: -.5px; }
.feat-desc { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 28px; }
.feat-stats { display: flex; gap: 24px; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.fst { text-align: center; }
.fst-num { font-family: 'Cormorant Garamond',serif; font-size: 30px; font-weight: 700; color: var(--brand); line-height: 1; display: block; }
.fst-lbl { font-size: 11px; color: var(--muted); font-weight: 500; }
.feat-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 40px; }
.ftab { padding: 9px 20px; border-radius: 100px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all .25s; border: 1.5px solid var(--border); background: #fff; color: var(--muted); }
.ftab:hover { border-color: var(--brand); color: var(--brand); }
.ftab.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.gal-item.hidden { display: none; }
.tl-sec { background: var(--ink); position: relative; overflow: hidden; }
.tl-sec::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 10% 30%,rgba(14,73,165,.3) 0%,transparent 50%),radial-gradient(circle at 90% 70%,rgba(200,165,90,.08) 0%,transparent 50%); }
.tl-sec .sec-title { color: #fff; }
.tl-sec .eyebrow { color: var(--gold); }
.tl-sec .eyebrow::before { background: var(--gold); }
.tl-sec .sec-lead { color: rgba(255,255,255,.55); }
.tl-hdr { text-align: center; margin-bottom: 72px; }
.tl-hdr .sec-lead { margin: 0 auto; }
.tl-wrap { position: relative; max-width: 820px; margin: 0 auto; padding: 0 20px; }
.tl-line { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 2px; background: linear-gradient(to bottom,transparent,var(--gold) 10%,var(--gold) 90%,transparent); }
.tl-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; align-items: center; margin-bottom: 56px; position: relative; }
.tl-item:last-child { margin-bottom: 0; }
.tl-left { padding-right: 36px; text-align: right; }
.tl-right { padding-left: 36px; text-align: left; }
.tl-dot-col { display: flex; justify-content: center; align-items: center; position: relative; z-index: 2; }
.tl-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); border: 3px solid var(--ink); box-shadow: 0 0 0 3px var(--gold); flex-shrink: 0; transition: transform .3s; }
.tl-item:hover .tl-dot { transform: scale(1.35); }
.tl-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 20px 22px; transition: all .4s; }
.tl-card:hover { background: rgba(14,73,165,.25); border-color: rgba(14,73,165,.5); transform: translateY(-3px); }
.tl-card-date { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.tl-card-title { font-family: 'Cormorant Garamond',serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.tl-card-desc { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.7; }
.tl-card-tag { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; font-size: 10px; font-weight: 600; color: rgba(255,255,255,.4); letter-spacing: .5px; }
.tl-card-tag svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; }
.upc-sec { background: var(--cream); }
.upc-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 12px; }
.upc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.upc-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all .35s; display: flex; flex-direction: column; }
.upc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.upc-img-wrap { position: relative; overflow: hidden; }
.upc-img { width: 100%; height: 200px; object-fit: cover; transition: transform .5s; }
.upc-card:hover .upc-img { transform: scale(1.05); }
.upc-date-badge { position: absolute; top: 14px; left: 14px; background: var(--brand); color: #fff; border-radius: 10px; padding: 8px 12px; text-align: center; line-height: 1.1; }
.upc-date-badge .day { font-family: 'Cormorant Garamond',serif; font-size: 26px; font-weight: 700; display: block; }
.upc-date-badge .mon { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.upc-status { position: absolute; top: 14px; right: 14px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.upc-status.open { background: rgba(34,197,94,.15); color: var(--green); border: 1px solid rgba(34,197,94,.35); }
.upc-status.soon { background: rgba(200,165,90,.15); color: var(--gold); border: 1px solid rgba(200,165,90,.35); }
.upc-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.upc-cat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand); margin-bottom: 7px; }
.upc-title { font-family: 'Cormorant Garamond',serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.25; }
.upc-desc { font-size: 12px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; flex: 1; }
.upc-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.upc-m { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--muted); }
.upc-m svg { width: 13px; height: 13px; stroke: var(--brand); stroke-width: 2; fill: none; }
.upc-card-cta { display: flex; align-items: center; justify-content: space-between; }
.upc-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--brand); }
.upc-link svg { width: 14px; height: 14px; stroke: var(--brand); stroke-width: 2.2; fill: none; transition: transform .2s; }
.upc-card:hover .upc-link svg { transform: translateX(3px); }
.upc-type { font-size: 10px; color: var(--muted); }
.ev-stats-sec { background: var(--brand); position: relative; overflow: hidden; }
.ev-stats-sec .eyebrow { color: var(--gold); }
.ev-stats-sec .eyebrow::before { background: var(--gold); }
.ev-stats-sec .sec-title { color: #fff; }
.ev-stats-sec .sec-lead { color: rgba(255,255,255,.65); }
.es-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.es-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.es-cell { background: rgba(255,255,255,.07); padding: 32px 24px; text-align: center; transition: background .3s; }
.es-cell:hover { background: rgba(255,255,255,.13); }
.es-cell:first-child { border-radius: var(--radius-lg) 0 0 0; }
.es-cell:nth-child(2) { border-radius: 0 var(--radius-lg) 0 0; }
.es-cell:nth-child(3) { border-radius: 0 0 0 var(--radius-lg); }
.es-cell:last-child { border-radius: 0 0 var(--radius-lg) 0; }
.es-num { font-family: 'Cormorant Garamond',serif; font-size: 52px; font-weight: 700; color: #fff; line-height: 1; display: block; margin-bottom: 6px; }
.es-plus { color: var(--gold); }
.es-lbl { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.6); letter-spacing: .3px; }
.etcard { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: all .4s; position: relative; overflow: hidden; }
.etcard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right,var(--brand),var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.etcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.etcard:hover::before { transform: scaleX(1); }
.etcard-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.etcard-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.etcard-q { font-family: 'Cormorant Garamond',serif; font-size: 17px; font-style: italic; color: var(--ink); line-height: 1.65; margin-bottom: 20px; position: relative; }
.etcard-q::before { content: '\201C'; font-size: 52px; color: var(--brand-xlight); position: absolute; top: -8px; left: -4px; line-height: 1; z-index: 0; font-style: normal; }
.etcard-q p { position: relative; z-index: 1; }
.etcard-auth { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.etcard-av { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand-xlight); }
.etcard-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.etcard-role { font-size: 11px; color: var(--muted); }

/* ============================================================
   19. PAGE-SPECIFIC: LOGIN
   ============================================================ */
.portal-wrap { display: grid; grid-template-columns: 380px 1fr; min-height: 100vh; }
.left-panel { background: linear-gradient(160deg,var(--brand-dark) 0%,var(--brand) 65%,var(--brand-light) 100%); display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; overflow-y: auto; z-index: 10; padding: 0; width: 100%; }
.right-panel { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 40px 48px; background: #fff; overflow-y: auto; }
.login-box { width: 100%; max-width: 440px; }
.lp-hero { padding: 40px 36px 20px; position: relative; z-index: 1; }
.lp-hero h1 { font-family: 'Cormorant Garamond',serif; font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.1; }
.lp-hero h1 em { font-style: italic; color: var(--gold); }
.lp-hero p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.75; }
.lp-roles-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); padding: 0 36px; margin-bottom: 10px; }
.lp-roles { display: flex; flex-direction: column; gap: 6px; padding: 0 24px 20px; }
.role-btn { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-radius: var(--radius); border: 1.5px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); cursor: pointer; transition: all .2s; }
.role-btn:hover, .role-btn.active { background: rgba(255,255,255,.14); border-color: var(--gold); }
.role-btn.active .role-check { border-color: var(--gold); background: var(--gold); }
.role-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.role-icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.role-info { flex: 1; }
.role-name { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.2; }
.role-desc { font-size: 11px; color: rgba(255,255,255,.5); }
.role-check { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; }
.role-check svg { width: 10px; height: 10px; stroke: var(--ink); fill: none; stroke-width: 3; display: none; }
.role-btn.active .role-check svg { display: block; }
.lp-footer { padding: 20px 36px 28px; margin-top: auto; }
.lp-footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.lp-footer-links a { font-size: 12px; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.lp-footer-links a:hover { color: rgba(255,255,255,.8); }
.lp-footer-links svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.login-header { margin-bottom: 32px; }
.login-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-xlight); color: var(--brand); padding: 6px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.login-header h2 { font-family: 'Cormorant Garamond',serif; font-size: 38px; font-weight: 700; color: var(--ink); line-height: 1.1; margin-bottom: 8px; }
.login-header h2 em { font-style: italic; color: var(--brand); }
.login-header p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.form-grp { margin-bottom: 20px; position: relative; }
.form-grp label { display: block; font-size: 12px; font-weight: 700; color: var(--ink2); margin-bottom: 7px; letter-spacing: .3px; }
.form-grp .f-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.form-grp .f-icon svg { width: 16px; height: 16px; stroke: var(--muted); fill: none; stroke-width: 2; }
.form-grp input { width: 100%; padding: 13px 16px 13px 42px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 14px; color: var(--ink); background: var(--cream); transition: all .2s; }
.form-grp input:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(14,73,165,.1); }
.pw-toggle { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); cursor: pointer; background: none; border: none; padding: 2px; }
.pw-toggle svg { width: 16px; height: 16px; stroke: var(--muted); fill: none; stroke-width: 2; }
.form-hint { font-size: 11px; color: var(--muted); margin-top: 5px; }
.form-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 8px; }
.form-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); cursor: pointer; }
.form-check input { width: auto; padding: 0; accent-color: var(--brand); margin: 0; }
.forgot-link { font-size: 13px; font-weight: 600; color: var(--brand); }
.forgot-link:hover { text-decoration: underline; }
.btn-login { width: 100%; padding: 15px; background: var(--brand); color: #fff; border: none; border-radius: var(--radius); font-family: inherit; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .3s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-login:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(14,73,165,.35); }
.btn-login svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; }
.login-footer { margin-top: 24px; text-align: center; font-size: 13px; color: var(--muted); }
.login-footer a { color: var(--brand); font-weight: 600; }

/* ============================================================
   20. PAGE-SPECIFIC: NEWS
   ============================================================ */
.news-hero { position: relative; height: 55vh; min-height: 380px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.news-hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1920&q=85') center/cover no-repeat; }
.news-hero-ov { position: absolute; inset: 0; background: linear-gradient(155deg,rgba(9,45,107,.88) 0%,rgba(14,73,165,.72) 55%,rgba(9,45,107,.86) 100%); }
.news-hero-content { position: relative; z-index: 3; text-align: center; color: #fff; max-width: 700px; padding: 0 24px; }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.news-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all .35s; display: flex; flex-direction: column; }
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.news-img { width: 100%; height: 200px; object-fit: cover; transition: transform .5s; }
.news-card:hover .news-img { transform: scale(1.05); }
.news-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.news-cat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.news-title { font-family: 'Cormorant Garamond',serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.news-excerpt { font-size: 13px; color: var(--muted); line-height: 1.75; flex: 1; margin-bottom: 18px; }
.news-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.news-date { font-size: 11px; color: var(--muted); }
.news-read { font-size: 12px; font-weight: 700; color: var(--brand); display: inline-flex; align-items: center; gap: 5px; }
.news-read svg { width: 13px; height: 13px; stroke: var(--brand); fill: none; stroke-width: 2.5; transition: transform .2s; }
.news-card:hover .news-read svg { transform: translateX(3px); }

/* ============================================================
   21. PAGE-SPECIFIC: CONTACT
   ============================================================ */
.contact-hero { position: relative; height: 50vh; min-height: 340px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.contact-hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=85') center/cover no-repeat; }
.contact-hero-ov { position: absolute; inset: 0; background: linear-gradient(155deg,rgba(9,45,107,.88) 0%,rgba(14,73,165,.72) 55%,rgba(9,45,107,.86) 100%); }
.contact-hero-content { position: relative; z-index: 3; text-align: center; color: #fff; max-width: 600px; padding: 0 24px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.ci-card { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: var(--cream); border-radius: var(--radius); border: 1px solid var(--border); transition: all .3s; }
.ci-card:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.ci-ic { width: 40px; height: 40px; background: var(--brand-xlight); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-ic svg { width: 18px; height: 18px; stroke: var(--brand); fill: none; stroke-width: 2; stroke-linecap: round; }
.ci-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand); margin-bottom: 4px; }
.ci-val { font-size: 13px; color: var(--ink); font-weight: 500; line-height: 1.6; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 240px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.cf-form { background: #fff; border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.cf-form h3 { font-family: 'Cormorant Garamond',serif; font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.cf-form p { font-size: 13px; color: var(--muted); margin-bottom: 26px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-grp { margin-bottom: 16px; }
.cf-grp label { display: block; font-size: 12px; font-weight: 700; color: var(--ink2); margin-bottom: 6px; }
.cf-grp input, .cf-grp select, .cf-grp textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 13px; color: var(--ink); background: var(--cream); transition: all .2s; resize: vertical; }
.cf-grp input:focus, .cf-grp select:focus, .cf-grp textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(14,73,165,.1); }
.cf-submit { width: 100%; padding: 14px; background: var(--brand); color: #fff; border: none; border-radius: var(--radius); font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .3s; }
.cf-submit:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(14,73,165,.35); }

/* ============================================================
   22. ABOUT PAGE
   ============================================================ */
.about-hero { position: relative; height: 65vh; min-height: 400px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=1920&q=85') center/cover no-repeat; }
.about-hero-ov { position: absolute; inset: 0; background: linear-gradient(155deg,rgba(9,45,107,.88) 0%,rgba(14,73,165,.72) 55%,rgba(9,45,107,.86) 100%); }
.about-hero-content { position: relative; z-index: 3; text-align: center; color: #fff; max-width: 700px; padding: 0 24px; }
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.mission-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: all .3s; position: relative; overflow: hidden; }
.mission-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right,var(--brand),var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.mission-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.mission-card:hover::before { transform: scaleX(1); }
.mission-ic { width: 56px; height: 56px; border-radius: 14px; background: var(--brand-xlight); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.mission-ic svg { width: 26px; height: 26px; stroke: var(--brand); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mission-title { font-family: 'Cormorant Garamond',serif; font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.mission-desc { font-size: 13px; color: var(--muted); line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 32px; }
.val-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: var(--cream); border-radius: var(--radius); border: 1px solid var(--border); transition: all .3s; }
.val-item:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.val-num { font-family: 'Cormorant Garamond',serif; font-size: 32px; font-weight: 700; color: var(--brand); line-height: 1; flex-shrink: 0; width: 36px; }
.val-text h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.val-text p { font-size: 12px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   23. RESPONSIVE
   ============================================================ */
@media(max-width:1024px){
  .sec { padding: 68px 28px; }
  .nb-bar { padding: 24px 28px; }
  .nb-inner { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; padding: 56px 28px 36px; }
  .footer-bottom { padding: 18px 28px; }
  .stats-float { padding: 0 28px; margin-top: -60px; }
  .stats-card { grid-template-columns: 1fr 1fr; }
  .st-cell:nth-child(2) { border-right: none; }
  .st-cell:nth-child(3) { border-top: 1px solid var(--border); }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-img-float, .about-badge { display: none; }
  .about-img-main { height: 380px; }
  .about-img-wrap { padding: 0; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .vid-grid { grid-template-columns: 1fr 1fr; }
  .teachers-grid { grid-template-columns: 1fr 1fr; }
  .broch-inner { grid-template-columns: 1fr; gap: 44px; }
  .ac-grid { grid-template-columns: 1fr 1fr; }
  .info-sec { grid-template-columns: 1fr; }
  .ip { border-right: none; border-bottom: 1px solid var(--border); padding: 40px 28px; }
  .ip:last-child { border-bottom: none; }
  .eoy-grid { grid-template-columns: 1fr 1fr; }
  .disc-sec { padding: 90px 28px 120px; }
  .feat-card { grid-template-columns: 1fr; }
  .feat-card.reverse { direction: ltr; }
  .feat-img-wrap { min-height: 280px; }
  .feat-body { padding: 36px 32px; }
  .es-inner { grid-template-columns: 1fr; gap: 44px; }
  .upc-grid { grid-template-columns: 1fr 1fr; }
  .tl-line { display: none; }
  .tl-item { grid-template-columns: 1fr; gap: 12px; }
  .tl-left, .tl-right { padding: 0; text-align: left; }
  .tl-dot-col { justify-content: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .nav-panel { grid-template-columns: 1fr 320px; }
  .portal-wrap { grid-template-columns: 1fr; }
  .left-panel { position: relative; width: 100%; height: auto; }
  .right-panel { margin-left: 0; padding: 40px 32px; }
  .lp-roles { grid-template-columns: 1fr 1fr; display: grid; }
  .login-box { max-width: 500px; margin: 0 auto; }
}

@media(max-width:768px){
  .sec { padding: 56px 20px; }
  .site-nav { padding: 0 20px; }
  .nav-panel { grid-template-columns: 1fr; }
  .nav-panel-right { display: none; }
  .nav-panel-left { padding: 90px 28px 40px; }
  .nb-bar { padding: 20px; }
  .nb-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 48px 20px 32px; gap: 28px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
  .stats-card { grid-template-columns: 1fr 1fr; border-radius: var(--radius); }
  .vid-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .teachers-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .tc-desc { display: none; }
  .tc-img-frame { width: 80px; height: 80px; }
  .eoy-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .disc-title { font-size: clamp(36px,10vw,56px); letter-spacing: -1px; }
  .disc-btns { flex-direction: column; align-items: center; }
  .disc-btns a { width: 100%; max-width: 300px; justify-content: center; }
  .upc-grid { grid-template-columns: 1fr; }
  .feat-body { padding: 28px 22px; }
  .feat-actions { flex-direction: column; }
  .feat-actions .btn-p, .feat-actions .btn-outline { justify-content: center; }
  .ev-hero-actions { flex-direction: column; align-items: center; }
  .ev-hero-scroll { bottom: 20px; }
  .mission-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
}

@media(max-width:640px){
  .sec { padding: 48px 16px; }
  .gal-grid { grid-template-columns: 1fr; }
  .teachers-grid { grid-template-columns: 1fr 1fr; }
  .eoy-grid { grid-template-columns: 1fr; }
  .ac-grid { grid-template-columns: 1fr; }
  .stats-card { grid-template-columns: 1fr 1fr; }
  .st-cell { padding: 20px 10px; }
  .st-num { font-size: 36px; }
  .broch-inner { gap: 32px; }
  .nav-main-link { font-size: clamp(24px,7vw,34px); }
  .testi-sec { padding: 80px 20px 60px; }
  .disc-sec { padding: 60px 16px 80px; }
  .lp-roles { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .right-panel { padding: 28px 16px; }
  .login-header h2 { font-size: 30px; }
  .btn-p, .btn-s, .btn-g, .btn-outline { font-size: 13px; padding: 12px 20px; gap: 6px; }
}

@media(max-width:380px){
  .nav-panel-left { padding: 80px 20px 32px; }
  .stats-card { grid-template-columns: 1fr; }
  .st-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .eoy-grid { grid-template-columns: 1fr; }
  .btn-p, .btn-s, .btn-g, .btn-outline { font-size: 12px; padding: 10px 16px; gap: 5px; }
}

/* ============================================================
   FOOTER — Complete redesign matching dark navy layout
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  font-family: 'Inter','DM Sans',sans-serif;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding: 72px 60px 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200,165,90,.45);
  flex-shrink: 0;
  transition: transform .3s;
}
.footer-logo:hover .footer-logo-img { transform: scale(1.05); }
.footer-logo-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: block;
  letter-spacing: .3px;
}
.footer-logo-text span {
  font-size: 9.5px;
  color: rgba(255,255,255,.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 24px;
  color: rgba(255,255,255,.55);
}
.footer-soc {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-soc a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
}
.footer-soc a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.footer-soc a svg {
  width: 15px;
  height: 15px;
}
.footer-soc a.wa-icon {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}
.footer-soc a.wa-icon:hover {
  background: #128C7E;
  border-color: #128C7E;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 11px;
  transition: color .2s;
  text-decoration: none;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding: 22px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}
.footer-bottom-links {
  display: flex;
  gap: 22px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  transition: color .2s;
  text-decoration: none;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* Nav logo */
.nav-logo-img {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid rgba(200,165,90,.5) !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  transition: transform .3s;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }
.nav-logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  overflow: hidden !important;
}

/* Find Us panel */
.find-us-title { color: var(--brand) !important; }
.ip-val.cl { color: #e74c3c !important; }

/* Info-sec responsive */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; padding: 56px 36px 40px; }
  .footer-bottom { padding: 18px 36px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; padding: 48px 24px 32px; gap: 28px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
}

/* ---- Social FAB (added for all pages) ---- */
.sf-wa { background: #25D366 !important; border-color: #25D366 !important; }
.sf-wa:hover { background: #128C7E !important; border-color: #128C7E !important; }
.sf-btn svg { width: 15px; height: 15px; fill: #fff; }
.sf-btn svg[stroke] { fill: none; stroke: #fff; stroke-width: 2; }

/* ---- Social FAB base styles ---- */
.social-fab { position: fixed; left: 24px; top: 50%; transform: translateY(-50%); z-index: 800; display: flex; flex-direction: column; gap: 8px; }
.sf-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(9,29,75,.75); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; transition: all .2s; text-decoration: none; color: #fff; }
.sf-btn:hover { background: var(--brand); border-color: var(--brand); transform: scale(1.1); }
@media(max-width:768px){ .social-fab { display: none; } }

/* ============================================================
   MOBILE RESPONSIVENESS FIXES
   ============================================================ */

/* Fix 1: Sub-menu panel full width on mobile (nav-panel-right is hidden) */
@media (max-width: 768px) {
  .nav-sub-panel {
    width: 100%;
    padding: 90px 28px 40px;
  }
  .nav-sub-list a {
    font-size: 17px;
    padding: 14px 0;
  }
}
@media (max-width: 640px) {
  .nav-sub-panel {
    padding: 80px 20px 32px;
  }
}

/* Fix 2: News page — Announcements + Quick Links sidebar */
.ann-sidebar-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .ann-sidebar-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Fix 3: Events page — Student Voices (3-column testimonial grid) */
.etcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .etcard-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .etcard-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Fix 4: etcard text sizing on small screens */
@media (max-width: 600px) {
  .etcard-q p {
    font-size: 14px;
  }
  .etcard {
    padding: 20px;
  }
}
