/* ============================================
   MM Music Studio - Design System & Styles
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS Variables - Design Tokens
   Professional Music School Theme
   Inspired by RCM, Merriam Music & Toronto Arts Academy
   ============================================ */
:root {
  /* Colors - Light Elegant Theme */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8f9fa;
  --color-bg-tertiary: #f0f2f5;
  --color-bg-dark: #1a1a2e;
  --color-bg-card: #ffffff;
  --color-bg-card-hover: #ffffff;

  /* Primary Accent - Deep Navy Blue */
  --color-accent: #1e3a5f;
  --color-accent-light: #2d5a8a;
  --color-accent-dark: #0d1f33;

  /* Secondary - Rich Gold */
  --color-gold: #d4a537;
  --color-gold-light: #e8c068;
  --color-gold-dark: #a88520;

  /* Accent Colors for Visual Interest */
  --color-rose: #c45c7c;
  --color-teal: #2a9d8f;
  --color-purple: #6c5ce7;

  /* Text Colors - Dark text on light */
  --color-text-primary: #1a1a2e;
  --color-text-secondary: #555555;
  --color-text-muted: #888888;
  --color-text-light: #ffffff;

  /* Functional Colors */
  --color-success: #4caf50;
  --color-coral: #e07c5a;
  --color-rose: #c15b78;

  /* Gradients - Light Theme */
  --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 50%, #1e3a5f 100%);
  --gradient-gold: linear-gradient(135deg, #d4a537 0%, #e8c068 50%, #d4a537 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 50%, #1a1a2e 100%);
  --gradient-soft: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  --gradient-hero: linear-gradient(135deg, rgba(30, 58, 95, 0.03) 0%, rgba(212, 165, 55, 0.05) 50%, rgba(30, 58, 95, 0.03) 100%);
  --gradient-mesh: radial-gradient(at 40% 20%, rgba(212, 165, 55, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(30, 58, 95, 0.06) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(45, 90, 138, 0.05) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(212, 165, 55, 0.04) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(30, 58, 95, 0.06) 0px, transparent 50%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(212, 165, 55, 0.15) 0%, transparent 70%);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing - Tightened for better proportions */
  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.25rem;
  --space-lg: 1.75rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows - Light Theme */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 40px rgba(212, 165, 55, 0.3);
  --shadow-glow-blue: 0 0 40px rgba(30, 58, 95, 0.2);
  --shadow-float: 0 25px 50px -12px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--color-accent-light);
}

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

ul,
ol {
  list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.text-accent {
  color: var(--color-accent);
}

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Layout Components
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
  background: var(--color-bg-primary);
}

/* Alternating section backgrounds for visual separation */
.section-light {
  background: var(--color-bg-secondary);
}

.section-dark {
  background: var(--color-bg-tertiary);
}

/* Section with top border accent */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(212, 165, 55, 0.3) 20%,
      rgba(212, 165, 55, 0.5) 50%,
      rgba(212, 165, 55, 0.3) 80%,
      transparent 100%);
}

.section:first-of-type::before,
.hero+.section::before {
  display: none;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  margin: var(--space-md) auto;
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px rgba(212, 165, 55, 0.4);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition-normal);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
}

.nav-links a {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .nav-login {
  background: var(--gradient-gold);
  color: var(--color-text-primary) !important;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.nav-links .nav-login::after {
  display: none;
}

.nav-links .nav-login:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-text-primary);
  transition: var(--transition-fast);
}

/* ============================================
   Hero Section - Enhanced with Animations
   ============================================ */
.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: url('../images/hero-bg.jpg') center 35% / cover no-repeat;
  padding-top: 70px;
  padding-bottom: 0;
}

.section.hero::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  transform: none;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 0;
}

.hero::after {
  display: none;
}

@keyframes meshMove {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Floating decorative elements */
.hero .floating-element {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-gold);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.hero .floating-element:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.hero .floating-element:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 10%;
  animation-delay: -2s;
  background: var(--gradient-primary);
}

.hero .floating-element:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 15%;
  animation-delay: -4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
  padding: var(--space-2xl);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: var(--space-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}

.hero-subtitle::after {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.hero h1 {
  margin-bottom: var(--space-md);
  color: var(--color-accent-dark);
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .text-gold {
  color: var(--color-gold);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Piano keys decoration */
.piano-decoration {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  opacity: 0.08;
}

.piano-key {
  width: 40px;
  height: 150px;
  background: var(--color-text-primary);
  border: 1px solid var(--color-bg-secondary);
}

.piano-key.black {
  width: 25px;
  height: 100px;
  background: var(--color-bg-primary);
  margin: 0 -12.5px;
  z-index: 1;
}

/* ============================================
   Buttons - Enhanced with Animations
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  position: relative;
}

.btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
  z-index: -1;
}

.btn-outline:hover {
  color: white;
  border-color: var(--color-accent);
}

.btn-outline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Gold Button Variant */
.btn-gold {
  background: var(--gradient-gold);
  color: var(--color-accent-dark);
  box-shadow: 0 4px 15px rgba(212, 165, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ============================================
   Cards - Enhanced with Glassmorphism
   ============================================ */
.card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 165, 55, 0.3);
  box-shadow: var(--shadow-float);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.25);
  transition: all var(--transition-normal);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 25px rgba(30, 58, 95, 0.35);
}

.card h3 {
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.card:hover h3 {
  color: var(--color-accent);
}

/* ============================================
   About Section
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--color-accent);
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.about-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.about-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.about-image::after {
  content: '';
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  right: calc(-1 * var(--space-md));
  bottom: calc(-1 * var(--space-md));
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.rcm-badge-small {
  margin-top: var(--space-lg);
  text-align: center;
}

.rcm-badge-small img {
  max-width: 160px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-content p {
  margin-bottom: var(--space-md);
}

/* About Credentials - New Layout */
.about-credentials {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.credentials-items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  flex: 1;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-bg-secondary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.credential-icon {
  font-size: 1rem;
}

.credential-text {
  font-weight: 500;
}

.rcm-badge-inline {
  flex-shrink: 0;
}

.rcm-badge-inline img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

/* About Highlights with Badges */
.about-highlights-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.badge-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.ormta-badge-highlight {
  flex-shrink: 0;
}

.ormta-badge-highlight img {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}

.rcm-badge-highlight {
  flex-shrink: 0;
}

.rcm-badge-highlight img {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}

.anniversary-badge-highlight {
  flex-shrink: 0;
}

.anniversary-badge-highlight img {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.15));
}


.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.highlight-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.highlight-text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.highlight-text strong {
  display: block;
  color: var(--color-text-primary);
  font-weight: 600;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
  background: var(--color-bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   Studio Section
   ============================================ */
.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.studio-card {
  text-align: center;
}

.studio-card .card-icon {
  margin: 0 auto var(--space-md);
}

/* ============================================
   Achievements Section
   ============================================ */
.achievements-list {
  max-width: 800px;
  margin: 0 auto;
}

.achievement-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-item:last-child {
  border-bottom: none;
}

.achievement-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}

.achievement-text {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
}

/* ============================================
   Performances Section
   ============================================ */
.performances-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.performance-image-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--color-accent);
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.performance-info h3 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.performance-info h2 {
  margin-bottom: var(--space-md);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
  background: var(--color-bg-secondary);
}

.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-accent);
  line-height: 0;
  display: block;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  color: var(--color-accent);
  font-weight: 600;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-info>p {
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.contact-text a,
.contact-text p {
  color: var(--color-text-primary);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  background: var(--color-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-bg-secondary);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-logo span {
  color: var(--color-accent);
}

.footer-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--color-bg-card);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-accent);
  color: var(--color-bg-primary);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* (Old concert showcase styles removed - replaced by Events Section below) */

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
  background: var(--color-bg-secondary);
}

.gallery-category {
  margin-bottom: var(--space-2xl);
}

.gallery-category:last-child {
  margin-bottom: 0;
}

.gallery-category-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

/* Certificates Grid */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.certificate-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.certificate-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-glow);
}

.certificate-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.certificate-info {
  padding: var(--space-md);
  text-align: center;
}

.certificate-info h4 {
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.certificate-info p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Photo Gallery - Clean Grid */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-glow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.gallery-card-title {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: var(--space-xs);
}

.gallery-card-icon {
  font-size: 1.5rem;
  opacity: 0.8;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: var(--space-lg);
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 2.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--color-accent);
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  cursor: default;
}


/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {

  .about-grid,
  .performances-content,
  .contact-grid,
  .concert-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .studio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-bg-secondary);
    flex-direction: column;
    padding: var(--space-3xl) var(--space-lg);
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .studio-grid {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .certificates-grid {
    grid-template-columns: 1fr;
  }

  .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }


  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-badges {
    flex-wrap: wrap;
  }

  .footer-badge-img {
    height: 45px;
    max-width: 45%;
    object-fit: contain;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .why-us-list ul {
    grid-template-columns: 1fr;
  }

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

/* ============================================
   NEW: Section Variants
   ============================================ */
.section-white {
  background: var(--color-bg-primary);
}

.section-light {
  background: var(--color-bg-secondary);
}

.section-dark {
  background: var(--color-bg-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--color-text-light);
}

.section-dark .section-label {
  color: var(--color-gold);
}

.section-header.light h2,
.section-header.light p {
  color: var(--color-text-light);
}

/* ============================================
   NEW: Section Header & Labels
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-label {
  display: inline-block;
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-top: var(--space-sm);
}

/* ============================================
   NEW: Stats Bar
   ============================================ */
.stats-bar {
  background: var(--color-bg-dark);
  padding: var(--space-lg) 0;
}

.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.stats-bar .stat-item {
  text-align: center;
}

.stats-bar .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.stats-bar .stat-label {
  display: block;
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-top: var(--space-xs);
  opacity: 0.9;
}

/* ============================================
   NEW: Programs Section
   ============================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  max-width: 100%;
}

.program-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(44, 62, 80, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program-card .program-link {
  margin-top: 0;
  flex-shrink: 0;
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

.program-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.program-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.program-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.program-card p:not(.program-age) {
  flex: 1;
}

.program-link {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.program-link:hover {
  color: var(--color-gold);
}

/* 5-Card Programs: single row, equal width */
.programs-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.programs-grid-5 .program-card {
  padding: var(--space-lg) var(--space-md);
}

.programs-grid-5 .program-card h3 {
  font-size: 1.1rem;
}

.programs-grid-5 .program-card p {
  font-size: 0.88rem;
}

.program-age {
  display: inline-block;
  background: rgba(212, 165, 55, 0.12);
  color: var(--color-gold);
  font-size: 0.78rem !important;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-top: auto;
  margin-bottom: var(--space-sm) !important;
  letter-spacing: 0.3px;
}

/* ============================================
   NEW: Why Choose Us List (inside Contact)
   ============================================ */
.why-us-list {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.why-us-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.why-us-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.why-us-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-primary);
  padding: 6px 0;
}

.why-us-list li span {
  font-size: 1.15rem;
  flex-shrink: 0;
  line-height: 1;
}

/* ============================================
   NEW: Achievements Showcase
   ============================================ */
.achievements-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.achievement-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

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

.achievement-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.achievement-info {
  padding: var(--space-md);
  text-align: center;
}

.achievement-info h4 {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.achievement-info p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  opacity: 0.9;
}

.achievement-note {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-note p {
  color: var(--color-text-light);
  opacity: 0.7;
  font-style: italic;
}

/* ============================================
   Events Section
   ============================================ */
.events-subsection {
  margin-bottom: var(--space-lg);
}

.events-subsection:last-child {
  margin-bottom: 0;
}

.events-subtitle {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

/* --- Featured / Coming Event --- */
.featured-event {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.featured-event-poster {
  position: relative;
  flex-shrink: 0;
  width: 280px;
}

.featured-event-poster img {
  width: 100%;
  display: block;
}

.featured-event-info {
  padding: var(--space-md) var(--space-md) var(--space-md) 0;
  flex: 1;
}

.featured-event-info h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.featured-event-meta p {
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.6;
}

.featured-event-desc {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.featured-event-observer {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 500;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
  margin-top: 8px;
}

/* --- Past Event Cards --- */
.past-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.past-card {
  display: flex;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.past-card-img {
  flex-shrink: 0;
  width: 80px;
}

.past-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.past-card-body {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.past-card-body h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-accent);
  margin-bottom: 2px;
  line-height: 1.3;
}

.event-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  vertical-align: middle;
  margin-left: 8px;
  position: relative;
  top: -2px;
}

.event-badge-upcoming {
  background: var(--color-gold);
  color: #fff;
}

.event-meta {
  font-size: 0.78rem;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 1px;
}

.event-venue {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
}

.past-card-hidden {
  display: none;
}

.past-events-grid.expanded .past-card-hidden {
  display: flex;
}

.past-events-toggle {
  display: block;
  margin: var(--space-md) auto 0;
  font-size: 0.85rem;
  padding: 8px 24px;
}

/* ============================================
   NEW: Gallery Grid
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* ============================================
   NEW: Testimonial Simple
   ============================================ */
.testimonial-simple {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl);
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--color-gold);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: -2rem;
}

.testimonial-simple blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.testimonial-simple cite {
  color: var(--color-text-secondary);
  font-size: 1rem;
  font-style: normal;
}

/* ============================================
   NEW: Contact Layout
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-details {
  margin-top: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-item strong {
  display: block;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.contact-item p {
  color: var(--color-text-secondary);
  margin: 0;
}

.contact-form-wrapper {
  background: var(--color-bg-card);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 62, 80, 0.08);
  box-shadow: var(--shadow-sm);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  background: var(--color-bg-secondary);
  border: 1px solid rgba(44, 62, 80, 0.1);
  color: var(--color-text-primary);
}

.btn-full {
  width: 100%;
}

/* ============================================
   NEW: Footer Update
   ============================================ */
.footer {
  background: var(--color-bg-dark);
  padding: var(--space-xl) 0;
  border-top: none;
}

.footer-brand p {
  color: var(--color-text-light);
  opacity: 0.7;
  margin-top: var(--space-xs);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
  text-decoration: none;
}

.footer-logo span {
  color: var(--color-gold);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-links a {
  color: var(--color-text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-gold);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  color: var(--color-text-light);
  text-decoration: none;
  opacity: 0.7;
}

.social-link:hover {
  color: var(--color-gold);
  opacity: 1;
}

.footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badge-img {
  height: 75px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.footer-badge-img:hover {
  opacity: 1;
}

.footer-badge-invert {
  filter: brightness(0) invert(1);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
}

.footer-bottom p {
  color: var(--color-text-light);
  opacity: 0.5;
  font-size: 0.9rem;
}

/* ============================================
   NEW: Video Section
   ============================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.video-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-cta {
  text-align: center;
  margin-top: var(--space-md);
}

/* ============================================
   NEW: Text Utilities
   ============================================ */
.text-gold {
  color: var(--color-gold);
}

/* ============================================
   NEW: RCM Certification Section
   ============================================ */
.rcm-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.rcm-badge {
  text-align: center;
}

.rcm-badge img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.rcm-content h2 {
  margin-bottom: var(--space-md);
}

.rcm-intro {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.certification-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.cert-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(44, 62, 80, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.cert-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.cert-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-card li {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(44, 62, 80, 0.05);
}

.cert-card li:last-child {
  border-bottom: none;
}

.cert-card li strong {
  color: var(--color-text-primary);
}

.rcm-note {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(44, 62, 80, 0.1);
}

/* ============================================
   NEW: Responsive Updates
   ============================================ */
@media (max-width: 1024px) {
  .programs-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
    -webkit-overflow-scrolling: touch;
  }

  .programs-grid-5 .program-card {
    min-width: 240px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .achievements-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .past-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-event-poster {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .stats-row {
    gap: var(--space-lg);
  }

  .programs-grid,
  .achievements-showcase,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .programs-grid-5 {
    grid-template-columns: 1fr;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
    -webkit-overflow-scrolling: touch;
  }

  .programs-grid-5 .program-card {
    min-width: 260px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .featured-event {
    flex-direction: column;
  }

  .featured-event-poster {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .featured-event-info {
    padding: var(--space-md);
  }

  .past-events-grid {
    grid-template-columns: 1fr;
  }

  .rcm-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .certification-grid {
    grid-template-columns: 1fr;
  }

  .about-credentials {
    flex-direction: column;
    text-align: center;
  }

  .credentials-items {
    justify-content: center;
  }

  .about-highlights-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: var(--space-sm) var(--space-lg);
  }
}

/* ============================================
   Waitlist Modal
   ============================================ */
.waitlist-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: var(--space-md);
}

.waitlist-overlay.active {
  display: flex;
}

.waitlist-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.waitlist-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.waitlist-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  margin: 0;
}

.waitlist-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color var(--transition-fast);
}

.waitlist-modal-close:hover {
  color: var(--color-text-primary);
}

.waitlist-modal-desc {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.waitlist-modal .form-group select {
  width: 100%;
  padding: var(--space-sm);
  background: var(--color-bg-secondary);
  border: 1px solid rgba(44, 62, 80, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.waitlist-modal .form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.waitlist-modal .form-group input,
.waitlist-modal .form-group textarea {
  background: var(--color-bg-secondary);
  border: 1px solid rgba(44, 62, 80, 0.1);
  color: var(--color-text-primary);
}

.waitlist-modal .form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.waitlist-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 520px) {
  .waitlist-row {
    grid-template-columns: 1fr;
  }

  .waitlist-modal {
    padding: var(--space-lg) var(--space-md);
  }
}

/* ============================================
   Photo Wall Gallery
   ============================================ */
.photo-wall-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.photo-wall-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-wall-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.photo-wall {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.photo-wall-page {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.photo-wall-page.active {
  opacity: 1;
  pointer-events: auto;
}

.photo-wall-photo {
  position: absolute;
  background: #fff;
  padding: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 1px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0s;
  will-change: transform;
}

.photo-wall-photo:hover {
  transform: scale(1.08) rotate(0deg) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(183, 148, 82, 0.3);
  z-index: 100 !important;
}

.photo-wall-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lightbox Navigation */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: var(--space-lg);
}

.lightbox-next {
  right: var(--space-lg);
}

.lightbox-counter {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive adjustments for photo wall */
@media (max-width: 768px) {
  .photo-wall {
    height: 300px;
  }

  .photo-wall-photo {
    padding: 4px;
  }

  .photo-wall-arrow {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .photo-wall-wrapper {
    gap: var(--space-xs);
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: var(--space-sm);
  }

  .lightbox-next {
    right: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .photo-wall {
    height: 240px;
  }

  .photo-wall-photo {
    padding: 3px;
  }
}

/* ============================================
   Summer Camp Section
   ============================================ */
.summer-camp-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: start;
}

.summer-camp-lead {
  font-size: 1.03rem;
  line-height: 1.58;
  margin-bottom: var(--space-sm);
}

.summer-camp-info>p {
  line-height: 1.58;
}

.summer-camp-features {
  margin-top: var(--space-md);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm) var(--space-md);
}

.summer-camp-feature {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.summer-camp-feature-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 165, 55, 0.1);
  border-radius: 10px;
}

.summer-camp-feature h4 {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--color-text-primary);
  line-height: 1.35;
}

.summer-camp-feature p {
  font-size: 0.84rem;
  line-height: 1.45;
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

/* Program Details Card */
.summer-camp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.summer-camp-card-header {
  background: var(--gradient-dark);
  padding: var(--space-md) var(--space-lg);
}

.summer-camp-card-header h3 {
  color: var(--color-gold);
  font-size: 1.3rem;
  margin: 0;
}

.summer-camp-card-body {
  padding: var(--space-md) var(--space-lg);
}

.summer-camp-detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.summer-camp-detail:last-of-type {
  border-bottom: none;
}

.summer-camp-detail-label {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  min-width: 100px;
}

.summer-camp-detail-value {
  text-align: right;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

/* Pricing */
.summer-camp-pricing {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
}

.summer-camp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.summer-camp-price-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-primary);
}

.summer-camp-price-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.summer-camp-price-amount small {
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-muted);
}

.summer-camp-price-earlybird {
  background: rgba(212, 165, 55, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-sm);
  margin-top: var(--space-xs);
}

.summer-camp-price-earlybird .summer-camp-price-amount {
  color: var(--color-gold-dark);
}

.summer-camp-earlybird-note {
  font-size: 0.8rem;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-top: var(--space-xs);
  margin-bottom: 0;
  text-align: center;
}

.summer-camp-limited {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: var(--space-md) 0;
  font-style: italic;
}

.summer-camp-policy {
  font-size: 0.78rem;
  color: #5a6a7a;
  line-height: 1.5;
  margin: var(--space-sm) 0;
  padding: 8px 12px;
  background: rgba(59, 130, 246, 0.06);
  border-left: 3px solid #3b82f6;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Homepage-only: horizontal registration card layout */
.summer-camp-section .summer-camp-layout {
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.summer-camp-section .summer-camp-info {
  max-width: none;
}

.summer-camp-section .summer-camp-lead {
  font-size: 1.05rem;
  line-height: 1.6;
}

.summer-camp-section .summer-camp-features {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
}

.summer-camp-section .summer-camp-feature h4 {
  font-size: 0.96rem;
}

.summer-camp-section .summer-camp-feature p {
  font-size: 0.86rem;
  line-height: 1.46;
}

.summer-camp-section .summer-camp-card {
  position: static;
}

.summer-camp-section .summer-camp-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(300px, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.summer-camp-section .summer-camp-details-list {
  display: grid;
  gap: 10px;
}

.summer-camp-section .summer-camp-detail {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 10px 12px;
}

.summer-camp-section .summer-camp-detail-label {
  display: block;
  margin-bottom: 0;
  min-width: 0;
  font-size: 0.84rem;
}

.summer-camp-section .summer-camp-detail-value {
  display: block;
  text-align: left;
  font-size: 0.92rem;
  line-height: 1.42;
}

.summer-camp-section .summer-camp-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: start;
}

.summer-camp-section .summer-camp-pricing {
  margin-top: 0;
  margin-bottom: 0;
  padding: 12px;
  border: 1px solid rgba(212, 165, 55, 0.12);
  box-shadow: none;
}

.summer-camp-section .summer-camp-price-label {
  font-size: 0.9rem;
}

.summer-camp-section .summer-camp-price-amount {
  font-size: 1.58rem;
}

.summer-camp-section .summer-camp-price-earlybird {
  margin-top: 6px;
  padding: 8px 10px;
}

.summer-camp-section .summer-camp-earlybird-note {
  font-size: 0.8rem;
  margin-top: 6px;
}

.summer-camp-section .summer-camp-policy {
  margin: 0;
  font-size: 0.8rem;
}

.summer-camp-section .summer-camp-side .btn {
  font-weight: 600;
  font-size: 0.94rem;
  padding-top: 11px;
  padding-bottom: 11px;
  box-shadow: none;
}

@media (max-width: 980px) {
  .summer-camp-section .summer-camp-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summer-camp-section .summer-camp-card-body {
    grid-template-columns: 1fr;
  }

  .summer-camp-section .summer-camp-detail {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 640px) {
  .summer-camp-section .summer-camp-features {
    grid-template-columns: 1fr;
  }

  .summer-camp-section .summer-camp-price-amount {
    font-size: 1.48rem;
  }
}

/* Session capacity tags */
.sc-capacity-tag {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 10px;
  vertical-align: middle;
}

.sc-full {
  background: rgba(231, 76, 60, 0.1);
  color: #c0392b;
  border: 1px solid rgba(231, 76, 60, 0.25);
}

.sc-last {
  background: rgba(243, 156, 18, 0.12);
  color: #9a6700;
  border: 1px solid rgba(243, 156, 18, 0.3);
}

.sc-session-full {
  opacity: 0.6;
}

.sc-session-full input[type="checkbox"] {
  cursor: not-allowed;
}

/* Refund Policy block (inside interest modal form) */
.interest-refund-policy {
  background: rgba(212, 168, 67, 0.07);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-lg) 0 var(--space-md);
}

.interest-refund-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 var(--space-xs);
}

.interest-refund-list {
  margin: 0 0 var(--space-xs);
  padding-left: 1.2em;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.interest-refund-contact {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
}

.interest-refund-contact a {
  color: var(--gold);
  text-decoration: none;
}

/* Interest Modal Form */
.interest-modal h2 {
  color: var(--color-primary-dark, #1a1a2e);
  font-size: 1.4rem;
  margin: 0 0 6px;
}

.interest-modal .interest-modal-desc {
  color: #666;
  font-size: 0.9rem;
  margin: 0 0 20px;
}

.interest-form-group {
  margin-bottom: 14px;
}

.interest-form-group label.interest-field-label {
  display: block;
  color: #444;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.interest-form-group label.interest-field-label .required {
  color: #d4a537;
}

.interest-form-group input[type="text"],
.interest-form-group input[type="email"],
.interest-form-group input[type="tel"],
.interest-form-group input[type="number"],
.interest-form-group select,
.interest-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  /* 16px prevents iOS auto-zoom */
  box-sizing: border-box;
  transition: border-color var(--transition-fast);
  font-family: inherit;
}

.interest-form-group select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.interest-form-group textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

.interest-form-group input[type="text"]:focus,
.interest-form-group input[type="email"]:focus,
.interest-form-group input[type="tel"]:focus,
.interest-form-group select:focus,
.interest-form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

/* Session checkbox options (shared by sessions & altSessions) */
.interest-session-group {
  margin-bottom: 20px;
}

.interest-session-group>.interest-field-label {
  display: block;
  color: #444;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.interest-session-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.interest-session-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  cursor: pointer;
  color: #444;
  font-size: 0.92rem;
  transition: all 0.2s ease;
  background: #fff;
}

.interest-session-option:hover {
  border-color: #d4a537;
  background: rgba(212, 165, 55, 0.04);
}

.interest-session-option input[type="checkbox"] {
  accent-color: #d4a537;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.interest-session-option:has(input:checked) {
  border-color: #d4a537;
  background: rgba(212, 165, 55, 0.08);
  font-weight: 500;
}

/* Alt-sessions section with subtle background */
.interest-alt-group {
  margin-bottom: 20px;
  padding: 14px 16px;
  background: #f8f7f4;
  border-radius: 10px;
  border: 1px solid #eee;
}

.interest-alt-group>.interest-field-label {
  display: block;
  color: #444;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.interest-alt-hint {
  color: #888;
  font-size: 0.82rem;
  margin: 0 0 10px;
}

.interest-alt-group .interest-session-option {
  background: #fff;
  border-color: #e0ddd6;
}

.interest-alt-group .interest-session-option:hover {
  border-color: #d4a537;
  background: rgba(212, 165, 55, 0.06);
}

.interest-alt-group .interest-session-option.is-none {
  border-style: dashed;
  color: #888;
}

/* Interest Form: Children Section */
.interest-children-section {
  margin-bottom: 10px;
}

.interest-children-section>.interest-field-label {
  display: block;
  color: #444;
  font-size: 0.92rem;
  font-weight: 500;
}

.interest-child-block {
  border: 1px solid #e0ddd6;
  border-radius: 10px;
  padding: 16px 18px 12px;
  margin-bottom: 10px;
  background: #faf9f7;
  transition: border-color 0.2s ease;
}

.interest-child-block:hover {
  border-color: #d4a537;
}

.interest-child-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.interest-child-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a2e;
}

.interest-remove-child-btn {
  background: none;
  border: 1px solid #e0ddd6;
  border-radius: 6px;
  color: #999;
  cursor: pointer;
  font-size: 0.82rem;
  padding: 4px 12px;
  transition: all 0.2s ease;
}

.interest-remove-child-btn:hover {
  color: #e74c3c;
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.06);
}

.interest-child-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
}

.interest-child-block .interest-form-group {
  margin-bottom: 10px;
}

.interest-child-block .interest-field-label {
  font-size: 0.88rem;
  margin-bottom: 5px;
}

.interest-child-block input[type="number"],
.interest-child-block input[type="text"] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  /* 16px prevents iOS auto-zoom */
  box-sizing: border-box;
  transition: border-color var(--transition-fast);
  background: #fff;
}

.interest-child-block input[type="number"]:focus,
.interest-child-block input[type="text"]:focus {
  outline: none;
  border-color: var(--color-gold);
}

.interest-child-block select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  /* 16px prevents iOS auto-zoom */
  box-sizing: border-box;
  transition: border-color var(--transition-fast);
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  color: var(--color-text-primary);
}

.interest-child-block select:focus {
  outline: none;
  border-color: var(--color-gold);
}

.interest-add-child-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border: 2px dashed #d4d0c8;
  border-radius: 10px;
  background: transparent;
  color: #d4a537;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 20px;
  text-align: center;
}

.interest-add-child-btn:hover {
  border-color: #d4a537;
  background: rgba(212, 165, 55, 0.06);
}

@media (max-width: 600px) {
  .interest-child-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .interest-child-block {
    padding: 14px 14px 10px;
  }

  .interest-child-label {
    font-size: 0.95rem;
  }

  .interest-child-block .interest-field-label {
    font-size: 0.88rem;
  }

  .interest-add-child-btn {
    padding: 14px;
    font-size: 1rem;
  }

  .interest-remove-child-btn {
    font-size: 0.82rem;
    padding: 5px 12px;
  }
}

/* Summer Camp Registration Modal */
.summercamp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: var(--space-md);
}

.summercamp-overlay.active {
  display: flex;
}

.summercamp-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.summercamp-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.summercamp-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold-dark);
  margin: 0;
}

.summercamp-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color var(--transition-fast);
}

.summercamp-modal-close:hover {
  color: var(--color-text-primary);
}

.summercamp-modal-desc {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.summercamp-modal .form-group select {
  width: 100%;
  padding: var(--space-sm);
  background: var(--color-bg-secondary);
  border: 1px solid rgba(44, 62, 80, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.summercamp-modal .form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
}

.summercamp-modal .form-group input,
.summercamp-modal .form-group textarea {
  background: var(--color-bg-secondary);
  border: 1px solid rgba(44, 62, 80, 0.1);
  color: var(--color-text-primary);
}

.summercamp-modal .form-group input:focus,
.summercamp-modal .form-group textarea:focus {
  border-color: var(--color-gold);
}

.summercamp-modal .form-group textarea {
  min-height: 80px;
  resize: vertical;
}

/* Week checkboxes */
.summer-camp-weeks {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

.summer-camp-week-option {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  background: var(--color-bg-secondary);
  border: 1px solid rgba(44, 62, 80, 0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.summer-camp-week-option:hover {
  border-color: var(--color-gold);
  background: rgba(212, 165, 55, 0.05);
}

.summer-camp-week-option input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .summer-camp-layout {
    grid-template-columns: 1fr;
  }

  .summer-camp-card {
    position: static;
  }

  .summer-camp-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .summercamp-modal {
    padding: var(--space-lg) var(--space-md);
  }
}

/* ============================================
   Summer Camp Standalone Page
   ============================================ */

/* Hero tags */
.sc-hero-details {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.sc-hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 165, 55, 0.12);
  border: 1px solid rgba(212, 165, 55, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  letter-spacing: 0.02em;
}

/* Registration form (inline on standalone page) */
.sc-register-section {
  background: var(--gradient-dark);
}

.sc-register-section .section-label {
  color: var(--color-gold);
}

.sc-register-section .section-header h2 {
  color: #fff;
}

.sc-register-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.sc-register-wrapper {
  max-width: 620px;
  margin: 0 auto;
}

.sc-register-form .form-group label {
  color: rgba(255, 255, 255, 0.9);
}

.sc-register-form .form-group input,
.sc-register-form .form-group textarea,
.sc-register-form .form-group select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.sc-register-form .form-group input::placeholder,
.sc-register-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.sc-register-form .form-group input:focus,
.sc-register-form .form-group textarea:focus,
.sc-register-form .form-group select:focus {
  border-color: var(--color-gold);
  outline: none;
}

.sc-register-form .form-group select {
  width: 100%;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.sc-register-form .form-group select option {
  background: #1a1a2e;
  color: #fff;
}

.sc-register-form .summer-camp-week-option {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.sc-register-form .summer-camp-week-option:hover {
  border-color: var(--color-gold);
  background: rgba(212, 165, 55, 0.1);
}

.sc-register-form .waitlist-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Hero banner on index page */
.hero-summer-banner {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 24px;
  background: rgba(212, 165, 55, 0.12);
  border: 1px solid rgba(212, 165, 55, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-lg);
  text-decoration: none;
  transition: all var(--transition-normal);
  animation: gentle-pulse 3s ease-in-out infinite;
}

.hero-summer-banner:hover {
  background: rgba(212, 165, 55, 0.2);
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
  transform: translateY(-2px);
}

.hero-summer-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes gentle-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 165, 55, 0);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(212, 165, 55, 0.08);
  }
}

/* ============================================
   Session Progress Bars (Summer Camp)
   ============================================ */
.session-progress-container {
  margin: var(--space-lg) 0 var(--space-sm);
  padding: var(--space-md);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
}

.session-progress-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.session-progress-item {
  margin-bottom: var(--space-sm);
}

.session-progress-item:last-child {
  margin-bottom: 0;
}

.session-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.session-progress-name {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--color-text-primary);
}

.session-progress-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.session-progress-bar {
  height: 8px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.session-progress-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.6s ease;
}

.session-progress-bar-fill.progress-empty {
  background: #e0e0e0;
}

.session-progress-bar-fill.progress-active {
  background: var(--color-gold);
}

.session-progress-bar-fill.progress-almost {
  background: linear-gradient(90deg, var(--color-gold), #f0c040);
}

.session-progress-bar-fill.progress-confirmed {
  background: #28a745;
}

.session-progress-bar-fill.progress-full {
  background: #e74c3c;
}

.session-progress-count {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 2px;
  text-align: right;
}

/* Flexibility radio styling */
.flexibility-option input[type="radio"] {
  accent-color: var(--color-gold);
}

/* Responsive */
@media (max-width: 600px) {
  .sc-register-form .waitlist-row {
    grid-template-columns: 1fr;
  }

  .sc-hero-details {
    flex-direction: column;
    align-items: center;
  }
}
