/* ============================================================
   KALAPARV – Cultural Event Brand Website
   Design System & Complete Styles
   ============================================================ */

/* ===== Google Fonts Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
  /* Colors */
  --clr-primary: #FF6B00;
  --clr-primary-dark: #E55D00;
  --clr-secondary: #E63946;
  --clr-accent-gold: #FFB703;
  --clr-accent-magenta: #F72585;
  --clr-accent-purple: #7209B5;
  --clr-dark: #1A1A2E;
  --clr-darker: #0D0D1A;
  --clr-card: #16213E;
  --clr-card-hover: #1C2A4A;
  --clr-card-border: rgba(255, 255, 255, 0.06);
  --clr-text: #F1FAEE;
  --clr-text-muted: #A8B2C1;
  --clr-white: #FFFFFF;
  --clr-success: #06D6A0;
  --clr-warning: #FFD166;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FF6B00, #E63946);
  --gradient-gold: linear-gradient(135deg, #FFB703, #FF6B00);
  --gradient-hero: linear-gradient(160deg, #0D0D1A 0%, #1A1A2E 40%, #16213E 100%);
  --gradient-section-alt: linear-gradient(180deg, #0D0D1A, #1A1A2E);
  --gradient-card: linear-gradient(145deg, rgba(22, 33, 62, 0.8), rgba(13, 13, 26, 0.9));
  --gradient-text: linear-gradient(135deg, #FF4D00, #FF9500, #FFD700);
  --gradient-magenta: linear-gradient(135deg, #F72585, #7209B5);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  /* Sizing */
  --container-max: 1200px;
  --container-padding: 0 clamp(1rem, 4vw, 3rem);
  --section-padding: clamp(4rem, 8vw, 8rem) 0;
  --navbar-height: 72px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow-primary: 0 0 25px rgba(255, 107, 0, 0.3);
  --shadow-glow-gold: 0 0 25px rgba(255, 183, 3, 0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-darker);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--clr-primary);
  color: var(--clr-white);
}

/* ===== Utility Classes ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-alt {
  background: var(--gradient-section-alt);
}

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

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-accent-gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-text-muted);
  max-width: 650px;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--clr-white);
  box-shadow: var(--shadow-glow-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(255, 107, 0, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  border-color: var(--clr-primary);
  background: rgba(255, 107, 0, 0.1);
  transform: translateY(-3px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--clr-darker);
  font-weight: 700;
  box-shadow: var(--shadow-glow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(255, 183, 3, 0.5);
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  font-size: 1.2rem;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--clr-card-border);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1001;
}

.nav-brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-brand:hover .nav-brand-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.4));
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--clr-text-muted);
  line-height: 1;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-cta {
  margin-left: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--clr-white);
  border-radius: 4px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: calc(var(--navbar-height) + 1rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13,13,26,0.4) 0%,
    rgba(26,26,46,0.2) 40%,
    rgba(13,13,26,0.95) 100%
  ),
  radial-gradient(ellipse at 30% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 60%),
  radial-gradient(ellipse at 70% 30%, rgba(247, 37, 133, 0.05) 0%, transparent 60%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}

.hero-particle:nth-child(1) { width: 4px; height: 4px; background: var(--clr-primary); left: 10%; animation-duration: 8s; animation-delay: 0s; }
.hero-particle:nth-child(2) { width: 6px; height: 6px; background: var(--clr-accent-gold); left: 25%; animation-duration: 12s; animation-delay: 2s; }
.hero-particle:nth-child(3) { width: 3px; height: 3px; background: var(--clr-secondary); left: 40%; animation-duration: 10s; animation-delay: 4s; }
.hero-particle:nth-child(4) { width: 5px; height: 5px; background: var(--clr-accent-magenta); left: 55%; animation-duration: 9s; animation-delay: 1s; }
.hero-particle:nth-child(5) { width: 4px; height: 4px; background: var(--clr-accent-gold); left: 70%; animation-duration: 11s; animation-delay: 3s; }
.hero-particle:nth-child(6) { width: 7px; height: 7px; background: var(--clr-primary); left: 85%; animation-duration: 7s; animation-delay: 5s; }
.hero-particle:nth-child(7) { width: 3px; height: 3px; background: var(--clr-secondary); left: 95%; animation-duration: 13s; animation-delay: 2s; }
.hero-particle:nth-child(8) { width: 5px; height: 5px; background: var(--clr-accent-gold); left: 5%; animation-duration: 10s; animation-delay: 6s; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-accent-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--clr-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  color: var(--clr-white);
}

/* --- Premium Orange-Red Cinematic Heading --- */
.hero h1 .highlight {
  background: linear-gradient(
    135deg,
    #FF6B00 0%,
    #FF8A30 14%,
    #FFBE6A 30%,
    #FFDCA8 45%,
    #FFB04A 56%,
    #FF7A22 70%,
    #E8452E 85%,
    #FF5533 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: goldShimmer 5s ease-in-out 1.5s infinite;
}

/* Warm orange-red radiant spotlight behind text */
.hero h1 .highlight::before {
  content: '';
  position: absolute;
  inset: -30px -44px;
  z-index: -2;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 120, 30, 0.35) 0%,
    rgba(232, 69, 46, 0.12) 45%,
    transparent 72%
  );
  border-radius: 50%;
  filter: blur(5px);
}

/* Bright orange-crimson halo for cinematic depth */
.hero h1 .highlight::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(135deg, #FF8A30, #FFBE6A, #FF5533);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(16px) brightness(2);
  opacity: 0.65;
}



.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
  font-weight: 300;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-powered {
  font-size: 0.95rem;
  color: var(--clr-accent-gold);
  font-weight: 500;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll-icon {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  position: relative;
}

.hero-scroll-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--clr-primary);
  border-radius: 4px;
  animation: scrollDot 2s infinite;
}

/* ===== Page Hero (Inner Pages) ===== */
.page-hero {
  position: relative;
  padding: calc(var(--navbar-height) + 4rem) 0 4rem;
  background: var(--gradient-hero);
  text-align: center;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247, 37, 133, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Cards ===== */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.15);
  box-shadow: var(--shadow-md), var(--shadow-glow-primary);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: var(--transition-bounce);
}

.card:hover .card-icon {
  background: rgba(255, 107, 0, 0.2);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.card:hover .card-icon img {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 15px rgba(255, 107, 0, 0.4)) brightness(1.1);
}

/* 3D Icon Utility */
.icon-3d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  vertical-align: middle;
  transition: var(--transition-bounce);
}

.icon-3d img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-3d:hover {
  transform: scale(1.15) translateY(-5px);
  filter: drop-shadow(0 10px 15px rgba(255, 107, 0, 0.4));
}

.card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.card p {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Image Card */
.card-image {
  padding: 0;
  overflow: hidden;
}

.card-image .card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.card-image:hover .card-img {
  transform: scale(1.08);
}

.card-image .card-body {
  padding: 1.5rem;
}

/* ===== Grid Layouts ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

/* ===== Category Showcase Cards ===== */
.category-showcase-card {
  background: var(--gradient-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.category-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
}

.category-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.15);
  box-shadow: var(--shadow-md), var(--shadow-glow-primary);
}

.category-showcase-card:hover::before {
  opacity: 1;
}

.category-showcase-emoji {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  display: block;
  transition: var(--transition-bounce);
}

.category-showcase-card:hover .category-showcase-emoji {
  transform: scale(1.2) translateY(-4px);
}

.category-showcase-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--clr-white);
}

.category-showcase-card p {
  color: var(--clr-text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ===== Hero Ghost Button ===== */
.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  padding: 0.5rem 1.2rem;
  backdrop-filter: blur(5px);
}

.btn-ghost:hover {
  color: var(--clr-white);
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.08);
  transform: translateY(-2px);
}

.hero-buttons-sub {
  margin-top: 0.8rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* ===== Partner Grid 3-column ===== */
.partner-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== Upcoming Event Section ===== */
.event-highlight {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  overflow: hidden;
}

.event-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.event-highlight-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.event-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid rgba(255, 183, 3, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-accent-gold);
  margin-bottom: 1rem;
}

.event-highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.event-highlights-list .tag {
  padding: 0.35rem 0.9rem;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-primary);
}

/* Countdown */
.countdown {
  display: flex;
  gap: 1rem;
  text-align: center;
}

.countdown-item {
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  min-width: 80px;
}

.countdown-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-muted);
  margin-top: 0.3rem;
}

/* ===== Dance Styles Section ===== */
.dance-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

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

.dance-card:hover img {
  transform: scale(1.1);
}

.dance-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,13,26,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.dance-card:hover .dance-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(13,13,26,0.98) 100%);
}

.dance-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.dance-card p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.dance-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Why Choose Us ===== */
.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.why-card .card-icon {
  margin: 0 auto 1.2rem;
  width: 70px;
  height: 70px;
  font-size: 1.8rem;
}

/* ===== Gallery Section ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}

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

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,26,0.3);
  opacity: 0;
  transition: var(--transition);
}

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

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  background: var(--gradient-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

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

.cta-section h2 {
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 2rem;
}

.cta-section .btn {
  background: var(--clr-white);
  color: var(--clr-darker);
  font-weight: 700;
}

.cta-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ===== Contact Info Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.contact-card .card-icon {
  margin: 0 auto 1rem;
  background: rgba(255, 183, 3, 0.1);
}

.contact-card h4 {
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
}

.contact-card a {
  color: var(--clr-primary);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--clr-accent-gold);
}

/* ===== Forms ===== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--clr-text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  background: rgba(22, 33, 62, 0.6);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
  background: rgba(22, 33, 62, 0.8);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(168, 178, 193, 0.5);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A8B2C1' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--clr-dark);
  color: var(--clr-text);
}

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

.form-error {
  font-size: 0.8rem;
  color: var(--clr-secondary);
  margin-top: 0.3rem;
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: var(--clr-secondary);
}

.form-group.error .form-error {
  display: block;
}

.form-card {
  background: var(--gradient-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Event Page Specifics ===== */
.category-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.category-card .emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.age-group-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-card-border);
}

.age-group-table th,
.age-group-table td {
  padding: 1rem 1.5rem;
  text-align: left;
}

.age-group-table th {
  background: rgba(255, 107, 0, 0.1);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-accent-gold);
}

.age-group-table td {
  border-top: 1px solid var(--clr-card-border);
  font-size: 0.95rem;
  color: var(--clr-text-muted);
}

.age-group-table tr:hover td {
  background: rgba(255, 107, 0, 0.03);
}

/* Pricing Card */
.pricing-card {
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--clr-primary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  opacity: 1;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 1rem 0;
}

.pricing-amount span {
  font-size: 1.2rem;
  font-weight: 400;
}

.pricing-features {
  margin: 1.5rem 0 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--clr-success);
  font-weight: 700;
}

/* ===== Academy Page ===== */
.course-card {
  padding: 0;
  overflow: hidden;
}

.course-card-header {
  padding: 1.5rem 2rem;
  background: rgba(255, 107, 0, 0.06);
  border-bottom: 1px solid var(--clr-card-border);
}

.course-card-body {
  padding: 1.5rem 2rem 2rem;
}

.course-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.batch-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-card-border);
}

.batch-table th,
.batch-table td {
  padding: 1rem 1.5rem;
  text-align: left;
}

.batch-table th {
  background: rgba(255, 107, 0, 0.1);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-accent-gold);
}

.batch-table td {
  border-top: 1px solid var(--clr-card-border);
  font-size: 0.92rem;
  color: var(--clr-text-muted);
}

.batch-table tr:hover td {
  background: rgba(255, 107, 0, 0.03);
}

/* ===== Footer ===== */
.footer {
  background: #080812;
  padding: 4rem 0 0;
  border-top: 1px solid var(--clr-card-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .nav-brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

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

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
  color: var(--clr-white);
}

.footer-col a {
  display: block;
  padding: 0.35rem 0;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--clr-primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--clr-card-border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ===== Confirmation Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--clr-dark);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(6, 214, 160, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.modal h3 {
  margin-bottom: 0.8rem;
}

.modal p {
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: var(--transition-slow);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: var(--transition-slow);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Animations ===== */
@keyframes particleFloat {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh); opacity: 0; }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

@keyframes scrollDot {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== Map ===== */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-card-border);
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.7) brightness(0.8) contrast(1.1);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .partner-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .event-highlight-content { grid-template-columns: 1fr; }
  .countdown { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--navbar-height) + 2rem) 2rem 2rem;
    gap: 0.3rem;
    transition: var(--transition);
    border-left: 1px solid var(--clr-card-border);
  }

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

  .nav-links a {
    font-size: 1rem;
    padding: 0.8rem 0;
    width: 100%;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .partner-grid-3 { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
    padding: 1rem;
    box-sizing: border-box;
  }

  .gallery-item:first-child {
    grid-row: span 1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .countdown {
    flex-wrap: wrap;
  }

  .countdown-item {
    min-width: 65px;
  }

  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  .section { padding: 3rem 0; }

  .btn { padding: 0.8rem 1.8rem; font-size: 0.9rem; }

  .card { padding: 1.5rem; }

  .form-card { padding: 1.5rem; }

  .event-highlight { padding: 2rem 1.5rem; }
}

/* ===== Preloader ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--clr-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--clr-card-border);
  border-top-color: var(--clr-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== Gallery Page ===== */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: var(--clr-white);
  border-color: transparent;
  box-shadow: var(--shadow-glow-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-grid .gallery-item:first-child {
  grid-row: span 1;
  grid-column: span 1;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.25);
  border-color: rgba(255, 107, 0, 0.4);
}

@media (min-width: 768px) {
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 26, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-info h4 {
  font-size: 1.1rem;
  color: var(--clr-white);
  margin-bottom: 0.3rem;
}

.gallery-info span {
  font-size: 0.75rem;
  color: var(--clr-accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  z-index: 2;
  transition: var(--transition-bounce);
}

.gallery-item:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--clr-primary);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 26, 0.98);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -40px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--clr-primary);
  transform: rotate(90deg);
}

.lightbox-caption {
  margin-top: 1.5rem;
  text-align: center;
}

.lightbox-caption h3 {
  font-size: 1.5rem;
  color: var(--clr-white);
}

.lightbox-caption p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

/* ===== Hero Shimmer Line ===== */
.hero-shimmer-line {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.5), rgba(255, 107, 0, 0.5), transparent);
  z-index: 2;
  animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
  0%, 100% { opacity: 0.3; width: 150px; }
  50% { opacity: 0.8; width: 300px; }
}

/* ===== Trust & Credibility Stats Bar ===== */
.stats-bar {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(13,13,26,0.98) 0%, var(--clr-darker) 100%);
  border-bottom: 1px solid var(--clr-card-border);
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.3), rgba(255, 183, 3, 0.3), transparent);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item .stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline;
}

.stat-item .stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  margin-left: 2px;
}

.stat-item .stat-value,
.stat-item .stat-suffix {
  display: inline;
}

.stat-item > div:first-child,
.stat-item > div:nth-child(2) {
  display: inline;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-text-muted);
  margin-top: 0.4rem;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(255, 107, 0, 0.3), transparent);
}

/* ===== Storytelling Section ===== */
.storytelling-section {
  position: relative;
  overflow: hidden;
}

.storytelling-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.storytelling-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.storytelling-content .section-label {
  display: inline-flex;
}

.storytelling-content .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.storytelling-text {
  color: var(--clr-text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.storytelling-text strong {
  color: var(--clr-text);
  font-weight: 600;
}

.storytelling-quote {
  position: relative;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0 2rem;
  border-left: 3px solid var(--clr-primary);
  background: rgba(255, 107, 0, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--clr-accent-gold);
  line-height: 1.6;
}

.storytelling-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.storytelling-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: var(--transition-slow);
}

.storytelling-image-wrapper:hover img {
  transform: scale(1.05);
}

.storytelling-image-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 60%, rgba(255, 107, 0, 0.15) 100%);
  pointer-events: none;
}

.storytelling-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  height: 40px;
  background: rgba(255, 107, 0, 0.15);
  filter: blur(20px);
  border-radius: 50%;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 2.5rem;
  background: var(--gradient-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  position: relative;
  text-align: center;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.testimonial-quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 107, 0, 0.2);
  margin-bottom: 0.5rem;
}

.testimonial-stars {
  font-size: 1.1rem;
  color: var(--clr-accent-gold);
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-white);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-text);
  text-align: left;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--clr-accent-gold);
  text-align: left;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--clr-primary);
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
  transform: scale(1.2);
}

.testimonial-dot:hover {
  background: rgba(255, 107, 0, 0.5);
}

/* ===== Social Proof / Highlights Strip ===== */
.highlights-section {
  position: relative;
  overflow: hidden;
}

.highlights-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.highlight-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

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

.highlight-card:hover img {
  transform: scale(1.15);
}

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 26, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: var(--transition);
}

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

.highlight-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 107, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-bounce);
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1);
}

.highlight-overlay span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Partner Section ===== */
.partner-section {
  position: relative;
  background: var(--gradient-section-alt);
  overflow: hidden;
}

.partner-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.partner-card {
  background: var(--gradient-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.15);
  box-shadow: var(--shadow-md), var(--shadow-glow-primary);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.partner-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.partner-card > p {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.partner-benefits {
  text-align: left;
  margin-bottom: 2rem;
  padding: 0;
}

.partner-benefits li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.partner-benefits li::before {
  content: '✓';
  color: var(--clr-success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== Section Divider Enhancement ===== */
.section + .section,
.stats-bar + .section,
.section + .highlights-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* ===== Staggered Reveal Animation ===== */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.6s; }

/* ===== Responsive: New Sections ===== */
@media (max-width: 1024px) {
  .highlights-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .storytelling-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .storytelling-content .section-title {
    text-align: center;
  }

  .storytelling-content .section-label {
    justify-content: center;
  }

  .storytelling-content {
    text-align: center;
  }

  .storytelling-quote {
    text-align: left;
  }

  .storytelling-content .btn {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    min-width: 100px;
  }

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

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

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .storytelling-image-wrapper img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    gap: 1rem;
  }

  .stat-item .stat-value {
    font-size: 1.8rem;
  }

  .stat-item {
    min-width: 80px;
  }

  .highlights-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .testimonial-card {
    padding: 1.5rem 1rem;
  }

  .partner-card {
    padding: 2rem 1.5rem;
  }
}

/* ==============================================================
   PAST SEASONS — Premium Archive Styles
   ============================================================== */

/* Section wrapper */
.past-seasons-section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Cumulative Stats */
.past-seasons-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.past-seasons-stat {
  text-align: center;
}

.past-seasons-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.past-seasons-stat .stat-desc {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.3rem;
}

/* Season Card */
.season-card {
  background: var(--gradient-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 3rem;
}

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

.season-card:hover {
  border-color: rgba(255, 183, 3, 0.15);
  box-shadow: var(--shadow-lg);
}

/* Season Badge */
.season-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--clr-darker);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

/* Season Header */
.season-header {
  margin-bottom: 1.5rem;
}

.season-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.season-tagline {
  font-style: italic;
  color: var(--clr-accent-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Season Meta (date, venue) */
.season-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.season-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}

.season-meta-icon {
  font-size: 1.1rem;
}

.season-meta-item strong {
  color: var(--clr-white);
}

/* Season Mini Stats */
.season-stats-mini {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
}

.season-stat-mini {
  text-align: center;
  flex: 1;
  min-width: 90px;
}

.season-stat-mini .num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-primary);
}

.season-stat-mini .label {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Season Description */
.season-description {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.94rem;
}

/* Season Categories Tags */
.season-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.season-categories .tag {
  font-size: 0.78rem;
}

/* Season People Section */
.season-people-section {
  margin-bottom: 2rem;
}

.season-people-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 183, 3, 0.1);
}

.season-people-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.season-person {
  font-size: 0.85rem;
  color: var(--clr-text-body);
  padding: 0.5rem 0;
}

.season-person strong {
  color: var(--clr-white);
  display: block;
  margin-bottom: 0.15rem;
}

.season-person span {
  color: var(--clr-text-muted);
  font-size: 0.78rem;
}

/* Season Partners Grid */
.season-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.season-partner-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
}

.season-partner-item .partner-role {
  color: var(--clr-accent-gold);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.25rem;
}

.season-partner-item .partner-name {
  color: var(--clr-white);
  font-weight: 500;
}

/* Season Highlight Quote */
.season-highlight-quote {
  border-left: 3px solid var(--clr-primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(255, 107, 0, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--clr-text-body);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Season Reach */
.season-reach {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.season-reach strong {
  color: var(--clr-primary);
}

/* Timeline Connector */
.season-timeline-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2rem;
  position: relative;
}

.season-timeline-connector::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-primary), var(--clr-accent-gold));
  transform: translateX(-50%);
}

.season-timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient-gold);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 12px rgba(255, 183, 3, 0.3);
}

/* ===== Past Seasons Responsive ===== */
@media (max-width: 1024px) {
  .season-people-list {
    grid-template-columns: 1fr;
  }
  
  .season-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .past-seasons-stats {
    gap: 1.5rem;
  }
  
  .season-card {
    padding: 1.5rem;
  }
  
  .season-header h3 {
    font-size: 1.3rem;
  }
  
  .season-meta {
    gap: 1rem;
  }
  
  .season-partners-grid {
    grid-template-columns: 1fr;
  }
  
  .season-stats-mini {
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 480px) {
  .past-seasons-stats {
    gap: 1rem;
  }
  
  .past-seasons-stat .stat-number {
    font-size: 2rem;
  }
  
  .season-card {
    padding: 1.2rem;
  }
  
  .season-stats-mini {
    gap: 0.8rem;
  }
  
  .season-stat-mini .num {
    font-size: 1.2rem;
  }
}

/* ==============================================================
   EVENT PAGE — Cinematic Visual Enhancements
   ============================================================== */

/* Enhanced Page Hero for Event */
.page-hero-event {
  min-height: 400px;
  position: relative;
}

.page-hero-event::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
  animation: heroOrb 8s ease-in-out infinite;
}

.page-hero-event::after {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.08) 0%, transparent 70%);
  animation: heroOrb 10s ease-in-out infinite reverse;
}

@keyframes heroOrb {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.page-hero-event h1 {
  text-shadow: 0 0 40px rgba(255, 107, 0, 0.2);
}

/* Pricing Card Gold Pulse */
.pricing-card.featured {
  border-color: rgba(255, 183, 3, 0.15);
  animation: pricingPulse 4s ease-in-out infinite;
}

@keyframes pricingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 183, 3, 0); }
  50% { box-shadow: 0 0 25px rgba(255, 183, 3, 0.08); }
}

/* Section Flow Dividers */
.section-flow-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 107, 0, 0.15), rgba(255, 183, 3, 0.15), transparent);
  margin: 0;
  border: none;
}

/* ===== Event Emotional Pillars ===== */
.event-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.event-pillar {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--gradient-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.event-pillar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
}

.event-pillar:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 183, 3, 0.12);
  box-shadow: var(--shadow-md);
}

.event-pillar:hover::after {
  opacity: 1;
}

.event-pillar-emoji {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  display: block;
  transition: var(--transition-bounce);
}

.event-pillar:hover .event-pillar-emoji {
  transform: scale(1.15);
}

.event-pillar h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--clr-white);
}

.event-pillar p {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.event-emotional-quote {
  text-align: center;
  font-style: italic;
  color: var(--clr-accent-gold);
  font-size: 1.1rem;
  margin-top: 2.5rem;
  padding: 1rem 0;
  position: relative;
}

.event-emotional-quote::before,
.event-emotional-quote::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 183, 3, 0.3));
}

.event-emotional-quote::before { left: 0; }
.event-emotional-quote::after { right: 0; transform: rotate(180deg); }

/* ===== What You Get — Experience Grid ===== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.experience-card {
  background: var(--gradient-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.experience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.12);
  box-shadow: var(--shadow-md), var(--shadow-glow-primary);
}

.experience-card:hover::before {
  opacity: 1;
}

.experience-emoji {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
  transition: var(--transition-bounce);
}

.experience-card:hover .experience-emoji {
  transform: scale(1.15) translateY(-3px);
}

.experience-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--clr-white);
}

.experience-card p {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* ===== Event Testimonial Block ===== */
.event-testimonial-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.event-testimonial-quote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--clr-text-body);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 2rem;
}

.event-testimonial-quote::before {
  content: '❝';
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 2.5rem;
  color: var(--clr-accent-gold);
  opacity: 0.5;
  font-style: normal;
}

.event-testimonial-author {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}

.event-testimonial-author strong {
  color: var(--clr-white);
  display: block;
  margin-bottom: 0.15rem;
}

/* ===== Event Page Responsive ===== */
@media (max-width: 1024px) {
  .event-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .event-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .experience-grid {
    grid-template-columns: 1fr;
  }
  
  .event-emotional-quote::before,
  .event-emotional-quote::after {
    display: none;
  }
  
  .event-testimonial-quote {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .event-pillars {
    grid-template-columns: 1fr;
  }
  
  .event-pillar {
    padding: 1.5rem 1rem;
  }
}

/* Video Filter Grid Columns Re-layout */
.gallery-grid.videos-active {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 1024px) {
  .gallery-grid.videos-active {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .gallery-grid.videos-active {
    grid-template-columns: 1fr !important;
  }
}

/* ===== KalaParv Vol-3 Announcement Banner (Compact) ===== */
.vol3-announcement {
  background: rgba(13, 13, 26, 0.7);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 50px;
  padding: 0.4rem 0.6rem 0.4rem 1.2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  animation: fadeInUp 0.8s ease-out both;
}

.vol3-announcement .announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 183, 3, 0.15);
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-accent-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.vol3-announcement .announcement-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-white);
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.vol3-announcement .announcement-separator {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

.vol3-announcement .announcement-date {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: 0.5px;
  margin: 0;
}

.vol3-announcement .btn-sm {
  font-size: 0.8rem;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
}

@media (max-width: 640px) {
  .vol3-announcement {
    border-radius: 16px;
    padding: 0.85rem 1rem;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 340px;
  }
  .vol3-announcement .announcement-separator {
    display: none;
  }
  .vol3-announcement .announcement-title {
    text-align: center;
  }
}


