/* =============================================
   GHUNGROO KATHAK ACADEMY – STYLESHEET
   Color Palette:
   - Deep Maroon / Burgundy: #6B1A1A
   - Rich Gold: #C8960C
   - Warm Gold Light: #F0C040
   - Amber/Orange: #D4700A
   - Dark BG: #1A0A00
   - Off-white: #FDF6E3
   - Text Dark: #2C1A00
============================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: #2C1A00;
  background: #FDF6E3;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, #C8960C, #F0C040);
  color: #1A0A00;
  border-color: #C8960C;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #F0C040, #C8960C);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,150,12,0.4);
}
.btn-primary {
  background: #6B1A1A;
  color: #F0C040;
  border-color: #6B1A1A;
}
.btn-primary:hover {
  background: #8B2020;
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: #FDF6E3;
  border-color: rgba(253,246,227,0.7);
}
.btn-outline-light:hover {
  background: rgba(253,246,227,0.15);
  border-color: #FDF6E3;
}
.btn-outline-gold {
  background: transparent;
  color: #C8960C;
  border-color: #C8960C;
}
.btn-outline-gold:hover {
  background: #C8960C;
  color: #1A0A00;
}
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; text-align: center; }

/* ===== SECTION SHARED ===== */
.section { padding: 90px 0; }
.section-dark { background: #1A0A00; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C8960C;
  margin-bottom: 10px;
}
.section-label.light { color: #F0C040; }
.section-title { color: #2C1A00; margin-bottom: 16px; }
.section-title.light { color: #FDF6E3; }
.section-subtitle { color: #7A5C3A; font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-subtitle.light { color: #C8A96A; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.site-header.scrolled {
  background: rgba(26,10,0,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  padding: 10px 0;
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 12px rgba(200,150,12,0.3);
  transition: transform 0.3s;
}
.logo-img:hover { transform: scale(1.05); }
.footer-logo-img {
  height: 80px;
  margin-bottom: 8px;
}
.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #FDF6E3;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: #F0C040;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.main-nav a:hover { color: #F0C040; }
.main-nav a:hover::after { transform: scaleX(1); }
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #F0C040;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A0A00 0%, #3D1A00 40%, #6B2A00 70%, #8B3A10 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,150,12,0.08) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-text { color: #FDF6E3; }
.hero-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: #F0C040;
  margin-bottom: 12px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #FDF6E3;
  margin-bottom: 16px;
}
.hero-title span { color: #F0C040; }
.hero-divider {
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #C8960C);
}
.hero-divider::after { background: linear-gradient(to left, transparent, #C8960C); }
.ornament { color: #C8960C; font-size: 1.2rem; }
.admission-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D4700A, #C8960C);
  color: #FDF6E3;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 10px 28px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(212,112,10,0.5);
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(212,112,10,0.5); }
  50% { box-shadow: 0 6px 28px rgba(212,112,10,0.8); }
}
.hero-courses {
  margin-bottom: 32px;
}
.hero-courses li {
  font-size: 1.05rem;
  color: #E8D4A0;
  padding: 6px 0 6px 24px;
  position: relative;
}
.hero-courses li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F0C040;
  font-size: 1.2rem;
}
.hero-courses li:first-child { list-style: none; padding-left: 0; font-weight: 700; color: #FDF6E3; }
.hero-courses li:first-child::before { display: none; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #C8A96A;
}
.hero-contact a { color: #F0C040; font-weight: 700; }
.hero-contact a:hover { text-decoration: underline; }
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 3px rgba(200,150,12,0.3);
  object-fit: cover;
}
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #C8960C;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #C8960C, #F0C040);
  color: #1A0A00;
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(200,150,12,0.4);
}
.badge-num { display: block; font-size: 2rem; font-weight: 900; font-family: 'Playfair Display', serif; line-height: 1; }
.badge-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.about-content .section-label { display: block; margin-bottom: 8px; }
.about-desc { color: #5A3A1A; line-height: 1.8; margin-bottom: 16px; font-size: 1.02rem; }
.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px;
  background: linear-gradient(135deg, #FFF8E8, #FDF6E3);
  border-radius: 16px;
  border: 1px solid rgba(200,150,12,0.2);
}
.stat { text-align: center; flex: 1; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: #C8960C; }
.stat-label { font-size: 0.8rem; color: #7A5C3A; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ===== COURSES ===== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.course-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: 20px;
  padding: 36px 28px;
  color: #E8D4A0;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  border-color: rgba(200,150,12,0.5);
}
.course-card.featured {
  background: linear-gradient(145deg, rgba(200,150,12,0.12), rgba(200,150,12,0.04));
  border-color: rgba(200,150,12,0.5);
  box-shadow: 0 8px 32px rgba(200,150,12,0.15);
}
.course-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C8960C, #F0C040);
  color: #1A0A00;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.course-icon { font-size: 2.5rem; margin-bottom: 16px; }
.course-card h3 { color: #FDF6E3; margin-bottom: 12px; font-size: 1.25rem; }
.course-card p { font-size: 0.95rem; line-height: 1.7; color: #C8A96A; margin-bottom: 20px; }
.course-features { margin-bottom: 24px; }
.course-features li {
  font-size: 0.88rem;
  color: #E8D4A0;
  padding: 4px 0 4px 20px;
  position: relative;
}
.course-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F0C040;
  font-weight: 700;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.why-card {
  background: #FFF8E8;
  border: 1px solid rgba(200,150,12,0.15);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200,150,12,0.15);
}
.why-icon { font-size: 2.4rem; margin-bottom: 14px; }
.why-card h4 { color: #6B1A1A; margin-bottom: 10px; font-size: 1.1rem; }
.why-card p { color: #5A3A1A; font-size: 0.95rem; line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}
.gi-large {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,0,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #F0C040; font-weight: 700; font-size: 0.9rem; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.03); }
.gallery-placeholder span { font-size: 2.5rem; }
.gallery-placeholder p { font-size: 0.85rem; font-weight: 700; text-align: center; }
.gp1 { background: linear-gradient(135deg, #3D1A00, #6B2A00); color: #F0C040; }
.gp2 { background: linear-gradient(135deg, #6B1A1A, #8B2020); color: #F0C040; }
.gp3 { background: linear-gradient(135deg, #1A3A1A, #2A5A2A); color: #C8D4A0; }
.gp4 { background: linear-gradient(135deg, #1A1A3A, #2A2A6B); color: #C0C8F0; }
.gp5 { background: linear-gradient(135deg, #3A2A00, #6B5A00); color: #F0E040; }

/* ===== PROFESSIONAL PHOTO GALLERY ===== */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 48px;
}
.pg-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: #2A1000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pg-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(200,150,12,0.3);
}
.pg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pg-item:hover img { transform: scale(1.08); }
.pg-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,10,0,0.85));
  padding: 24px 12px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pg-item:hover .pg-overlay { opacity: 1; }
.pg-overlay span {
  color: #F0C040;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.8);
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
}
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(200,150,12,0.8);
  color: #1A0A00;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-caption {
  color: #F0C040;
  font-size: 0.9rem;
  margin-top: 16px;
  text-align: center;
}

/* Video Section */
.video-section {
  margin: 48px 0;
}
.video-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #F0C040;
  text-align: center;
  margin-bottom: 28px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.video-item {
  background: #1A0A00;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(200,150,12,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}
.video-item:hover { transform: translateY(-4px); }
.video-item video {
  width: 100%;
  display: block;
  max-height: 220px;
  object-fit: cover;
  background: #000;
}
.video-caption {
  padding: 10px 14px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
}
@media (max-width: 600px) {
  .photo-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .video-grid { grid-template-columns: 1fr; }
}

/* ===== PERFORMANCE VIDEO SECTION ===== */
.perf-video-section {
  margin: 48px 0;
  background: linear-gradient(135deg, #0D0500, #1A0A00);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(200,150,12,0.2);
}
.perf-video-header {
  text-align: center;
  margin-bottom: 32px;
}
.perf-video-label {
  display: inline-block;
  background: rgba(200,150,12,0.15);
  color: #C8960C;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  border: 1px solid rgba(200,150,12,0.3);
  margin-bottom: 10px;
}
.perf-video-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #F0C040;
  margin: 8px 0;
}
.perf-video-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin: 0;
}
.perf-featured {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
  align-items: center;
}
.perf-featured-video {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.perf-featured-video video {
  width: 100%;
  display: block;
  border-radius: 14px;
  background: #000;
}
.perf-featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(200,150,12,0.9);
  color: #1A0A00;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.perf-feat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #F0C040;
  margin: 0 0 12px;
}
.perf-feat-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 16px;
}
.perf-feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.perf-feat-tags span {
  background: rgba(200,150,12,0.12);
  border: 1px solid rgba(200,150,12,0.3);
  color: #C8960C;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.perf-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.perf-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.perf-thumb.active { border-color: #C8960C; }
.perf-thumb:hover { transform: translateY(-3px); border-color: rgba(200,150,12,0.6); }
.perf-thumb video {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
  background: #000;
  pointer-events: none;
}
.perf-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-size: 1.4rem;
  transition: background 0.2s;
}
.perf-thumb:hover .perf-thumb-overlay { background: rgba(200,150,12,0.3); }
.perf-thumb.active .perf-thumb-overlay { background: rgba(200,150,12,0.2); color: #F0C040; }
.perf-thumb p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  font-size: 0.7rem;
  text-align: center;
  padding: 12px 6px 5px;
  margin: 0;
}
@media (max-width: 768px) {
  .perf-featured { grid-template-columns: 1fr; }
  .perf-thumb-row { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SHORT REELS SECTION ===== */
.reels-section {
  margin: 48px 0;
}
.reels-header {
  text-align: center;
  margin-bottom: 32px;
}
.reels-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(131,58,180,0.2), rgba(253,29,29,0.2));
  color: #e0a0ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  border: 1px solid rgba(200,100,200,0.3);
  margin-bottom: 10px;
}
.reels-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #F0C040;
  margin: 8px 0;
}
.reels-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin: 0;
}
.reels-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.reel-card {
  text-decoration: none;
  color: #fff;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(200,100,200,0.3);
}
.reel-thumb {
  aspect-ratio: 9 / 16;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background-color: #1A0A00;
}
.reel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  font-size: 1.8rem;
  color: rgba(255,255,255,0.9);
  transition: background 0.2s;
}
.reel-card:hover .reel-play { background: rgba(131,58,180,0.4); }
.reel-ig-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.reel-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 8px 6px 4px;
  margin: 0;
  background: #1A0A00;
}
.reel-view-all .reel-thumb.reel-all-bg {
  background: linear-gradient(135deg, #1A0A00, #2A0A2A);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed rgba(200,100,200,0.4);
}
.reel-all-icon { display: flex; align-items: center; justify-content: center; }
.reel-all-text {
  color: #F0C040;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 0 10px;
  margin: 0;
}
@media (max-width: 900px) { .reels-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .reels-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== POSTER CAROUSEL ===== */
.poster-carousel-section {
  background: #1A0A00;
  padding: 40px 0;
}
.poster-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}
.poster-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.poster-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A0A00;
}
.poster-slide img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  display: block;
  border-radius: 20px;
}
.poster-prev, .poster-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(200,150,12,0.85);
  color: #1A0A00;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.poster-prev { left: 16px; }
.poster-next { right: 16px; }
.poster-prev:hover, .poster-next:hover { background: #C8960C; }
.poster-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.poster-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
}
.poster-dot.active { background: #C8960C; }
@media (max-width: 600px) {
  .poster-slide img { max-height: 400px; }
  .poster-prev, .poster-next { width: 36px; height: 36px; font-size: 1.5rem; }
}

/* ===== INSTAGRAM GALLERY CTA ===== */
.gi-instagram-cta {
  display: flex;
  align-items: stretch;
}
.instagram-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, #1A0A00, #2A1000);
  border: 2px solid rgba(200,150,12,0.3);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  height: 100%;
  gap: 12px;
  transition: all 0.3s ease;
  width: 100%;
}
.instagram-cta-card:hover {
  border-color: #C8960C;
  background: linear-gradient(135deg, #2A1000, #3A1800);
  transform: translateY(-4px);
}
.ig-icon { margin-bottom: 4px; }
.ig-handle {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #F0C040;
  margin: 0;
}
.ig-cta-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.5;
}
.ig-btn {
  display: inline-block;
  margin-top: 8px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}
.instagram-cta-card:hover .ig-btn { opacity: 0.9; }
.instagram-note {
  text-align: center;
  margin-top: 28px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(200,150,12,0.2);
}
.instagram-note p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin: 0; }
.instagram-note a { color: #F0C040; }
.instagram-note a:hover { color: #fff; }
.instagram-feed-section {
  margin-top: 40px;
}
.instagram-feed-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: 16px;
  padding: 20px 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.ig-feed-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #F0C040;
  margin: 0;
}
.ig-feed-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 4px 0 0;
}
.ig-follow-btn {
  margin-left: auto;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.ig-follow-btn:hover { opacity: 0.85; color: #fff; }

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  background: #1DA851;
  transform: scale(1.07);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
  color: #fff;
}
.whatsapp-float svg { flex-shrink: 0; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.85); }
}
@media (max-width: 480px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}

/* ===== TESTIMONIALS ===== */

/* Rating Summary */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #FFF8E8;
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: 20px;
  padding: 32px 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.rating-big { text-align: center; }
.rating-number { display: block; font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: #C8960C; line-height: 1; }
.rating-stars-big { font-size: 1.4rem; color: #C8960C; letter-spacing: 3px; margin: 4px 0; }
.rating-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #7A5C3A; font-weight: 700; }
.rating-divider { width: 1px; height: 80px; background: rgba(200,150,12,0.2); flex-shrink: 0; }
.rating-bars { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #7A5C3A; }
.rating-bar-row span:first-child { width: 28px; text-align: right; color: #C8960C; font-weight: 700; }
.rating-bar-row span:last-child { width: 36px; color: #7A5C3A; }
.bar-track { flex: 1; height: 8px; background: rgba(200,150,12,0.15); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(to right, #C8960C, #F0C040); border-radius: 4px; }
.rating-highlights { display: flex; flex-direction: column; gap: 10px; }
.highlight-pill { background: rgba(200,150,12,0.1); border: 1px solid rgba(200,150,12,0.25); border-radius: 50px; padding: 6px 16px; font-size: 0.85rem; color: #5A3A1A; font-weight: 700; white-space: nowrap; }

/* Testimonial Cards */
.t-quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(200,150,12,0.2);
  line-height: 0.8;
  margin-bottom: 8px;
  display: block;
}
.t-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 10px;
}
.t-featured {
  background: linear-gradient(145deg, #FFF8E8, #FFF0D0);
  border: 2px solid rgba(200,150,12,0.4);
  box-shadow: 0 8px 32px rgba(200,150,12,0.15);
}
.t-badge {
  display: inline-block;
  margin-top: 6px;
  background: linear-gradient(135deg, #C8960C, #F0C040);
  color: #1A0A00;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
}
.av-red { background: linear-gradient(135deg, #C8200C, #E84020); }
.av-gold { background: linear-gradient(135deg, #C8960C, #F0C040); color: #1A0A00; }
.av-maroon { background: linear-gradient(135deg, #6B1A1A, #8B2020); }
.av-green { background: linear-gradient(135deg, #1A6B1A, #2A8B2A); }
.av-blue { background: linear-gradient(135deg, #1A1A8B, #2A2ABB); }
.av-purple { background: linear-gradient(135deg, #5A1A8B, #7A2ABB); }
.av-orange { background: linear-gradient(135deg, #C85A0C, #E87A2A); }

/* Testimonials CTA */
.t-long .testimonial-text {
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #C8960C #FFF0D0;
  padding-right: 6px;
}
.t-long .testimonial-text::-webkit-scrollbar { width: 5px; }
.t-long .testimonial-text::-webkit-scrollbar-track { background: #FFF0D0; border-radius: 4px; }
.t-long .testimonial-text::-webkit-scrollbar-thumb { background: #C8960C; border-radius: 4px; }

.testimonials-cta {
  text-align: center;
  margin-top: 56px;
  padding: 40px;
  background: linear-gradient(135deg, #FFF8E8, #FFF0D0);
  border-radius: 20px;
  border: 1px solid rgba(200,150,12,0.2);
}
.testimonials-cta p { font-size: 1.1rem; color: #5A3A1A; margin-bottom: 20px; font-style: italic; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: #FFF8E8;
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(200,150,12,0.15);
  line-height: 1;
}
.stars { color: #C8960C; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: #5A3A1A; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8960C, #F0C040);
  color: #1A0A00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: #2C1A00; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.82rem; color: #7A5C3A; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6B1A1A 0%, #3D1A00 50%, #6B2A00 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  color: #FDF6E3;
}
.cta-content h2 { color: #F0C040; margin-bottom: 16px; }
.cta-content p { color: #E8D4A0; max-width: 600px; margin: 0 auto 32px; line-height: 1.7; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-info .section-label { display: block; margin-bottom: 8px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc { color: #5A3A1A; line-height: 1.8; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; color: #2C1A00; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-item a, .contact-item span { color: #5A3A1A; font-size: 0.98rem; }
.contact-item a:hover { color: #C8960C; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid #C8960C;
  color: #C8960C;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.3s;
}
.social-btn:hover, .social-btn.whatsapp {
  background: #C8960C;
  color: #1A0A00;
}
.social-btn.whatsapp { background: #25D366; border-color: #25D366; color: #fff; }
.social-btn.whatsapp:hover { background: #1ebe57; border-color: #1ebe57; }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: #FFF8E8;
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.contact-form h3 { color: #6B1A1A; margin-bottom: 28px; font-size: 1.4rem; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 700; color: #5A3A1A; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(200,150,12,0.3);
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.98rem;
  color: #2C1A00;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #C8960C;
  box-shadow: 0 0 0 3px rgba(200,150,12,0.15);
}
.form-group textarea { resize: vertical; }
.form-note { margin-top: 12px; font-size: 0.9rem; text-align: center; min-height: 20px; color: #2A7A2A; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0D0500;
  color: #C8A96A;
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(200,150,12,0.15);
}
.footer-brand p { font-size: 0.92rem; line-height: 1.8; color: #8A6A3A; margin-top: 16px; max-width: 280px; }
.footer-logo .logo-main { font-size: 1.1rem; }
.footer-logo .logo-sub { font-size: 0.65rem; }
.site-footer h4 { color: #F0C040; font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 16px; }
.site-footer ul { display: flex; flex-direction: column; gap: 8px; }
.site-footer ul li, .footer-courses ul li { font-size: 0.9rem; color: #8A6A3A; }
.site-footer ul a { color: #8A6A3A; transition: color 0.3s; }
.site-footer ul a:hover { color: #F0C040; }
.footer-contact p { font-size: 0.9rem; color: #8A6A3A; margin-bottom: 6px; }
.footer-contact a { color: #C8A96A; transition: color 0.3s; }
.footer-contact a:hover { color: #F0C040; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: #5A3A1A; margin-bottom: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { gap: 40px; }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }
  .hero-image-wrap { order: -1; }
  .hero-img { max-width: 320px; margin: 0 auto; }
  .hero-divider { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-contact { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: -16px; right: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gi-large { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .main-nav.open {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,5,0,0.98);
    z-index: 999;
    padding: 100px 40px 40px;
  }
  .main-nav.open ul { flex-direction: column; gap: 24px; }
  .main-nav.open a { font-size: 1.3rem; }
  .hamburger { display: flex; z-index: 1001; }
  .nav-cta { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .about-stats { flex-direction: column; gap: 16px; }
  .courses-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gi-large { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ===== EXAM & SYLLABUS SECTION ===== */
.exam-section { background: #0D0500; }

.exam-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.exam-overview-card {
  background: linear-gradient(135deg, #1A0A00, #2A1000);
  border: 1px solid rgba(200,150,12,0.3);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.exam-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(200,150,12,0.2);
}
.eoc-icon { font-size: 2.2rem; margin-bottom: 12px; }
.exam-overview-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #F0C040;
  margin: 0 0 6px;
}
.exam-overview-card p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0 0 12px; }
.eoc-badge {
  display: inline-block;
  background: rgba(200,150,12,0.15);
  border: 1px solid rgba(200,150,12,0.4);
  color: #C8960C;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}

/* Syllabus Accordion */
.syllabus-accordion { margin-bottom: 48px; }
.syllabus-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #F0C040;
  text-align: center;
  margin-bottom: 8px;
}
.syllabus-intro {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 28px;
}
.syllabus-group {
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.syllabus-group-btn {
  width: 100%;
  background: linear-gradient(135deg, #1A0A00, #2A1000);
  border: none;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.syllabus-group-btn:hover { background: linear-gradient(135deg, #2A1000, #3A1800); }
.sg-level {
  background: rgba(200,150,12,0.2);
  color: #F0C040;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
  border: 1px solid rgba(200,150,12,0.4);
  white-space: nowrap;
}
.sg-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #fff;
  flex: 1;
}
.sg-arrow {
  color: #C8960C;
  font-size: 0.9rem;
  transition: transform 0.3s;
}
.syllabus-group-btn.open .sg-arrow { transform: rotate(180deg); }
.syllabus-group-content {
  display: none;
  background: #120800;
  padding: 28px 24px 20px;
  border-top: 1px solid rgba(200,150,12,0.15);
}
.syllabus-group-content.open { display: block; }
.syllabus-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 20px;
}
.syllabus-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #F0C040;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200,150,12,0.2);
}
.syllabus-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.syllabus-col ul li {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.5;
}
.syllabus-col ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C8960C;
  font-size: 0.75rem;
}
.syllabus-download {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(200,150,12,0.15);
}
.syllabus-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #6B1A1A, #8B2A2A);
  color: #F0C040;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(200,150,12,0.4);
  transition: background 0.2s, transform 0.2s;
}
.syllabus-dl-btn:hover {
  background: linear-gradient(135deg, #8B2A2A, #A03030);
  transform: translateY(-2px);
  color: #fff;
}

/* Exam Info Banner */
.exam-info-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: linear-gradient(135deg, #1A0A00, #2A1000);
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: 16px;
  padding: 28px;
}
.eib-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.eib-icon { font-size: 1.8rem; flex-shrink: 0; }
.eib-item strong { color: #F0C040; font-size: 0.95rem; display: block; margin-bottom: 4px; }
.eib-item p { color: rgba(255,255,255,0.7); font-size: 0.82rem; margin: 0; }
.eib-item a { color: #C8960C; text-decoration: none; font-size: 0.82rem; }
.eib-item a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .exam-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .syllabus-cols { grid-template-columns: 1fr; }
  .exam-info-banner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .exam-overview-grid { grid-template-columns: 1fr 1fr; }
  .exam-info-banner { grid-template-columns: 1fr; }
}

/* Study Material Download Button */
.study-mat-btn {
  background: linear-gradient(135deg, #1a5276, #2980b9) !important;
  margin-top: 4px;
}
.study-mat-btn:hover {
  background: linear-gradient(135deg, #2980b9, #1a5276) !important;
  transform: translateY(-2px);
}
.syllabus-download {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

/* Study Material Download Button */
.study-mat-btn {
  margin-top: 4px;
}
.study-mat-btn:hover {
  transform: translateY(-2px);
}
.syllabus-download {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}


/* =============================================
   ADDITIONS – TOP STRIP, VIDEO TABS, BIO, AWARDS
============================================= */

/* ===== TOP INFO STRIP ===== */
.top-strip {
  background: #3B0A0A;
  color: #F0C040;
  font-size: 0.78rem;
  font-family: 'Lato', sans-serif;
  padding: 6px 0;
  border-bottom: 1px solid #6B1A1A;
  position: relative;
  z-index: 1100;
}
.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.top-strip-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.top-strip-item {
  color: #F0C040;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.top-strip-item:hover { color: #fff; }
.top-strip-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(240,192,64,0.15);
  color: #F0C040;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.top-social-icon:hover {
  background: #C8960C;
  color: #1A0A00;
}

/* ===== NAV DROPDOWN ===== */
.nav-has-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #3B0A0A;
  border: 1px solid #6B1A1A;
  border-radius: 8px;
  min-width: 190px;
  padding: 8px 0;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.nav-has-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #F0C040;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  text-transform: none;
  letter-spacing: 0;
}
.nav-dropdown-menu li a:hover {
  background: rgba(240,192,64,0.12);
  color: #fff;
}
.nav-dropdown-menu li a::after { display: none; }

/* ===== ABOUT CTA ROW ===== */
.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ===== BOOK PERFORMANCES BANNER ===== */
.book-perf-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #6B1A1A, #8B2020);
  border: 1px solid #C8960C;
  border-radius: 12px;
  padding: 20px 28px;
  margin-top: 32px;
  flex-wrap: wrap;
  grid-column: 1 / -1;
}
.book-perf-icon { font-size: 2.4rem; flex-shrink: 0; }
.book-perf-banner > div { flex: 1; min-width: 200px; }
.book-perf-banner strong {
  display: block;
  color: #F0C040;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 4px;
}
.book-perf-banner p {
  color: rgba(253,246,227,0.85);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== VIDEO TABS SECTION ===== */
.video-tabs-section { margin-top: 60px; }
.video-tabs-header { text-align: center; margin-bottom: 28px; }
.vtabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.vtab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid #C8960C;
  background: transparent;
  color: #C8960C;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.vtab-btn:hover,
.vtab-btn.active {
  background: linear-gradient(135deg, #C8960C, #F0C040);
  color: #1A0A00;
  border-color: #C8960C;
}
.vtab-content { display: none; }
.vtab-content.active { display: block; }
.vtab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.vtab-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vtab-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.vtab-video {
  width: 100%;
  display: block;
  max-height: 200px;
  object-fit: cover;
  background: #1A0A00;
}
.vtab-info { padding: 14px 16px; }
.vtab-info h4 {
  color: #F0C040;
  font-size: 0.95rem;
  margin: 6px 0;
  font-family: 'Playfair Display', serif;
}
.vtab-info p {
  color: rgba(253,246,227,0.75);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}
.vtab-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.stage-badge { background: #6B1A1A; color: #F0C040; }
.event-badge { background: #1A4A6B; color: #A0D4F0; }
.class-badge { background: #1A5A1A; color: #A0F0A0; }

/* ===== BIOGRAPHY SECTION ===== */
.biography-section { background: #FDF6E3; }
.bio-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}
.bio-portrait-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #C8960C;
  box-shadow: 0 12px 40px rgba(107,26,26,0.25);
}
.bio-portrait { width: 100%; display: block; object-fit: cover; }
.bio-quick-facts {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bio-fact {
  background: #fff;
  border-left: 3px solid #C8960C;
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.bio-fact strong {
  display: block;
  color: #6B1A1A;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.bio-fact span { color: #2C1A00; font-size: 0.85rem; line-height: 1.5; }
.bio-quote {
  background: linear-gradient(135deg, #6B1A1A, #8B2020);
  color: #FDF6E3;
  border-left: 4px solid #F0C040;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 0 0 24px;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
}
.bio-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.82rem;
  color: #F0C040;
  font-weight: 700;
}
.bio-para { color: #2C1A00; font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.bio-para strong { color: #6B1A1A; }

/* ===== AWARDS SECTION ===== */
.awards-section { background: #1A0A00; }
.awards-era { margin-bottom: 40px; }
.awards-era-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #F0C040;
  border-bottom: 2px solid rgba(200,150,12,0.3);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.awards-era-years {
  font-size: 0.85rem;
  color: rgba(240,192,64,0.65);
  margin-left: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
.awards-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.award-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: 10px;
  padding: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.award-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border-color: rgba(200,150,12,0.5);
}
.award-year {
  background: linear-gradient(135deg, #C8960C, #F0C040);
  color: #1A0A00;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}
.award-card h4 {
  color: #FDF6E3;
  font-size: 0.9rem;
  margin-bottom: 4px;
  font-family: 'Playfair Display', serif;
}
.award-card p { color: rgba(253,246,227,0.6); font-size: 0.8rem; margin: 0; line-height: 1.4; }
.awards-cta-box {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: rgba(200,150,12,0.08);
  border: 1px solid rgba(200,150,12,0.25);
  border-radius: 12px;
}
.awards-cta-box p { color: rgba(253,246,227,0.85); font-size: 1rem; margin-bottom: 16px; }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
  .top-strip-address { display: none; }
  .top-strip-countries { display: none; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-sidebar { max-width: 320px; margin: 0 auto; }
  .about-cta-row { flex-direction: column; }
  .about-cta-row .btn { width: 100%; text-align: center; }
  .book-perf-banner { flex-direction: column; text-align: center; }
  .vtab-grid { grid-template-columns: 1fr; }
  .awards-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .top-strip-left { gap: 8px; }
  .top-strip-item { font-size: 0.7rem; }
  .vtabs-nav { gap: 8px; }
  .vtab-btn { padding: 8px 14px; font-size: 0.8rem; }
}


/* ===== MOMENTS PHOTO STRIP (below hero) ===== */
.moments-strip-section {
  background: #0d0500;
  padding: 0;
  overflow: hidden;
  border-top: 2px solid rgba(201,168,76,0.25);
  border-bottom: 2px solid rgba(201,168,76,0.25);
}
.moments-strip-inner {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.moments-strip-inner::before,
.moments-strip-inner::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.moments-strip-inner::before {
  left: 0;
  background: linear-gradient(to right, #0d0500, transparent);
}
.moments-strip-inner::after {
  right: 0;
  background: linear-gradient(to left, #0d0500, transparent);
}
.moments-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: momentsScroll 28s linear infinite;
  padding: 14px 0;
}
.moments-track img {
  height: 200px;
  width: auto;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}
.moments-track img:hover {
  transform: scale(1.06);
  border-color: #c9a84c;
}
@keyframes momentsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.moments-strip-inner:hover .moments-track {
  animation-play-state: paused;
}
@media (max-width: 768px) {
  .moments-track img { height: 130px; }
  .moments-strip-inner::before,
  .moments-strip-inner::after { width: 40px; }
}

/* ===== AWARDS PHOTO SLIDESHOW STRIP ===== */
.awards-photo-strip-wrap {
  margin: 50px 0 30px;
  overflow: hidden;
}
.awards-photo-strip-title {
  text-align: center;
  color: #c9a84c;
  font-size: 1.4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.awards-photo-strip {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.awards-photo-strip::before,
.awards-photo-strip::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.awards-photo-strip::before {
  left: 0;
  background: linear-gradient(to right, #1a0a00, transparent);
}
.awards-photo-strip::after {
  right: 0;
  background: linear-gradient(to left, #1a0a00, transparent);
}
.awards-photo-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: photoScroll 30s linear infinite;
}
.awards-photo-track img {
  height: 220px;
  width: auto;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}
.awards-photo-track img:hover {
  transform: scale(1.05);
  border-color: #c9a84c;
}
@keyframes photoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.awards-photo-strip:hover .awards-photo-track {
  animation-play-state: paused;
}
@media (max-width: 768px) {
  .awards-photo-track img { height: 150px; }
  .awards-photo-strip::before,
  .awards-photo-strip::after { width: 40px; }
}
