/* ============================================================
   NALUADA COLLEGE INSTITUTE — Master Stylesheet
   Aesthetic: Regal Navy & Gold — Premium African Academia
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --navy: #0d1b3e;
  --navy-mid: #1a2f5e;
  --navy-light: #253f7a;
  --gold: #c9952e;
  --gold-light: #e8b84b;
  --gold-pale: #fdf3db;
  --cream: #faf8f4;
  --white: #ffffff;
  --dark: #0a0f1e;
  --text: #2c2c3e;
  --muted: #6b6b80;
  --border: rgba(201,149,46,0.25);
  --shadow: 0 8px 40px rgba(13,27,62,0.12);
  --shadow-lg: 0 20px 60px rgba(13,27,62,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Typography ── */
h1,h2,h3,h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.section-title.light, .section-label.light { color: var(--white); }
.section-subtitle.light { color: rgba(255,255,255,0.75); }
.text-center { text-align: center; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── ANNOUNCEMENT TICKER ── */
.ticker-wrap {
  background: var(--gold);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
}
.ticker-inner {
  display: flex;
  gap: 60px;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-inner span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ticker-inner span::before {
  content: '★';
  margin-right: 12px;
  color: var(--navy-mid);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,149,46,0.3);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-emblem {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 2px 12px rgba(201,149,46,0.4);
}
.logo-text { line-height: 1.2; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  margin-left: 8px;
  box-shadow: 0 4px 15px rgba(201,149,46,0.4);
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,149,46,0.5); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ── HERO / SLIDER ── */
.hero-slider {
  position: relative;
  height: 94vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13,27,62,0.82) 0%,
    rgba(13,27,62,0.55) 50%,
    rgba(0,0,0,0.3) 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
  right: 0; left: 0;
}
.slide-text {
  max-width: 680px;
  animation: slideIn 0.8s ease forwards;
}
.slide-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.slide-text h1 {
  font-size: clamp(2rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 520px;
}
.slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,149,46,0.5);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); color: var(--gold); }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

@keyframes slideIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 20px;
  border-right: 1px solid rgba(201,149,46,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ── FEATURES ── */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 3rem;
}
.feature-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.feature-card p { font-size: 0.92rem; color: var(--muted); }

/* ── PROGRAMS ── */
.programs { background: var(--cream); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.program-img {
  height: 200px;
  overflow: hidden;
}
.program-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.program-card:hover .program-img img { transform: scale(1.06); }
.program-body { padding: 24px; }
.program-level {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}
.program-body h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.program-body p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.2rem; }
.program-link {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 6px;
}
.program-link::after { content: '→'; transition: transform 0.3s ease; }
.program-card:hover .program-link::after { transform: translateX(4px); }

/* ── DIRECTRESS QUOTE ── */
.directress-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.directress-section::before {
  content: '"';
  position: absolute;
  top: -40px; left: 5%;
  font-family: 'Playfair Display', serif;
  font-size: 30rem;
  color: rgba(201,149,46,0.06);
  line-height: 1;
  pointer-events: none;
}
.directress-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.directress-photo-wrap {
  text-align: center;
}
.directress-photo {
  width: 220px; height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--gold);
  margin: 0 auto;
  box-shadow: 0 0 0 10px rgba(201,149,46,0.15);
}
.directress-name {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-top: 1rem;
}
.directress-role {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.directress-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}
.directress-quote p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.signature {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.1rem;
  font-style: italic;
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 50px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}
.marquee-inner .sep {
  color: var(--gold);
  font-weight: 700;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── GALLERY PREVIEW ── */
.gallery-preview { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 3rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  min-height: 200px;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo-name { font-size: 1.2rem; display: block; margin-top: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  line-height: 1.8;
}
.footer-col h4 {
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,149,46,0.2);
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.8rem;
}
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--gold); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,46,0.1) 0%, transparent 70%);
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.page-hero .breadcrumb {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-hero .breadcrumb a { color: var(--gold); }
.gold-line {
  display: block;
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ── ABOUT PAGE ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  display: block;
}
.about-img-badge .lbl {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: var(--muted); margin-bottom: 1rem; }
.mission-values {
  background: var(--cream);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 3rem;
}
.mv-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.mv-card h3 { font-size: 1.1rem; margin-bottom: 0.8rem; }
.mv-card p { color: var(--muted); font-size: 0.92rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo {
  height: 220px;
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-info { padding: 20px; }
.team-info h4 { font-size: 1rem; margin-bottom: 4px; }
.team-info span { color: var(--gold); font-size: 0.82rem; font-weight: 600; }

/* ── GALLERY PAGE ── */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,62,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: white;
  font-size: 1.5rem;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(201,149,46,0.1);
}
.contact-info-card h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.contact-info-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,149,46,0.15);
  border: 1px solid rgba(201,149,46,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail .lbl {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.contact-detail .val {
  color: var(--white);
  font-size: 0.92rem;
  margin-top: 2px;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}
.contact-form h2 { margin-bottom: 0.4rem; }
.contact-form .sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--cream);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,149,46,0.15);
}
.form-group textarea { height: 130px; resize: none; }
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.submit-btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 16px 20px;
  color: #2e7d32;
  margin-top: 1rem;
  font-weight: 500;
}

/* ── FLOATING NOTIFICATION ── */
.floating-notif {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  z-index: 9000;
  max-width: 340px;
  transform: translateX(420px);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.floating-notif.show { transform: translateX(0); }
.floating-notif i { color: var(--gold); font-size: 1.1rem; }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 90px; right: 30px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(201,149,46,0.4);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 8000;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .directress-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .directress-photo { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; }
  .about-img-main { height: 340px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; align-items: flex-start; position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: var(--navy); padding: 80px 28px 28px; gap: 4px; z-index: 998; transform: translateX(100%); transition: transform 0.4s ease; }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-links a { padding: 12px 8px; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-cta { margin-left: 0 !important; margin-top: 8px; }
  .nav-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: auto; }
  .mv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .contact-info-card { padding: 36px 24px; }
  .slide-content { padding: 0 20px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 1; }
  .team-grid { grid-template-columns: 1fr; }
  .slider-arrow { display: none; }
}
