/*
 * Peniel Academy — Complete Theme CSS
 * All component styles — no build step required
 * Version: 1.0.0
 * ============================================================
 */

/* ── CSS Custom Properties ─────────────────────────────── */
:root {
  --pa-primary:        #1A237E;
  --pa-primary-dark:   #0D1B5E;
  --pa-primary-light:  #3949AB;
  --pa-secondary:      #D4AF37;
  --pa-secondary-dark: #B8960E;
  --pa-accent:         #E53935;
  --pa-dark:           #212121;
  --pa-dark-2:         #37474F;
  --pa-mid:            #607D8B;
  --pa-light-1:        #ECEFF1;
  --pa-light-2:        #F5F7FA;
  --pa-white:          #FFFFFF;

  --pa-font-serif: 'Playfair Display', Georgia, serif;
  --pa-font-sans:  'Inter', system-ui, sans-serif;

  --pa-radius-sm:   6px;
  --pa-radius-md:   12px;
  --pa-radius-lg:   20px;
  --pa-radius-xl:   32px;
  --pa-radius-full: 9999px;

  --pa-shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --pa-shadow-md: 0 8px 24px rgba(0,0,0,.10);
  --pa-shadow-lg: 0 20px 60px rgba(0,0,0,.14);
  --pa-shadow-xl: 0 30px 80px rgba(0,0,0,.18);

  --pa-transition:      .3s ease;
  --pa-transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--pa-font-sans);
  color: var(--pa-dark);
  background: var(--pa-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--pa-secondary); outline-offset: 3px; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--pa-font-serif);
  line-height: 1.2;
  color: var(--pa-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }
p  { max-width: 70ch; color: var(--pa-dark-2); }
.lead { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--pa-dark-2); max-width: 60ch; line-height: 1.8; }

.overline, .text-overline {
  display: inline-block;
  font-family: var(--pa-font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--pa-secondary);
  margin-bottom: .5rem;
}

/* ── Layout ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}
.container--wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.align-center { align-items: center; }
.gap-xl { gap: 4rem; }

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section.bg-light { background: var(--pa-light-2); }
.section.bg-dark  { background: var(--pa-primary-dark); color: var(--pa-white); }

.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-title { margin-bottom: .75rem; position: relative; }
.section-title::after {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: var(--pa-secondary);
  border-radius: var(--pa-radius-full);
  margin-top: .75rem;
}
.section-header.centered .section-title::after { margin: .75rem auto 0; }
.section-desc { max-width: 55ch; color: var(--pa-mid); margin-top: .5rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--pa-radius-full);
  font-size: .9375rem;
  font-weight: 600;
  font-family: var(--pa-font-sans);
  transition: all var(--pa-transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--pa-primary);
  color: var(--pa-white);
}
.btn-primary:hover { background: var(--pa-primary-dark); transform: translateY(-2px); box-shadow: var(--pa-shadow-md); }
.btn-secondary {
  background: var(--pa-secondary);
  color: var(--pa-primary-dark);
}
.btn-secondary:hover { background: var(--pa-secondary-dark); transform: translateY(-2px); box-shadow: var(--pa-shadow-md); }
.btn-outline {
  border: 2px solid var(--pa-primary);
  color: var(--pa-primary);
  background: transparent;
}
.btn-outline:hover { background: var(--pa-primary); color: var(--pa-white); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.6);
  color: var(--pa-white);
  background: transparent;
}
.btn-outline-white:hover { background: var(--pa-white); color: var(--pa-primary); }
.btn-ghost { color: var(--pa-primary); background: transparent; }
.btn-ghost:hover { background: rgba(26,35,126,.06); }
.btn-sm { font-size: .85rem; padding: .6rem 1.25rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── Page Loader ────────────────────────────────────────── */
#pa-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--pa-primary-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  transition: opacity .5s ease, visibility .5s ease;
}
#pa-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pa-loader-logo {
  position: relative;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.pa-loader-ring {
  position: absolute;
  width: 64px; height: 64px;
  border: 3px solid rgba(255,255,255,.15);
  border-top-color: var(--pa-secondary);
  border-radius: 50%;
  animation: pa-spin .9s linear infinite;
}
.pa-loader-ring:nth-child(2) {
  width: 48px; height: 48px;
  border-top-color: rgba(212,175,55,.5);
  animation-direction: reverse;
  animation-duration: 1.4s;
}
.pa-loader-text {
  font-family: var(--pa-font-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--pa-white);
  text-transform: uppercase;
  opacity: .8;
}
.pa-loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: var(--pa-radius-full);
  overflow: hidden;
}
.pa-loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pa-secondary), #fff8dc);
  border-radius: var(--pa-radius-full);
  width: 0;
  animation: pa-load 2.5s ease forwards;
}
@keyframes pa-spin  { to { transform: rotate(360deg); } }
@keyframes pa-load  { 0% { width: 0; } 60% { width: 70%; } 100% { width: 100%; } }

/* ── Custom Cursor ──────────────────────────────────────── */
.pa-cursor, .pa-cursor-follower {
  position: fixed; top: 0; left: 0;
  border-radius: 50%; pointer-events: none;
  z-index: 9998; transform: translate(-50%,-50%);
  transition: transform .15s, width .2s, height .2s, background .2s, opacity .3s;
}
.pa-cursor {
  width: 8px; height: 8px;
  background: var(--pa-secondary);
}
.pa-cursor-follower {
  width: 36px; height: 36px;
  border: 2px solid rgba(212,175,55,.5);
  background: transparent;
  transition: transform .25s ease, width .3s, height .3s;
}
body.cursor-hover .pa-cursor-follower {
  width: 56px; height: 56px;
  background: rgba(212,175,55,.08);
}
@media (hover: none) { .pa-cursor, .pa-cursor-follower { display: none; } }

/* ── Scroll Progress ────────────────────────────────────── */
.scroll-progress, #scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--pa-secondary), var(--pa-accent));
  z-index: 9997; transition: width .1s;
}

/* ═══════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  padding: 1.25rem 0;
  transition: background var(--pa-transition), padding var(--pa-transition), box-shadow var(--pa-transition), transform var(--pa-transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .75rem 0;
  box-shadow: var(--pa-shadow-sm);
}
.site-header.hidden { transform: translateY(-100%); }

.header-inner { width: 100%; }
.header-inner__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none; flex-shrink: 0;
}
.site-logo__emblem {
  width: 44px; height: 44px;
  background: var(--pa-secondary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--pa-font-serif); font-weight: 700; font-size: 1.25rem;
  color: var(--pa-primary-dark);
  flex-shrink: 0;
}
.site-logo__text {
  display: flex; flex-direction: column;
}
.site-logo__text strong {
  font-family: var(--pa-font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pa-white);
  line-height: 1.2;
  transition: color var(--pa-transition);
}
.site-logo__text em {
  font-style: normal;
  font-family: var(--pa-font-sans);
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color var(--pa-transition);
}
.site-header.scrolled .site-logo__text strong { color: var(--pa-dark); }
.site-header.scrolled .site-logo__text em     { color: var(--pa-mid); }

/* Desktop Nav */
.site-nav { margin: 0 auto; }
.site-nav__list {
  display: flex; align-items: center; gap: .25rem;
  list-style: none; margin: 0; padding: 0;
}
.site-nav__list .menu-item { position: relative; }
.site-nav__list a,
.site-nav__list .nav-link {
  display: flex; align-items: center; gap: .25rem;
  padding: .5rem .875rem;
  border-radius: var(--pa-radius-full);
  font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: all var(--pa-transition);
}
.site-header.scrolled .site-nav__list a,
.site-header.scrolled .site-nav__list .nav-link { color: var(--pa-dark); }
.site-nav__list a:hover,
.site-nav__list .nav-link:hover,
.site-nav__list .current-menu-item > a {
  background: rgba(212,175,55,.12);
  color: var(--pa-secondary);
}
.nav-arrow { font-size: 1rem; transition: transform var(--pa-transition); }
.menu-item-has-children:hover > a .nav-arrow { transform: rotate(-180deg); }

/* Dropdown */
.sub-menu {
  position: absolute; top: calc(100% + .5rem); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 200px;
  background: var(--pa-white);
  border-radius: var(--pa-radius-md);
  box-shadow: var(--pa-shadow-lg);
  padding: .5rem;
  opacity: 0; visibility: hidden;
  transition: all var(--pa-transition);
  list-style: none;
}
.menu-item-has-children:hover > .sub-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.sub-menu a, .sub-menu .nav-link {
  color: var(--pa-dark) !important;
  border-radius: var(--pa-radius-sm);
  padding: .5rem 1rem !important;
  font-size: .875rem;
}
.sub-menu a:hover { background: var(--pa-light-2) !important; color: var(--pa-primary) !important; }

/* Header Actions */
.header-actions {
  display: flex; align-items: center; gap: .75rem; flex-shrink: 0;
}
.header-cta { font-size: .85rem; padding: .6rem 1.25rem; }
.header-admin-link {
  display: flex; align-items: center; gap: .375rem;
  font-size: 1.25rem; color: rgba(255,255,255,.7);
  transition: color var(--pa-transition);
  padding: .5rem;
}
.header-admin-link:hover { color: var(--pa-secondary); }
.site-header.scrolled .header-admin-link { color: var(--pa-mid); }

/* Hamburger / Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: .5rem;
  background: transparent; border: none; cursor: pointer;
}
.nav-toggle__bar {
  display: block; width: 24px; height: 2px;
  background: var(--pa-white);
  border-radius: var(--pa-radius-full);
  transition: all var(--pa-transition);
}
.site-header.scrolled .nav-toggle__bar { background: var(--pa-dark); }
.nav-toggle.active .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ────────────────────────────────────────── */
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(360px, 92vw); height: 100dvh; z-index: 950;
  background: var(--pa-white);
  overflow-y: auto;
  transition: right var(--pa-transition-slow);
  box-shadow: var(--pa-shadow-xl);
}
.mobile-menu.is-open,
.mobile-menu[aria-hidden="false"] { right: 0; }

.mobile-menu__backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 940; opacity: 0; visibility: hidden;
  transition: all var(--pa-transition);
}
.mobile-menu__backdrop.is-open,
.mobile-menu[aria-hidden="false"] ~ .mobile-menu__backdrop { opacity: 1; visibility: visible; }

.mobile-menu__panel {
  padding: 5rem 2rem 2rem;
  display: flex; flex-direction: column; min-height: 100%;
}
.mobile-menu__close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 1.5rem; color: var(--pa-mid);
  background: var(--pa-light-2); border: none; cursor: pointer;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--pa-transition);
}
.mobile-menu__close:hover { background: var(--pa-accent); color: var(--pa-white); }
.mobile-menu__logo {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--pa-light-1);
}
.mobile-menu__logo strong {
  font-family: var(--pa-font-serif);
  font-size: 1.2rem;
  color: var(--pa-dark);
}

/* Mobile Nav List */
.mobile-nav__list { list-style: none; margin: 0; padding: 0; }
.mobile-nav__list li { border-bottom: 1px solid var(--pa-light-1); }
.mobile-nav__list a {
  display: block; padding: .875rem 0;
  font-size: 1rem; font-weight: 600;
  color: var(--pa-dark);
  transition: color var(--pa-transition);
}
.mobile-nav__list a:hover { color: var(--pa-primary); }
.mobile-nav__list .sub-menu {
  position: static; transform: none;
  opacity: 1; visibility: visible;
  box-shadow: none; border-radius: 0;
  padding: 0 0 .5rem 1rem;
  background: transparent;
}
.mobile-nav__list .sub-menu li { border-bottom: none; }
.mobile-nav__list .sub-menu a {
  font-size: .9rem; font-weight: 400;
  color: var(--pa-mid); padding: .4rem 0;
}

.mobile-menu__actions {
  margin-top: auto; padding-top: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.mobile-menu__actions .btn { justify-content: center; }
.mobile-menu__contact { display: flex; flex-direction: column; gap: .5rem; }
.mobile-menu__contact a {
  display: flex; align-items: center; gap: .75rem;
  color: var(--pa-mid); font-size: .875rem;
  transition: color var(--pa-transition);
}
.mobile-menu__contact a:hover { color: var(--pa-primary); }
.mobile-menu__contact i { color: var(--pa-secondary); flex-shrink: 0; }

/* Site Main */
.site-main { padding-top: 0; }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh; min-height: 600px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background: center / cover no-repeat;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero__slide.active { opacity: 1; }
.hero__slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,94,.88) 0%, rgba(13,27,94,.55) 50%, rgba(13,27,94,.3) 100%);
}
#hero-canvas {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  width: 100%;
}
.hero__content { max-width: 750px; }
.hero__overline { color: rgba(255,255,255,.8); }
.hero__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--pa-white);
  line-height: 1.08;
  margin: .5rem 0 1.25rem;
}
.hero__title em { color: var(--pa-secondary); font-style: normal; }
.hero__desc {
  color: rgba(255,255,255,.85);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 55ch; margin-bottom: 2rem;
}
.hero__typed { color: var(--pa-secondary); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 1.5rem 3rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat strong {
  display: block;
  font-family: var(--pa-font-serif); font-size: 2rem;
  color: var(--pa-secondary);
}
.hero-stat span {
  font-size: .8rem; color: rgba(255,255,255,.7);
  letter-spacing: .05em; text-transform: uppercase;
}
.hero__scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero__scroll-indicator span {
  color: rgba(255,255,255,.5); font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: var(--pa-radius-full);
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-mouse::after {
  content: ''; width: 4px; height: 8px;
  background: var(--pa-secondary);
  border-radius: var(--pa-radius-full);
  animation: pa-scroll 1.5s infinite;
}
@keyframes pa-scroll {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}
.hero__dots {
  position: absolute; bottom: 4rem; right: 2rem;
  z-index: 2; display: flex; flex-direction: column; gap: .5rem;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: var(--pa-radius-full);
  background: rgba(255,255,255,.35); border: none; cursor: pointer;
  transition: all var(--pa-transition);
}
.hero__dot.active { background: var(--pa-secondary); height: 24px; }

/* ── Page Banner ────────────────────────────────────────── */
.page-banner {
  position: relative;
  padding: 10rem 0 5rem;
  background: center / cover no-repeat;
  min-height: 380px; display: flex; align-items: center;
}
.page-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,94,.92) 0%, rgba(13,27,94,.72) 100%);
}
.page-banner__content { position: relative; z-index: 1; }
.page-banner__title {
  color: var(--pa-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: .5rem 0 1rem;
}
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: rgba(255,255,255,.7);
  list-style: none; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--pa-transition); }
.breadcrumb a:hover { color: var(--pa-secondary); }
.breadcrumb span:last-child { color: var(--pa-secondary); }

/* ═══════════════════════════════════════════════════════════
   HOME — ABOUT SECTION (Visual Stack)
   ═══════════════════════════════════════════════════════════ */
.avs-wrap {
  position: relative; display: flex; justify-content: center;
}
.avs-main {
  width: 100%; border-radius: var(--pa-radius-lg);
  box-shadow: var(--pa-shadow-xl); overflow: hidden;
  aspect-ratio: 4/5; object-fit: cover;
}
.avs-secondary {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 55%; border-radius: var(--pa-radius-md);
  box-shadow: var(--pa-shadow-lg); overflow: hidden;
  border: 4px solid var(--pa-white);
}
.avs-badge {
  position: absolute; top: 2rem; left: -1.5rem;
  background: var(--pa-secondary); color: var(--pa-primary-dark);
  padding: .875rem 1.25rem;
  border-radius: var(--pa-radius-md);
  display: flex; align-items: center; gap: .625rem;
  font-weight: 700; font-size: .875rem;
  box-shadow: var(--pa-shadow-md);
}
.avs-badge i { font-size: 1.25rem; }

/* About intro (inner page) */
.about-intro__visual { position: relative; }
.about-img-main { border-radius: var(--pa-radius-lg); box-shadow: var(--pa-shadow-xl); }
.about-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--pa-secondary); color: var(--pa-primary-dark);
  padding: 1rem 1.5rem; border-radius: var(--pa-radius-md);
  display: flex; align-items: center; gap: .75rem;
  font-weight: 700; font-size: .9rem; box-shadow: var(--pa-shadow-md);
}
.about-badge i { font-size: 1.5rem; }
.about-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--pa-light-1);
}
.about-stat strong { display: block; font-family: var(--pa-font-serif); font-size: 2rem; color: var(--pa-primary); }
.about-stat span   { font-size: .8rem; color: var(--pa-mid); text-transform: uppercase; letter-spacing: .05em; }

.feature-list { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.25rem; }
.feature-list li { display: flex; align-items: center; gap: .625rem; color: var(--pa-dark-2); }
.feature-list i  { color: var(--pa-secondary); font-size: 1.1rem; flex-shrink: 0; }

.rounded-img { border-radius: var(--pa-radius-lg); box-shadow: var(--pa-shadow-xl); width: 100%; }
.stat-row { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--pa-light-1); }
.stat-item strong { display: block; font-family: var(--pa-font-serif); font-size: 2.25rem; color: var(--pa-primary); }
.stat-item span   { font-size: .8rem; color: var(--pa-mid); text-transform: uppercase; letter-spacing: .05em; }

/* ═══════════════════════════════════════════════════════════
   HOME — PROGRAMS SECTION
   ═══════════════════════════════════════════════════════════ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.program-card {
  position: relative; border-radius: var(--pa-radius-xl);
  overflow: hidden; aspect-ratio: 4/5; cursor: pointer;
  background: var(--pa-primary-dark);
}
.program-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.program-card:hover img { transform: scale(1.06); }
.program-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,94,.88) 0%, rgba(13,27,94,.3) 50%, transparent 100%);
  padding: 2rem;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.program-card__icon { font-size: 2.5rem; color: var(--pa-secondary); margin-bottom: .75rem; }
.program-card__title { color: var(--pa-white); font-size: 1.5rem; margin-bottom: .5rem; }
.program-card__desc  { color: rgba(255,255,255,.8); font-size: .9rem; max-width: none; }
.program-card__arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1rem; color: var(--pa-secondary);
  font-size: .875rem; font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: all var(--pa-transition);
}
.program-card:hover .program-card__arrow { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   HOME — WHY SECTION
   ═══════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.why-card {
  background: var(--pa-white);
  border-radius: var(--pa-radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--pa-light-1);
  box-shadow: var(--pa-shadow-sm);
  transition: all var(--pa-transition);
}
.why-card:hover { box-shadow: var(--pa-shadow-md); transform: translateY(-4px); }
.why-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--pa-radius-md);
  background: rgba(212,175,55,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: var(--pa-secondary);
  margin-bottom: 1.25rem;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.why-card p  { font-size: .875rem; color: var(--pa-mid); max-width: none; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════════════════ */
.team-filter, .gallery-filter, .course-filter, .events-filter {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .5rem 1.25rem;
  border-radius: var(--pa-radius-full);
  border: 2px solid var(--pa-light-1);
  font-size: .875rem; font-weight: 600;
  color: var(--pa-mid); background: var(--pa-white);
  transition: all var(--pa-transition); cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--pa-primary);
  border-color: var(--pa-primary);
  color: var(--pa-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.team-card {
  border-radius: var(--pa-radius-lg); overflow: hidden;
  background: var(--pa-white); box-shadow: var(--pa-shadow-sm);
  border: 1px solid var(--pa-light-1);
  transition: all var(--pa-transition);
}
.team-card:hover { box-shadow: var(--pa-shadow-md); transform: translateY(-4px); }
.team-card__img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--pa-light-1);
}
.team-card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.team-card__img-wrap:hover img { transform: scale(1.05); }
.team-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,94,.7) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--pa-transition);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 1.5rem;
}
.team-card:hover .team-card__overlay { opacity: 1; }
.team-card__socials { display: flex; gap: .75rem; }
.team-card__socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pa-white); transition: background var(--pa-transition);
}
.team-card__socials a:hover { background: var(--pa-secondary); color: var(--pa-primary-dark); }
.team-card__body { padding: 1.25rem; }
.team-card h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.team-card__role { color: var(--pa-primary); font-size: .875rem; font-weight: 600; margin-bottom: .25rem; }
.team-card__quali { color: var(--pa-mid); font-size: .8rem; }
.team-card__level { margin-top: .75rem; }

.level-tag {
  display: inline-block; padding: .25rem .75rem;
  border-radius: var(--pa-radius-full);
  font-size: .75rem; font-weight: 700;
}
.level-tag--maternelle { background: rgba(212,175,55,.15); color: #8B6914; }
.level-tag--primaire   { background: rgba(26,35,126,.1);   color: var(--pa-primary); }
.level-tag--secondaire { background: rgba(229,57,53,.1);   color: var(--pa-accent); }
.level-tag--both       { background: rgba(96,125,139,.1);  color: var(--pa-mid); }

/* ═══════════════════════════════════════════════════════════
   CLASSES & COURSES
   ═══════════════════════════════════════════════════════════ */
.classes-section { }
.classes-level { margin-bottom: 3rem; }
.classes-level__title {
  font-size: 1.25rem; margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--pa-light-1);
  display: flex; align-items: center; gap: .75rem;
}
.classes-level__title i { color: var(--pa-secondary); }
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.class-card {
  background: var(--pa-white); border-radius: var(--pa-radius-md);
  border: 1px solid var(--pa-light-1); box-shadow: var(--pa-shadow-sm);
  overflow: hidden; transition: all var(--pa-transition);
}
.class-card:hover { box-shadow: var(--pa-shadow-md); transform: translateY(-3px); }
.class-card__header {
  background: var(--pa-primary); color: var(--pa-white);
  padding: 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.class-card__header h3 { color: var(--pa-white); font-size: 1rem; margin: 0; }
.class-code {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: var(--pa-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--pa-font-sans); font-weight: 700;
  font-size: .9rem; color: var(--pa-white); flex-shrink: 0;
}
.class-card__body { padding: 1.25rem; }
.class-stat {
  display: flex; align-items: center; gap: .5rem;
  color: var(--pa-mid); font-size: .85rem; margin-bottom: .5rem;
}
.class-stat i { color: var(--pa-secondary); }
.enrollment-bar {
  height: 6px; background: var(--pa-light-1);
  border-radius: var(--pa-radius-full); overflow: hidden;
  margin: .75rem 0 .25rem;
}
.enrollment-bar__fill {
  height: 100%; background: var(--pa-secondary);
  border-radius: var(--pa-radius-full);
  transition: width 1s ease;
}
.enrollment-pct { font-size: .75rem; color: var(--pa-mid); }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.course-card {
  display: flex; gap: 1rem;
  background: var(--pa-white); border-radius: var(--pa-radius-md);
  border: 1px solid var(--pa-light-1); padding: 1.5rem;
  box-shadow: var(--pa-shadow-sm); transition: all var(--pa-transition);
}
.course-card:hover { box-shadow: var(--pa-shadow-md); transform: translateY(-3px); }
.course-card__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(212,175,55,.1);
  border-radius: var(--pa-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--pa-secondary);
}
.course-card h3 { font-size: 1rem; margin: .5rem 0 .375rem; font-family: var(--pa-font-sans); }
.course-card p  { font-size: .85rem; color: var(--pa-mid); line-height: 1.5; max-width: none; }
.course-tags { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: .25rem; }
.tag {
  display: inline-block; padding: .2rem .625rem;
  border-radius: var(--pa-radius-full);
  font-size: .7rem; font-weight: 700; letter-spacing: .03em;
}
.tag--core    { background: rgba(26,35,126,.1);   color: var(--pa-primary); }
.tag--elective{ background: rgba(212,175,55,.15); color: #8B6914; }
.tag--level   { background: var(--pa-light-1);   color: var(--pa-mid); }
.course-meta { margin-top: .75rem; font-size: .8rem; color: var(--pa-mid); }
.course-meta span { display: flex; align-items: center; gap: .375rem; }
.course-meta i { color: var(--pa-secondary); }

/* ═══════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════ */
.gallery-masonry {
  columns: 4;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
}
.gallery-item__btn {
  display: block; width: 100%; position: relative;
  overflow: hidden; border-radius: var(--pa-radius-md);
  border: none; background: none; padding: 0; cursor: pointer;
}
.gallery-item__btn img {
  width: 100%; height: auto;
  transition: transform .5s;
  display: block;
}
.gallery-item__btn:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,94,.5);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem; opacity: 0;
  transition: opacity var(--pa-transition);
}
.gallery-item__btn:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay i    { font-size: 2rem; color: var(--pa-white); }
.gallery-item__overlay span {
  color: rgba(255,255,255,.9); font-size: .875rem;
  text-align: center; padding: 0 1rem;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9990;
  background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox__content {
  max-width: 90vw; max-height: 90vh;
  text-align: center;
}
.lightbox__img {
  max-height: 80vh; max-width: 85vw;
  border-radius: var(--pa-radius-md);
  object-fit: contain;
}
.lightbox__caption { color: rgba(255,255,255,.7); margin-top: 1rem; font-size: .9rem; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: fixed; background: rgba(255,255,255,.1); border: none;
  color: var(--pa-white); font-size: 1.5rem; cursor: pointer;
  border-radius: 50%; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--pa-transition);
}
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--pa-secondary); color: var(--pa-primary-dark); }

/* ═══════════════════════════════════════════════════════════
   EVENTS
   ═══════════════════════════════════════════════════════════ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.event-card {
  background: var(--pa-white); border-radius: var(--pa-radius-lg);
  border: 1px solid var(--pa-light-1); overflow: hidden;
  box-shadow: var(--pa-shadow-sm); transition: all var(--pa-transition);
}
.event-card:hover { box-shadow: var(--pa-shadow-md); transform: translateY(-4px); }
.event-card__date-strip {
  background: var(--pa-primary); color: var(--pa-white);
  padding: 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.event-card__date-block { text-align: center; min-width: 50px; }
.event-card__date-block strong {
  display: block;
  font-size: 2rem; font-family: var(--pa-font-serif); line-height: 1;
}
.event-card__date-block span {
  font-size: .7rem; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
}
.event-card__meta { font-size: .875rem; color: rgba(255,255,255,.8); }
.event-card__meta span { display: flex; align-items: center; gap: .375rem; }
.event-card__meta i { color: var(--pa-secondary); }
.event-card__body { padding: 1.5rem; }
.event-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.event-card p  { font-size: .875rem; color: var(--pa-mid); max-width: none; }
.event-cat-badge {
  display: inline-block; padding: .2rem .75rem;
  border-radius: var(--pa-radius-full);
  font-size: .7rem; font-weight: 700;
  margin-bottom: .75rem;
  background: rgba(26,35,126,.1); color: var(--pa-primary);
}
.event-cat-badge.cat-cultural  { background: rgba(212,175,55,.15); color: #8B6914; }
.event-cat-badge.cat-sport     { background: rgba(229,57,53,.1);   color: var(--pa-accent); }
.event-cat-badge.cat-academic  { background: rgba(26,35,126,.1);   color: var(--pa-primary); }
.event-cat-badge.cat-community { background: rgba(76,175,80,.1);   color: #2e7d32; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials-section .swiper { padding-bottom: 3rem; }
.testimonial-card {
  background: var(--pa-white); border-radius: var(--pa-radius-xl);
  padding: 2.5rem; box-shadow: var(--pa-shadow-sm);
  border: 1px solid var(--pa-light-1); position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--pa-font-serif);
  font-size: 6rem; color: var(--pa-secondary); opacity: .15;
  position: absolute; top: 1rem; left: 1.5rem; line-height: 1;
}
.testimonial-card__text {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--pa-dark-2); position: relative; z-index: 1;
}
.testimonial-card__author {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem;
}
.testimonial-card__avatar {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: var(--pa-light-1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--pa-font-serif); font-size: 1.25rem;
  color: var(--pa-primary); font-weight: 700;
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__name { font-weight: 700; }
.testimonial-card__role { font-size: .8rem; color: var(--pa-mid); }
.stars { color: var(--pa-secondary); font-size: .9rem; margin-top: .25rem; }

/* Swiper overrides */
.swiper-pagination-bullet { background: var(--pa-primary); }
.swiper-pagination-bullet-active { background: var(--pa-secondary); }
.swiper-button-next, .swiper-button-prev { color: var(--pa-secondary) !important; }

/* ═══════════════════════════════════════════════════════════
   TIMELINE (About page)
   ═══════════════════════════════════════════════════════════ */
.timeline { position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--pa-light-1); transform: translateX(-50%);
}
.timeline-item {
  position: relative; width: 45%; padding-bottom: 3rem;
}
.timeline-item.left  { margin-left: 0; text-align: right; }
.timeline-item.right { margin-left: 55%; text-align: left; }
.timeline-dot {
  position: absolute; width: 16px; height: 16px;
  background: var(--pa-secondary); border-radius: 50%; top: 1rem;
}
.timeline-item.left  .timeline-dot { right: -10.5%; }
.timeline-item.right .timeline-dot { left: -10.5%; }
.timeline-card {
  background: var(--pa-white); border-radius: var(--pa-radius-md);
  padding: 1.5rem; box-shadow: var(--pa-shadow-sm);
  border: 1px solid var(--pa-light-1);
}
.timeline-year {
  display: inline-block; margin-bottom: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em;
  color: var(--pa-secondary);
}

/* ── MVV Cards ──────────────────────────────────────────── */
.mvv-card {
  background: var(--pa-white); border-radius: var(--pa-radius-lg);
  padding: 2.5rem 2rem; box-shadow: var(--pa-shadow-sm);
  border: 1px solid var(--pa-light-1);
  transition: box-shadow var(--pa-transition), transform var(--pa-transition);
}
.mvv-card:hover { box-shadow: var(--pa-shadow-md); transform: translateY(-4px); }
.mvv-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mvv-card--mission .mvv-icon { color: var(--pa-primary); }
.mvv-card--vision  .mvv-icon { color: var(--pa-secondary); }
.mvv-card--values  .mvv-icon { color: var(--pa-accent); }
.values-list { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.values-list li { display: flex; align-items: center; gap: .5rem; color: var(--pa-dark-2); }
.values-list i { color: var(--pa-secondary); }

/* ── Accreditation ──────────────────────────────────────── */
.accreditation-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.accred-item {
  display: flex; flex-direction: column; gap: .25rem;
  padding: 1.5rem; background: var(--pa-white);
  border-radius: var(--pa-radius-md);
  box-shadow: var(--pa-shadow-sm); border: 1px solid var(--pa-light-1);
}
.accred-item i    { font-size: 1.75rem; color: var(--pa-secondary); margin-bottom: .25rem; }
.accred-item strong { color: var(--pa-dark); font-size: .95rem; }
.accred-item span { color: var(--pa-mid); font-size: .8rem; }

/* ═══════════════════════════════════════════════════════════
   CURRICULUM TABS
   ═══════════════════════════════════════════════════════════ */
.curriculum-tabs { margin-top: 2rem; }
.tab-nav {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 2rem; border-bottom: 2px solid var(--pa-light-1);
}
.tab-btn {
  padding: .875rem 1.75rem;
  border-radius: var(--pa-radius-sm) var(--pa-radius-sm) 0 0;
  font-weight: 600; font-size: .9rem;
  color: var(--pa-mid); background: transparent;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: all var(--pa-transition);
  cursor: pointer;
}
.tab-btn.active, .tab-btn:hover {
  color: var(--pa-primary);
  border-bottom-color: var(--pa-primary);
}
.tab-btn.active { background: rgba(26,35,126,.04); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.level-card {
  background: var(--pa-white); border-radius: var(--pa-radius-lg);
  border: 1px solid var(--pa-light-1); overflow: hidden;
  box-shadow: var(--pa-shadow-sm);
}
.level-card__header {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 2rem; background: var(--pa-primary-dark); color: var(--pa-white);
}
.level-card__header h3 { color: var(--pa-white); margin: 0; }
.level-card__header p  { color: rgba(255,255,255,.7); margin: 0; font-size: .9rem; max-width: none; }
.level-badge {
  width: 56px; height: 56px; border-radius: var(--pa-radius-md);
  background: var(--pa-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--pa-font-serif); font-weight: 700; font-size: 1.75rem;
  color: var(--pa-white); flex-shrink: 0;
}
.level-card__body { padding: 2rem; }
.level-card__body h4 {
  font-family: var(--pa-font-sans); font-size: .85rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--pa-mid); margin-bottom: 1rem;
}
.level-card__body ul { display: flex; flex-direction: column; gap: .5rem; }
.level-card__body li { display: flex; align-items: center; gap: .75rem; color: var(--pa-dark-2); }
.level-card__body li i { color: var(--pa-secondary); flex-shrink: 0; }
.level-meta { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.5rem; }
.level-meta span { display: flex; align-items: center; gap: .5rem; color: var(--pa-mid); font-size: .85rem; }
.level-meta i { color: var(--pa-secondary); }

.subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.subject-chip {
  background: var(--pa-white); border: 1px solid var(--pa-light-1);
  border-radius: var(--pa-radius-md); padding: 1.75rem 1.5rem;
  transition: all var(--pa-transition); box-shadow: var(--pa-shadow-sm);
}
.subject-chip:hover { box-shadow: var(--pa-shadow-md); transform: translateY(-3px); border-color: var(--pa-secondary); }
.subject-chip i  { font-size: 2rem; color: var(--pa-secondary); margin-bottom: .75rem; display: block; }
.subject-chip h4 { font-family: var(--pa-font-sans); font-size: 1rem; font-weight: 700; margin-bottom: .375rem; }
.subject-chip p  { font-size: .85rem; color: var(--pa-mid); line-height: 1.5; max-width: none; }

/* Pedagogy */
.pedagogy-card {
  background: var(--pa-white); border-radius: var(--pa-radius-lg);
  padding: 2rem 1.75rem; border: 1px solid var(--pa-light-1);
  box-shadow: var(--pa-shadow-sm); transition: all var(--pa-transition);
}
.pedagogy-card:hover { box-shadow: var(--pa-shadow-md); transform: translateY(-3px); }
.pedagogy-icon { font-size: 2.25rem; color: var(--pa-secondary); margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════════════════
   ENROLLMENT / INSCRIPTION FORM
   ═══════════════════════════════════════════════════════════ */
.enrollment-hero {
  background: linear-gradient(135deg, var(--pa-primary-dark) 0%, var(--pa-primary) 100%);
  padding: 8rem 0 5rem; position: relative; overflow: hidden;
}
.enrollment-hero::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(212,175,55,.06);
  top: -150px; right: -100px; pointer-events: none;
}
.enrollment-hero::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.03);
  bottom: -100px; left: -50px; pointer-events: none;
}
.enrollment-hero__content { position: relative; z-index: 1; }
.enrollment-hero__title { color: var(--pa-white); margin-bottom: 1rem; }
.enrollment-hero__desc { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 55ch; }

.enrollment-steps {
  display: flex; gap: 0;
  counter-reset: step; margin-bottom: 3rem;
}
.enrollment-step {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: .5rem;
  position: relative;
}
.enrollment-step:not(:last-child)::after {
  content: ''; position: absolute; top: 1.375rem; left: 60%; width: 80%;
  height: 2px; background: var(--pa-light-1); z-index: 0;
}
.enrollment-step__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--pa-light-1); color: var(--pa-mid);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  transition: all var(--pa-transition); position: relative; z-index: 1;
}
.enrollment-step__label { font-size: .8rem; color: var(--pa-mid); font-weight: 600; }
.enrollment-step.active .enrollment-step__num {
  background: var(--pa-primary); color: var(--pa-white);
}
.enrollment-step.done .enrollment-step__num {
  background: #4CAF50; color: var(--pa-white);
}

.enrollment-form-wrap {
  background: var(--pa-white);
  border-radius: var(--pa-radius-xl);
  box-shadow: var(--pa-shadow-xl);
  overflow: hidden;
}
.enrollment-form-header {
  background: linear-gradient(135deg, var(--pa-primary-dark), var(--pa-primary));
  padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.enrollment-form-header i  { font-size: 2rem; color: var(--pa-secondary); }
.enrollment-form-header h2 { color: var(--pa-white); font-size: 1.5rem; margin: 0; }
.enrollment-form-header p  { color: rgba(255,255,255,.7); margin: 0; font-size: .9rem; max-width: none; }
.enrollment-form-body { padding: 2.5rem; }

/* Form fields */
.form-group { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--pa-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-full { grid-column: 1 / -1; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .875rem 1.125rem;
  border: 2px solid var(--pa-light-1);
  border-radius: var(--pa-radius-md);
  background: var(--pa-white); color: var(--pa-dark);
  font-size: .9375rem;
  transition: border-color var(--pa-transition), box-shadow var(--pa-transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pa-primary);
  box-shadow: 0 0 0 4px rgba(26,35,126,.08);
}
.form-group input.error, .form-group select.error, .form-group textarea.error {
  border-color: var(--pa-accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: .8rem; color: var(--pa-accent); display: none; }
.form-error.visible { display: block; }
.form-hint { font-size: .78rem; color: var(--pa-mid); margin-top: .25rem; }

.form-section-title {
  font-family: var(--pa-font-sans);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--pa-mid);
  margin: 1.75rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--pa-light-1);
}
.form-section-title:first-child { margin-top: 0; }

.form-submit-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem;
}
.form-privacy-note {
  font-size: .8rem; color: var(--pa-mid);
  display: flex; align-items: center; gap: .375rem;
}
.form-privacy-note i { color: var(--pa-secondary); }

.form-success {
  text-align: center; padding: 3rem 2rem;
}
.form-success i { font-size: 4rem; color: #4CAF50; display: block; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: .5rem; }
.form-success p  { color: var(--pa-mid); max-width: none; }

/* Contact form */
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}
.info-card {
  background: var(--pa-white); border: 1px solid var(--pa-light-1);
  border-radius: var(--pa-radius-lg); padding: 2rem 1.5rem;
  text-align: center; box-shadow: var(--pa-shadow-sm);
  transition: all var(--pa-transition);
}
.info-card:hover { box-shadow: var(--pa-shadow-md); transform: translateY(-3px); }
.info-card__icon { font-size: 2rem; color: var(--pa-secondary); margin-bottom: .75rem; }
.info-card h3 { font-size: 1rem; margin-bottom: .375rem; }
.info-card p  { font-size: .875rem; color: var(--pa-mid); max-width: none; margin: 0; }

.map-embed { border-radius: var(--pa-radius-lg); overflow: hidden; box-shadow: var(--pa-shadow-md); }
.map-embed iframe { display: block; width: 100%; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--pa-white); border: 1px solid var(--pa-light-1);
  border-radius: var(--pa-radius-md); overflow: hidden;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item.open .faq-body { max-height: 400px; }
.faq-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; cursor: pointer; gap: 1rem;
}
.faq-header h4 { font-family: var(--pa-font-sans); font-size: 1rem; font-weight: 600; margin: 0; }
.faq-icon { font-size: 1.25rem; color: var(--pa-secondary); flex-shrink: 0; transition: transform var(--pa-transition); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-body p { padding: 0 1.5rem 1.25rem; color: var(--pa-dark-2); max-width: none; }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--pa-primary-dark) 0%, var(--pa-primary) 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(212,175,55,.06);
  top: -100px; right: -100px; pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(255,255,255,.03);
  bottom: -80px; left: -60px; pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1; text-align: center;
}
.cta-inner h2 { color: var(--pa-white); margin-bottom: 1rem; }
.cta-inner p  { color: rgba(255,255,255,.8); max-width: 50ch; margin: 0 auto 2rem; }
.cta-inner .btn-group { justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--pa-primary-dark);
  color: rgba(255,255,255,.8);
}

/* Newsletter Bar */
.footer-newsletter {
  background: var(--pa-primary);
  padding: 3rem 0;
}
.footer-newsletter__inner {
  display: flex; flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-newsletter__content h3 {
  color: var(--pa-white); font-family: var(--pa-font-sans);
  font-size: 1.25rem; margin-bottom: .375rem;
}
.footer-newsletter__content p {
  color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; max-width: none;
}
.footer-newsletter__form { flex: 1; max-width: 480px; min-width: 280px; }
.newsletter-input-wrap {
  display: flex; border-radius: var(--pa-radius-full);
  overflow: hidden; box-shadow: var(--pa-shadow-md);
  background: var(--pa-white);
}
.newsletter-input-wrap input {
  flex: 1; border: none; padding: .75rem 1.25rem;
  background: var(--pa-white); font-size: .9rem;
  border-radius: 0; outline: none;
}
.newsletter-input-wrap .btn {
  border-radius: 0; white-space: nowrap;
  padding: .75rem 1.5rem;
  font-size: .875rem;
}

/* Footer Main */
.footer-main { padding: 4rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

/* Brand Column */
.footer-col--brand { max-width: 320px; }
.footer-logo {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1rem;
}
.footer-logo__emblem {
  width: 44px; height: 44px;
  background: var(--pa-secondary);
  border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--pa-font-serif); font-weight: 700; font-size: 1.25rem;
  color: var(--pa-primary-dark);
}
.footer-logo strong {
  display: block;
  font-family: var(--pa-font-serif); font-size: 1.1rem;
  font-weight: 700; color: var(--pa-white); line-height: 1.2;
}
.footer-logo em {
  display: block; font-style: normal;
  font-size: .7rem; color: rgba(255,255,255,.6);
  letter-spacing: .06em; text-transform: uppercase;
}
.footer-tagline {
  font-size: .9rem; line-height: 1.7;
  color: rgba(255,255,255,.65); margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .75rem; margin-bottom: 1.5rem; }
.footer-social .social-link,
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all var(--pa-transition);
}
.footer-social .social-link:hover,
.footer-social a:hover { background: var(--pa-secondary); color: var(--pa-primary-dark); }
.footer-accreditation {
  display: flex; flex-direction: column; gap: .125rem;
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08);
}
.footer-accreditation span { font-size: .7rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; }
.footer-accreditation strong { font-size: .875rem; color: rgba(255,255,255,.7); }

/* Footer Column */
.footer-col__title {
  color: var(--pa-white);
  font-family: var(--pa-font-sans);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-nav { display: flex; flex-direction: column; gap: .625rem; }
.footer-nav li a {
  color: rgba(255,255,255,.65); font-size: .9rem;
  transition: color var(--pa-transition);
}
.footer-nav li a:hover { color: var(--pa-secondary); }

/* Contact list */
.footer-contact-list { display: flex; flex-direction: column; gap: .875rem; }
.footer-contact-list li {
  display: flex; gap: .75rem; align-items: flex-start;
}
.footer-contact-list li i {
  color: var(--pa-secondary); font-size: 1.1rem;
  flex-shrink: 0; margin-top: .15rem;
}
.footer-contact-list li span,
.footer-contact-list li a {
  color: rgba(255,255,255,.7); font-size: .875rem; line-height: 1.5;
  transition: color var(--pa-transition);
}
.footer-contact-list li a:hover { color: var(--pa-secondary); }

/* Map thumb */
.footer-map-thumb {
  margin-top: 1.25rem; border-radius: var(--pa-radius-md);
  overflow: hidden; border: 2px solid rgba(255,255,255,.08);
  cursor: pointer; transition: border-color var(--pa-transition);
}
.footer-map-thumb:hover { border-color: var(--pa-secondary); }
.footer-map-thumb img { width: 100%; height: auto; display: block; }
.footer-map-placeholder {
  background: rgba(255,255,255,.05);
  padding: 1.5rem; text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: .5rem;
}
.footer-map-placeholder i { font-size: 1.75rem; color: var(--pa-secondary); }
.footer-map-placeholder span { color: rgba(255,255,255,.5); font-size: .875rem; }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
}
.footer-bottom__inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1rem;
}
.footer-copyright {
  font-size: .8rem; color: rgba(255,255,255,.45);
  max-width: none; margin: 0;
}
.footer-copyright a { color: rgba(255,255,255,.6); transition: color var(--pa-transition); }
.footer-copyright a:hover { color: var(--pa-secondary); }
.footer-bottom__links {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.footer-bottom__links a {
  color: rgba(255,255,255,.45); font-size: .8rem;
  transition: color var(--pa-transition);
}
.footer-bottom__links a:hover { color: var(--pa-secondary); }
.footer-admin-link {
  display: flex; align-items: center; gap: .375rem;
}
.footer-credit {
  font-size: .8rem; color: rgba(255,255,255,.35);
  max-width: none; margin: 0;
}
.footer-credit i { color: var(--pa-accent); }

/* ── Back to Top ─────────────────────────────────────────── */
.back-to-top, #backToTop {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pa-secondary); color: var(--pa-primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; box-shadow: var(--pa-shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all var(--pa-transition); cursor: pointer; border: none;
}
.back-to-top.visible, #backToTop.visible {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.back-to-top:hover, #backToTop:hover {
  background: var(--pa-secondary-dark);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   VIDEO PLACEHOLDER
   ═══════════════════════════════════════════════════════════ */
.video-placeholder {
  position: relative; border-radius: var(--pa-radius-lg);
  overflow: hidden; cursor: pointer;
}
.video-placeholder img { width: 100%; }
.video-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.video-play-btn::before {
  content: ''; width: 80px; height: 80px;
  background: rgba(212,175,55,.9); border-radius: 50%;
  position: absolute; transition: transform var(--pa-transition);
}
.video-play-btn i {
  position: relative; z-index: 1;
  font-size: 2rem; color: var(--pa-primary-dark);
}
.video-play-btn:hover::before { transform: scale(1.1); }

/* ═══════════════════════════════════════════════════════════
   DECORATIVE / BACKGROUND ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.bg-decoration {
  position: absolute; pointer-events: none;
  border-radius: 50%; opacity: .06;
}
.bg-decoration--1 {
  width: 600px; height: 600px;
  background: var(--pa-secondary);
  top: -200px; right: -200px;
  animation: pa-float 8s ease-in-out infinite;
}
.bg-decoration--2 {
  width: 400px; height: 400px;
  background: var(--pa-primary-light);
  bottom: -150px; left: -150px;
  animation: pa-float 10s ease-in-out infinite reverse;
}
.bg-decoration--3 {
  width: 250px; height: 250px;
  background: var(--pa-secondary);
  top: 40%; left: 10%;
  animation: pa-float 6s ease-in-out infinite;
}
@keyframes pa-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* Floating shapes for sections */
.shape-dots {
  position: absolute; pointer-events: none;
  width: 200px; height: 200px;
  background-image: radial-gradient(circle, rgba(212,175,55,.25) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* AOS animations */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
[data-aos].aos-animate { opacity: 1; transform: none; }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate  { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"]    { transform: scale(.9); }
[data-aos="zoom-in"].aos-animate    { transform: scale(1); }

/* ═══════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-white  { color: var(--pa-white) !important; }
.text-gold   { color: var(--pa-secondary) !important; }
.text-primary{ color: var(--pa-primary) !important; }
.text-muted  { color: var(--pa-mid); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.gap-2 { gap: 1rem; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Decorative lines */
.section-line {
  width: 60px; height: 4px;
  background: var(--pa-secondary);
  border-radius: var(--pa-radius-full);
  margin-bottom: 1rem;
}
.section-line.centered { margin: 0 auto 1rem; }

/* ═══════════════════════════════════════════════════════════
   BLOG / SINGLE POST
   ═══════════════════════════════════════════════════════════ */
.post-content {
  max-width: 780px; margin: 0 auto;
  font-size: 1.0625rem; line-height: 1.8;
}
.post-content h2, .post-content h3 { margin: 2rem 0 .75rem; }
.post-content p  { margin-bottom: 1.25rem; max-width: none; }
.post-content img { border-radius: var(--pa-radius-md); margin: 2rem 0; }
.post-content a  { color: var(--pa-primary); text-decoration: underline; }
.post-content blockquote {
  border-left: 4px solid var(--pa-secondary);
  padding: 1rem 1.5rem; background: var(--pa-light-2);
  border-radius: 0 var(--pa-radius-md) var(--pa-radius-md) 0;
  margin: 2rem 0; font-style: italic;
}
.entry-header { margin-bottom: 2rem; }
.entry-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: var(--pa-mid); margin-top: .75rem; }
.entry-meta span { display: flex; align-items: center; gap: .375rem; }
.entry-meta i { color: var(--pa-secondary); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 1024px) {
  /* Hide desktop nav, show hamburger */
  .site-nav, .site-header .header-admin-link { display: none; }
  .nav-toggle { display: flex; }

  .gallery-masonry { columns: 3; }
  .contact-grid { grid-template-columns: 1fr; }

  .timeline::before { left: 20px; }
  .timeline-item { width: 100%; margin-left: 40px !important; text-align: left !important; }
  .timeline-dot  { left: -30px !important; right: auto !important; }

  .avs-secondary { display: none; }
  .avs-badge { left: 1rem; }

  .programs-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .gap-xl { gap: 2rem; }
}

@media (max-width: 768px) {
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__stats { gap: 1rem; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-col--brand { max-width: none; }
  .about-badge { display: none; }
  .enrollment-steps { flex-wrap: wrap; }
  .enrollment-step:not(:last-child)::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-newsletter__inner { flex-direction: column; }
  .footer-newsletter__form { max-width: 100%; }
  .tab-btn { padding: .625rem 1rem; font-size: .85rem; }
}

@media (max-width: 640px) {
  .gallery-masonry { columns: 2; }
  .programs-grid { grid-template-columns: 1fr; }
  .events-grid   { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .subjects-grid { grid-template-columns: 1fr 1fr; }
  .btn-group { flex-direction: column; }
  .hero__dots { display: none; }
  .enrollment-form-body { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-stat strong { font-size: 1.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .subjects-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .classes-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1rem; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .footer-bottom__links { justify-content: center; }
  .enrollment-form-header { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT VISUAL STACK
   ═══════════════════════════════════════════════════════════ */
.about-visual-stack {
  position: relative;
  padding-bottom: 1.5rem;
  padding-right: 1.5rem;
}
.avs-main {
  border-radius: var(--pa-radius-lg);
  overflow: hidden;
  box-shadow: var(--pa-shadow-xl);
  aspect-ratio: 4/5;
}
.avs-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.avs-secondary {
  position: absolute; bottom: 0; right: 0;
  width: 55%; border-radius: var(--pa-radius-md);
  box-shadow: var(--pa-shadow-lg);
  border: 4px solid var(--pa-white); overflow: hidden;
}
.avs-secondary img { width: 100%; height: auto; display: block; }
.avs-badge {
  position: absolute; top: 2rem; left: -1.5rem;
  background: var(--pa-secondary); color: var(--pa-primary-dark);
  padding: .875rem 1.25rem; border-radius: var(--pa-radius-md);
  display: flex; align-items: center; gap: .75rem;
  font-weight: 700; font-size: .875rem;
  box-shadow: var(--pa-shadow-md); z-index: 2;
}
.avs-badge strong { font-family: var(--pa-font-serif); font-size: 1.75rem; line-height: 1; }
.avs-badge span { font-size: .8rem; line-height: 1.3; }
.avs-badge i { font-size: 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   PAGE BANNER VARIANTS
   ═══════════════════════════════════════════════════════════ */
.page-banner__bg {
  position: absolute; inset: 0;
  background: center / cover no-repeat;
}
.page-banner__bg--gradient {
  background: linear-gradient(135deg, var(--pa-primary-dark) 0%, var(--pa-primary) 60%, rgba(57,73,171,.8) 100%);
}
.page-banner__particles {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.page-banner__desc {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem; max-width: 60ch;
  margin-top: .75rem;
}
.breadcrumb__list {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: rgba(255,255,255,.7);
  list-style: none; flex-wrap: wrap; padding: 0; margin-bottom: 1rem;
}
.breadcrumb__list li { display: flex; align-items: center; gap: .5rem; }
.breadcrumb__list li + li::before { content: '/'; color: rgba(255,255,255,.4); }
.breadcrumb__list a { color: rgba(255,255,255,.7); }
.breadcrumb__list a:hover { color: var(--pa-secondary); }
.breadcrumb__list li:last-child { color: var(--pa-secondary); }

.section-title-decorated {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-family: var(--pa-font-serif);
  line-height: 1.2;
  margin-bottom: .75rem;
  position: relative;
  padding-bottom: 1rem;
}
.section-title-decorated::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 60px; height: 4px;
  background: var(--pa-secondary);
  border-radius: var(--pa-radius-full);
}

/* Reveal animation class */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-up.visible, html.loaded .reveal-up {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   ENROLLMENT PAGE — PROCESS STEPS
   ═══════════════════════════════════════════════════════════ */
.enrollment-process { }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  position: relative;
  margin-top: 2rem;
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--pa-white);
  border-radius: var(--pa-radius-lg);
  border: 1px solid var(--pa-light-1);
  box-shadow: var(--pa-shadow-sm);
  position: relative;
  transition: all var(--pa-transition);
}
.process-step:hover { box-shadow: var(--pa-shadow-md); transform: translateY(-3px); }
.process-step__number {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px;
  background: var(--pa-primary);
  color: var(--pa-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem;
  border: 3px solid var(--pa-white);
  box-shadow: var(--pa-shadow-sm);
}
.process-step__icon {
  font-size: 2.25rem; color: var(--pa-secondary);
  margin: .5rem 0 1rem;
}
.process-step h4 { font-size: 1rem; margin-bottom: .5rem; font-family: var(--pa-font-sans); }
.process-step p  { font-size: .85rem; color: var(--pa-mid); max-width: none; line-height: 1.5; }
.process-step__connector {
  position: absolute; top: 2.5rem; right: -1rem;
  width: 2rem; height: 2px;
  background: var(--pa-light-1); z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   ENROLLMENT FORM GRID
   ═══════════════════════════════════════════════════════════ */
.enrollment-section { background: var(--pa-light-2); }
.enrollment-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.form-card {
  background: var(--pa-white);
  border-radius: var(--pa-radius-xl);
  box-shadow: var(--pa-shadow-xl);
  overflow: hidden;
}
.form-card__header {
  background: linear-gradient(135deg, var(--pa-primary-dark), var(--pa-primary));
  padding: 2rem 2.5rem;
}
.form-card__header h2 { color: var(--pa-white); font-size: 1.5rem; margin: 0 0 .375rem; }
.form-card__header p  { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; max-width: none; }

/* Form inside card */
.enrollment-form { padding: 2.5rem; display: flex; flex-direction: column; gap: 0; }

fieldset {
  border: none; padding: 0; margin: 0 0 1.5rem;
}
fieldset legend {
  display: flex; align-items: center; gap: .625rem;
  font-family: var(--pa-font-sans);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--pa-mid);
  padding: 1.5rem 0 1rem;
  border-bottom: 1px solid var(--pa-light-1);
  margin-bottom: 1rem;
  width: 100%;
}
fieldset legend i { color: var(--pa-secondary); font-size: 1.1rem; }

/* Checkbox */
.form-group--checkbox { flex-direction: row; align-items: flex-start; gap: .75rem; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: .75rem;
  cursor: pointer; font-size: .875rem; color: var(--pa-dark-2);
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkmark {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid var(--pa-light-1);
  border-radius: var(--pa-radius-sm);
  background: var(--pa-white);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--pa-transition); margin-top: 2px;
}
.checkbox-label input:checked ~ .checkmark {
  background: var(--pa-primary); border-color: var(--pa-primary);
}
.checkbox-label input:checked ~ .checkmark::after {
  content: '✓'; color: var(--pa-white); font-size: .75rem; font-weight: 700;
}
.checkbox-label a { color: var(--pa-primary); text-decoration: underline; }

/* Submit button states */
.btn-lg { font-size: 1rem; padding: 1rem 2.25rem; }
.btn-submit { width: 100%; justify-content: center; margin-top: 1rem; }
.btn-loading { display: none; }
.btn-submit.loading .btn-text    { display: none; }
.btn-submit.loading .btn-loading { display: flex; align-items: center; gap: .5rem; }
@keyframes ri-spin { to { transform: rotate(360deg); } }
.ri-spin { animation: ri-spin 1s linear infinite; display: inline-block; }

/* Form success */
.form-success { padding: 3rem 2rem; text-align: center; }
.form-success__icon { font-size: 4rem; color: #4CAF50; margin-bottom: 1rem; }
.form-success__icon i { font-size: inherit; }
.form-success h3 { margin-bottom: .5rem; }
.form-success p  { color: var(--pa-mid); max-width: none; }
.form-success__ref { color: var(--pa-dark); font-size: .9rem; }

/* reCAPTCHA */
.form-recaptcha { margin: 1rem 0; }

/* ═══════════════════════════════════════════════════════════
   ENROLLMENT SIDEBAR
   ═══════════════════════════════════════════════════════════ */
.enrollment-sidebar {
  display: flex; flex-direction: column; gap: 1.5rem;
  position: sticky; top: 100px;
}
.sidebar-card {
  background: var(--pa-white);
  border-radius: var(--pa-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--pa-shadow-sm);
  border: 1px solid var(--pa-light-1);
}
.sidebar-card h3 {
  font-family: var(--pa-font-sans);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: .625rem;
}
.sidebar-card h3 i { color: var(--pa-secondary); font-size: 1.25rem; }
.sidebar-card p { font-size: .875rem; color: var(--pa-mid); max-width: none; margin-bottom: 1rem; }

.requirements-list { display: flex; flex-direction: column; gap: .625rem; }
.requirements-list li {
  display: flex; align-items: center; gap: .625rem;
  font-size: .875rem; color: var(--pa-dark-2);
}
.requirements-list i { color: var(--pa-secondary); flex-shrink: 0; }

.sidebar-card--fees { }
.fees-table { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.fee-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .625rem .875rem;
  background: var(--pa-light-2);
  border-radius: var(--pa-radius-sm);
  font-size: .875rem;
}
.fee-row span { color: var(--pa-dark-2); }
.fee-row strong { color: var(--pa-primary); font-size: 1rem; }
.fee-row strong em { font-style: normal; font-size: .75rem; color: var(--pa-mid); margin-left: .125rem; }
.fees-note {
  font-size: .78rem; color: var(--pa-mid);
  display: flex; align-items: center; gap: .375rem;
  max-width: none; margin: 0;
}
.fees-note i { color: var(--pa-secondary); flex-shrink: 0; }

.sidebar-card--contact .sidebar-contacts {
  display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.25rem;
}
.sidebar-card--contact .sidebar-contacts a {
  display: flex; align-items: center; gap: .625rem;
  font-size: .875rem; color: var(--pa-dark-2);
  transition: color var(--pa-transition);
}
.sidebar-card--contact .sidebar-contacts a:hover { color: var(--pa-primary); }
.sidebar-card--contact .sidebar-contacts i { color: var(--pa-secondary); flex-shrink: 0; }
.sidebar-card--contact .btn { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .enrollment-grid { grid-template-columns: 1fr; }
  .enrollment-sidebar { position: static; }
}
@media (max-width: 640px) {
  .enrollment-form { padding: 1.5rem; }
  .form-card__header { padding: 1.5rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   CURRICULUM PAGE — RESPONSIVE HEADER GRID
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* The 3-column curriculum level header: icon + text + stats */
  .container [style*="grid-template-columns:auto 1fr auto"] {
    grid-template-columns: auto 1fr !important;
  }
  .container [style*="grid-template-columns:auto 1fr auto"] > div:last-child {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  /* Calendar + assessment side-by-side → single column */
  .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 640px) {
  .curriculum-stats-strip > .container > div,
  .section > .container > [style*="justify-content:center"] {
    gap: 1rem 2rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   MISC MISSING UTILITIES
   ═══════════════════════════════════════════════════════════ */
/* btn-lg */
.btn.btn-lg { font-size: 1rem; padding: 1rem 2.25rem; }

/* Swiper pagination custom colour */
.swiper-pagination-bullet-active { background: var(--pa-secondary) !important; }

/* Page banner with inline gradient needs min-height */
.page-banner {
  position: relative;
  padding: 9rem 0 5rem;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.page-banner .container { position: relative; z-index: 2; width: 100%; }

/* Ensure inline style backgrounds on hero show through */
.page-banner__bg--curriculum {
  background: linear-gradient(135deg, #0D1B5E 0%, #1A237E 60%, #3949AB 100%);
}

/* Contact grid responsive */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media print {
  .site-header, .site-footer, .back-to-top,
  .pa-cursor, .pa-cursor-follower, #pa-loader { display: none !important; }
  body { font-size: 12pt; }
  .page-banner { padding: 2rem 0; min-height: auto; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE BANNER SUB-LINE
   ═══════════════════════════════════════════════════════════ */
.page-banner__sub {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin: .5rem 0 1.25rem;
  max-width: 55ch;
}

/* ═══════════════════════════════════════════════════════════
   EVENTS PAGE
   ═══════════════════════════════════════════════════════════ */

/* Stats strip */
.ev-stats-strip {
  background: var(--pa-primary-dark);
  color: var(--pa-white);
  padding: 1.25rem 0;
}
.ev-stats-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .5rem 2rem;
}
.ev-stat-item {
  display: flex; align-items: center; gap: .75rem;
}
.ev-stat-item i {
  font-size: 1.75rem; color: var(--pa-secondary);
}
.ev-stat-item strong {
  display: block; font-size: 1.5rem; font-family: var(--pa-font-serif); line-height: 1;
}
.ev-stat-item span {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.6);
}
.ev-stat-divider {
  width: 1px; height: 40px; background: rgba(255,255,255,.15);
}

/* Countdown section */
.ev-countdown-section {
  background: linear-gradient(135deg, var(--pa-primary-dark) 0%, var(--pa-primary) 100%);
  padding: 3rem 0;
}
.ev-countdown-card {
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--pa-radius-xl);
  padding: 2.5rem 3rem;
  backdrop-filter: blur(8px);
}
.ev-countdown-badge {
  display: inline-flex; align-items: center;
  background: var(--ev-accent, var(--pa-secondary));
  color: var(--pa-white);
  padding: .35rem 1rem; border-radius: var(--pa-radius-full);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.ev-countdown-title {
  color: var(--pa-white);
  font-family: var(--pa-font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: .75rem; line-height: 1.25;
}
.ev-countdown-desc {
  color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 1.25rem;
  max-width: 60ch;
}
.ev-countdown-meta {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
}
.ev-countdown-meta span {
  display: flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.75); font-size: .875rem;
}
.ev-countdown-meta i { color: var(--pa-secondary); }
.ev-countdown-right { text-align: center; }
.ev-countdown-label {
  color: rgba(255,255,255,.6); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 1rem;
}
.ev-countdown-timer {
  display: flex; align-items: center; gap: .5rem;
}
.ev-cd-unit { text-align: center; }
.ev-cd-num {
  display: block;
  font-family: var(--pa-font-serif);
  font-size: 2.5rem; line-height: 1;
  color: var(--pa-secondary);
  background: rgba(255,255,255,.1);
  border-radius: var(--pa-radius-md);
  padding: .5rem .875rem;
  min-width: 72px;
}
.ev-cd-lbl {
  display: block; font-size: .7rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: .35rem;
}
.ev-cd-sep {
  font-size: 2rem; color: rgba(255,255,255,.4);
  font-weight: 700; margin-bottom: 1.25rem;
}

/* Toolbar */
.ev-main-section { }
.ev-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2.5rem;
}
.ev-filter-pills {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.ev-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1.125rem;
  border: 1.5px solid var(--pa-light-1);
  border-radius: var(--pa-radius-full);
  background: var(--pa-white);
  color: var(--pa-mid);
  font-size: .85rem; font-weight: 600;
  cursor: pointer;
  transition: all var(--pa-transition);
}
.ev-pill:hover {
  border-color: var(--pill-color, var(--pa-primary));
  color: var(--pill-color, var(--pa-primary));
}
.ev-pill.active {
  background: var(--pill-color, var(--pa-primary));
  border-color: var(--pill-color, var(--pa-primary));
  color: var(--pa-white);
}
.ev-view-toggle {
  display: flex; border: 1.5px solid var(--pa-light-1);
  border-radius: var(--pa-radius-md); overflow: hidden;
}
.ev-view-btn {
  padding: .5rem .875rem;
  background: var(--pa-white); border: none;
  color: var(--pa-mid); cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--pa-transition);
}
.ev-view-btn.active {
  background: var(--pa-primary); color: var(--pa-white);
}

/* Event grid */
.ev-grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.ev-card {
  background: var(--pa-white);
  border-radius: var(--pa-radius-lg);
  overflow: hidden;
  box-shadow: var(--pa-shadow-sm);
  border: 1px solid var(--pa-light-1);
  display: flex; flex-direction: column;
  transition: all .3s ease;
  position: relative;
}
.ev-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pa-shadow-lg);
}
.ev-card--featured {
  grid-column: span 2;
  flex-direction: row;
}
.ev-card--past { opacity: .7; }
.ev-card--past:hover { opacity: 1; }
.ev-card__accent {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
}
.ev-card--featured .ev-card__accent {
  width: 4px; height: 100%; top: 0; left: 0;
}
.ev-card__date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem 1.25rem;
  color: var(--pa-white);
  min-width: 80px;
}
.ev-card--featured .ev-card__date {
  padding: 2rem 1.5rem;
  min-width: 100px;
}
.ev-card__date strong {
  font-size: 2.5rem; font-family: var(--pa-font-serif); line-height: 1;
}
.ev-card__date span {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.75);
}
.ev-card__date em {
  font-style: normal; font-size: .7rem; color: rgba(255,255,255,.5);
}
.ev-card__body {
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: .75rem; flex: 1;
}
.ev-card__top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.ev-card__badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .875rem;
  border-radius: var(--pa-radius-full);
  font-size: .75rem; font-weight: 700;
}
.ev-card__past-tag {
  font-size: .7rem; font-weight: 700; color: var(--pa-mid);
  background: var(--pa-light-1); padding: .2rem .65rem;
  border-radius: var(--pa-radius-full);
}
.ev-card__title {
  font-size: 1.05rem; font-family: var(--pa-font-sans);
  font-weight: 700; line-height: 1.3; margin: 0;
}
.ev-card--featured .ev-card__title { font-size: 1.25rem; }
.ev-card__desc {
  font-size: .875rem; color: var(--pa-mid); line-height: 1.6;
  max-width: none; margin: 0;
}
.ev-card__footer {
  display: flex; flex-wrap: wrap; gap: .5rem 1.25rem;
  margin-top: auto; padding-top: .75rem;
  border-top: 1px solid var(--pa-light-2);
}
.ev-card__footer span {
  display: flex; align-items: center; gap: .35rem;
  font-size: .8rem; color: var(--pa-mid);
}
.ev-card__footer i { color: var(--pa-secondary); }

/* Timeline view */
.ev-timeline-view { padding-top: .5rem; }
.ev-tl-month { margin-bottom: 3rem; }
.ev-tl-month-label {
  font-family: var(--pa-font-serif);
  font-size: 1.25rem; color: var(--pa-primary);
  padding-bottom: .75rem; margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--pa-light-1);
}
.ev-tl-track {
  display: flex; flex-direction: column; gap: 1.25rem;
  padding-left: 2rem;
  border-left: 2px solid var(--pa-light-1);
}
.ev-tl-item {
  display: flex; align-items: flex-start; gap: 1.5rem;
  position: relative;
}
.ev-tl-dot {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pa-white); font-size: 1.1rem;
  position: absolute; left: -3.25rem; top: 0;
  border: 3px solid var(--pa-white);
  box-shadow: var(--pa-shadow-sm);
}
.ev-tl-content {
  background: var(--pa-white);
  border: 1px solid var(--pa-light-1);
  border-radius: var(--pa-radius-md);
  padding: 1.25rem 1.5rem;
  flex: 1;
  transition: box-shadow .3s;
}
.ev-tl-content:hover { box-shadow: var(--pa-shadow-md); }
.ev-tl-content--past { opacity: .65; }
.ev-tl-date {
  font-size: .78rem; color: var(--pa-mid);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .375rem;
}
.ev-tl-title { font-size: 1rem; font-weight: 700; margin-bottom: .375rem; }
.ev-tl-desc  { font-size: .875rem; color: var(--pa-mid); max-width: none; }
.ev-tl-venue {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; color: var(--pa-mid); margin-top: .625rem;
}
.ev-tl-venue i { color: var(--pa-secondary); }

/* Legend section */
.ev-legend-section { }
.ev-legend-row {
  display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center;
}
.ev-cat-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }
.ev-cat-row {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: var(--pa-dark-2);
}
.ev-cat-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
}
.ev-cat-row i { font-size: 1.1rem; }
.ev-cat-count {
  margin-left: auto; font-size: .8rem; color: var(--pa-mid);
  background: var(--pa-light-1); padding: .2rem .65rem;
  border-radius: var(--pa-radius-full);
}

/* Subscribe card */
.ev-subscribe-card {
  background: var(--pa-white);
  border-radius: var(--pa-radius-xl);
  padding: 2.5rem;
  box-shadow: var(--pa-shadow-lg);
  border: 1px solid var(--pa-light-1);
  text-align: center;
}
.ev-subscribe-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--pa-primary-dark), var(--pa-primary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--pa-white); font-size: 1.75rem;
}
.ev-subscribe-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.ev-subscribe-card p  { font-size: .9rem; color: var(--pa-mid); margin-bottom: 1.5rem; max-width: none; }
.ev-subscribe-form { }
.ev-subscribe-input-row {
  display: flex; gap: .5rem;
}
.ev-subscribe-input-row input {
  flex: 1; padding: .75rem 1rem;
  border: 1.5px solid var(--pa-light-1);
  border-radius: var(--pa-radius-md);
  font-family: var(--pa-font-sans); font-size: .9rem;
  outline: none;
  transition: border-color var(--pa-transition);
}
.ev-subscribe-input-row input:focus { border-color: var(--pa-primary); }
.ev-subscribe-note {
  display: flex; align-items: center; justify-content: center; gap: .35rem;
  font-size: .78rem; color: var(--pa-mid); margin-top: .75rem; max-width: none;
}
.ev-subscribe-note i { color: var(--pa-secondary); }
@keyframes ev-spin { to { transform: rotate(360deg); } }
.ev-spin { animation: ev-spin 1s linear infinite; display: inline-block; }

/* Hidden utility */
.hidden { display: none !important; }

/* Events page responsive */
@media (max-width: 1024px) {
  .ev-countdown-card { grid-template-columns: 1fr; gap: 2rem; }
  .ev-countdown-right { text-align: left; }
  .ev-legend-row { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .ev-countdown-card { padding: 1.75rem; }
  .ev-cd-num { font-size: 1.75rem; min-width: 52px; padding: .4rem .625rem; }
  .ev-card--featured { grid-column: span 1; flex-direction: column; }
  .ev-grid-view { grid-template-columns: 1fr; }
  .ev-toolbar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .ev-stats-inner { gap: .75rem 1.25rem; }
  .ev-stat-divider { display: none; }
  .ev-subscribe-input-row { flex-direction: column; }
  .ev-tl-track { padding-left: 1.5rem; }
  .ev-tl-dot { left: -2.75rem; width: 32px; height: 32px; font-size: .9rem; }
}

/* ═══════════════════════════════════════════════════════════
   GALLERY PAGE — REDESIGN
   ═══════════════════════════════════════════════════════════ */

/* Stats strip */
.gl-stats-strip {
  background: var(--pa-primary-dark);
  color: var(--pa-white);
  padding: 1.25rem 0;
}
.gl-stats-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .5rem 2.5rem;
}
.gl-stat-item {
  display: flex; align-items: center; gap: .75rem;
}
.gl-stat-item i {
  font-size: 1.75rem; color: var(--pa-secondary);
}
.gl-stat-item strong {
  display: block; font-size: 1.5rem; font-family: var(--pa-font-serif); line-height: 1;
}
.gl-stat-item span {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.6);
}

/* Spotlight section */
.gl-spotlight-section { }
.gl-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gl-spotlight-item {
  position: relative; overflow: hidden;
  border-radius: var(--pa-radius-lg);
  cursor: pointer; border: none; padding: 0;
  display: block; width: 100%;
}
.gl-spotlight-item--main {
  grid-column: 1; grid-row: 1 / span 2;
  aspect-ratio: 3/4;
}
.gl-spotlight-item--side {
  aspect-ratio: 3/2;
}
.gl-spotlight-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease;
}
.gl-spotlight-item:hover img { transform: scale(1.06); }
.gl-spotlight-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,94,.7) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0; transition: opacity .3s;
}
.gl-spotlight-item:hover .gl-spotlight-overlay { opacity: 1; }
.gl-spotlight-overlay i {
  font-size: 2rem; color: var(--pa-secondary); margin-bottom: auto;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.gl-spotlight-overlay span {
  color: var(--pa-white); font-size: .9rem; font-weight: 600;
}
.gl-cat-tag {
  font-size: .75rem; color: var(--pa-secondary); text-transform: uppercase;
  letter-spacing: .08em; margin-top: .25rem; font-style: normal;
}

/* Filter pills */
.gl-masonry-section { }
.gl-filter-bar {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem;
}
.gl-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1.125rem;
  border: 1.5px solid var(--pa-light-1);
  border-radius: var(--pa-radius-full);
  background: var(--pa-white);
  color: var(--pa-mid);
  font-size: .85rem; font-weight: 600;
  cursor: pointer;
  transition: all var(--pa-transition);
}
.gl-pill:hover {
  border-color: var(--gl-pill-color, var(--pa-primary));
  color: var(--gl-pill-color, var(--pa-primary));
}
.gl-pill.active {
  background: var(--gl-pill-color, var(--pa-primary));
  border-color: var(--gl-pill-color, var(--pa-primary));
  color: var(--pa-white);
}
.gl-pill-count {
  background: rgba(0,0,0,.1);
  border-radius: var(--pa-radius-full);
  padding: .1rem .5rem;
  font-size: .7rem;
}
.gl-pill.active .gl-pill-count { background: rgba(255,255,255,.2); }

/* Masonry gallery improvements */
.gl-masonry { columns: 4; column-gap: 1rem; }
.gl-masonry .gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
}
.gallery-item__overlay {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(13,27,94,.75) 0%, transparent 60%);
}
.gl-overlay-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.gl-overlay-icon i { font-size: 1.5rem; color: var(--pa-white); }
.gl-overlay-info { margin-top: auto; }
.gl-overlay-cat {
  display: flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: .25rem;
}
.gl-overlay-info > span:last-child {
  color: var(--pa-white); font-size: .85rem;
}

/* Lightbox enhancements */
.gl-lightbox .lightbox__content {
  max-width: 90vw;
}
.gl-lightbox .lightbox__img {
  max-height: 80vh;
  transition: opacity .25s ease;
}
.gl-lightbox .lightbox__img.lb-enter {
  animation: lb-pop .3s ease;
}
@keyframes lb-pop {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}
.gl-lb-counter {
  position: absolute; bottom: 2rem; right: 2rem;
  background: rgba(0,0,0,.6); color: rgba(255,255,255,.8);
  padding: .35rem .875rem; border-radius: var(--pa-radius-full);
  font-size: .8rem;
}

/* Video section */
.gl-video-section { }
.gl-video-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.gl-video-text .overline { display: block; margin-bottom: .5rem; }
.gl-feature-list {
  display: flex; flex-direction: column; gap: .625rem;
  list-style: none; padding: 0; margin: 1.25rem 0;
}
.gl-feature-list li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem; color: var(--pa-dark-2);
}
.gl-feature-list i { color: var(--pa-secondary); font-size: 1.1rem; flex-shrink: 0; }
.gl-video-visual { position: relative; }
.gl-video-thumb {
  position: relative; border-radius: var(--pa-radius-xl);
  overflow: hidden; box-shadow: var(--pa-shadow-xl);
}
.gl-video-thumb img {
  width: 100%; display: block;
  aspect-ratio: 16/10; object-fit: cover;
}
.gl-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 72px; height: 72px;
  background: rgba(255,255,255,.95);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transition: transform .3s, box-shadow .3s;
}
.gl-play-btn i { font-size: 2rem; color: var(--pa-primary); margin-left: .25rem; }
.gl-play-btn:hover { transform: translate(-50%,-50%) scale(1.1); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
.gl-video-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--pa-secondary); color: var(--pa-primary-dark);
  padding: .5rem 1rem; border-radius: var(--pa-radius-full);
  font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; gap: .4rem;
}
.gl-float-card {
  position: absolute;
  background: var(--pa-white);
  border-radius: var(--pa-radius-md);
  padding: .875rem 1.25rem;
  box-shadow: var(--pa-shadow-lg);
  display: flex; align-items: center; gap: .75rem;
  border: 1px solid var(--pa-light-1);
  animation: gl-float 3s ease-in-out infinite;
}
.gl-float-card i { font-size: 1.5rem; color: var(--pa-secondary); }
.gl-float-card strong { display: block; font-size: 1.25rem; font-family: var(--pa-font-serif); line-height: 1; }
.gl-float-card span  { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--pa-mid); }
.gl-float-card--1 { top: -1rem; right: -1.5rem; animation-delay: 0s; }
.gl-float-card--2 { bottom: 2rem; left: -1.5rem; animation-delay: 1.5s; }
@keyframes gl-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Gallery page responsive */
@media (max-width: 1024px) {
  .gl-video-row { grid-template-columns: 1fr; gap: 3rem; }
  .gl-video-visual { max-width: 560px; }
  .gl-float-card--2 { left: 0; }
}
@media (max-width: 768px) {
  .gl-spotlight-grid { grid-template-columns: 1fr; }
  .gl-spotlight-item--main { grid-row: auto; aspect-ratio: 16/9; }
  .gl-masonry { columns: 3; }
}
@media (max-width: 640px) {
  .gl-masonry { columns: 2; }
  .gl-stats-inner { gap: .75rem 1.25rem; }
  .gl-float-card { display: none; }
}
@media (max-width: 480px) {
  .gl-masonry { columns: 2; }
}

/* ═══════════════════════════════════════════════════════════
   AOS FALLBACK — ensure content visible if AOS CDN fails
   ═══════════════════════════════════════════════════════════ */
/* If AOS hasn't initialized, elements with data-aos stay at opacity:1 */
html:not(.aos-initialized) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  visibility: visible !important;
}
/* Extra safety: after 3s, override any stuck AOS state */
.aos-forced-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ═══════════════════════════════════════════════════════════
   PAGE BANNER — guaranteed visibility
   ═══════════════════════════════════════════════════════════ */
/* Dark fallback if image fails to load */
.page-banner {
  background-color: var(--pa-primary-dark) !important;
}
.page-banner__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(13,27,94,.93) 0%, rgba(13,27,94,.75) 100%);
}
.page-banner__content { position: relative; z-index: 2 !important; }
.page-banner__title   { color: #ffffff !important; }
.page-banner .overline{ color: var(--pa-secondary) !important; }
.breadcrumb           { position: relative; z-index: 2; }
.breadcrumb a,
.breadcrumb span      { color: rgba(255,255,255,.7); }
.breadcrumb a:hover   { color: var(--pa-secondary); }

/* ═══════════════════════════════════════════════════════════
   MOBILE HEADER — complete fix
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Hide "Enroll Now" text, show only icon */
  .header-cta .btn-text-label { display: none; }
  /* Or hide the whole button on mobile if too crowded */
  .site-header .header-cta {
    padding: .5rem .875rem;
    font-size: .8rem;
  }
}
@media (max-width: 768px) {
  .site-header .header-cta {
    display: none; /* hidden on mobile — available in mobile menu */
  }
  .header-inner__wrap {
    padding: .625rem 0;
  }
  .site-logo__name strong { font-size: .9rem; }
  .site-logo__name em     { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   HERO STATS STRIP — mobile fix
   ═══════════════════════════════════════════════════════════ */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
@media (max-width: 640px) {
  .hero__stats {
    gap: .75rem 1.25rem;
  }
  .hero-stat strong  { font-size: 1.5rem; }
  .hero-stat         { min-width: calc(50% - .625rem); }
}
@media (max-width: 400px) {
  .hero__stats       { gap: .5rem 1rem; }
  .hero-stat         { min-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   FUN & COLORFUL — highschool energy
   ═══════════════════════════════════════════════════════════ */

/* Vibrant section accent strip */
.section-accent-strip {
  height: 4px;
  background: linear-gradient(90deg, #1A237E 0%, #D4AF37 33%, #E53935 66%, #7B1FA2 100%);
}

/* Program cards — more colorful hover */
.program-card:hover .program-card__overlay {
  background: linear-gradient(to top, rgba(13,27,94,.95) 0%, rgba(13,27,94,.5) 60%, transparent 100%);
}

/* Why cards — colorful icon backgrounds by index */
.why-card:nth-child(1) .why-card__icon { background: rgba(26,35,126,.1);  color: #1A237E; }
.why-card:nth-child(2) .why-card__icon { background: rgba(212,175,55,.12); color: #B8960C; }
.why-card:nth-child(3) .why-card__icon { background: rgba(229,57,53,.1);   color: #C62828; }
.why-card:nth-child(4) .why-card__icon { background: rgba(123,31,162,.1);  color: #7B1FA2; }
.why-card:nth-child(5) .why-card__icon { background: rgba(0,150,136,.1);   color: #00695C; }
.why-card:nth-child(6) .why-card__icon { background: rgba(25,118,210,.1);  color: #1565C0; }
.why-card:nth-child(7) .why-card__icon { background: rgba(56,142,60,.1);   color: #2E7D32; }
.why-card:nth-child(8) .why-card__icon { background: rgba(230,81,0,.1);    color: #BF360C; }

/* Colorful top border on why-cards */
.why-card {
  border-top: 3px solid transparent;
  background-clip: padding-box;
}
.why-card:nth-child(1) { border-top-color: #1A237E; }
.why-card:nth-child(2) { border-top-color: #D4AF37; }
.why-card:nth-child(3) { border-top-color: #E53935; }
.why-card:nth-child(4) { border-top-color: #7B1FA2; }
.why-card:nth-child(5) { border-top-color: #009688; }
.why-card:nth-child(6) { border-top-color: #1976D2; }
.why-card:nth-child(7) { border-top-color: #388E3C; }
.why-card:nth-child(8) { border-top-color: #E64A19; }

/* Subject chips — rainbow on hover */
.subject-chip:hover {
  background: linear-gradient(135deg, var(--pa-primary), var(--pa-primary-light));
  color: var(--pa-white);
  transform: translateY(-4px) scale(1.02);
}
.subject-chip:hover i { color: var(--pa-secondary); }

/* CTA section brighter gradient */
.cta-section {
  background: linear-gradient(135deg, #0D1B5E 0%, #1A237E 50%, #311B92 100%);
}

/* Programs section colorful overlays by index */
.program-card:nth-child(1) .program-card__overlay {
  background: linear-gradient(to top, rgba(13,27,94,.92) 0%, rgba(212,175,55,.15) 100%);
}
.program-card:nth-child(2) .program-card__overlay {
  background: linear-gradient(to top, rgba(13,27,94,.92) 0%, rgba(26,35,126,.2) 100%);
}
.program-card:nth-child(3) .program-card__overlay {
  background: linear-gradient(to top, rgba(13,27,94,.92) 0%, rgba(229,57,53,.15) 100%);
}

/* Floating decoration dots */
.hero-decor-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: hero-pulse 3s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.15); opacity: .9; }
}

/* Team card colorful hover border */
.team-card:hover {
  border-bottom: 3px solid var(--pa-secondary);
}

/* ═══════════════════════════════════════════════════════════
   CLASSES PAGE — colorful redesign
   ═══════════════════════════════════════════════════════════ */
.class-card {
  position: relative;
  overflow: hidden;
}
.class-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.class-card[data-level="Maternelle"]::before { background: linear-gradient(90deg, #D4AF37, #F0D060); }
.class-card[data-level="Primaire"]::before   { background: linear-gradient(90deg, #1A237E, #3949AB); }
.class-card[data-level="Secondaire"]::before { background: linear-gradient(90deg, #C62828, #EF5350); }

/* Classes banner bg override */
.cl-banner .page-banner__overlay {
  background: linear-gradient(135deg, rgba(26,35,126,.93) 0%, rgba(57,73,171,.8) 100%);
}

/* ═══════════════════════════════════════════════════════════
   COURSES PAGE — colorful subject cards
   ═══════════════════════════════════════════════════════════ */
.course-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--pa-white);
  border-radius: var(--pa-radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--pa-light-1);
  box-shadow: var(--pa-shadow-sm);
  transition: all var(--pa-transition);
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pa-shadow-md);
  border-color: var(--pa-primary-light);
}
.course-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--pa-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
/* Colorful icon backgrounds per subject */
.courses-grid .course-card:nth-child(1) .course-card__icon { background:#E8EAF6; color:#1A237E; }
.courses-grid .course-card:nth-child(2) .course-card__icon { background:#E3F2FD; color:#1565C0; }
.courses-grid .course-card:nth-child(3) .course-card__icon { background:#F3E5F5; color:#7B1FA2; }
.courses-grid .course-card:nth-child(4) .course-card__icon { background:#E8F5E9; color:#2E7D32; }
.courses-grid .course-card:nth-child(5) .course-card__icon { background:#FFF8E1; color:#F57F17; }
.courses-grid .course-card:nth-child(6) .course-card__icon { background:#E0F7FA; color:#00838F; }
.courses-grid .course-card:nth-child(7) .course-card__icon { background:#FCE4EC; color:#C62828; }
.courses-grid .course-card:nth-child(8) .course-card__icon { background:#F1F8E9; color:#558B2F; }
.courses-grid .course-card:nth-child(n+9) .course-card__icon { background:#FBE9E7; color:#BF360C; }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.course-card__body { flex: 1; min-width: 0; }
.course-card h3    { font-size: 1rem; margin-bottom: .375rem; font-family: var(--pa-font-sans); font-weight: 700; }
.course-card p     { font-size: .85rem; color: var(--pa-mid); max-width: none; margin-bottom: .5rem; }
.course-tags       { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .5rem; }
.tag {
  display: inline-flex; align-items: center;
  padding: .2rem .65rem;
  border-radius: var(--pa-radius-full);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .04em;
}
.tag--core    { background: #E8EAF6; color: #1A237E; }
.tag--elective{ background: #F3E5F5; color: #7B1FA2; }
.tag--level   { background: var(--pa-light-1); color: var(--pa-dark-2); }
.course-meta  { font-size: .78rem; color: var(--pa-mid); display: flex; gap: 1rem; }
.course-meta span { display: flex; align-items: center; gap: .3rem; }

/* Pedagogy cards */
.pedagogy-card {
  background: var(--pa-white);
  border-radius: var(--pa-radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--pa-light-1);
  box-shadow: var(--pa-shadow-sm);
  text-align: center;
  transition: all var(--pa-transition);
}
.pedagogy-card:hover { box-shadow: var(--pa-shadow-md); transform: translateY(-4px); }
.pedagogy-icon {
  width: 64px; height: 64px;
  border-radius: var(--pa-radius-md);
  background: var(--pa-light-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: var(--pa-primary);
  margin: 0 auto 1.25rem;
  transition: all var(--pa-transition);
}
.pedagogy-card:hover .pedagogy-icon {
  background: var(--pa-primary);
  color: var(--pa-secondary);
  transform: scale(1.05);
}
.pedagogy-card h3 { font-size: 1rem; font-family: var(--pa-font-sans); font-weight: 700; margin-bottom: .5rem; }
.pedagogy-card p  { font-size: .875rem; color: var(--pa-mid); max-width: none; }

/* ═══════════════════════════════════════════════════════════
   ELEMENTOR COMPATIBILITY — full-width template support
   ═══════════════════════════════════════════════════════════ */
/* When Elementor renders, ensure our theme doesn't conflict */
body.elementor-page .site-main { padding-top: 0; }
body.elementor-editor-active .page-banner { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   CUSTOMIZER HEADER SETTINGS
   ═══════════════════════════════════════════════════════════ */
/* Announcement bar (optional, shown if customizer setting is set) */
.site-announcement {
  background: var(--pa-secondary);
  color: var(--pa-primary-dark);
  text-align: center;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.site-announcement a { color: var(--pa-primary-dark); text-decoration: underline; }
.site-announcement .ann-close {
  position: absolute; right: 1rem;
  background: none; border: none; font-size: 1rem; cursor: pointer;
  color: var(--pa-primary-dark); opacity: .7;
}

/* ═══════════════════════════════════════════════════════════
   ROUNDED IMAGES
   ═══════════════════════════════════════════════════════════ */
.rounded-img {
  border-radius: var(--pa-radius-lg);
  width: 100%; height: auto;
  display: block;
  box-shadow: var(--pa-shadow-lg);
}

/* ═══════════════════════════════════════════════════════════
   STAT ROW (classes/about pages)
   ═══════════════════════════════════════════════════════════ */
.stat-row {
  display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem;
}
.stat-item {
  display: flex; flex-direction: column; gap: .25rem;
}
.stat-item strong {
  font-size: 2rem; font-family: var(--pa-font-serif);
  color: var(--pa-primary); line-height: 1;
}
.stat-item span {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--pa-mid);
}

/* ═══════════════════════════════════════════════════════════
   VIDEO PLACEHOLDER
   ═══════════════════════════════════════════════════════════ */
.video-placeholder {
  position: relative;
  border-radius: var(--pa-radius-xl);
  overflow: hidden;
  box-shadow: var(--pa-shadow-xl);
}
.video-placeholder img {
  width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover;
}
.video-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 72px; height: 72px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--pa-primary);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer; border: none;
}
.video-play-btn i { margin-left: .25rem; }
.video-play-btn:hover { transform: translate(-50%,-50%) scale(1.1); }

/* ═══════════════════════════════════════════════════════════
   FEATURE LIST
   ═══════════════════════════════════════════════════════════ */
.feature-list {
  display: flex; flex-direction: column; gap: .625rem;
  list-style: none; padding: 0; margin: 1.25rem 0;
}
.feature-list li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem; color: var(--pa-dark-2);
}
.feature-list i { color: var(--pa-secondary); font-size: 1.1rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — timeline, badges
   ═══════════════════════════════════════════════════════════ */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--pa-light-1);
}
.timeline-item {
  position: relative; margin-bottom: 2.5rem;
}
.timeline-dot {
  position: absolute; left: -2.5rem; top: .25rem;
  width: 16px; height: 16px;
  background: var(--pa-secondary); border-radius: 50%;
  border: 3px solid var(--pa-white);
  box-shadow: var(--pa-shadow-sm);
}
.timeline-year {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--pa-secondary); margin-bottom: .25rem;
}
.timeline-title { font-size: 1rem; font-weight: 700; margin-bottom: .375rem; }
.timeline-desc  { font-size: .875rem; color: var(--pa-mid); max-width: none; }

/* About badge */
.about-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--pa-white); border-radius: var(--pa-radius-md);
  padding: 1rem 1.5rem; box-shadow: var(--pa-shadow-lg);
  display: flex; align-items: center; gap: .875rem;
  border: 1px solid var(--pa-light-1); z-index: 3;
}
.about-badge-icon {
  width: 48px; height: 48px; background: var(--pa-secondary);
  border-radius: var(--pa-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--pa-primary-dark); flex-shrink: 0;
}
.about-badge strong { display: block; font-size: 1.5rem; font-family: var(--pa-font-serif); line-height: 1; }
.about-badge span   { font-size: .75rem; color: var(--pa-mid); }

/* Mobile fixes for new additions */
@media (max-width: 768px) {
  .stat-row { gap: 1rem; }
  .stat-item strong { font-size: 1.6rem; }
}
@media (max-width: 640px) {
  .courses-grid { grid-template-columns: 1fr; }
  .course-card { flex-direction: column; }
}


