/* ============================================================
   ELITE GRAND SCHOOL — PREMIUM DESIGN SYSTEM v2.0
   Unique, modern, responsive school website design.
   Color palette: deep navy, gold amber, teal ocean, clean white.
   ============================================================ */

:root {
  /* Primary palette */
  --navy-900:    #071330;
  --navy-800:    #0a1f44;
  --navy-700:    #0f2e60;
  --navy-600:    #1a4482;
  --navy-500:    #2859a6;

  /* Accent palette */
  --gold:        #f4b400;
  --gold-light:  #ffd966;
  --gold-dark:   #d69a00;
  --teal:        #00b4a6;
  --teal-light:  #6ee7df;
  --coral:       #ff6b6b;

  /* Neutrals */
  --dark:        #111827;
  --gray-900:    #1f2937;
  --gray-700:    #374151;
  --gray-500:    #6b7280;
  --gray-300:    #d1d5db;
  --gray-100:    #f3f4f6;
  --white:       #ffffff;
  --offwhite:    #f8fafc;

  /* Semantic */
  --primary:     var(--navy-800);
  --primary-dark: var(--navy-900);
  --accent:      var(--gold);
  --secondary:   var(--teal);
  --text:        var(--gray-700);
  --text-light:  var(--gray-500);
  --bg-light:    var(--offwhite);
  --border:      #e5e7eb;

  /* Effects */
  --shadow-sm:   0 2px 8px rgba(10,31,68,0.06);
  --shadow-md:   0 8px 24px rgba(10,31,68,0.10);
  --shadow-lg:   0 18px 48px rgba(10,31,68,0.14);
  --shadow-xl:   0 30px 80px rgba(10,31,68,0.20);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
  --font-heading:'Outfit', 'Inter', sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--navy-900); line-height: 1.25; font-weight: 700; }

/* ── Container ────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-fluid { padding: 0 30px; }

/* ── Section Utilities ───────────────────────────────────── */
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 70px 0; }
.section-dark { background: var(--navy-800); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-light { background: var(--bg-light); }
.text-center { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(244,180,0,0.2);
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title .accent { color: var(--teal); position: relative; }
.section-title .gold { color: var(--gold); }
.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 50px;
  line-height: 1.8;
}
.section-header { margin-bottom: 60px; }
.section-header.text-center .section-title { margin: 0 auto 16px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(10,31,68,0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(10,31,68,0.35);
  color: var(--white);
}
.btn-accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-900);
  box-shadow: 0 8px 20px rgba(244,180,0,0.3);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(244,180,0,0.4);
  color: var(--navy-900);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}
.btn-outline-primary {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn-outline-primary:hover {
  background: var(--navy-800);
  color: var(--white);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-icon { width: 18px; height: 18px; transition: transform 0.3s; }
.btn:hover .btn-icon { transform: translateX(4px); }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-img { overflow: hidden; }
.card-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s; }
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 24px; }
.card-title { font-size: 1.15rem; margin-bottom: 10px; color: var(--navy-900); }
.card-text { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }
.card-meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--text-light); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.card-meta i { color: var(--gold); }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge-activities   { background: #e0f2fe; color: #0369a1; }
.badge-articles     { background: #ede9fe; color: #5b21b6; }
.badge-news         { background: #fef3c7; color: #92400e; }
.badge-achievements { background: #fee2e2; color: #991b1b; }

/* ── Top Bar ───────────────────────────────────────────────── */
.top-bar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.top-bar-info { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.top-bar-info a, .top-bar-info span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.top-bar-info a:hover { color: var(--gold); }
.top-bar-info i { color: var(--gold); font-size: 0.85rem; }
.top-bar-social { display: flex; align-items: center; gap: 6px; }
.top-bar-social a {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: var(--transition);
}
.top-bar-social a:hover { background: var(--gold); color: var(--navy-900); transform: translateY(-2px); }

/* ── Header / Navigation ──────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 30px;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.navbar-brand img { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: var(--navy-900); line-height: 1.1; }
.brand-tagline { font-size: 0.65rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

.navbar-nav { display: flex; align-items: center; gap: 6px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-900);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--navy-800);
  background: rgba(10,31,68,0.06);
}
.nav-link i.arrow { font-size: 0.65rem; transition: transform 0.3s; }
.nav-item:hover .nav-link i.arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 999;
  border-top: 3px solid var(--gold);
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.dropdown-item:hover {
  background: var(--bg-light);
  color: var(--navy-800);
  padding-left: 26px;
}
.dropdown-item::before {
  content: '';
  position: absolute;
  left: 10px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-radius: 50%;
  background: var(--gold);
  transition: var(--transition);
}
.dropdown-item:hover::before { width: 6px; height: 6px; }

/* Mobile toggle */
.navbar-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.navbar-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  transition: var(--transition);
  border-radius: 2px;
}

/* Off-canvas sidebar */
.offcanvas-overlay {
  position: fixed; inset: 0;
  background: rgba(7,19,48,0.6);
  z-index: 1040;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.offcanvas-overlay.open { opacity: 1; visibility: visible; }

.offcanvas {
  position: fixed;
  top: 0; right: -340px;
  width: 320px; height: 100vh;
  background: var(--white);
  z-index: 1050;
  overflow-y: auto;
  transition: right 0.35s ease;
  box-shadow: var(--shadow-xl);
}
.offcanvas.open { right: 0; }
.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}
.offcanvas-header img { height: 42px; }
.offcanvas-close {
  background: none; border: none; cursor: pointer;
  font-size: 1.3rem; color: var(--navy-900);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.offcanvas-close:hover { background: var(--border); }

.offcanvas-nav { padding: 15px 0; }
.offcanvas-nav .nav-link {
  padding: 14px 24px;
  border-radius: 0;
  display: flex; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--gray-900);
}
.offcanvas-nav .nav-link:hover { background: var(--bg-light); color: var(--navy-800); }
.offcanvas-submenu {
  display: none;
  background: var(--bg-light);
  padding: 6px 0;
}
.offcanvas-submenu.open { display: block; }
.offcanvas-submenu a {
  display: block;
  padding: 10px 34px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.offcanvas-submenu a:hover { color: var(--navy-800); padding-left: 40px; }

.offcanvas-contact {
  padding: 24px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.88rem;
}
.offcanvas-contact h6 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 14px; }
.offcanvas-contact li { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.offcanvas-contact i { color: var(--gold); width: 18px; }
.offcanvas-contact a { color: rgba(255,255,255,0.85); }
.offcanvas-contact a:hover { color: var(--gold); }

/* ── Hero Section ─────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f8f9fc;
  padding-top: 80px;
}

/* Left social sidebar */
.hero-social-sidebar {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero-social-sidebar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--navy-900);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.hero-social-sidebar a:hover { transform: scale(1.15); color: var(--gold); }
.hero-social-sidebar a span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Diagonal background stripes */
.hero-stripe {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  transform: skewX(-18deg);
  transform-origin: top right;
  z-index: 1;
  pointer-events: none;
}
.hero-stripe-yellow {
  background: var(--gold);
  right: 8%;
  width: 45%;
  opacity: 0.85;
}
.hero-stripe-blue {
  background: var(--navy-700);
  right: -2%;
  width: 25%;
  opacity: 0.75;
}

.hero-slider {
  position: relative;
  width: 460px;
  height: 420px;
  z-index: 5;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(80px) scale(0.92);
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 100px 24px 80px;
}

.hero-content { padding-left: 40px; }
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-tagline::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy-900);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  max-width: 620px;
  min-height: 1.2em;
}
.hero-title .highlight { color: var(--gold); }
.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--navy-800);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 600;
  min-height: 1.5em;
}
.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn.btn-call {
  background: var(--gold);
  color: var(--navy-900);
  border-radius: 12px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(255,220,96,0.35);
  transition: var(--transition);
}
.btn.btn-call:hover {
  background: var(--gold);
  transform: translateY(-3px);
}
.hero-video-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2a4a;
  padding: 0;
}
.video-cue-ring {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #ffd24d;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 210, 77, 0.5);
  animation: pulse-gold 2s ease-out infinite;
}
@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(255, 210, 77, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(255, 210, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 210, 77, 0); }
}
.video-cue-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: #1a2a4a;
  font-size: 0.8rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 400px;
  position: relative;
  z-index: 5;
}

.hero-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(7, 19, 48, 0.18);
  border: 4px solid #fff;
  background: #e8eef5;
  animation: floatCard 5s ease-in-out infinite;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-card-main {
  width: 420px;
  height: 340px;
  top: 40px;
  right: 0;
  z-index: 3;
  --rotation: 0deg;
  animation-delay: 0s;
}
.hero-card-back-1 {
  width: 260px;
  height: 200px;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.85;
  --rotation: -4deg;
  animation-delay: 0.5s;
}
.hero-card-back-2 {
  width: 240px;
  height: 180px;
  top: 95px;
  left: 30px;
  z-index: 2;
  opacity: 0.9;
  --rotation: 3deg;
  animation-delay: 1s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(var(--rotation, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--rotation, 0deg)); }
}

.hero-swiper-navigation {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 16px;
}
.hero-swiper-navigation .hero-prev,
.hero-swiper-navigation .hero-next {
  position: static;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy-900);
  border: 2px solid var(--navy-900);
  margin: 0;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.hero-swiper-navigation .hero-prev:hover,
.hero-swiper-navigation .hero-next:hover { background: var(--navy-900); color: var(--gold); border-color: var(--navy-900); }
.hero-swiper-navigation .hero-prev i,
.hero-swiper-navigation .hero-next i { font-size: 1.1rem; }

.hero-swiper-pagination {
  display: none;
}

.hero-scroll {
  display: none;
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero-content { padding-left: 0; }
  .hero-title, .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta-row { justify-content: center; }
  .hero-slider { width: 360px; height: 320px; }
  .hero-card-main { width: 320px; height: 260px; }
  .hero-card-back-1 { width: 200px; height: 160px; }
  .hero-card-back-2 { width: 180px; height: 140px; }
  .hero-stripe { width: 70%; }
}

@media (max-width: 768px) {
  .hero-section { height: auto; min-height: auto; padding: 90px 0 30px; display: block; }
  .hero-social-sidebar { display: none; }
  .hero-grid { min-height: auto; padding: 20px 16px; gap: 24px; text-align: center; }
  .hero-content { padding-left: 0; }
  .hero-tagline { font-size: 0.75rem; justify-content: center; margin-bottom: 10px; }
  .hero-tagline::before { width: 20px; }
  .hero-title { font-size: 1.7rem; margin-bottom: 12px; max-width: 100%; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 20px; max-width: 100%; }
  .hero-cta-row { flex-direction: column; gap: 14px; justify-content: center; align-items: center; }
  .btn.btn-call { width: auto; padding: 12px 28px; font-size: 0.95rem; }
  .hero-video-cue { justify-content: center; width: 100%; }
  .video-cue-ring { width: 48px; height: 48px; }
  .video-cue-icon { width: 22px; height: 22px; font-size: 0.7rem; }
  .video-cue-label { font-size: 0.95rem; }
  .hero-visual { min-height: auto; padding: 10px 0; }
  .hero-slider { width: 240px; height: 200px; margin: 0 auto; }
  .hero-card-main { width: 200px; height: 160px; top: 10px; right: 0; }
  .hero-card-back-1 { width: 120px; height: 90px; top: 0; left: 0; }
  .hero-card-back-2 { width: 100px; height: 80px; top: 40px; left: 10px; }
  .hero-swiper-navigation { position: relative; bottom: auto; left: auto; transform: none; justify-content: center; margin-top: 16px; }
  .hero-swiper-navigation .hero-prev,
  .hero-swiper-navigation .hero-next { width: 40px; height: 40px; }
  .hero-stripe { width: 100%; opacity: 0.25; transform: skewX(-12deg); }
  .hero-stripe-yellow { width: 65%; right: 0; }
  .hero-stripe-blue { width: 35%; right: -8%; }
}

/* ── Announcement Bar ───────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  padding: 12px 0;
  position: relative;
  overflow: hidden;
  z-index: 900;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.announcement-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.announcement-swiper-wrapper {
  flex: 1;
  min-width: 200px;
  height: 24px;
  overflow: hidden;
}
.announcements-swiper { height: 100%; }
.announcement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.92rem;
  height: 24px;
}
.announcement-badge {
  background: var(--gold);
  color: var(--navy-900);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.announcement-link { color: var(--white); }
.announcement-link:hover { color: var(--gold); }
.announcement-view-all {
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.announcement-view-all:hover { color: var(--gold); }

/* ── Programs Band ────────────────────────────────────────── */
.programs-band {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.programs-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.programs-band .section-title { color: var(--white); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.program-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
  text-decoration: none;
  backdrop-filter: blur(10px);
}
.program-card:hover {
  background: var(--gold);
  color: var(--navy-900);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}
.program-card-icon { font-size: 2.4rem; margin-bottom: 16px; color: var(--gold); transition: color 0.3s; }
.program-card:hover .program-card-icon { color: var(--navy-900); }
.program-card h3 { font-size: 1.15rem; font-weight: 700; color: inherit; margin-bottom: 8px; }
.program-card p { font-size: 0.85rem; opacity: 0.85; margin: 0; }
.program-card .age-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}
.program-card:hover .age-tag { background: rgba(10,31,68,0.1); }

/* ── Services / Facilities Grid ───────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-card img { width: 100%; height: 190px; object-fit: cover; }
.service-card h3 { padding: 20px 20px 10px; font-size: 1.05rem; font-weight: 700; color: var(--navy-900); }
.service-card p { padding: 0 20px 20px; font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
.service-card a { color: inherit; }
.service-icon {
  position: absolute;
  top: 154px; right: 20px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--navy-800);
  font-size: 1.2rem;
  border: 2px solid var(--gold);
}

/* ── Why Choose Us / Features ─────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(244,180,0,0.15) 0%, rgba(0,180,166,0.15) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--gold); color: var(--navy-900); transform: rotateY(360deg); }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }

/* ── Stats / Counter Section ──────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.stat-card {
  text-align: center;
  padding: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.stat-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(244,180,0,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0 auto 18px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* ── Articles / Blog ────────────────────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); }
.article-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.article-card-img { position: relative; overflow: hidden; }
.article-card-img img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.6s; }
.article-card:hover .article-card-img img { transform: scale(1.08); }
.article-card-body { padding: 22px; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.article-meta i { color: var(--gold); }
.article-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.article-card h4 a { color: var(--navy-900); }
.article-card h4 a:hover { color: var(--teal); }
.article-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.read-more { font-size: 0.85rem; font-weight: 700; color: var(--navy-800); display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { color: var(--teal); gap: 10px; }

/* ── Events ─────────────────────────────────────────────────── */
.events-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.event-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.event-item:last-child { margin-bottom: 0; }
.event-item:hover { background: var(--white); box-shadow: var(--shadow-sm); border-left-color: var(--gold); transform: translateX(5px); }
.event-date {
  min-width: 70px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  flex-shrink: 0;
}
.event-date .day { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.event-date .month { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.event-info h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 5px; }
.event-info p { font-size: 0.85rem; color: var(--text-light); }
.event-type-badge {
  margin-left: auto;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 24px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.testimonial-rating { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { color: var(--text); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-author-info strong { display: block; color: var(--navy-900); font-size: 0.95rem; }
.testimonial-author-info span { display: block; color: var(--text-light); font-size: 0.8rem; }

/* ── Partners / Allied Organizations ────────────────────────── */
.partners-section { padding: 70px 0; border-top: 1px solid var(--border); background: var(--white); }
.partners-section h4 { text-align: center; font-size: 0.9rem; font-weight: 700; color: var(--text-light); margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; }
.partner-logo { display: flex; align-items: center; justify-content: center; padding: 0 24px; }
.partner-logo img { max-height: 60px; width: auto; filter: grayscale(100%); opacity: 0.6; transition: var(--transition); }
.partner-logo img:hover { filter: none; opacity: 1; transform: scale(1.05); }

/* ── App Download CTA ─────────────────────────────────────── */
.app-cta {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.app-cta::before {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.app-cta .section-label { color: var(--gold); }
.app-cta .section-label::before { background: var(--gold); box-shadow: 0 0 0 4px rgba(244,180,0,0.2); }
.app-cta h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 16px; }
.app-cta p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 520px; margin-bottom: 30px; line-height: 1.7; }
.app-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.app-badges img { height: 52px; width: auto; border-radius: 8px; transition: var(--transition); }
.app-badges img:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.app-cta-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.app-cta-image { display: flex; justify-content: center; }
.app-cta-image img { max-height: 360px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25)); }

/* ── Compact breadcrumb (detail pages) ────────────────────── */
.crumb-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; color: var(--text-light); margin-bottom: 28px; }
.crumb-nav a { color: var(--navy-800); font-weight: 600; }
.crumb-nav a:hover { color: var(--teal); }
.crumb-nav i { font-size: 0.65rem; }

/* ── About Page ─────────────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-intro-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-intro-img img { width: 100%; height: 450px; object-fit: cover; }
.about-intro-img::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}
.about-content h2 { font-size: 2rem; margin-bottom: 20px; }
.about-content p { color: var(--text); line-height: 1.9; margin-bottom: 16px; }

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.vision-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.vision-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.vision-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, rgba(0,180,166,0.15) 0%, rgba(244,180,0,0.15) 100%);
  color: var(--navy-800);
}
.vision-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.vision-card p { color: var(--text-light); line-height: 1.7; }

.bod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.staff-card { text-align: center; }
.staff-card-img {
  width: 100%;
  aspect-ratio: 3/3.5;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.staff-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.staff-card:hover .staff-card-img img { transform: scale(1.05); }
.staff-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy-900); margin-bottom: 4px; }
.staff-card p { font-size: 0.85rem; color: var(--text-light); }
.staff-social {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 12px;
}
.staff-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  font-size: 0.8rem;
}
.staff-social a:hover { background: var(--gold); color: var(--navy-900); }

.message-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 90px 0;
  color: var(--white);
}
.message-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
.message-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.message-photo img { width: 100%; height: 460px; object-fit: cover; }
.message-from { display: inline-block; background: rgba(244,180,0,0.15); color: var(--gold); padding: 6px 18px; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.message-name { color: var(--white); font-size: 2rem; font-weight: 800; margin-bottom: 6px; }
.message-role { color: var(--gold); font-size: 1.05rem; font-weight: 600; margin-bottom: 24px; display: block; }
.message-text p { color: rgba(255,255,255,0.9); line-height: 1.9; margin-bottom: 16px; }
.message-text .quote {
  background: rgba(244,180,0,0.12);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--gold-light);
  margin: 24px 0;
}

/* ── Programs Page ──────────────────────────────────────────── */
.program-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.program-detail-card img { width: 100%; height: 320px; object-fit: cover; }
.program-detail-body { padding: 40px; }
.program-detail-body h2 { font-size: 2rem; margin-bottom: 16px; }
.program-detail-meta { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.program-detail-meta span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--bg-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
}
.program-detail-body p { color: var(--text); line-height: 1.9; margin-bottom: 16px; }

/* ── Events Page ────────────────────────────────────────────── */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.event-card-header {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  color: var(--white);
  padding: 24px;
  text-align: center;
}
.event-card-header .day { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.event-card-header .month { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.event-card-body { padding: 24px; }
.event-card-body h4 { font-size: 1.15rem; margin-bottom: 10px; }
.event-card-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.event-card-meta { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-light); }
.event-card-meta i { color: var(--gold); }

/* ── Articles Page ──────────────────────────────────────────── */
.category-filter { display: flex; justify-content: center; gap: 10px; margin-bottom: 50px; flex-wrap: wrap; }
.category-filter a {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--white);
  color: var(--gray-700);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.category-filter a:hover, .category-filter a.active {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.article-detail img { border-radius: var(--radius-lg); margin-bottom: 24px; width: 100%; height: 420px; object-fit: cover; }
.article-detail h1 { font-size: 2.2rem; margin-bottom: 16px; }
.article-detail .article-meta { margin-bottom: 24px; }
.article-content { color: var(--text); line-height: 1.9; font-size: 1.02rem; }
.article-content p { margin-bottom: 18px; }
.article-content img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.article-content h2, .article-content h3, .article-content h4 { margin-top: 30px; margin-bottom: 14px; }
.article-content ul, .article-content ol { margin-left: 24px; margin-bottom: 18px; }
.article-content ul li { list-style: disc; margin-bottom: 6px; }
.article-content ol li { list-style: decimal; margin-bottom: 6px; }

/* ── Detail Pages (Program, Facility, Article) ───────────────── */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}
.detail-main { min-width: 0; }
.detail-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.detail-featured-image {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
}
.detail-summary {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--navy-900);
  margin-bottom: 30px;
  font-weight: 500;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
}
.related-article-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: center;
}
.related-article-item img {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.related-article-item:last-child { margin-bottom: 0; }

/* ── Contact Page ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: fit-content;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 30px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(244,180,0,0.15) 0%, rgba(0,180,166,0.15) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--navy-900); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-item p, .contact-info-item a { font-size: 0.95rem; color: var(--text); display: block; line-height: 1.6; }
.contact-info-item a:hover { color: var(--teal); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-card p { color: var(--text-light); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; color: var(--navy-900); text-transform: uppercase; letter-spacing: 0.5px; }
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-900);
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(244,180,0,0.12); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 60px; }
.map-wrapper iframe { width: 100%; height: 450px; border: none; display: block; }

/* ── Career Page ────────────────────────────────────────────── */
.career-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: var(--transition);
  border-left: 4px solid transparent;
  border: 1px solid var(--border);
}
.career-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--gold); transform: translateX(5px); }
.career-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--navy-900); }
.career-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.career-meta { display: flex; gap: 18px; margin-top: 10px; font-size: 0.82rem; color: var(--text-light); flex-wrap: wrap; }
.career-meta span { display: flex; align-items: center; gap: 6px; }
.career-meta i { color: var(--gold); }

.career-apply-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 720px;
  margin: 0 auto;
}
.career-apply-card h2 { font-size: 1.8rem; margin-bottom: 8px; }
.career-apply-card .position-meta { color: var(--text-light); margin-bottom: 28px; }

/* ── FAQ Page ───────────────────────────────────────────────── */
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question i { color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 26px 26px;
  color: var(--text);
  line-height: 1.8;
  font-size: 0.95rem;
}
.faq-answer-inner p { margin-bottom: 12px; }

/* ── Gallery Page ─────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  transition: var(--transition);
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-card:hover img { transform: scale(1.08); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(7,19,48,0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-overlay h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 6px; }
.gallery-card-overlay p { color: rgba(255,255,255,0.8); font-size: 0.85rem; }
.gallery-card-overlay .gallery-count {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.gallery-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-detail-grid img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius-md); transition: var(--transition); cursor: pointer; }
.gallery-detail-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* ── Announcements Page ───────────────────────────────────── */
.announcement-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.announcement-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-left-color: var(--gold); }
.announcement-card.pinned { border-left-color: var(--gold); background: linear-gradient(90deg, rgba(244,180,0,0.05), var(--white)); }
.announcement-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.announcement-priority {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}
.announcement-priority.low { background: #22c55e; }
.announcement-priority.medium { background: var(--gold); color: var(--navy-900); }
.announcement-priority.high { background: #f97316; }
.announcement-priority.urgent { background: #dc2626; }
.announcement-pinned-badge { color: var(--gold); font-size: 0.8rem; }
.announcement-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.announcement-card p { color: var(--text); line-height: 1.7; font-size: 0.95rem; }
.announcement-card-date { font-size: 0.8rem; color: var(--text-light); margin-top: 14px; display: flex; align-items: center; gap: 6px; }

/* ── Page Content ─────────────────────────────────────────── */
.page-content { max-width: 920px; margin: 0 auto; }
.page-content h1 { font-size: 2.4rem; margin-bottom: 24px; }
.page-content h2 { font-size: 1.8rem; margin-top: 36px; margin-bottom: 16px; }
.page-content p { margin-bottom: 18px; line-height: 1.9; color: var(--text); }
.page-content ul { margin-left: 24px; margin-bottom: 18px; }
.page-content ul li { list-style: disc; margin-bottom: 8px; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.8);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  left: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 50px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
.footer-logo { height: 55px; margin-bottom: 20px; }
.footer-desc { font-size: 0.92rem; line-height: 1.9; margin-bottom: 24px; color: rgba(255,255,255,0.7); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 0.95rem;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-900); transform: translateY(-3px); }

.footer-app-badges { margin-top: 24px; }
.footer-app-badges p { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.footer-app-badges a { display: inline-block; margin-right: 8px; margin-bottom: 8px; transition: var(--transition); }
.footer-app-badges a:hover { transform: translateY(-3px); }
.footer-app-badges img { height: 38px; width: auto; border-radius: 6px; }

.footer-widget h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  color: var(--white);
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: var(--transition); display: inline-block; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.newsletter-form { display: flex; gap: 0; background: rgba(255,255,255,0.08); border-radius: var(--radius-full); overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--white);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-btn {
  padding: 14px 20px;
  background: var(--gold);
  color: var(--navy-900);
  border: none;
  cursor: pointer;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  transition: var(--transition);
  font-weight: 700;
}
.newsletter-btn:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Video Modal ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(7,19,48,0.92);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-video { position: relative; width: 100%; max-width: 900px; }
.modal-video iframe { width: 100%; height: 500px; border-radius: var(--radius-md); border: none; }
.modal-close {
  position: absolute;
  top: -48px; right: 0;
  background: none; border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--gold); }

/* ── Toast Notification ───────────────────────────────────── */
.toast-container { position: fixed; bottom: 30px; right: 30px; z-index: 3000; }
.toast {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  margin-top: 10px;
  min-width: 300px;
  transform: translateX(120%);
  transition: transform 0.35s ease;
  border-left: 4px solid var(--navy-800);
}
.toast.show { transform: translateX(0); }
.toast.success { border-left-color: #22c55e; }
.toast.error { border-left-color: #ef4444; }
.toast-icon { font-size: 1.2rem; }
.toast-icon.success { color: #22c55e; }
.toast-icon.error { color: #ef4444; }
.toast-msg { font-size: 0.92rem; font-weight: 600; color: var(--navy-900); }

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }
.fade-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

/* ── Pagination ───────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 0.9rem; font-weight: 600;
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.pagination a:hover { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }
.pagination .current { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }

/* ── Empty State ──────────────────────────────────────────── */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state-icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 2rem;
}
.empty-state h3 { font-size: 1.4rem; margin-bottom: 8px; }
.empty-state p { color: var(--text-light); }

/* ── Admissions Page ───────────────────────────────────────── */
.row-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.lead-text { font-size: 1.1rem; line-height: 1.9; color: var(--text-light); }

.admission-info-list { list-style: none; padding: 0; margin: 0; }
.admission-info-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}
.admission-info-list li:last-child { border-bottom: none; }
.admission-info-list i { color: var(--gold); margin-top: 3px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.process-step .step-number {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-900);
  font-size: 0.75rem; font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.process-step .step-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,220,96,0.15);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy-900); }
.process-step p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

.requirements-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem; color: var(--text);
}
.check-list li:last-child { border-bottom: none; }
.check-list i { color: var(--gold); font-size: 1.1rem; }

.timeline-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.timeline-item {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-date {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 14px;
  background: var(--navy-900);
  color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  line-height: 1.1;
}
.timeline-date span { font-size: 1.2rem; font-weight: 800; color: var(--gold); }
.timeline-date { font-size: 0.75rem; }
.timeline-body h4 { font-size: 1.1rem; color: var(--navy-900); margin-bottom: 6px; }
.timeline-body p { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }

.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  background: none; border: none;
  font-size: 1rem; font-weight: 700; color: var(--navy-900);
  cursor: pointer; text-align: left;
}
.faq-question i { transition: transform 0.3s ease; color: var(--gold); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-light); line-height: 1.8; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .detail-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .detail-sidebar .contact-info-card { width: 100%; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .bod-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro-img { max-width: 500px; margin: 0 auto; }
  .message-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .app-cta-grid { grid-template-columns: 1fr; }
  .app-cta-image { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .detail-sidebar { grid-template-columns: 1fr; }
  .detail-featured-image { max-height: 260px; }
  .detail-summary { font-size: 1rem; padding: 18px; }
  .top-bar-info { display: none; }
  .navbar-nav { display: none; }
  .navbar-toggler { display: flex; }
  .programs-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .bod-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-detail-grid { grid-template-columns: 1fr; }
  .row-two-col { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .timeline-date { width: 64px; height: 64px; }
  .events-wrapper { padding: 24px; }
  .event-item { flex-direction: column; align-items: flex-start; }
  .event-type-badge { margin-left: 0; }
  .career-card { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .modal-video iframe { height: 260px; }
  .brand-tagline { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.5rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .btn.btn-call { width: auto; max-width: 100%; }
  .btn { width: 100%; }
  .vision-grid { grid-template-columns: 1fr; }
  .program-detail-body { padding: 24px; }
  .contact-info-card, .contact-form-card, .career-apply-card { padding: 24px; }
}

/* ── Utility ──────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
