/* ============================================================
   DLA Design System — "Modern Academic Authority"
   Daystar Leadership Academy Prototype
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Brand colours */
  --navy:          #0A2A5E;
  --navy-dark:     #061A3A;
  --navy-light:    #1A4080;
  --charcoal:      #1A1A1A;
  --charcoal-mid:  #2C2C2C;
  --gold:          #C9922A;
  --gold-light:    #E4B14F;
  --gold-dark:     #A0701A;
  --off-white:     #F9F9F9;
  --white:         #FFFFFF;
  --grey-100:      #F2F2F2;
  --grey-200:      #E0E0E0;
  --grey-400:      #9A9A9A;
  --grey-600:      #555555;
  --success:       #2D7A4F;
  --error:         #B03030;

  /* Typography */
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale (8px base) */
  --sp-1:  0.5rem;   /* 8px  */
  --sp-2:  1rem;     /* 16px */
  --sp-3:  1.5rem;   /* 24px */
  --sp-4:  2rem;     /* 32px */
  --sp-5:  2.5rem;   /* 40px */
  --sp-6:  3rem;     /* 48px */
  --sp-8:  4rem;     /* 64px */
  --sp-10: 5rem;     /* 80px */
  --sp-12: 6rem;     /* 96px */
  --sp-16: 8rem;     /* 128px */

  /* Layout */
  --container:     1280px;
  --container-md:  960px;
  --radius-sm:     4px;
  --radius:        8px;
  --radius-lg:     16px;
  --radius-xl:     24px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow:     0 4px 16px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.10);
  --shadow-gold: 0 4px 24px rgba(201,146,42,0.30);

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    150ms;
  --dur:         250ms;
  --dur-slow:    400ms;

  /* Nav */
  --nav-h:       80px;
  --sticky-bar-h: 64px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(201,146,42,0.65);
  outline-offset: 3px;
}

.btn:focus-visible,
.nav-link:focus-visible,
.dropdown-link:focus-visible,
.mega-link:focus-visible,
.mobile-nav-link:focus-visible,
.mobile-sub-link:focus-visible,
.filter-tab:focus-visible,
.slider-btn:focus-visible,
.slider-dot:focus-visible,
.faq-question:focus-visible,
.modal-close:focus-visible {
  box-shadow: 0 0 0 3px rgba(201,146,42,0.22);
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-2);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem);   font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem);   font-weight: 700; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem);   font-weight: 600; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.08em; }

p { font-size: 1rem; line-height: 1.75; color: var(--grey-600); }
p + p { margin-top: var(--sp-2); }

.text-sm   { font-size: 0.875rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem;  }
.text-white { color: var(--white) !important; }
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-2);
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
.container-md {
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

.section { padding: var(--sp-12) 0; }
.section-sm { padding: var(--sp-8) 0; }
.section-lg { padding: var(--sp-16) 0; }

.bg-navy      { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }
.bg-off-white { background: var(--off-white); }
.bg-charcoal  { background: var(--charcoal); }
.bg-white     { background: var(--white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2  { gap: var(--sp-2); }
.gap-3  { gap: var(--sp-3); }
.gap-4  { gap: var(--sp-4); }

.text-center { text-align: center; }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201,146,42,0.40);
}
.btn-gold:active { transform: translateY(0); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(6,26,58,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.site-nav.scrolled {
  background: rgba(6,26,58,0.99);
  box-shadow: var(--shadow-md);
}

.site-nav.scrolled.nav-light {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--grey-200);
}

.shared-page-title {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10,42,94,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.shared-page-title.hidden {
  display: none;
}

.shared-page-title-label {
  display: inline-block;
  padding: 0.45rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-text span { color: var(--gold); display: block; font-size: 0.7rem; font-family: var(--font-sans); font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; }

/* Primary nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-link.active { color: var(--gold); }

.nav-link .chevron {
  width: 14px; height: 14px;
  transition: transform var(--dur) var(--ease);
}
.nav-item.open .chevron { transform: rotate(180deg); }

/* Mega-menu */
.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-4);
  min-width: 640px;
  z-index: 999;
  border-top: 3px solid var(--gold);
  animation: menuDrop var(--dur) var(--ease);
}

@keyframes menuDrop {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-item.open .mega-menu,
.mega-menu:hover { display: flex; }

.mega-menu-cols {
  display: flex;
  gap: var(--sp-6);
  width: 100%;
}

.mega-col { flex: 1; }

.mega-col-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
  padding-bottom: var(--sp-1);
  border-bottom: 1px solid var(--grey-200);
}

.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  transition: background var(--dur-fast) var(--ease);
  margin-bottom: 2px;
}
.mega-link:hover { background: var(--off-white); }

.mega-link-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.mega-link-content { flex: 1; }
.mega-link-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
  line-height: 1.3;
}
.mega-link-desc {
  font-size: 0.75rem;
  color: var(--grey-400);
  display: block;
  margin-top: 2px;
  line-height: 1.4;
}

/* Dropdown (simple) */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: var(--sp-1);
  min-width: 220px;
  z-index: 999;
  border-top: 3px solid var(--gold);
  animation: menuDrop var(--dur) var(--ease);
}
.nav-item.open .dropdown-menu { display: block; }

.dropdown-link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast), color var(--dur-fast);
  font-weight: 500;
}
.dropdown-link:hover { background: var(--off-white); color: var(--navy); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.nav-login-btn {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-login-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.my-academy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--dur-fast);
}
.my-academy-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}
.my-academy-dot {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  height: calc(100vh - var(--nav-h));
  background: var(--navy-dark);
  z-index: 998;
  overflow-y: auto;
  padding: var(--sp-4);
  transform: translateX(-100%);
  transition: transform var(--dur-slow) var(--ease);
}
.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: 0.85rem var(--sp-2);
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--dur-fast);
}
.mobile-nav-link:hover { color: var(--gold); }

.mobile-sub-links { padding-left: var(--sp-3); }
.mobile-sub-link {
  display: block;
  padding: 0.6rem var(--sp-2);
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--dur-fast);
}
.mobile-sub-link:hover { color: var(--gold-light); }

.mobile-drawer-actions {
  padding: var(--sp-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,26,58,0.93) 0%,
    rgba(10,42,94,0.85) 45%,
    rgba(10,42,94,0.55) 100%
  );
  transition: opacity 0.35s ease;
}

/* Only the opening slide carries the shared headline and calls to action. */
.hero.image-only .hero-overlay,
.hero:has(.hero-slide.active:not([data-hero-content])) .hero-overlay {
  opacity: 1;
  background: linear-gradient(
    110deg,
    rgba(5, 20, 49, 0.58) 0%,
    rgba(20, 45, 104, 0.4) 52%,
    rgba(36, 46, 118, 0.28) 100%
  );
}

.hero.image-only .hero-content,
.hero.image-only .hero-scroll {
  opacity: 0;
  pointer-events: none;
}

/* Fallback tied to the active slide itself: only slide one may show site copy. */
.hero:has(.hero-slide.active:not([data-hero-content])) .hero-content,
.hero:has(.hero-slide.active:not([data-hero-content])) .hero-scroll {
  opacity: 0;
  pointer-events: none;
}

.hero-content,
.hero-scroll {
  transition: opacity 0.25s ease;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: var(--sp-12) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,146,42,0.18);
  border: 1px solid rgba(201,146,42,0.4);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-3);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.1;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: var(--sp-5);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

/* Social proof bar below hero CTAs */
.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.proof-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
}
.proof-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}
.proof-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.15);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ── Hero Image Carousel ──────────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}
.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1);
  transition: transform 7s ease-in-out;
}
.hero-slide.active img {
  transform: scale(1.07);
}

/* All banners fill the same hero frame for a consistent carousel. */
.hero.image-only .hero-slide.active img {
  object-fit: cover;
  object-position: center;
  transform: none;
}

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(6,26,58,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: rgba(201,146,42,0.7);
  border-color: var(--gold-light);
  transform: translateY(-50%) scale(1.08);
  outline: none;
}
.hero-arrow-prev { left: var(--sp-3); }
.hero-arrow-next { right: var(--sp-3); }

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active,
.hero-dot:hover {
  background: var(--gold-light);
  transform: scale(1.4);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide img { transition: none !important; }
}

/* ── Ticker / Proof Banner ────────────────────────────────── */
.ticker-bar {
  background: var(--gold);
  padding: 0.65rem 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: var(--sp-8);
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
.ticker-dot {
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
}

/* ── Trust Badge Cards ────────────────────────────────────── */
.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-3);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.trust-card-icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: var(--sp-2);
  display: block;
}

.trust-card-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--sp-1);
}

.trust-card-sub {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .trust-card-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
}
@media (max-width: 480px) {
  .trust-card-grid { grid-template-columns: 1fr; }
}

/* ── Section Headers ──────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-8);
}
.section-header h2 { margin-bottom: var(--sp-2); }
.section-header p { font-size: 1.05rem; }

.section-header-left { text-align: left; max-width: 100%; margin-left: 0; margin-right: 0; }

/* Gold accent underline on headings */
.heading-accent {
  position: relative;
  display: inline-block;
}
.heading-accent::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.heading-accent.center::after { left: 50%; transform: translateX(-50%); }

/* ── Countdown ────────────────────────────────────────────── */
.countdown-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: var(--sp-8) 0;
  text-align: center;
}
.countdown-label {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.countdown-title {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: var(--sp-4);
}
.countdown-units {
  display: inline-flex;
  gap: var(--sp-3);
  align-items: center;
}
.countdown-unit {
  text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: var(--sp-2) var(--sp-3);
  min-width: 80px;
}
.countdown-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.countdown-unit-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.countdown-sep {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-top: -8px;
}
.countdown-cta { margin-top: var(--sp-4); }

/* ── Course Cards ─────────────────────────────────────────── */
.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.course-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.course-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.course-card:hover .course-card-img img { transform: scale(1.04); }

.course-card-badge {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.course-card-badge.executive { background: var(--gold); }
.course-card-badge.advanced  { background: var(--navy-dark); }
.course-card-badge.teen      { background: var(--success); }

.course-card-body {
  padding: var(--sp-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.course-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--grey-400);
  font-weight: 500;
}

.course-card h4 {
  color: var(--charcoal);
  margin-bottom: var(--sp-1);
  font-size: 1.1rem;
}
.course-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--sp-3);
}

.card-countdown {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 0.75rem;
  margin-bottom: var(--sp-3);
  text-align: center;
}
.card-countdown-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.card-countdown-timer {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* Difficulty bar */
.difficulty {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--sp-2);
}
.difficulty-label { font-size: 0.72rem; font-weight: 600; color: var(--grey-400); text-transform: uppercase; letter-spacing: 0.06em; }
.difficulty-pips { display: flex; gap: 3px; }
.difficulty-pip {
  width: 18px; height: 5px;
  border-radius: 2px;
  background: var(--grey-200);
}
.difficulty-pip.filled { background: var(--navy); }
.difficulty-pip.filled.gold { background: var(--gold); }

/* ── Filter Tabs ──────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
  background: var(--grey-100);
  padding: 6px;
  border-radius: var(--radius-lg);
  width: fit-content;
}
.filter-tab {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  color: var(--grey-600);
  transition: all var(--dur-fast);
  background: transparent;
}
.filter-tab:hover { background: var(--white); color: var(--navy); }
.filter-tab.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

/* ── Why DLA Section ──────────────────────────────────────── */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: all var(--dur) var(--ease);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--sp-2);
}
.why-card h4 { margin-bottom: var(--sp-1); color: var(--charcoal); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: var(--navy-dark); }

.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--sp-2);
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 3px;
  margin-bottom: var(--sp-3);
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--white);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: var(--sp-4);
}
.testimonial-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.testimonial-role { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--dur-fast);
  background: rgba(255,255,255,0.05);
}
.slider-btn:hover { background: var(--gold); border-color: var(--gold); }

.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: all var(--dur-fast);
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── Faculty / About Section ──────────────────────────────── */
.faculty-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 0;
}
.faculty-img {
  width: 340px;
  flex-shrink: 0;
  overflow: hidden;
}
.faculty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.faculty-content {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faculty-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.faculty-content h3 { margin-bottom: var(--sp-2); color: var(--navy); }
.faculty-content p { margin-bottom: var(--sp-3); }
.faculty-quote {
  border-left: 3px solid var(--gold);
  padding-left: var(--sp-3);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
}

/* ── Stats Counter Section ────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat-card {
  text-align: center;
  padding: var(--sp-4) var(--sp-3);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
}

/* ── Steps / Process ──────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  position: relative;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--sp-3);
}
.step-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: var(--sp-3);
}

/* ── Programme Table ──────────────────────────────────────── */
.programme-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.programme-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}
.programme-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.programme-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.programme-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--grey-200);
  color: var(--charcoal);
}
.programme-table tr:last-child td { border-bottom: none; }
.programme-table tr:nth-child(even) td { background: var(--off-white); }
.programme-table .check { color: var(--success); font-size: 1.1rem; }
.programme-table .na    { color: var(--grey-400); }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: var(--sp-6);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy));
}
.timeline-item {
  position: relative;
  padding-bottom: var(--sp-5);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-6) - 5px);
  top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.timeline-item h4 { margin-bottom: 4px; color: var(--navy); }
.timeline-item p  { font-size: 0.875rem; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: calc(var(--nav-h) + var(--sp-10)) 0 var(--sp-10);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://dlaonline.org/wp-content/uploads/2017/11/home_employment_subheader2.jpg') center/cover;
  opacity: 0.08;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: var(--sp-2); }
.page-hero-sub { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--sp-3);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── Prospectus / Summary ─────────────────────────────────── */
.summary-section-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-1);
  border-bottom: 2px solid var(--gold);
  width: fit-content;
}
.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-3);
  border: 1px solid var(--grey-200);
  transition: all var(--dur-fast);
}
.audience-card:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.audience-icon { font-size: 2rem; margin-bottom: var(--sp-1); }
.audience-card h4 { font-size: 1rem; margin-bottom: 4px; color: var(--navy); }

.faq-item {
  border-bottom: 1px solid var(--grey-200);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--sp-3) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  gap: var(--sp-3);
}
.faq-question .faq-icon {
  color: var(--gold);
  font-size: 1.25rem;
  transition: transform var(--dur);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 var(--sp-3);
  color: var(--grey-600);
  font-size: 0.9375rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: var(--sp-3); }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,42,94,0.12);
}
.form-control::placeholder { color: var(--grey-400); }

select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%239A9A9A' d='M8 10.5L2.5 5h11z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px; padding-right: 2.5rem; }

.form-hint { font-size: 0.8rem; color: var(--grey-400); margin-top: 4px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
}

/* ── Modal ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,26,58,0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9) translateY(20px);
  transition: transform var(--dur) var(--ease-spring);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}
.modal-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
}
.modal-header h3 { color: var(--white); font-size: 1.4rem; }
.modal-header p  { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-top: 4px; }
.modal-close {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast);
}
.modal-close:hover { background: rgba(255,255,255,0.25); }
.modal-body { padding: var(--sp-5); }

.modal-success {
  text-align: center;
  padding: var(--sp-6) var(--sp-5);
  display: none;
}
.modal-success.show { display: block; }
.success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #2D7A4F, #4ADE80);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--sp-3);
}
.modal-success h3 { color: var(--navy); margin-bottom: var(--sp-2); }

/* ── Sticky Quick Enroll Bar ──────────────────────────────── */
.sticky-enroll {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--sticky-bar-h);
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-4);
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease);
  display: none; /* hidden on desktop, shown on mobile via JS */
}
.sticky-enroll.visible {
  transform: translateY(0);
}
.sticky-enroll-text {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  flex: 1;
}
.sticky-enroll-text span { color: var(--gold-light); display: block; font-size: 0.75rem; font-weight: 400; }

/* ── WhatsApp Chat ────────────────────────────────────────── */
.whatsapp-chat-button {
  position: fixed;
  right: var(--sp-3);
  bottom: var(--sp-3);
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px 7px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(10, 36, 66, 0.22);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.whatsapp-chat-button:hover {
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(10, 36, 66, 0.3);
}
.whatsapp-chat-button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.whatsapp-chat-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
}
.whatsapp-chat-icon svg { width: 27px; height: 27px; }

/* ── Contact Info ─────────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  margin-bottom: var(--sp-3);
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--sp-2);
}
.contact-card h5 { color: var(--navy); margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; margin: 0; }
.contact-card a { color: var(--navy); font-weight: 500; }
.contact-card a:hover { color: var(--gold); }

.map-placeholder {
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  border: 2px dashed var(--grey-200);
  color: var(--grey-400);
}
.map-placeholder .map-icon { font-size: 3rem; }
.map-placeholder p { font-size: 0.875rem; text-align: center; }
.map-placeholder a { color: var(--navy); font-weight: 600; font-size: 0.875rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  padding: var(--sp-10) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}
.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: var(--sp-2) 0 var(--sp-3);
}
.footer-socials {
  display: flex;
  gap: var(--sp-2);
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--dur-fast);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-col h6 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-1);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-link {
  display: block;
  padding: 4px 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur-fast);
}
.footer-link:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: var(--sp-2);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-3) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.footer-bottom-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  text-align: center;
  width: 100%;
  padding-top: var(--sp-1);
  padding-bottom: var(--sp-2);
}

/* ── Scroll Animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Utility / misc ───────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--grey-200);
  margin: var(--sp-6) 0;
}
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag-navy  { background: rgba(10,42,94,0.1); color: var(--navy); }
.tag-gold  { background: rgba(201,146,42,0.15); color: var(--gold-dark); }
.tag-green { background: rgba(45,122,79,0.12); color: var(--success); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── Responsive Breakpoints ───────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .faculty-card { flex-direction: column; }
  .faculty-img  { width: 100%; height: 300px; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .mega-menu { min-width: 90vw; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-drawer { display: block; }

  .sticky-enroll { display: flex !important; }

  .whatsapp-chat-button {
    bottom: calc(var(--sticky-bar-h) + var(--sp-2));
    right: var(--sp-2);
  }

  body { padding-bottom: var(--sticky-bar-h); }

  .hero-content { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .hero-proof { gap: var(--sp-2); flex-direction: column; align-items: flex-start; }
  .proof-divider { display: none; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .countdown-units { gap: var(--sp-2); }
  .countdown-unit  { min-width: 64px; padding: var(--sp-1) var(--sp-2); }
  .countdown-num   { font-size: 1.8rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-2); }
  .stat-divider { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .container { padding: 0 var(--sp-3); }

  .filter-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
}

@media (max-width: 480px) {
  .whatsapp-chat-label { display: none; }
  .whatsapp-chat-button { padding: 7px; }
  .contact-form { padding: var(--sp-3); }
  .modal { border-radius: var(--radius-lg) var(--radius-lg) 0 0; align-self: flex-end; }
  .modal-overlay { align-items: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Hidden bot-trap field; real visitors never interact with it. */
.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.form-feedback {
  padding: 0.8rem 1rem;
  margin-bottom: var(--sp-3);
  border-radius: 4px;
}

.form-feedback.success {
  color: #14532d;
  background: #dcfce7;
}

.form-feedback.error {
  color: #991b1b;
  background: #fee2e2;
}
