/* =========================================================
   GLORY ACADEMY — Premium School Website CSS
   Colors: Forest Green + Gold + White + Black
   Fonts: Cormorant Garamond (display) + Outfit (body)
   ========================================================= */

:root {
  --green-deep:   #0f3d1e;
  --green-mid:    #1a5c2a;
  --green-bright: #2e8b47;
  --green-light:  #e8f5ec;
  --gold:         #c9a227;
  --gold-light:   #f0d96a;
  --gold-pale:    #fdf6dc;
  --black:        #0d1b14;
  --white:        #ffffff;
  --off-white:    #f8faf8;
  --gray-100:     #f1f3f2;
  --gray-300:     #cdd5ce;
  --gray-500:     #7a8c80;
  --gray-700:     #3d4f44;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --shadow-sm:    0 2px 12px rgba(15,61,30,.08);
  --shadow-md:    0 8px 32px rgba(15,61,30,.14);
  --shadow-lg:    0 20px 60px rgba(15,61,30,.2);
  --radius:       12px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--green-deep);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* Logo image (replaces emblem) */
.site-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* ─── TOPBAR ───────────────────────────────────────────── */
.topbar {
  background: var(--green-deep);
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left a,
.topbar-right a {
  color: rgba(255,255,255,.8);
  margin-right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.topbar-left a:hover,
.topbar-right a:hover { color: var(--gold-light); }
.topbar-right { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.portal-btn {
  background: rgba(201,162,39,.18);
  border: 1px solid rgba(201,162,39,.4);
  color: var(--gold-light) !important;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  margin-right: 0 !important;
  transition: var(--transition);
}
.portal-btn:hover,
.portal-btn--staff:hover {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
  border-color: var(--gold) !important;
}
.portal-btn--staff {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.9) !important;
}

.topbar-social {
  display: flex;
  gap: 10px;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid rgba(255,255,255,.2);
}
.topbar-social a {
  color: rgba(255,255,255,.7) !important;
  font-size: .95rem;
  margin: 0 !important;
}
.topbar-social a:hover { color: var(--gold-light) !important; }

/* ─── NAVBAR ───────────────────────────────────────────── */
.main-nav {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(15,61,30,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.main-nav.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(15,61,30,.15);
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-emblem {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-emblem::after {
  content: '';
  position: absolute;
  top: -10px; right: -10px;
  width: 30px; height: 30px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .25;
}
.logo-g {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
}
.logo-motto {
  font-size: .65rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Nav Links */
.main-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .92rem;
  color: var(--gray-700) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
}
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  left: 14px; right: 14px;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--green-mid) !important;
  background: var(--green-light);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  padding: 8px;
  border-top: 3px solid var(--gold);
}
.dropdown-item {
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--green-light);
  color: var(--green-mid);
}

/* ─── PORTALS DROPDOWN ──────────────────────────────────── */
.dropdown-menu-portals {
  min-width: 240px;
}
.dropdown-menu-portals .dropdown-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 10px;
}
.dropdown-menu-portals .dropdown-item strong {
  font-size: .9rem;
  color: var(--green-deep);
  display: block;
  line-height: 1.2;
}
.dropdown-menu-portals .dropdown-item small {
  font-size: .78rem;
  color: var(--gray-500) !important;
  font-weight: 400;
}
.dropdown-menu-portals .dropdown-item:hover strong {
  color: var(--green-mid);
}
.dropdown-menu-portals .bi {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.dropdown-menu-portals .dropdown-divider {
  margin: 4px 8px;
  border-color: var(--gray-200);
}

/* Apply Button */
.btn-apply {
  background: linear-gradient(135deg, var(--gold), #e6b820);
  color: var(--green-deep) !important;
  font-weight: 700;
  font-size: .88rem;
  padding: 10px 24px !important;
  border-radius: 30px !important;
  letter-spacing: .03em;
  border: none;
  box-shadow: 0 4px 15px rgba(201,162,39,.35);
  transition: var(--transition);
}
.btn-apply:hover {
  background: linear-gradient(135deg, #e6b820, var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,.5);
}

/* Toggler */
.navbar-toggler { border: none; outline: none !important; padding: 8px; }
.toggler-bar {
  display: block;
  width: 26px; height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  margin: 5px 0;
  transition: var(--transition);
}

/* ─── PAGE HERO / INNER BANNER ─────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 60%, var(--green-bright) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}
.page-hero .breadcrumb-item.active { color: var(--gold-light); }
.page-hero .breadcrumb-divider { color: rgba(255,255,255,.4); }

/* ─── SECTION UTILITIES ────────────────────────────────── */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.8;
}

/* Divider */
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-mid);
  color: var(--white);
  font-weight: 600;
  font-size: .92rem;
  padding: 13px 30px;
  border-radius: 30px;
  border: 2px solid var(--green-mid);
  transition: var(--transition);
  letter-spacing: .02em;
}
.btn-green:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #e6b820);
  color: var(--green-deep);
  font-weight: 700;
  font-size: .92rem;
  padding: 13px 30px;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-gold:hover {
  background: var(--green-deep);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-mid);
  font-weight: 600;
  font-size: .92rem;
  padding: 11px 28px;
  border-radius: 30px;
  border: 2px solid var(--green-mid);
  transition: var(--transition);
}
.btn-outline-green:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── HOMEPAGE HERO ─────────────────────────────────────── */
.hero-section {
  min-height: 92vh;
  background: var(--green-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/group uniform1.jpeg') center/cover no-repeat;
  opacity: .25;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,20,.97) 0%,
    rgba(13,27,20,.85) 40%,
    rgba(26,92,42,.6) 70%,
    rgba(46,139,71,.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,162,39,.15);
  border: 1px solid rgba(201,162,39,.4);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow i { color: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .gold-text { color: var(--gold); }
.hero-title .outline-text {
  -webkit-text-stroke: 2px rgba(255,255,255,.5);
  color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { text-align: center; }
.hero-stat .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

/* Hero image panel */
.hero-image-panel {
  position: relative;
  z-index: 2;
}
.hero-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero-img-float {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 180px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.hero-img-float img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  top: 20px;
  right: -15px;
  background: var(--gold);
  color: var(--green-deep);
  padding: 12px 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.hero-badge .badge-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.hero-badge .badge-txt {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ─── MARQUEE STRIP ─────────────────────────────────────── */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.marquee-item i { color: var(--green-mid); font-size: 1rem; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── ABOUT SNIPPET ─────────────────────────────────────── */
.about-snippet {
  background: var(--white);
}
.about-img-stack {
  position: relative;
  padding: 20px 20px 20px 0;
}
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-img-thumb {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about-img-thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.about-founded-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--green-deep);
  color: var(--white);
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-founded-badge .yr {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-founded-badge .yr-label {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
}

/* About feature list */
.about-features { list-style: none; padding: 0; margin: 20px 0 30px; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-700);
}
.about-features li:last-child { border-bottom: none; }
.about-features li i {
  width: 32px; height: 32px;
  background: var(--green-light);
  color: var(--green-mid);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .95rem;
}

/* ─── STATS COUNTER ─────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.stat-card {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat-card::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,.15);
}
.stat-card:last-child::after { display: none; }
.stat-card .count {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-card .count-suffix { color: var(--gold-light); }
.stat-card .stat-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--gold-light);
}
.stat-card .stat-name {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 6px;
}

/* ─── PROGRAMS / LEVELS ─────────────────────────────────── */
.programs-section { background: var(--off-white); }

.program-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(46,139,71,.08);
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.program-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.program-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.program-card:hover .program-img img { transform: scale(1.07); }
.program-level-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--green-deep);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.program-body {
  padding: 24px;
}
.program-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.program-body p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}
.program-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.program-tag {
  background: var(--green-light);
  color: var(--green-mid);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
}

/* ─── CAMPUS LIFE ─────────────────────────────────────────  */
.campus-life { background: var(--white); }
.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 12px;
}
.campus-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.campus-item:first-child {
  grid-row: span 2;
  grid-column: span 1;
}
.campus-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.campus-item:hover img { transform: scale(1.06); }
.campus-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,61,30,.85) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.campus-item:hover .campus-item-overlay { opacity: 1; }
.campus-item-overlay span {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
}

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -20px; left: 5%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(46,139,71,.04);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  border-bottom: 4px solid transparent;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.testimonial-text {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-light);
}
.testimonial-avatar-placeholder {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--green-deep);
}
.testimonial-role {
  font-size: .8rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 1px;
}
.testimonial-year {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
}

/* ─── EVENTS PREVIEW ────────────────────────────────────── */
.events-section { background: var(--white); }

.event-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  border-left: 4px solid transparent;
  transition: var(--transition);
}
.event-card:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.event-term-badge {
  flex-shrink: 0;
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  border-radius: 14px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white);
}
.event-term-badge .term-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.event-term-badge .term-label {
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.8);
}
.event-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.event-info p {
  font-size: .88rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* ─── LEADERSHIP CARDS ──────────────────────────────────── */
.leadership-section { background: var(--off-white); }
.leader-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(46,139,71,.06);
}
.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.leader-photo {
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-light), var(--gray-100));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.leader-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.leader-photo-placeholder {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
}
.leader-role-ribbon {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(13,27,20,.9), transparent);
  padding: 20px 16px 12px;
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.leader-body { padding: 20px 20px 24px; }
.leader-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.leader-title {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.leader-bio {
  font-size: .87rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ─── FACILITIES ────────────────────────────────────────── */
.facility-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(46,139,71,.06);
  position: relative;
  overflow: hidden;
}
.facility-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}
.facility-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.facility-card:hover::before { transform: scaleX(1); }
.facility-icon {
  width: 64px; height: 64px;
  background: var(--green-light);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--green-mid);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.facility-card:hover .facility-icon {
  background: var(--green-mid);
  color: var(--white);
}
.facility-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.facility-card p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ─── CTA BANNER ────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 50%, var(--green-bright) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 2; }
.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section h2 span { color: var(--gold); }
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-deep);
  font-weight: 700;
  font-size: .92rem;
  padding: 13px 30px;
  border-radius: 30px;
  border: 2px solid var(--white);
  transition: var(--transition);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .92rem;
  padding: 11px 28px;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,.5);
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

/* ─── GALLERY ───────────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: 14px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,61,30,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i {
  color: var(--white);
  font-size: 2rem;
}
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.filter-btn {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

/* ─── CONTACT PAGE ──────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--green-light);
  color: var(--green-mid);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h6 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-item p, .contact-info-item a {
  font-size: .92rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.7;
}
.contact-info-item a:hover { color: var(--green-mid); }

/* Contact Form */
.contact-form .form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--gray-100);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .92rem;
  transition: var(--transition);
  background: var(--off-white);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46,139,71,.1);
  background: var(--white);
}

/* ─── ACCORDION / FAQ ───────────────────────────────────── */
.faq-accordion .accordion-item {
  border: none;
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--green-deep);
  background: var(--white);
  padding: 18px 24px;
  font-size: .95rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--green-light);
  color: var(--green-deep);
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a5c2a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body {
  padding: 16px 24px 20px;
  color: var(--gray-500);
  font-size: .92rem;
  line-height: 1.8;
}

/* ─── VISION/MISSION CARDS ──────────────────────────────── */
.vm-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}
.vm-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.vm-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--green-deep);
}
.vm-card ul { padding-left: 0; list-style: none; }
.vm-card ul li {
  padding: 8px 0;
  display: flex;
  gap: 10px;
  font-size: .93rem;
  color: var(--gray-700);
  line-height: 1.7;
  border-bottom: 1px solid var(--gray-100);
}
.vm-card ul li:last-child { border-bottom: none; }
.vm-card ul li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Core Values */
.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}
.value-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(46,139,71,.1);
  line-height: 1;
  font-weight: 700;
}
.value-icon {
  font-size: 2rem;
  color: var(--green-mid);
  margin: 8px 0 14px;
}
.value-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.value-card p {
  font-size: .87rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ─── ADMISSIONS STEPS ──────────────────────────────────── */
.step-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  transition: var(--transition);
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.step-num {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--green-deep);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.step-info p {
  font-size: .88rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.7;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--black); margin-top: 0; }
.footer-wave { line-height: 0; background: var(--off-white); }
.footer-wave svg { display: block; width: 100%; height: 60px; }

.footer-body { padding: 80px 0 50px; }
.footer-brand { padding-right: 20px; }
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-emblem {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-motto {
  font-size: .65rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-desc {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}

.footer-heading {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a i { font-size: .7rem; color: var(--gold); }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  line-height: 1.7;
}
.footer-contact-list li:last-child { border-bottom: none; }
.footer-contact-list li i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-list a {
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-contact-list a:hover { color: var(--gold-light); }

.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  margin: 0;
}

/* ─── BACK TO TOP ───────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--green-mid);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--green-deep); }

/* ─── SWIPER CUSTOMIZATION ──────────────────────────────── */
.swiper-pagination-bullet { background: var(--gray-300); }
.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-button-next, .swiper-button-prev {
  color: var(--green-mid) !important;
}

/* ─── UTILITY CLASSES ───────────────────────────────────── */
.text-gold { color: var(--gold) !important; }
.text-green { color: var(--green-mid) !important; }
.bg-green-deep { background: var(--green-deep) !important; }
.bg-green-light { background: var(--green-light) !important; }
.bg-gold-pale { background: var(--gold-pale) !important; }
.rounded-xl { border-radius: 20px !important; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-image-panel { margin-top: 40px; }
  .campus-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .campus-item:first-child { grid-row: auto; }
  .topbar-left { display: none; }
  .stat-card::after { display: none; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 60px 0; }
  .hero-title { font-size: 2.2rem; }
  .gallery-grid { columns: 2; }
  .campus-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
  .topbar { display: none; }
  .contact-card { padding: 24px; }
}

@media (max-width: 575.98px) {
  .gallery-grid { columns: 1; }
  .campus-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .about-img-thumb, .about-founded-badge { display: none; }
  .hero-img-float, .hero-badge { display: none; }
}

/* ═══════════════════════════════════════════════
   HERO SLIDER  (replaces static hero)
═══════════════════════════════════════════════ */
.hero-slider-section { position: relative; width: 100%; }

.hero-swiper { width: 100%; height: 100vh; min-height: 580px; max-height: 920px; background: #0f3d1e; }

.hero-slide { position: relative; display: flex; align-items: center; overflow: hidden; height: 100%; }

.hero-slide-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.08);
  transition: transform 7s cubic-bezier(.25,.46,.45,.94);
  z-index: 0;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1); }

.hero-slide-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(115deg, rgba(8,32,16,.88) 0%, rgba(12,50,24,.72) 50%, rgba(8,25,14,.55) 100%);
  z-index: 1;
}

.hero-slide-content {
  position: relative; z-index: 3;
  padding: 130px 0 90px;
  width: 100%;
}

/* Text animations on active slide — only apply after swiper-initialized class is set */
.swiper-initialized .hero-slide .hero-eyebrow,
.swiper-initialized .hero-slide .hero-title,
.swiper-initialized .hero-slide .hero-description,
.swiper-initialized .hero-slide .hero-actions,
.swiper-initialized .hero-slide .hero-stats-panel {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.swiper-initialized .swiper-slide-active .hero-eyebrow  { opacity:1; transform:none; transition-delay:.1s; }
.swiper-initialized .swiper-slide-active .hero-title    { opacity:1; transform:none; transition-delay:.25s; }
.swiper-initialized .swiper-slide-active .hero-description { opacity:1; transform:none; transition-delay:.4s; }
.swiper-initialized .swiper-slide-active .hero-actions  { opacity:1; transform:none; transition-delay:.55s; }
.swiper-initialized .swiper-slide-active .hero-stats-panel { opacity:1; transform:none; transition-delay:.7s; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,.18); border: 1px solid rgba(201,162,39,.4);
  color: var(--gold-light);
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 30px; margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-slide-badge {
  background: var(--gold); color: var(--green-deep);
  font-size: .68rem; padding: 2px 10px; border-radius: 20px;
  margin-left: 6px; font-weight: 700;
}

.hero-title {
  font-size: clamp(2.4rem,5vw,4.2rem);
  color: var(--white); line-height: 1.12;
  margin-bottom: 20px; font-weight: 700;
}
.hero-title span { color: var(--gold-light); }

.hero-description {
  color: rgba(255,255,255,.82); font-size: 1.05rem;
  line-height: 1.85; margin-bottom: 32px; max-width: 560px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats glass panel (right col inside slider) */
.hero-stats-panel {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px; padding: 28px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.hero-stats-panel .h-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.hero-stats-panel .h-stat-label {
  font-size: .74rem; color: rgba(255,255,255,.72);
  font-weight: 500; text-transform: uppercase; letter-spacing: .08em;
  margin-top: 4px;
}
.hero-stats-panel .h-stat { text-align: center; }

/* Slider controls */
.hero-prev, .hero-next {
  width: 52px !important; height: 52px !important;
  background: rgba(255,255,255,.1) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  border-radius: 50% !important;
  color: var(--white) !important;
  transition: var(--transition) !important;
}
.hero-prev::after, .hero-next::after { display: none !important; }
.hero-prev:hover, .hero-next:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--green-deep) !important;
}
.hero-prev i, .hero-next i { font-size: 1.1rem; }

.hero-pagination { bottom: 28px !important; }
.hero-pagination .swiper-pagination-bullet {
  width: 28px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.35) !important; opacity: 1 !important;
  transition: all .3s ease !important;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--gold) !important; width: 50px !important;
}

/* Slide counter badge (top-right) */
.hero-slide-counter {
  position: absolute; top: 24px; right: 24px; z-index: 10;
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6);
  letter-spacing: .05em;
}

/* ═══════════════════════════════════════════════
   CAMPUS LIFE SWIPER (replaces grid on index)
═══════════════════════════════════════════════ */
.campus-life-swiper {
  padding-bottom: 40px !important;
}
.campus-life-swiper .swiper-slide {
  border-radius: 16px; overflow: hidden;
  height: 260px; position: relative;
  box-shadow: var(--shadow-md);
}
.campus-life-swiper .swiper-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.campus-life-swiper .swiper-slide:hover img { transform: scale(1.06); }
.campus-life-swiper .slide-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,30,16,.88), transparent);
  padding: 28px 16px 14px;
  color: var(--white); font-size: .84rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}

/* ═══════════════════════════════════════════════
   PHOTO STRIP SLIDER (dark bg, across pages)
═══════════════════════════════════════════════ */
.photo-strip-section {
  padding: 60px 0 50px; background: var(--green-deep); overflow: hidden;
}
.photo-strip-header { text-align: center; margin-bottom: 32px; }
.photo-strip-header h3 { color: var(--white); font-size: clamp(1.3rem,3vw,2rem); }
.photo-strip-header h3 span { color: var(--gold); }
.photo-strip-header p { color: rgba(255,255,255,.65); font-size: .9rem; margin-top: 6px; }

.photo-strip-swiper .swiper-slide {
  width: 230px !important; height: 150px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,.45);
  flex-shrink: 0;
}
.photo-strip-swiper .swiper-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.photo-strip-swiper .swiper-slide:hover img { transform: scale(1.1); }

/* ═══════════════════════════════════════════════
   FACILITY GALLERY MODAL
═══════════════════════════════════════════════ */
.facility-card { cursor: pointer; }
.facility-card .fac-gallery-hint {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; color: var(--green-mid); font-weight: 600;
  margin-top: 14px; padding-top: 10px;
  border-top: 1px solid var(--gray-100);
  transition: var(--transition);
}
.facility-card:hover .fac-gallery-hint { color: var(--gold); }

#facilityGalleryModal,
#carolGalleryModal {
  position: fixed; inset: 0; background: rgba(0,0,0,.97);
  z-index: 10000; display: none; flex-direction: column;
  animation: fadeIn .22s ease;
}
#facilityGalleryModal.fgm-open,
#carolGalleryModal.fgm-open { display: flex; }

.fgm-header {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 18px 24px;
  background: linear-gradient(to bottom, rgba(0,0,0,.75), transparent);
  display: flex; align-items: center; justify-content: space-between;
  z-index: 5;
}
.fgm-title {
  font-family: var(--font-display);
  font-size: 1.3rem; color: var(--white); font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.fgm-title i { color: var(--gold); }
.fgm-close {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.fgm-close:hover { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }

.fgm-swiper { width: 100%; height: 100vh; }
.fgm-swiper .swiper-slide {
  display: flex; align-items: center; justify-content: center;
  padding: 70px 80px 60px;
}
.fgm-swiper .swiper-slide img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,.8);
}
.fgm-counter {
  position: absolute; bottom: 22px; left: 50%;
  transform: translateX(-50%);
  font-size: .8rem; color: rgba(255,255,255,.55);
  font-weight: 500; z-index: 5; white-space: nowrap;
}
.fgm-swiper .swiper-button-prev,
.fgm-swiper .swiper-button-next {
  color: var(--white) !important;
  background: rgba(255,255,255,.1);
  width: 52px !important; height: 52px !important;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
}
.fgm-swiper .swiper-button-prev:hover,
.fgm-swiper .swiper-button-next:hover {
  background: var(--gold); color: var(--green-deep) !important; border-color: var(--gold);
}
.fgm-swiper .swiper-button-prev::after,
.fgm-swiper .swiper-button-next::after { font-size: .95rem !important; }
.fgm-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.5) !important; opacity: 1 !important; }
.fgm-swiper .swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ═══════════════════════════════════════════════
   CAROL EVENT — preview swiper + button
═══════════════════════════════════════════════ */
.carol-preview-swiper { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 16px; }
.carol-preview-swiper .swiper-slide { height: 200px; }
.carol-preview-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }

.carol-view-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #b91c3a, #8b1127);
  color: var(--white); padding: 10px 22px;
  border-radius: 50px; font-weight: 600; font-size: .88rem;
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(185,28,58,.35);
  text-decoration: none;
}
.carol-view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185,28,58,.45);
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   FEATURED GALLERY SLIDER (gallery.php top)
═══════════════════════════════════════════════ */
.featured-gallery-slider-section { padding: 60px 0 40px; background: var(--off-white); }
.featured-swiper { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.featured-swiper .swiper-slide { height: 460px; position: relative; }
.featured-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.featured-swiper .swiper-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,30,16,.85), transparent);
  padding: 32px 28px 20px;
  color: var(--white); font-weight: 600; font-size: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.featured-swiper .swiper-button-prev,
.featured-swiper .swiper-button-next {
  color: var(--white) !important;
  background: rgba(0,0,0,.3); width: 48px !important; height: 48px !important;
  border-radius: 50%;
  transition: var(--transition);
}
.featured-swiper .swiper-button-prev:hover,
.featured-swiper .swiper-button-next:hover { background: var(--gold); color: var(--green-deep) !important; }
.featured-swiper .swiper-button-prev::after,
.featured-swiper .swiper-button-next::after { font-size: .9rem !important; }
.featured-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.5) !important; opacity: 1 !important; }
.featured-swiper .swiper-pagination-bullet-active { background: var(--white) !important; }

@media (max-width: 767.98px) {
  .hero-swiper { height: 100svh; min-height: 520px; max-height: 750px; }
  .hero-slide-content { padding: 100px 0 80px; }
  .fgm-swiper .swiper-slide { padding: 64px 12px 56px; }
  .fgm-swiper .swiper-button-prev, .fgm-swiper .swiper-button-next { display: none !important; }
  .featured-swiper .swiper-slide { height: 260px; }
  .carol-preview-swiper .swiper-slide { height: 170px; }
}

/* ══════════════════════════════════════════════════════════════
   EVENT CARDS — Preview Swipers + Universal Modal
   ══════════════════════════════════════════════════════════════ */

/* ── Event section layout ───────────────────────────────────── */
.evt-section { overflow: hidden; }

/* ── Event icon box ─────────────────────────────────────────── */
.evt-icon-box {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0; margin-top: 4px;
  box-shadow: 0 4px 14px rgba(0,0,0,.10);
}
.evt-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--green-deep);
  margin: 0; padding-top: 8px;
  font-family: var(--font-display);
}

/* ── Preview swiper wrapper ─────────────────────────────────── */
.evt-swiper-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: evtSwipeIn .6s ease both;
}
@keyframes evtSwipeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.event-preview-swiper .swiper-slide { height: 280px; cursor: pointer; }
.event-preview-swiper .swiper-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.event-preview-swiper .swiper-slide:hover img { transform: scale(1.06); }

/* Slide overlay on hover */
.evt-slide-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem;
  opacity: 0; transition: all .3s ease;
}
.event-preview-swiper .swiper-slide:hover .evt-slide-overlay {
  background: rgba(0,0,0,.35); opacity: 1;
}

/* Swiper nav buttons inside event preview */
.event-preview-swiper .swiper-button-prev,
.event-preview-swiper .swiper-button-next {
  color: var(--white) !important;
  background: rgba(0,0,0,.35);
  width: 36px !important; height: 36px !important;
  border-radius: 50%;
  transition: background .25s;
}
.event-preview-swiper .swiper-button-prev:hover,
.event-preview-swiper .swiper-button-next:hover { background: var(--gold); color: var(--green-deep) !important; }
.event-preview-swiper .swiper-button-prev::after,
.event-preview-swiper .swiper-button-next::after { font-size: .75rem !important; }
.event-preview-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.6) !important; opacity: 1 !important; }
.event-preview-swiper .swiper-pagination-bullet-active { background: var(--gold) !important; }
.evt-swiper-pagination { bottom: 10px !important; }

/* Photo count badge */
.evt-photo-badge {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(0,0,0,.65);
  color: var(--white); font-size: .78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px; backdrop-filter: blur(6px);
  pointer-events: none; letter-spacing: .04em;
}

/* ── Thumbnail strip ────────────────────────────────────────── */
.evt-thumb-strip {
  display: flex; gap: 8px; flex-wrap: nowrap; overflow-x: auto;
  scrollbar-width: thin; scrollbar-color: var(--gray-200) transparent;
  padding-bottom: 4px;
}
.evt-thumb {
  width: 72px; height: 56px; border-radius: 10px; flex-shrink: 0;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.evt-thumb:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.evt-thumb-hover {
  position: absolute; inset: 0; background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .95rem;
  opacity: 0; transition: opacity .25s;
}
.evt-thumb:hover .evt-thumb-hover { opacity: 1; }

/* ── View All button ────────────────────────────────────────── */
.evt-view-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 30px; border: none; cursor: pointer;
  background: var(--green-deep); color: var(--white);
  font-size: .9rem; font-weight: 600; letter-spacing: .03em;
  transition: all .3s ease; box-shadow: 0 4px 16px rgba(0,100,40,.25);
  position: relative; overflow: hidden;
}
.evt-view-btn::before {
  content: '';
  position: absolute; inset: 0; left: -100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transition: left .5s ease;
}
.evt-view-btn:hover::before { left: 100%; }
.evt-view-btn:hover {
  background: var(--gold); color: var(--green-deep);
  box-shadow: 0 6px 20px rgba(180,140,0,.35);
  transform: translateY(-2px);
}
.evt-view-btn:active { transform: translateY(0); }

/* ── Sports thumbnail cards ────────────────────────────────── */
.sport-thumb-card {
  border-radius: 12px; overflow: hidden; aspect-ratio: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,.3); position: relative; cursor: pointer;
}
.sport-thumb-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.sport-thumb-card:hover img { transform: scale(1.1); }
.sport-thumb-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
  opacity: 0; transition: opacity .3s;
}
.sport-thumb-card:hover .sport-thumb-overlay { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   UNIVERSAL EVENT GALLERY MODAL
   ══════════════════════════════════════════════════════════════ */
.egm-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.97); z-index: 10000;
  flex-direction: column;
  animation: egmFadeIn .25s ease;
}
.egm-backdrop.egm-open { display: flex; }
@keyframes egmFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.egm-container {
  display: flex; flex-direction: column;
  width: 100%; height: 100%;
}

/* Header */
.egm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.egm-title-wrap {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 1rem; font-weight: 600;
}
.egm-title-wrap .bi { color: var(--gold); font-size: 1.15rem; }

.egm-close {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  background: transparent; color: var(--white); font-size: .9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.egm-close:hover { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }

/* Swiper inside modal */
.egm-swiper { flex: 1; width: 100%; min-height: 0; }
.egm-swiper .swiper-slide {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 60px;
}
.egm-swiper .swiper-slide img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  border-radius: 6px; box-shadow: 0 10px 40px rgba(0,0,0,.7);
}

.egm-nav-btn {
  color: var(--white) !important;
  background: rgba(255,255,255,.1) !important;
  width: 44px !important; height: 44px !important;
  border-radius: 50%;
  transition: background .25s;
}
.egm-nav-btn:hover { background: var(--gold) !important; color: var(--green-deep) !important; }
.egm-nav-btn::after { font-size: .85rem !important; }
.egm-pagination { bottom: 8px !important; }
.egm-pagination .swiper-pagination-bullet { background: rgba(255,255,255,.4) !important; opacity: 1 !important; }
.egm-pagination .swiper-pagination-bullet-active { background: var(--gold) !important; }

/* Footer bar */
.egm-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 24px; flex-shrink: 0;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
}
.egm-counter {
  color: var(--gold); font-size: .85rem; font-weight: 600;
}
.egm-hint {
  color: rgba(255,255,255,.4); font-size: .78rem;
}

/* ── Responsive adjustments ─────────────────────────────────── */
@media (max-width: 991.98px) {
  .event-preview-swiper .swiper-slide { height: 230px; }
  .evt-title { font-size: 1.25rem; }
}
@media (max-width: 767.98px) {
  .event-preview-swiper .swiper-slide { height: 200px; }
  .egm-swiper .swiper-slide { padding: 16px 12px; }
  .egm-nav-btn { display: none !important; }
  .egm-hint { display: none; }
  .evt-thumb { width: 60px; height: 46px; }
}
