/* ============================================================
   RTC ABETIFI — MAIN STYLESHEET
   style.css
   ============================================================ */

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --blue-dark:   #1a3d6e;
  --blue-mid:    #2563a8;
  --blue-light:  #4a90d9;
  --blue-pale:   #d6e8f7;
  --gold:        #c89a2a;
  --gold-light:  #f0c040;
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --gray-100:    #eef1f5;
  --gray-200:    #dde3eb;
  --gray-500:    #6b7a8d;
  --gray-800:    #2c3440;
  --font-head:   'Merriweather', Georgia, serif;
  --font-body:   'Open Sans', sans-serif;
  --radius:      5px;
  --trans:       .22s ease;
  --shadow:      0 2px 14px rgba(0,0,0,.10);
  --shadow-md:   0 4px 24px rgba(0,0,0,.14);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.18);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: #c8d4e0;
  font-size: 15px;
  line-height: 1.65;
}

.site-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 40px rgba(0,0,0,.18);
  overflow: hidden;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font-family: var(--font-body); }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ── TYPOGRAPHY HELPERS ─────────────────────────────────────── */
.sec-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 6px;
}
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--blue-dark);
  line-height: 1.3;
}
.sec-rule {
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px 0 24px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .85rem;
  padding: 10px 22px;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-dark  { background: var(--blue-dark);  color: var(--white); }
.btn-dark:hover  { background: #122c52; transform: translateY(-1px); }
.btn-mid   { background: var(--blue-mid);   color: var(--white); }
.btn-mid:hover   { background: var(--blue-dark); }
.btn-gold  { background: var(--gold);       color: var(--white); }
.btn-gold:hover  { background: #a07a18; }
.btn-outline { border: 2px solid var(--blue-mid); color: var(--blue-mid); }
.btn-outline:hover { background: var(--blue-mid); color: var(--white); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.7); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

/* ── TOP BAR ────────────────────────────────────────────────── */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.78);
  font-size: .77rem;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left  { display: flex; gap: 22px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 5px; }
.topbar-right { display: flex; gap: 10px; align-items: center; }
.topbar-right a {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
  transition: background var(--trans);
}
.topbar-right a:hover { background: var(--gold); }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.logo-wrap  { display: flex; align-items: center; gap: 14px; }
.logo-icon  {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text .name  { font-family: var(--font-head); font-size: 1.08rem; color: var(--blue-dark); font-weight: 700; line-height: 1.15; }
.logo-text .sub   { font-size: .7rem; color: var(--gray-500); letter-spacing: .03em; }
.logo-text .motto { font-size: .7rem; color: var(--blue-light); font-style: italic; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.site-nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px;
  font-size: .84rem; font-weight: 600; color: var(--gray-800);
  border-radius: var(--radius);
  transition: all var(--trans);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--blue-mid); background: var(--blue-pale); }
.nav-arrow { font-size: .6rem; transition: transform var(--trans); }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--blue-mid);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 200px;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: all var(--trans);
  z-index: 300;
}
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 18px;
  font-size: .83rem; color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--trans);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--blue-pale); color: var(--blue-mid); padding-left: 22px; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all var(--trans); }

.m-nav {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); box-shadow: var(--shadow-md);
  padding: 12px; z-index: 999;
}
.m-nav.open { display: block; }
.m-nav a {
  display: block; padding: 10px 8px;
  font-size: .88rem; font-weight: 600;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-800);
}
.m-nav a:hover { color: var(--blue-mid); }

/* ── HERO SLIDER ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: clamp(400px, 58vh, 600px);
  overflow: hidden;
  background: var(--blue-dark);
}
.slides-track {
  display: flex; height: 100%;
  transition: transform 1.4s cubic-bezier(.4,0,.2,1);
}
.slide { min-width: 100%; height: 100%; position: relative; display: flex; align-items: center; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }

.slide:nth-child(3) .slide-bg { background-image: url('../Images/sky view.jpg'); background-size: cover; background-position: center; }
.slide:nth-child(4) .slide-bg { background-image: url('../Images/Faculty memebers.JPG'); background-size: cover; background-position: center top; }

/* To use real photos, add class bg-slide-1/2/3 and define in custom.css:
   .bg-slide-1 { background-image: url('../assets/images/slide1.jpg'); }  */



.slide--image-only { display: block; }
.slide-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,30,70,.82) 0%, rgba(10,30,70,.5) 55%, rgba(10,30,70,.12) 100%);
}
.slide-content { position: relative; z-index: 2; padding: 0 64px; max-width: 660px; }
.slide-tag {
  display: inline-block; background: var(--gold); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 3px; margin-bottom: 16px;
}
.slide-title { font-family: var(--font-head); font-size: clamp(1.7rem, 4vw, 2.7rem); color: var(--white); line-height: 1.22; margin-bottom: 14px; }
.slide-text  { color: rgba(255,255,255,.82); font-size: .98rem; margin-bottom: 26px; max-width: 480px; }
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-dots { position: absolute; bottom: 22px; left: 64px; display: flex; gap: 8px; z-index: 3; }
.hero-dot  {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.38); cursor: pointer;
  transition: all var(--trans);
}
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.hero-arrows { position: absolute; bottom: 14px; right: 28px; display: flex; gap: 8px; z-index: 3; }
.hero-arrows button {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.14); backdrop-filter: blur(3px);
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.hero-arrows button:hover { background: var(--gold); }

/* ── SOCIAL MEDIA SLIDE ─────────────────────────────────────── */
.slide--social {
  position: relative; overflow: hidden;
  background: #0b1d3a;
}
.social-bg-collage {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.social-collage-img {
  background-size: cover;
  background-position: center;
}
.social-overlay {
  position: absolute; inset: 0;
  background: rgba(11, 29, 58, 0.70);
  z-index: 1;
}
.social-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 40px 32px; width: 100%; height: 100%;
}
.social-slide-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.social-slide-logo {
  width: 48px; height: 48px; object-fit: contain;
  border-radius: 6px;
}
.social-slide-name {
  font-family: var(--font-head);
  font-size: clamp(.85rem, 2vw, 1.1rem);
  color: var(--gold-light); font-weight: 700;
}
.social-slide-title {
  font-family: 'Impact', 'Arial Black', var(--font-head);
  font-size: clamp(2rem, 6vw, 3.8rem);
  color: var(--white); line-height: 1.1;
  text-transform: uppercase; font-weight: 900;
  margin-bottom: 32px; letter-spacing: .03em;
  text-shadow: 2px 4px 10px rgba(0,0,0,.5);
  max-width: 820px;
}
.social-slide-icons {
  display: flex; gap: clamp(16px, 4vw, 36px);
  margin-bottom: 32px; flex-wrap: wrap; justify-content: center;
}
.social-icon-link {
  width: clamp(52px, 9vw, 76px); height: clamp(52px, 9vw, 76px);
  background: var(--white); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #1a3d6e; transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.social-icon-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 28px rgba(0,0,0,.4);
}
.social-icon-link svg {
  width: 55%; height: 55%;
}
.social-slide-cta {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.social-slide-learn {
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  color: var(--gold-light); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.social-slide-learn::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--gold-light);
}
.social-slide-url {
  font-family: var(--font-head);
  font-size: clamp(1rem, 3vw, 1.6rem);
  color: var(--white); font-weight: 700;
}

/* ── STATS BAND ──────────────────────────────────────────────── */
.stats-band { background: var(--blue-mid); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px;
  border-right: 1px solid rgba(255,255,255,.15);
  transition: background var(--trans);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0,0,0,.1); }
.stat-icon { color: var(--gold-light); flex-shrink: 0; }
.stat-val  { font-family: var(--font-head); font-size: 1.35rem; color: var(--white); font-weight: 700; }
.stat-lbl  { font-size: .8rem; color: rgba(255,255,255,.68); font-weight: 500; }

/* ── INTRO SECTION ───────────────────────────────────────────── */
.intro-section { padding: 64px 0; background: var(--off-white); }
.intro-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
}
.intro-img-wrap { position: relative; }
.intro-img {
  width: 100%; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
}
.img-ph { display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,.35); font-size: .8rem; }
.intro-img img { width: 100%; height: 100%; object-fit: cover; }

.founded-badge {
  position: absolute; bottom: -18px; right: -18px;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); color: var(--white); text-align: center;
}
.founded-badge .yr  { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.founded-badge .txt { font-size: .62rem; font-weight: 700; letter-spacing: .04em; }

.intro-body p { color: var(--gray-500); line-height: 1.78; margin-bottom: 14px; font-size: .95rem; }
.intro-chips  { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.chip {
  display: flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 7px 14px; border-radius: 24px;
  font-size: .8rem; font-weight: 600; color: var(--blue-dark);
}
.chip svg { color: var(--blue-mid); }
.intro-ctas { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

/* ── DIRECTOR'S MESSAGE ──────────────────────────────────────── */
.directors-message {
  padding: 72px 0 80px;
  background: var(--off-white);
}
.dm-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.dm-section-head .sec-rule {
  margin: 12px auto 0;
}
.dm-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 6px 40px rgba(26,61,110,.12);
  display: grid;
  grid-template-columns: 240px 1fr;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

/* Left photo column */
.dm-photo-col {
  background: linear-gradient(175deg, var(--blue-dark) 0%, #122c52 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 32px;
  position: relative;
}
.dm-photo-col::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.dm-photo-frame {
  width: 172px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid rgba(200,154,42,.45);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  flex-shrink: 0;
}
.dm-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.dm-name-plate {
  margin-top: 22px;
  text-align: center;
}
.dm-name {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
}
.dm-role-tag {
  display: inline-block;
  margin-top: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Right text column */
.dm-text-col {
  padding: 40px 44px 40px 40px;
  position: relative;
}
.dm-open-quote {
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.6;
  color: var(--blue-pale);
  position: absolute;
  top: 28px;
  left: 34px;
  pointer-events: none;
  user-select: none;
}
.dm-body {
  color: var(--gray-800);
  line-height: 1.9;
  margin-bottom: 14px;
  font-size: .95rem;
  position: relative;
}
.dm-body:first-of-type {
  margin-top: 28px;
}
.dm-motto-bar {
  margin-top: 28px;
  padding: 14px 20px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-mid));
  border-radius: var(--radius);
  display: inline-block;
}
.dm-motto-text {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: .03em;
}

/* ── NEWS SECTION ────────────────────────────────────────────── */
.news-section { padding: 64px 0; background: var(--white); }
.main-grid {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 44px; align-items: start;
}

/* Tabs */
.news-tabs { display: flex; border-bottom: 2px solid var(--gray-200); margin-bottom: 22px; }
.ntab {
  padding: 9px 17px; font-size: .8rem; font-weight: 700;
  color: var(--gray-500); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all var(--trans);
}
.ntab.active { color: var(--blue-mid); border-bottom-color: var(--blue-mid); }
.ntab-panel  { display: none; }
.ntab-panel.active { display: block; }

/* ── NEWS MAGAZINE LAYOUT ─────────────────────────────────── */
.news-magazine { display: grid; grid-template-columns: 56% 1fr; gap: 32px; align-items: start; }

.news-featured-img {
  position: relative; height: 240px; overflow: hidden;
  border-radius: 8px; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.2);
}
.news-featured-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; display: block; }
.news-featured-img .news-cat { position: absolute; top: 12px; left: 12px; z-index: 1; }
.news-featured-title {
  font-family: var(--font-head); font-size: 1.13rem; font-weight: 700;
  color: var(--gray-800); line-height: 1.35; margin-bottom: 8px;
  transition: color var(--trans); cursor: pointer;
  text-decoration: none; display: block;
}
.news-featured:hover .news-featured-title { color: var(--blue-mid); }
.news-featured-meta { font-size: .77rem; color: var(--gray-500); margin-bottom: 10px; display: flex; gap: 6px; align-items: center; }
.news-featured-excerpt { font-size: .82rem; color: var(--gray-600); line-height: 1.62; margin-bottom: 12px; }
.news-featured-more { font-size: .8rem; font-weight: 700; color: var(--blue-mid); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--trans); text-decoration: none; }
.news-featured:hover .news-featured-more { gap: 8px; }

.news-sidebar-list { display: flex; flex-direction: column; }
.news-sidebar-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--gray-100); cursor: pointer; text-decoration: none;
}
.news-sidebar-item:first-child { border-top: 1px solid var(--gray-100); }
.news-sidebar-thumb {
  width: 96px; height: 76px; flex-shrink: 0; border-radius: 6px; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.25);
}
.news-sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.news-sidebar-text { flex: 1; min-width: 0; }
.news-sidebar-title {
  font-size: .88rem; font-weight: 700; color: var(--gray-800); line-height: 1.38; margin-bottom: 5px;
  transition: color var(--trans);
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-sidebar-item:hover .news-sidebar-title { color: var(--blue-mid); }
.news-sidebar-date { font-size: .73rem; color: var(--gray-400); }

/* Kept for .news-cat badge reuse */
.news-meta  { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.news-cat   {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-mid); background: var(--blue-pale); padding: 2px 8px; border-radius: 3px;
}
.news-date  { font-size: .73rem; color: var(--gray-500); }
.news-excerpt { font-size: .78rem; color: var(--gray-500); line-height: 1.55; }
.view-more {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .83rem; font-weight: 700; color: var(--blue-mid);
  margin-top: 18px; transition: gap var(--trans);
}
.view-more:hover { gap: 9px; }

/* ── SIDEBAR WIDGETS ─────────────────────────────────────────── */
.widget { margin-bottom: 32px; }
.widget-head {
  background: var(--blue-dark); color: var(--white);
  padding: 13px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
  font-family: var(--font-head); font-size: .92rem; font-weight: 700;
  display: flex; align-items: center; gap: 9px;
}
.widget-body {
  background: var(--white);
  border: 1px solid var(--gray-200); border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* Events */
.event-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; border-bottom: 1px solid var(--gray-100);
}
.event-row:last-child { border-bottom: none; }
.event-cal {
  flex-shrink: 0; width: 44px; height: 50px; border-radius: var(--radius);
  background: var(--blue-mid);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white);
}
.event-cal .day { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; line-height: 1; }
.event-cal .mon { font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.event-title    { font-weight: 600; font-size: .85rem; color: var(--gray-800); line-height: 1.35; margin-bottom: 3px; }
.event-sub      { font-size: .73rem; color: var(--gray-500); display: flex; align-items: center; gap: 4px; }

/* Quick links */
.qlink {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 16px; border-bottom: 1px solid var(--gray-100);
  font-size: .85rem; font-weight: 600; color: var(--gray-800);
  transition: all var(--trans);
}
.qlink:last-child { border-bottom: none; }
.qlink:hover { background: var(--blue-pale); color: var(--blue-mid); }
.qlink-icon { color: var(--gold); flex-shrink: 0; }
.qlink-arr  { margin-left: auto; color: var(--gray-200); }

/* ── BLOG SECTION ────────────────────────────────────────────── */
.blog-section { padding: 64px 0; background: var(--off-white); }
.blog-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.blog-card {
  background: var(--white); border-radius: 7px; overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
  transition: all var(--trans);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.bc-img {
  height: 180px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.25);
}
.bc-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.blog-card:nth-child(2) .bc-img { background: linear-gradient(135deg, #0f2a50, #2563a8); }
.blog-card:nth-child(3) .bc-img { background: linear-gradient(135deg, #162040, #1a5298); }
.bc-cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--gold); color: var(--white);
  font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 3px;
}
.bc-body    { padding: 18px; }
.bc-meta    { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: .75rem; color: var(--gray-500); }
.bc-title   { font-family: var(--font-head); font-size: .97rem; font-weight: 700; color: var(--gray-800); line-height: 1.38; margin-bottom: 9px; transition: color var(--trans); }
.blog-card:hover .bc-title { color: var(--blue-mid); }
.bc-excerpt { font-size: .8rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 12px; }
.bc-more    { font-size: .8rem; font-weight: 700; color: var(--blue-mid); display: inline-flex; align-items: center; gap: 5px; transition: gap var(--trans); }
.blog-card:hover .bc-more { gap: 9px; }

/* ── ARTICLE / FULL NEWS PAGE ─────────────────────────────── */
.article-wrap { max-width: 820px; margin: 0 auto; padding: 44px 0 72px; }
.article-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600; color: var(--blue-mid);
  margin-bottom: 28px; text-decoration: none; transition: gap var(--trans);
}
.article-back:hover { gap: 11px; }
.article-back--bottom { margin-top: 44px; margin-bottom: 0; }
.article-header { margin-bottom: 28px; }
.article-header .news-cat { margin-bottom: 12px; display: inline-block; }
.article-title {
  font-family: var(--font-head); font-size: 1.75rem; font-weight: 700;
  color: var(--gray-800); line-height: 1.28; margin: 12px 0 14px;
}
.article-meta { font-size: .82rem; color: var(--gray-500); display: flex; gap: 8px; align-items: center; }
.article-lead-img { margin-bottom: 28px; border-radius: 8px; overflow: hidden; }
.article-lead-img img { width: 100%; display: block; max-height: 480px; object-fit: cover; }
.article-img-caption {
  font-size: .75rem; color: var(--gray-500); font-style: italic;
  padding: 8px 0 0; line-height: 1.5;
}
.article-text { font-size: .96rem; line-height: 1.85; color: var(--gray-700); }
.article-text p { margin-bottom: 20px; }
.article-inline-img--right {
  float: right; width: 40%; margin: 4px 0 20px 28px;
  border-radius: 7px; overflow: hidden;
}
.article-inline-img--right img { width: 100%; display: block; }
.article-inline-img--right .article-img-caption { padding: 7px 0 0; }
.article-gallery { clear: both; margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--gray-100); }
.article-gallery-title {
  font-family: var(--font-head); font-size: 1.1rem; color: var(--gray-800);
  margin-bottom: 20px; font-weight: 700;
}
.article-gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.article-gallery-item { border-radius: 7px; overflow: hidden; }
.article-gallery-item img { width: 100%; display: block; height: 230px; object-fit: cover; }

/* Featured blog card – spans all columns with a 4-photo strip */
.blog-card-featured { grid-column: 1 / -1; }
.bc-img-strip {
  height: 200px; display: flex; gap: 2px; overflow: hidden;
  position: relative; background: var(--blue-dark);
}
.bc-img-strip img { flex: 1; min-width: 0; object-fit: cover; height: 100%; display: block; }
.bc-img-strip .bc-cat { position: absolute; top: 12px; left: 12px; z-index: 2; }

/* ── PROGRAMMES STRIP ────────────────────────────────────────── */
.prog-strip { padding: 64px 0; background: var(--blue-dark); }
.prog-strip .sec-title { color: var(--white); }
.prog-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.prog-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.prog-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px; padding: 26px 20px; text-align: center;
  transition: all var(--trans); cursor: pointer;
}
.prog-card:hover { background: rgba(255,255,255,.14); border-color: var(--gold); transform: translateY(-4px); }
.prog-ico {
  width: 52px; height: 52px; margin: 0 auto 14px;
  background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold-light);
}
.prog-name { font-family: var(--font-head); font-size: .93rem; color: var(--white); font-weight: 700; margin-bottom: 8px; }
.prog-desc { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── NEWSLETTER ──────────────────────────────────────────────── */
.newsletter { padding: 50px 0; background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark)); }
.nl-inner   { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.nl-text h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); margin-bottom: 5px; }
.nl-text p  { color: rgba(255,255,255,.72); font-size: .9rem; }
.nl-form    { display: flex; gap: 10px; flex: 1; max-width: 460px; min-width: 250px; }
.nl-form input {
  flex: 1; padding: 11px 16px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1); color: var(--white); font-size: .88rem; outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,.45); }
.nl-form input:focus { border-color: var(--gold-light); }

/* ── ANNIVERSARY PAGE ────────────────────────────────────────── */
.anniv-hero { position:relative; min-height:420px; display:flex; flex-direction:column; justify-content:flex-end; }
.anniv-hero-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.anniv-hero-overlay { position:absolute; inset:0; background:linear-gradient(to right, rgba(10,30,60,.88) 55%, rgba(10,30,60,.55)); }
.anniv-hero-content { position:relative; z-index:1; display:flex; align-items:center; gap:32px; padding:56px 0 32px; flex-wrap:wrap; }
.anniv-logo { height:140px; width:auto; border-radius:8px; flex-shrink:0; box-shadow:0 4px 20px rgba(0,0,0,.4); }
.anniv-hero-sub { color:var(--gold); font-size:.8rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; margin-bottom:10px; }
.anniv-hero-title { font-family:var(--font-head); font-size:clamp(1.6rem,3.5vw,2.5rem); color:#fff; line-height:1.25; margin-bottom:12px; }
.anniv-hero-text { color:rgba(255,255,255,.75); font-size:.95rem; line-height:1.72; max-width:560px; }
.breadcrumb-bar { position:relative; z-index:1; background:rgba(0,0,0,.3); padding:10px 0; font-size:.78rem; color:rgba(255,255,255,.55); }
.breadcrumb-bar .bc-active { color:var(--gold); }

.anniv-intro-grid { display:grid; grid-template-columns:1fr 340px; gap:48px; align-items:start; margin-top:48px; }
.anniv-stat-col { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.anniv-stat-card { background:var(--blue-pale); border-radius:8px; padding:22px 16px; text-align:center; }
.anniv-stat-num { font-family:var(--font-head); font-size:1.5rem; font-weight:700; color:var(--blue-dark); line-height:1.1; }
.anniv-stat-lbl { font-size:.75rem; color:var(--gray-500); margin-top:6px; font-weight:600; text-transform:uppercase; letter-spacing:.06em; }

.anniv-project-band { background:var(--blue-dark); padding:56px 0; margin-top:56px; }
.anniv-project-band .sec-title { color:#fff; }
.anniv-project-band .sec-rule { background:var(--gold); }
.anniv-project-grid { display:grid; grid-template-columns:1fr 380px; gap:48px; align-items:start; margin-top:32px; }
.anniv-sub-head { font-family:var(--font-head); font-size:1rem; color:#fff; margin-bottom:10px; }
.anniv-body-text { color:rgba(255,255,255,.72); line-height:1.78; font-size:.92rem; }
.anniv-benefits-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.anniv-benefits-list li { display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.78); font-size:.9rem; }
.anniv-benefits-list svg { color:var(--gold); flex-shrink:0; }

.anniv-spec-card { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); border-radius:8px; overflow:hidden; margin-bottom:16px; }
.anniv-spec-head { display:flex; align-items:center; gap:10px; background:rgba(255,255,255,.1); padding:14px 18px; font-weight:700; color:#fff; font-size:.88rem; text-transform:uppercase; letter-spacing:.07em; }
.anniv-spec-body { padding:4px 0; }
.anniv-spec-row { display:flex; justify-content:space-between; padding:10px 18px; border-bottom:1px solid rgba(255,255,255,.07); font-size:.86rem; }
.anniv-spec-row span:first-child { color:rgba(255,255,255,.55); }
.anniv-spec-row span:last-child { color:#fff; font-weight:600; }
.anniv-spec-row:last-child { border-bottom:none; }
.anniv-cost-card { background:var(--gold); border-radius:8px; padding:24px 22px; }
.anniv-cost-label { font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:rgba(0,0,0,.55); margin-bottom:8px; }
.anniv-cost-amount { font-family:var(--font-head); font-size:1.6rem; font-weight:700; color:var(--blue-dark); line-height:1.1; }
.anniv-cost-note { font-size:.82rem; color:rgba(0,0,0,.65); line-height:1.65; margin-top:10px; }

.anniv-gallery { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:auto auto; gap:14px; margin-top:28px; }
.anniv-gallery-main { grid-column:1; grid-row:1; border-radius:8px; overflow:hidden; }
.anniv-gallery-side { grid-column:2; grid-row:1; display:flex; flex-direction:column; gap:14px; }
.anniv-gallery-thumb { border-radius:8px; overflow:hidden; flex:1; }
.anniv-gallery-plan { grid-column:1/-1; grid-row:2; border-radius:8px; overflow:hidden; }
.anniv-gallery img { width:100%; object-fit:cover; display:block; }
.anniv-gallery-main img { height:360px; }
.anniv-gallery-thumb img { height:170px; }
.anniv-gallery-plan img { height:280px; object-fit:contain; background:var(--gray-100); }
.anniv-gallery-cap { background:#fff; border-top:2px solid var(--gold); padding:9px 14px; font-size:.78rem; font-weight:700; color:var(--gray-500); text-transform:uppercase; letter-spacing:.07em; }

@media (max-width: 768px) {
  .anniv-intro-grid { grid-template-columns:1fr; }
  .anniv-project-grid { grid-template-columns:1fr; }
  .anniv-gallery { grid-template-columns:1fr; }
  .anniv-gallery-main, .anniv-gallery-side, .anniv-gallery-plan { grid-column:1; grid-row:auto; }
  .anniv-gallery-side { flex-direction:row; }
  .anniv-gallery-thumb img { height:140px; }
  .anniv-hero-content { gap:20px; }
  .anniv-logo { height:100px; }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: #0e2040; color: rgba(255,255,255,.7); }
.footer-main { padding: 54px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 38px; }
.ft-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ft-logo-circle {
  width: 42px; height: 42px; background: var(--blue-mid); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ft-name  { font-family: var(--font-head); font-size: .97rem; font-weight: 700; color: var(--white); }
.ft-brand p { font-size: .83rem; line-height: 1.72; margin-bottom: 12px; }
.ft-social  { display: flex; gap: 9px; }
.ft-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700;
  transition: background var(--trans);
}
.ft-social a:hover { background: var(--gold); color: var(--white); }
.ft-heading { font-weight: 700; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.ft-links a { display: block; font-size: .83rem; padding: 3px 0; color: rgba(255,255,255,.62); transition: all var(--trans); }
.ft-links a:hover { color: var(--gold-light); padding-left: 5px; }
.ft-contact-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .83rem; }
.ft-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .77rem; color: rgba(255,255,255,.38); gap: 16px; flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── PAGE ROUTING ────────────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

.page-banner {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue-mid));
  padding: 56px 0; text-align: center; color: var(--white);
}
.page-banner h1 { font-family: var(--font-head); font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 8px; }
.page-banner p  { color: rgba(255,255,255,.72); font-size: .97rem; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: .77rem; color: rgba(255,255,255,.55); margin-top: 12px;
}
.breadcrumb .bc-active { color: var(--gold-light); }
.page-body { padding: 56px 0; }

/* ── ADMIN PAGE ──────────────────────────────────────────────── */
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.admin-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 7px; overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.06); transition: all var(--trans);
}
.admin-card:hover { box-shadow: var(--shadow); border-color: var(--blue-light); }
.admin-card-img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.25); overflow: hidden;
}
.admin-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.admin-card-body        { padding: 20px; }
.admin-card-body h3     { font-family: var(--font-head); font-size: 1rem; color: var(--blue-dark); margin-bottom: 4px; }
.admin-card-body .role  { font-size: .73rem; color: var(--gold); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.admin-card-body p      { font-size: .83rem; color: var(--gray-500); line-height: 1.65; }

/* ── CONTENT CARDS (Community, Services, Anniversary) ─────────── */
.content-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.content-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 7px; padding: 28px 24px;
  transition: all var(--trans); text-align: center;
}
.content-card:hover { box-shadow: var(--shadow); border-color: var(--blue-light); }
.cc-icon {
  width: 54px; height: 54px; margin: 0 auto 14px;
  background: var(--blue-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--blue-mid);
}
.content-card h3 { font-family: var(--font-head); font-size: .97rem; color: var(--blue-dark); margin-bottom: 8px; }
.content-card p  { font-size: .82rem; color: var(--gray-500); line-height: 1.65; }

/* ── ABOUT PAGE ──────────────────────────────────────────────── */

/* Intro */
.about-intro { padding: 64px 0; background: var(--white); }
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.about-intro-text p {
  color: var(--gray-500); line-height: 1.85; margin-bottom: 16px; font-size: .95rem;
}
.about-stats {
  display: flex; gap: 28px; margin-top: 28px;
  padding-top: 24px; border-top: 1px solid var(--gray-200);
}
.about-stat-val {
  font-family: var(--font-head); font-size: 1.7rem; font-weight: 700;
  color: var(--blue-dark); line-height: 1;
}
.about-stat-lbl {
  font-size: .73rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--gray-500); margin-top: 5px;
}
.about-intro-img {
  position: relative;
}
.about-intro-img img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 8px;
  box-shadow: var(--shadow-md); display: block;
}
.about-img-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--blue-dark); color: var(--white);
  padding: 14px 18px; border-radius: 8px;
  box-shadow: var(--shadow-md); text-align: center;
  border-bottom: 4px solid var(--gold);
}
.aib-year { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.aib-text { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); margin-top: 3px; }

/* Mission / Vision cards */
.about-mv-section { padding: 56px 0; background: var(--off-white); }
.about-mv-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.about-mv-card {
  border-radius: 8px; padding: 28px 24px;
}
.about-mv-card h3 {
  font-family: var(--font-head); font-size: .93rem; margin: 14px 0 10px;
}
.about-mv-card p { font-size: .84rem; line-height: 1.75; }
.about-mv-card p + p { margin-top: 8px; }
.amv-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.about-mv-card--blue  { background: var(--blue-dark); color: rgba(255,255,255,.85); }
.about-mv-card--blue h3 { color: var(--white); }
.about-mv-card--blue .amv-icon { background: rgba(255,255,255,.12); color: var(--gold-light); }
.about-mv-card--gold  { background: var(--gold); color: rgba(255,255,255,.9); }
.about-mv-card--gold h3 { color: var(--white); }
.about-mv-card--gold .amv-icon { background: rgba(255,255,255,.2); color: var(--white); }
.about-mv-card--dark  { background: #122c52; color: rgba(255,255,255,.82); }
.about-mv-card--dark h3 { color: var(--white); }
.about-mv-card--dark .amv-icon { background: rgba(255,255,255,.1); color: var(--gold-light); }
.about-mv-card--light { background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-500); }
.about-mv-card--light h3 { color: var(--blue-dark); }
.about-mv-card--light .amv-icon { background: var(--blue-pale); color: var(--blue-mid); }

/* Timeline */
.about-timeline-section { padding: 64px 0 80px; background: var(--white); }

.about-timeline {
  position: relative;
  max-width: 860px; margin: 0 auto;
}
.about-timeline::before {
  content: '';
  position: absolute;
  left: 72px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-pale), var(--blue-mid), var(--gold), #2e7d32);
}

.atl-item {
  display: grid;
  grid-template-columns: 144px 1fr;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}
.atl-item:last-child { margin-bottom: 0; }

.atl-marker {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 6px;
}
.atl-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue-mid);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue-mid);
  flex-shrink: 0; z-index: 1;
}
.atl-dot--gold  { background: var(--gold);  box-shadow: 0 0 0 2px var(--gold); }
.atl-dot--green { background: #2e7d32;      box-shadow: 0 0 0 2px #2e7d32; }

.atl-year {
  font-family: var(--font-head); font-size: .82rem; font-weight: 700;
  color: var(--blue-mid); margin-top: 7px; text-align: center; line-height: 1.3;
}
.atl-year--gold  { color: var(--gold); }
.atl-year--green { color: #2e7d32; }

.atl-card {
  background: var(--off-white); border-radius: 8px; padding: 24px 26px;
  border: 1px solid var(--gray-200);
}
.atl-card--highlight {
  background: var(--blue-pale); border-color: var(--blue-light);
}
.atl-heading {
  font-family: var(--font-head); font-size: 1rem; color: var(--blue-dark);
  margin-bottom: 12px;
}
.atl-card p { font-size: .88rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 10px; }
.atl-card p:last-child { margin-bottom: 0; }

.atl-enrolment {
  display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap;
}
.atl-enrol-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 8px 14px;
  display: flex; flex-direction: column; align-items: center;
}
.atl-enrol-yr { font-size: .72rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; }
.atl-enrol-n  { font-family: var(--font-head); font-size: .92rem; color: var(--blue-dark); font-weight: 700; margin-top: 2px; }

.atl-people {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 14px;
}
.atl-person {
  font-size: .8rem; color: var(--gray-500); padding: 6px 10px;
  background: var(--white); border-radius: var(--radius);
  border-left: 3px solid var(--blue-mid);
  line-height: 1.5;
}
.atl-card--highlight .atl-person { background: rgba(255,255,255,.7); }

.atl-list {
  margin-top: 12px; padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 7px;
}
.atl-list li {
  font-size: .87rem; color: var(--gray-500); line-height: 1.6;
  padding-left: 20px; position: relative;
}
.atl-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}

/* Keep old classes used by community/anniversary pages */
.about-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.mv-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.mv-box {
  background: var(--blue-pale); border-radius: 7px; padding: 24px;
  border-left: 4px solid var(--blue-mid);
}
.mv-box h3 { font-family: var(--font-head); color: var(--blue-dark); font-size: .97rem; margin-bottom: 8px; }
.mv-box p  { font-size: .84rem; color: var(--gray-500); line-height: 1.7; }

/* ── PROGRAMMES PAGE ─────────────────────────────────────────── */
.prog-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.prog-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 7px; padding: 26px; transition: all var(--trans);
}
.prog-item:hover { border-color: var(--blue-mid); box-shadow: var(--shadow); }
.prog-item h3   { font-family: var(--font-head); font-size: 1rem; color: var(--blue-dark); margin-bottom: 4px; }
.prog-item .dur { font-size: .72rem; color: var(--gold); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.prog-item p    { font-size: .84rem; color: var(--gray-500); line-height: 1.65; }

/* ── GALLERY PAGE ────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/3; border-radius: 7px; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gallery-item:nth-child(even) { background: linear-gradient(135deg, #0f2a50, #2563a8); }

/* ── CONTACT PAGE ────────────────────────────────────────────── */

/* Info cards band */
.ct-cards-band {
  background: var(--blue-dark);
  padding: 36px 0;
}
.ct-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.ct-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 22px;
  background: rgba(255,255,255,.05);
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--trans);
}
.ct-card:last-child { border-right: none; }
.ct-card:hover { background: rgba(255,255,255,.09); }
.ct-card-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-card-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px;
}
.ct-card-val {
  font-size: .83rem; color: rgba(255,255,255,.82); line-height: 1.75;
}
.ct-card-val a { color: rgba(255,255,255,.82); transition: color var(--trans); }
.ct-card-val a:hover { color: var(--gold-light); }

/* Map + Form */
.ct-main { padding: 64px 0; background: var(--off-white); }
.ct-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ct-map-wrap {
  width: 100%; height: 340px;
  border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.ct-directions { display: flex; flex-direction: column; gap: 10px; }
.ct-dir-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .83rem; color: var(--gray-500); line-height: 1.6;
}
.ct-dir-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-pale); color: var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

/* Form */
.contact-form {
  background: var(--white); border-radius: 8px;
  padding: 36px; box-shadow: var(--shadow-md);
}
.fg       { margin-bottom: 18px; }
.fg label { display: block; font-size: .82rem; font-weight: 700; color: var(--gray-800); margin-bottom: 5px; }
.fg .req  { color: #c0392b; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-size: .88rem; color: var(--gray-800); outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  background: var(--white);
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(37,99,168,.1);
}
.fg textarea { resize: vertical; min-height: 120px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ct-submit { width: 100%; justify-content: center; gap: 8px; padding: 13px 22px; font-size: .92rem; }

/* Bottom band */
.ct-bottom-band {
  background: var(--white);
  padding: 48px 0 60px;
  border-top: 1px solid var(--gray-100);
}
.ct-bottom-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}
.ct-bottom-head {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue-dark);
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

/* Portal links */
.ct-portal-links { display: flex; flex-direction: column; gap: 4px; }
.ct-portal-link {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--trans); text-decoration: none;
}
.ct-portal-link:hover { border-color: var(--blue-mid); background: var(--blue-pale); transform: translateX(3px); }
.ct-pl-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--blue-pale); color: var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-pl-name { font-size: .84rem; font-weight: 600; color: var(--gray-800); }
.ct-pl-sub  { font-size: .72rem; color: var(--gray-500); margin-top: 1px; }
.ct-pl-arr  { color: var(--gray-500); margin-left: auto; flex-shrink: 0; }
.ct-portal-link:hover .ct-pl-arr { color: var(--blue-mid); }

/* Social buttons */
.ct-socials { display: flex; flex-direction: column; gap: 10px; }
.ct-social-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-radius: var(--radius);
  font-size: .84rem; font-weight: 600; color: var(--white);
  transition: opacity var(--trans), transform var(--trans);
}
.ct-social-btn:hover { opacity: .88; transform: translateX(3px); }
.ct-fb { background: #1877f2; }
.ct-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.ct-yt { background: #ff0000; }

/* Quick contact */
.ct-quick-items { display: flex; flex-direction: column; gap: 4px; }
.ct-quick-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: all var(--trans);
}
.ct-quick-item:hover { background: var(--off-white); border-color: var(--gray-200); transform: translateX(3px); }
.ct-qi-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue-dark); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-qi-label { font-size: .72rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.ct-qi-val   { font-size: .82rem; color: var(--gray-800); font-weight: 600; margin-top: 1px; }

/* ── ALERTS / NOTICES ────────────────────────────────────────── */
.notice-bar {
  background: #fff8e1; border-left: 4px solid var(--gold);
  padding: 12px 20px; border-radius: var(--radius);
  font-size: .87rem; color: var(--gray-800);
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
}

/* ── ADMIN SUB-TABS ──────────────────────────────────────────── */
.admin-tabs { background: var(--off-white); border-bottom: 2px solid var(--gray-200); }
.admin-tab-row { display: flex; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.admin-tab-row::-webkit-scrollbar { display: none; }
.admin-tab {
  padding: 14px 24px; font-size: .84rem; font-weight: 700;
  color: var(--gray-500); cursor: pointer; white-space: nowrap;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all var(--trans);
}
.admin-tab:hover { color: var(--blue-mid); background: var(--blue-pale); }
.admin-tab.active { color: var(--blue-mid); border-bottom-color: var(--blue-mid); background: var(--white); }
.admin-panel { display: none; }
.admin-panel.active { display: block; }

/* ── STAFF CARD GRID (Staff Directory panel) ─────────────────── */
.staff-dept-section { margin-bottom: 48px; }
.dept-title-bar {
  font-family: var(--font-head); font-size: .95rem; font-weight: 700;
  color: var(--white); background: var(--blue-dark);
  padding: 12px 20px; border-radius: var(--radius);
  margin-bottom: 20px; letter-spacing: .02em;
}
.staff-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.staff-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 7px; overflow: hidden;
  transition: all var(--trans); text-align: center;
}
.staff-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-light); }
.staff-card-img {
  aspect-ratio: 1 / 1; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3);
}
.staff-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.staff-card-body { padding: 14px 12px 16px; }
.staff-card-body h4 {
  font-family: var(--font-head); font-size: .88rem; color: var(--blue-dark);
  margin-bottom: 5px; line-height: 1.35;
}
.staff-card-role {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--gold); margin-bottom: 8px;
}
.staff-card-contact { font-size: .75rem; color: var(--gray-500); line-height: 1.65; }

/* ── BOARD GRID ──────────────────────────────────────────────── */
.board-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.board-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 7px; text-align: center;
  overflow: hidden; transition: all var(--trans);
}
.board-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-light); }
.board-avatar {
  aspect-ratio: 1 / 1; width: 100%; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3);
}
.board-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.board-card .board-role {
  font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px; padding: 14px 12px 0;
}
.board-card h4 { font-family: var(--font-head); font-size: .88rem; color: var(--blue-dark); line-height: 1.4; padding: 0 12px 14px; }

/* ── ADMIN CONTACT ───────────────────────────────────────────── */
.admin-contact {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: var(--blue-mid); margin-top: 10px;
  padding-top: 10px; border-top: 1px solid var(--gray-100);
  word-break: break-all;
}

/* ── STAFF DIRECTORY ─────────────────────────────────────────── */
.staff-dir { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.staff-dept { background: var(--white); border: 1px solid var(--gray-200); border-radius: 7px; overflow: hidden; }
.dept-title {
  font-family: var(--font-head); font-size: .88rem; font-weight: 700;
  color: var(--white); background: var(--blue-dark); padding: 11px 16px;
}
.staff-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 16px; border-bottom: 1px solid var(--gray-100); font-size: .82rem;
}
.staff-row:last-child { border-bottom: none; }
.staff-avatar {
  width: 36px; height: 36px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; object-fit: cover;
  border: 2px solid var(--gray-200);
  background: var(--blue-pale);
}
.staff-name { font-weight: 600; color: var(--gray-800); flex: 1.2; }
.staff-role { color: var(--gray-500); flex: 1.4; padding: 0 8px; }
.staff-phone { color: var(--blue-mid); font-size: .76rem; flex-shrink: 0; white-space: nowrap; }

/* ── INTERACTIVE / SCRIPT-DRIVEN STYLES ─────────────────────── */

/* Header shrink on scroll */
.site-header.scrolled {
  box-shadow: 0 2px 18px rgba(0,0,0,.12);
  padding-top: 4px;
  padding-bottom: 4px;
}

/* Hamburger open → X */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Image hover lift for clickable images */
.lb-wrap { overflow: hidden; border-radius: inherit; cursor: zoom-in; }
.lb-wrap img {
  transition: transform .38s ease, filter .38s ease;
  will-change: transform;
}
.lb-wrap:hover img { transform: scale(1.06); filter: brightness(1.07); }

.lb-trigger.lb-single { cursor: zoom-in; transition: opacity .2s; }
.lb-trigger.lb-single:hover { opacity: .88; }

/* ── LIGHTBOX ─────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,18,38,.92);
  backdrop-filter: blur(6px);
}

.lb-dialog {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  max-width: min(92vw, 780px);
  max-height: 92vh;
  transform: scale(.92);
  transition: transform .28s cubic-bezier(.34,1.36,.64,1);
}
.lightbox.open .lb-dialog { transform: scale(1); }

.lb-img-wrap {
  position: relative;
  background: #0a1426;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  max-height: 72vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img {
  display: block;
  max-width: min(88vw, 720px);
  max-height: 68vh;
  width: auto; height: auto;
  object-fit: contain;
  transition: opacity .22s ease;
  border-radius: 8px;
}
.lb-spinner {
  position: absolute; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  color: var(--gold);
}
.lb-spinner[style*="flex"] { display: flex !important; }
.lb-spinner::after {
  content: '';
  width: 32px; height: 32px;
  border: 3px solid rgba(200,154,42,.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: lb-spin .7s linear infinite;
}
@keyframes lb-spin { to { transform: rotate(360deg); } }

.lb-close {
  position: absolute; top: -18px; right: -18px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-dark); color: var(--white);
  font-size: 1.4rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,.18);
  cursor: pointer; z-index: 2;
  transition: background var(--trans), transform var(--trans);
}
.lb-close:hover { background: var(--gold); transform: rotate(90deg); }

.lb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: var(--white);
  font-size: 1.8rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer; z-index: 2;
  transition: background var(--trans);
}
.lb-arrow:hover { background: var(--gold); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

.lb-caption {
  margin-top: 14px; text-align: center;
  color: var(--white);
}
.lb-cap-name { font-family: var(--font-head); font-size: .95rem; font-weight: 700; }
.lb-cap-role { font-size: .78rem; color: var(--gold-light); margin-top: 3px; }

/* Prevent body scroll when lightbox open */
body.lb-lock { overflow: hidden; }

/* ── SCROLL FADE-UP ANIMATIONS ─────────────────────────────── */
.anim-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .55s ease, transform .55s ease;
}
.anim-item.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BACK TO TOP ────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; right: 24px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background var(--trans);
  cursor: pointer; border: none;
}
.back-to-top.btt-visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--gold); }

/* ── FORM HELPERS ────────────────────────────────────────────── */
.input-error { border: 2px solid #c0392b !important; animation: shake .3s ease; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}
.form-spinner {
  display: inline-block; width: 12px; height: 12px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: lb-spin .6s linear infinite;
  vertical-align: middle; margin-right: 6px;
}

/* ── CARD HOVER LIFT ─────────────────────────────────────────── */
.admin-card, .board-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.admin-card.card-hover, .board-card.card-hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ── CAMPUS GALLERY ──────────────────────────────────────────── */
.gallery-section { padding: 64px 0; background: var(--white); }
.gallery-hdr {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 28px; flex-wrap: wrap; gap: 16px;
}
.gallery-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.gf-btn {
  padding: 7px 18px; border-radius: 20px; border: 2px solid var(--gray-200);
  font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--gray-500); background: var(--white);
  cursor: pointer; transition: all var(--trans);
}
.gf-btn:hover { border-color: var(--blue-mid); color: var(--blue-mid); }
.gf-btn.active { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: zoom-in; background: var(--gray-100);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item.gi-hidden { display: none; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gi-overlay {
  position: absolute; inset: 0;
  background: rgba(26,61,110,.0);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); opacity: 0;
  transition: all .3s ease;
}
.gallery-item:hover .gi-overlay {
  background: rgba(26,61,110,.46);
  opacity: 1;
}
.gi-overlay svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }

/* ── UTILITY CLASSES ─────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
