/* ================================================================
   SARASWATI MUSIC COLLEGE — STYLESHEET
   Colors: Navy #0B2341 · Gold #C9A227 · White #FFFFFF
   Fonts:  Playfair Display (headings) · Inter (body)
================================================================ */

/* ----------------------------------------------------------------
   CSS Custom Properties
---------------------------------------------------------------- */
:root {
  /* Brand colours */
  --navy:        #0B2341;
  --navy-dark:   #071829;
  --navy-mid:    #0f2e52;
  --gold:        #C9A227;
  --gold-light:  #ddb840;
  --gold-dark:   #a88220;
  --white:       #FFFFFF;
  --off-white:   #F8F5F0;
  --warm-light:  #F3EFE5;

  /* Text */
  --text:        #1a1a2e;
  --text-muted:  #6b7280;
  --border:      rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-head:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-h:       78px;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 28px rgba(0,0,0,0.11);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.16);
  --shadow-gold: 0 6px 24px rgba(201,162,39,0.35);

  /* Transitions */
  --t:           0.28s ease;
  --t-slow:      0.5s ease;
}

/* ----------------------------------------------------------------
   Reset & Base
---------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: color var(--t);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ----------------------------------------------------------------
   Typography helpers
---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 0;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  margin-bottom: 0.9rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
   Layout helpers
---------------------------------------------------------------- */
.section-padding { padding: 6rem 0; }

@media (max-width: 767px) {
  .section-padding { padding: 4rem 0; }
}

.bg-light-warm  { background-color: var(--warm-light); }
.text-gold      { color: var(--gold) !important; }
.text-white-70  { color: rgba(255,255,255,0.72); }

/* ----------------------------------------------------------------
   Buttons
---------------------------------------------------------------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  padding: 0.65rem 1.75rem;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
}

.btn-lg {
  padding: 0.875rem 2.25rem;
  font-size: 1rem;
}

/* Gold */
.btn-gold {
  background-color: var(--gold);
  border: 2px solid var(--gold);
  color: var(--navy) !important;
}
.btn-gold:hover, .btn-gold:focus-visible {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Navy */
.btn-navy {
  background-color: var(--navy);
  border: 2px solid var(--navy);
  color: var(--white) !important;
}
.btn-navy:hover, .btn-navy:focus-visible {
  background-color: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(11,35,65,0.28);
}

/* Outline navy */
.btn-outline-navy {
  background-color: transparent;
  border: 2px solid var(--navy);
  color: var(--navy) !important;
}
.btn-outline-navy:hover, .btn-outline-navy:focus-visible {
  background-color: var(--navy);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Focus ring (accessibility) */
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ----------------------------------------------------------------
   NAVBAR
---------------------------------------------------------------- */
#mainNav {
  height: var(--nav-h);
  background-color: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  z-index: 1050;
}

#mainNav.scrolled {
  background-color: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo-emblem {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--t);
}

.navbar-brand:hover .nav-logo-emblem {
  transform: rotate(-8deg) scale(1.05);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Nav links */
#mainNav .nav-link {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88) !important;
  padding: 0.5rem 0.8rem !important;
  position: relative;
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width var(--t);
  border-radius: 2px;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--gold) !important;
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
  width: 60%;
}

/* Mobile menu panel */
@media (max-width: 991px) {
  #navbarMain {
    background: var(--navy);
    padding: 1.25rem 1.5rem;
    margin-top: 0.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }
  #mainNav .nav-link::after { display: none; }
  #mainNav .nav-link { padding: 0.6rem 0.5rem !important; }
}

/* ----------------------------------------------------------------
   HERO SECTION
---------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Video / poster layer */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(7, 24, 41, 0.86) 0%,
    rgba(11, 35, 65, 0.72) 55%,
    rgba(7, 24, 41, 0.82) 100%
  );
}

/* Hero content */
.hero-content-wrapper {
  position: relative;
  z-index: 1;
  padding: 6rem 0 8rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.85;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
  transform-origin: top;
}

.scroll-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

@keyframes scrollDrop {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  70%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ----------------------------------------------------------------
   Hero entrance animations (applied immediately on load)
---------------------------------------------------------------- */
.anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp 0.85s cubic-bezier(.22,1,.36,1) forwards;
}
.anim-delay-1 { animation-delay: 0.18s; }
.anim-delay-2 { animation-delay: 0.36s; }
.anim-delay-3 { animation-delay: 0.54s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------
   Scroll-reveal classes (triggered via IntersectionObserver in JS)
---------------------------------------------------------------- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1),
              transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal-up    { transform: translateY(44px); }
.reveal-left  { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: none;
}

/* ----------------------------------------------------------------
   STATS SECTION
---------------------------------------------------------------- */
.stats-section {
  background: var(--navy);
  position: relative;
  z-index: 2;
}

.stat-item {
  padding: 2.75rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--t);
}

.stat-item--last,
.stat-item:last-child { border-right: none; }

.stat-item:hover { background: rgba(255,255,255,0.035); }

.stat-value-wrap {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.2rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

@media (max-width: 767px) {
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

/* ----------------------------------------------------------------
   ABOUT SECTION
---------------------------------------------------------------- */
.about-img-wrap {
  position: relative;
  display: block;
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.1;
}

.about-badge-year {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
}

.about-badge-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-lead {
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  color: var(--text);
}

.about-body {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0;
}

.about-features { display: flex; flex-direction: column; gap: 1rem; }

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.about-feature p { font-size: 0.88rem; color: var(--text-muted); }

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,162,39,0.12);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .about-main-img { height: 360px; }
  .about-badge { bottom: -12px; right: -8px; }
}

/* ----------------------------------------------------------------
   COURSES SECTION
---------------------------------------------------------------- */
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1),
              box-shadow 0.35s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.course-card-img {
  position: relative;
  overflow: hidden;
  height: 190px;
  flex-shrink: 0;
}

.course-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.course-card:hover .course-card-img img {
  transform: scale(1.09);
}

.course-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,35,65,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}

.course-card:hover .course-hover-overlay { opacity: 1; }

.course-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.course-icon {
  width: 38px;
  height: 38px;
  background: rgba(201,162,39,0.1);
  color: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.course-title {
  font-size: 1.15rem;
  color: var(--navy);
}

.course-desc {
  font-size: 0.865rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.course-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  padding-top: 0.65rem;
  transition: gap var(--t), color var(--t);
}

.course-link:hover {
  color: var(--gold-dark);
  gap: 0.6rem;
}

/* ----------------------------------------------------------------
   FACULTY SECTION
---------------------------------------------------------------- */
.faculty-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1),
              box-shadow 0.35s ease;
}

.faculty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.faculty-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.faculty-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t-slow);
}

.faculty-card:hover .faculty-img-wrap img { transform: scale(1.05); }

.faculty-social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,35,65,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity var(--t);
}

.faculty-card:hover .faculty-social-overlay { opacity: 1; }

.faculty-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: transform var(--t);
}

.faculty-social-link:hover { transform: scale(1.15); }

.faculty-info { padding: 1.5rem 1.25rem; }

.faculty-name {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.faculty-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  display: block;
}

.faculty-bio {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ----------------------------------------------------------------
   ALUMNI SECTION
---------------------------------------------------------------- */
.alumni-section {
  background: var(--navy);
}

.alumni-desc {
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  font-size: 1.025rem;
}

.alumni-stats { flex-wrap: wrap; gap: 2rem !important; }

.alumni-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.alumni-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0.3rem 0 0;
  display: block;
}

/* Mosaic grid */
.alumni-mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0.75rem;
}

.mosaic-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  grid-row: 1 / 3;
}

.mosaic-main img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.mosaic-main:hover img { transform: scale(1.04); }

.mosaic-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mosaic-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1;
}

.mosaic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.mosaic-thumb:hover img { transform: scale(1.06); }

.mosaic-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(7,24,41,0.88));
  padding: 1.75rem 0.9rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

.mosaic-caption p { margin: 0; }

@media (max-width: 767px) {
  .alumni-mosaic { grid-template-columns: 1fr; }
  .mosaic-main { grid-row: 1; }
  .mosaic-main img { min-height: 240px; }
  .mosaic-side { flex-direction: row; }
  .mosaic-thumb { min-height: 140px; }
}

@media (max-width: 480px) {
  .mosaic-side { display: none; }
}

/* ----------------------------------------------------------------
   TESTIMONIALS SECTION
---------------------------------------------------------------- */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(.22,1,.36,1),
              box-shadow 0.35s ease;
}

.testi-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.testi-card--featured {
  background: var(--navy);
  border-color: transparent;
}

.testi-card--featured .testi-text { color: rgba(255,255,255,0.82); }

.testi-card--featured .testi-name { color: var(--white); }

.testi-card--featured .testi-batch { color: rgba(255,255,255,0.5); }

.testi-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: 0.945rem;
  line-height: 1.85;
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.testi-name {
  display: block;
  font-family: var(--font-head);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
}

.testi-batch {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

/* ----------------------------------------------------------------
   EVENTS SECTION
---------------------------------------------------------------- */
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1),
              box-shadow 0.35s ease;
}

.event-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.event-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}

.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.event-card:hover .event-img-wrap img { transform: scale(1.07); }

.event-date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.75rem;
  text-align: center;
  line-height: 1.1;
  font-weight: 700;
  min-width: 52px;
}

.event-day {
  display: block;
  font-family: var(--font-head);
  font-size: 1.55rem;
  line-height: 1;
}

.event-month {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: block;
}

.event-title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.event-desc {
  font-size: 0.865rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.event-meta {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.event-meta li { display: flex; align-items: center; gap: 0.35rem; }

/* ----------------------------------------------------------------
   ADMISSIONS CTA BANNER
---------------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: 9rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(7,24,41,0.93) 0%,
    rgba(11,35,65,0.88) 100%
  );
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.68);
}

.footer-top {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Footer reuses .nav-logo markup */
.footer-brand .nav-logo-title,
.footer-brand .nav-logo-sub { color: var(--white); }
.footer-brand .nav-logo-sub { color: rgba(255,255,255,0.55); }

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: background var(--t), border-color var(--t),
              color var(--t), transform var(--t);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-col-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t), padding-left var(--t);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

/* Contact / address */
.footer-address { font-style: normal; }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
  font-size: 0.875rem;
}

.footer-contact-row i {
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 0.18rem;
  flex-shrink: 0;
}

.footer-contact-row a {
  color: rgba(255,255,255,0.65);
}

.footer-contact-row a:hover { color: var(--gold); }

/* Footer bottom bar */
.footer-bottom {
  padding: 1.2rem 0;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  transition: color var(--t);
}

.footer-bottom a:hover { color: var(--gold); }

.footer-sep {
  margin: 0 0.45rem;
  color: rgba(255,255,255,0.2);
}

/* ----------------------------------------------------------------
   BACK-TO-TOP BUTTON (injected by JS)
---------------------------------------------------------------- */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-md);
  transition: opacity var(--t), visibility var(--t), transform var(--t);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-4px);
  background: var(--gold-light);
}

/* ----------------------------------------------------------------
   Utility: selection colour
---------------------------------------------------------------- */
::selection {
  background: var(--gold);
  color: var(--navy);
}

/* ----------------------------------------------------------------
   RESPONSIVE OVERRIDES
---------------------------------------------------------------- */
@media (max-width: 575px) {
  .hero-title { font-size: 2rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cta-section { padding: 5rem 0; }

  .about-badge { right: 0; bottom: -12px; }

  .stat-item { padding: 2rem 1rem; }
}

@media (max-width: 991px) {
  .about-img-wrap { margin-bottom: 2rem; }
}

/* ================================================================
   PHASE 3 — Extended Components
   Topbar · Dropdown · Gallery · Legacy · Footer · Popup modal ·
   Program cards · Fee tables · Page heroes · Internal page styles
================================================================ */

/* ── Topbar ─────────────────────────────────────────────── */
.site-topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-link { color: rgba(255,255,255,.8); text-decoration: none; transition: color var(--t); }
.topbar-link:hover { color: var(--gold); }
.topbar-wa { color: var(--gold) !important; font-weight: 600; }
.topbar-address { color: rgba(255,255,255,.6); }

/* ── Navbar dropdown ───────────────────────────────────── */
.dropdown-menu-navy {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: .5rem 0;
  min-width: 240px;
}
.dropdown-menu-navy .dropdown-item {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  padding: .5rem 1.25rem;
  transition: background var(--t), color var(--t);
}
.dropdown-menu-navy .dropdown-item:hover { background: rgba(201,162,39,.12); color: var(--gold); }
.dropdown-menu-navy .dropdown-divider { border-color: rgba(255,255,255,.1); }
.dropdown-menu-navy .fw-semibold { color: var(--gold); }

/* ── Back-to-top (PHP version) ─────────────────────────── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  border: none; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; z-index: 999;
  opacity: 0; visibility: hidden;
  box-shadow: var(--shadow-md);
  transition: opacity var(--t), visibility var(--t), transform var(--t);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); background: var(--gold-light); }

/* ── Homepage Gallery section ──────────────────────────── */
.gallery-section { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
}
@media (max-width: 991px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; background: var(--navy);
  aspect-ratio: 4/3; cursor: pointer;
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,35,65,.85) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 1.2rem;
  opacity: 0; transition: opacity var(--t);
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-overlay span { color: #fff; font-size: .85rem; }

/* Gallery lightbox */
.gallery-lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.92); z-index: 9999;
  align-items: center; justify-content: center;
}
.gallery-lightbox.active { display: flex; }
.gallery-lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.gallery-lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer;
}

/* ── Legacy dark section ───────────────────────────────── */
.legacy-section {
  background: var(--navy-dark); color: #fff;
  padding: 7rem 0; position: relative; overflow: hidden;
}
.legacy-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A227' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.legacy-kicker { color: var(--gold); font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 600; margin-bottom: 1rem; }
.legacy-heading { font-family: var(--font-head); font-size: clamp(1.8rem,4vw,2.8rem); color: #fff; line-height: 1.18; margin-bottom: 1.5rem; }
.legacy-body { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.75; }
.legacy-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.legacy-stat-number { font-family: var(--font-head); font-size: 2.5rem; color: var(--gold); font-weight: 700; display: block; }
.legacy-stat-label  { color: rgba(255,255,255,.6); font-size: .85rem; }
.legacy-img-stack { position: relative; }
.legacy-img-main { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4/3; }
.legacy-img-inset {
  position: absolute; bottom: -1.5rem; right: -1.5rem; width: 45%;
  border-radius: var(--radius); border: 4px solid var(--navy-dark);
  box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4/3;
}
@media (max-width: 767px) {
  .legacy-img-inset { display: none; }
  .legacy-stats { gap: 1rem; }
  .legacy-stat-number { font-size: 1.8rem; }
}

/* ── Footer ────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-top { padding: 5rem 0 4rem; }
.footer-brand { text-decoration: none; }
.footer-logo-wrap { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer-logo-emblem {
  width: 46px; height: 46px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.3rem; flex-shrink: 0;
}
.footer-logo-title { font-family: var(--font-head); font-size: 1.35rem; color: #fff; display: block; line-height: 1; }
.footer-logo-sub { font-size: .75rem; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; }
.footer-tagline { color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .6rem; flex-wrap: wrap; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background var(--t), color var(--t); text-decoration: none;
}
.social-btn:hover { background: var(--gold); color: var(--navy); }
.social-wa-btn:hover { background: #25D366 !important; color: #fff !important; }
.footer-heading { font-family: var(--font-head); font-size: 1.05rem; color: #fff; margin-bottom: 1.2rem; font-weight: 700; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; transition: color var(--t), padding-left var(--t); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: .9rem; color: rgba(255,255,255,.65); }
.footer-contact-list li i { color: var(--gold); flex-shrink: 0; margin-top: .2rem; }
.footer-contact-list a { color: rgba(255,255,255,.8); }
.footer-contact-list a:hover { color: var(--gold); }
.btn-wa {
  background: #25D366; color: #fff; border: none;
  padding: .55rem 1.2rem; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600; display: inline-flex;
  align-items: center; text-decoration: none;
  transition: background var(--t), transform var(--t);
}
.btn-wa:hover { background: #1ebe5a; color: #fff; transform: translateY(-2px); }
.footer-bottom {
  background: rgba(0,0,0,.25); padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.45); font-size: .8rem;
}
.footer-legal-link { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-legal-link:hover { color: var(--gold); }

/* ── Enquiry Popup Modal ───────────────────────────────── */
.enquiry-modal .modal-dialog { max-width: 860px; margin: 1rem auto; }
.enquiry-modal-content {
  border: none; border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: row;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.enquiry-panel-left {
  width: 42%; min-height: 100%;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  background-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=600&q=70');
  background-size: cover; background-position: center;
  position: relative; flex-direction: column; justify-content: flex-end;
  display: flex;
}
.enquiry-panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy-dark) 0%, rgba(11,35,65,.75) 100%);
  display: flex; align-items: flex-end; padding: 2.5rem;
}
.enquiry-panel-content { width: 100%; }
.enquiry-panel-emblem {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.enquiry-panel-content h2 { color: #fff; font-size: 1.7rem; margin-bottom: .75rem; line-height: 1.2; }
.enquiry-panel-content p  { color: rgba(255,255,255,.65); font-size: .9rem; }
.enquiry-features { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.enquiry-features li { color: rgba(255,255,255,.8); font-size: .85rem; margin-bottom: .6rem; display: flex; align-items: center; gap: .5rem; }
.enquiry-features li i { color: var(--gold); }
.enquiry-panel-right { flex: 1; padding: 2.5rem; background: #fff; position: relative; overflow-y: auto; max-height: 90vh; }
.enquiry-close { position: absolute; top: 1.25rem; right: 1.25rem; z-index: 1; }
.enquiry-kicker { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: .4rem; }
.enquiry-form-heading { font-family: var(--font-head); font-size: 1.6rem; color: var(--navy); margin-bottom: .4rem; }
.enquiry-sub { color: var(--text-muted); font-size: .88rem; margin-bottom: 1.75rem; }
.enquiry-success { text-align: center; padding: 2.5rem 1rem; }
.enquiry-success-icon { font-size: 3rem; color: #22c55e; margin-bottom: 1rem; }
.enquiry-success h4 { color: var(--navy); margin-bottom: .5rem; }
.enquiry-privacy { font-size: .75rem; color: var(--text-muted); text-align: center; margin-top: .75rem; margin-bottom: 0; }
@media (max-width: 767px) {
  .enquiry-panel-left { display: none !important; }
  .enquiry-panel-right { max-height: 95vh; }
  .enquiry-modal .modal-dialog { margin: .5rem; }
}

/* ── Breadcrumb ────────────────────────────────────────── */
.page-breadcrumb { background: var(--warm-light); padding: .9rem 0; border-bottom: 1px solid var(--border); }
.breadcrumb { margin: 0; font-size: .83rem; }
.breadcrumb-item a { color: var(--navy); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ── Page hero (internal pages) ────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 100px) 0 5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(7,24,41,.93) 0%, rgba(7,24,41,.55) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-kicker { font-size: .78rem; text-transform: uppercase; letter-spacing: .15em; color: var(--gold); font-weight: 600; margin-bottom: .75rem; }
.page-hero-title { font-family: var(--font-head); font-size: clamp(2rem,5vw,3.2rem); color: #fff; line-height: 1.15; margin-bottom: 1rem; }
.page-hero-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 680px; line-height: 1.65; }

/* ── Program overview cards ─────────────────────────────── */
.program-overview-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column; height: 100%;
  border: 1px solid var(--border);
}
.program-overview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.program-overview-img { width: 100%; height: 200px; object-fit: cover; }
.program-overview-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.program-overview-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(201,162,39,.12); color: var(--gold); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.program-overview-title { font-family: var(--font-head); font-size: 1.25rem; color: var(--navy); margin-bottom: .6rem; }
.program-overview-desc { color: var(--text-muted); font-size: .9rem; line-height: 1.6; flex: 1; }
.program-overview-card .btn { margin-top: 1.25rem; align-self: flex-start; }

/* ── Fee structure page ─────────────────────────────────── */
.fee-tabs .nav-link {
  border: 1px solid var(--border) !important; border-radius: var(--radius-sm) !important;
  color: var(--navy); margin: .2rem; font-size: .88rem; font-weight: 500;
  padding: .5rem 1rem; transition: all var(--t);
}
.fee-tabs .nav-link:hover { background: var(--warm-light); border-color: var(--gold) !important; }
.fee-tabs .nav-link.active { background: var(--navy) !important; color: #fff !important; border-color: var(--navy) !important; }
.fee-table-wrap { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--border); overflow: hidden; margin-bottom: 2rem; }
.fee-table-wrap table thead th { background: var(--navy); color: #fff; font-weight: 600; font-size: .85rem; border: none; }
.fee-table-wrap table tbody tr:nth-child(even) { background: var(--off-white); }
.fee-table-wrap table tbody td { font-size: .9rem; vertical-align: middle; }
.fee-badge-request { background: rgba(201,162,39,.12); color: var(--gold-dark); border: 1px solid rgba(201,162,39,.3); padding: .2rem .6rem; border-radius: 20px; font-size: .78rem; white-space: nowrap; }
.fee-admission-box { background: var(--warm-light); border-radius: var(--radius); border-left: 4px solid var(--gold); padding: 1.5rem 2rem; margin-bottom: 2.5rem; }
.fee-quarterly-box { background: linear-gradient(135deg,rgba(11,35,65,.04) 0%,rgba(201,162,39,.08) 100%); border: 1px solid rgba(201,162,39,.25); border-radius: var(--radius); padding: 1.5rem; }
.fee-enquire-box { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 2rem; text-align: center; }
.fee-enquire-box h5 { color: #fff; margin-bottom: .5rem; }
.fee-enquire-box p  { color: rgba(255,255,255,.7); margin-bottom: 1.25rem; }

/* ── Program detail page ────────────────────────────────── */
.highlight-card { background: var(--warm-light); border-radius: var(--radius); padding: 1.5rem; text-align: center; border: 1px solid var(--border); }
.highlight-card i { font-size: 1.75rem; color: var(--gold); margin-bottom: .75rem; display: block; }
.highlight-card h6 { color: var(--navy); font-weight: 700; margin-bottom: .25rem; }
.highlight-card p  { color: var(--text-muted); font-size: .85rem; margin: 0; }

.program-learn-list { list-style: none; padding: 0; margin: 0; }
.program-learn-list li { padding: .5rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .75rem; color: var(--text); font-size: .95rem; }
.program-learn-list li:last-child { border-bottom: none; }
.program-learn-list li i { color: var(--gold); flex-shrink: 0; }

.program-sidebar-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.program-sidebar-cta { background: var(--navy); color: #fff; padding: 2rem; }
.program-sidebar-cta h4 { color: #fff; margin-bottom: .5rem; }
.program-sidebar-cta p  { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1.25rem; }
.program-sidebar-info { padding: 1.5rem; }
.program-info-item { display: flex; justify-content: space-between; align-items: center; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.program-info-item:last-child { border-bottom: none; }
.program-info-item strong { color: var(--navy); }
.program-info-item span { color: var(--text-muted); }

/* ── CTA strip ─────────────────────────────────────────── */
.cta-strip { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 5rem 0; text-align: center; color: #fff; }
.cta-strip h2 { color: #fff; margin-bottom: 1rem; }
.cta-strip p  { color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-strip-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Contact page ──────────────────────────────────────── */
.contact-info-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 2rem; height: 100%; }
.contact-info-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(201,162,39,.1); color: var(--gold); font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.contact-map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.contact-map-wrap iframe { display: block; width: 100%; border: none; }

/* ── Events page ───────────────────────────────────────── */
.event-card-h { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: box-shadow var(--t); display: flex; }
.event-card-h:hover { box-shadow: var(--shadow-md); }
.event-card-h-img { width: 220px; flex-shrink: 0; object-fit: cover; }
.event-card-h-body { padding: 1.75rem; flex: 1; }
.event-date-badge-lg { background: var(--navy); color: var(--gold); border-radius: var(--radius-sm); padding: .6rem 1rem; text-align: center; display: inline-block; margin-bottom: 1rem; }
.event-date-badge-lg .day   { font-size: 2rem; font-weight: 800; line-height: 1; display: block; }
.event-date-badge-lg .month { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 767px) { .event-card-h { flex-direction: column; } .event-card-h-img { width: 100%; height: 180px; } }

/* ── Gallery full page ─────────────────────────────────── */
.gallery-filter-btn { font-size: .85rem; border-radius: 20px; padding: .4rem 1.1rem; }
.gallery-filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.gallery-masonry { columns: 4 200px; gap: 1rem; }
.gallery-masonry-item { break-inside: avoid; margin-bottom: 1rem; cursor: pointer; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-masonry-item img { width: 100%; display: block; transition: transform var(--t-slow); }
.gallery-masonry-item:hover img { transform: scale(1.04); }

/* ── Alumni page ───────────────────────────────────────── */
.alumni-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 2rem; display: flex; gap: 1.5rem; align-items: flex-start; transition: box-shadow var(--t); }
.alumni-card:hover { box-shadow: var(--shadow-md); }
.alumni-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--gold); background: var(--warm-light); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--navy); }
.alumni-name        { font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); }
.alumni-achievement { color: var(--gold); font-size: .88rem; font-weight: 600; margin-bottom: .5rem; }
.alumni-desc        { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }

/* ── Admissions page ───────────────────────────────────── */
.admissions-step { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 2.5rem; }
.admissions-step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--navy); font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.admissions-step-body h5 { color: var(--navy); margin-bottom: .4rem; }
.admissions-step-body p  { color: var(--text-muted); margin: 0; }
.doc-list { list-style: none; padding: 0; margin: 0; }
.doc-list li { display: flex; align-items: center; gap: .75rem; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .95rem; }
.doc-list li i { color: var(--gold); }
.doc-list li:last-child { border-bottom: none; }

/* ── Content pages (curriculum / rules / affiliation) ─── */
.content-page { padding: 5rem 0; }
.section-title-underline { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: .75rem; margin-bottom: 1.5rem; }
.content-table-wrap { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; margin-bottom: 1.5rem; }

/* ── Studios page ──────────────────────────────────────── */
.studio-feature-card { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; height: 100%; }
.studio-feature-card i { font-size: 3rem; color: var(--gold); margin-bottom: 1.25rem; display: block; }
.studio-feature-card h4 { color: #fff; margin-bottom: .75rem; }
.studio-feature-card p  { color: rgba(255,255,255,.7); font-size: .9rem; }
