/* ==========================================================================
   BINGE VIBE - UNIFIED STYLESHEET
   Contains all design tokens, resets, utility classes, and component styles.
   ========================================================================== */

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

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS (VARIABLES) & RESETS
   -------------------------------------------------------------------------- */
:root {
  --primary: #D4AF37; /* Classic Gold */
  --secondary: #FBBF24; /* Lighter Gold */
  --navy-dark: #111827;
  --gradient: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  --bg-color: #ffffff;
  --bg-alt: #fafafa;
  --text-main: #1a1a1a;
  --text-muted: #666666;
  --border-color: #eaeaea;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 48 rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 80px; /* Adjust so bottom sticky bar doesn't hide content */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-main);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY & UTILITIES
   -------------------------------------------------------------------------- */
.heading-xl {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.heading-md {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

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

.subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 2rem 0;
}

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

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

.section-cta-wrapper {
  margin-top: 4rem;
  text-align: center;
}

.section-badge-gold {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: block;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Scroll Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease-out;
  will-change: transform, opacity;
}

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

/* --------------------------------------------------------------------------
   3. BUTTONS & PULSE EFFECTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient);
  color: #111827;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #111827;
}

/* --------------------------------------------------------------------------
   4. NAVBAR & ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-container {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo-container a {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

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

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
}

.mobile-toggle .x-icon {
  display: none;
}

.mobile-toggle.open .menu-icon {
  display: none;
}

.mobile-toggle.open .x-icon {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-color);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: var(--text-main);
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: block;
  }

  .nav-actions-mobile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .nav-cta-small {
    padding: 0.5rem 1rem !important;
    font-size: 0.8125rem !important;
    border-radius: 50px !important;
    margin: 0 !important;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }
  .x-icon { display: none; }
  .mobile-toggle.open .x-icon { display: block; }
  .mobile-toggle.open .menu-icon { display: none; }
}

.announcement-bar {
  background: var(--primary);
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  color: #111827;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.4rem 0;
  overflow: hidden;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-height: 50px;
  transition: all 0.3s ease;
}

.navbar.scrolled .announcement-bar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee-anim 20s linear infinite;
}

.marquee-content span {
  padding-right: 4rem;
  display: inline-block;
  white-space: nowrap;
}

@keyframes marquee-anim {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9rem 1rem 4rem;
  overflow: hidden;
  text-align: center;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/hero-bg.webp');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(17, 24, 39, 0.8));
  z-index: -1;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  color: white;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  color: white;
}

.icon-gold {
  color: var(--primary);
}

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

.hero-main-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: white;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-cta-wrapper {
  margin-bottom: 2.5rem;
}

.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--gradient);
  color: #111827;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border: none;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.btn-whatsapp-cta:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.hero-bottom-stats {
  display: flex;
  justify-content: center;
  width: 100%;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
}

.icon-yellow {
  color: #fbbf24;
}

.dot {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.25rem;
}

@media (max-width: 768px) {
  .hero-main-title {
    line-height: 1.2;
  }
  
  .stat-pill {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    gap: 0.3rem;
  }
  
  .btn-whatsapp-cta {
    width: 100%;
    padding: 1rem;
  }
}

/* --------------------------------------------------------------------------
   6. REVIEW MARQUEE
   -------------------------------------------------------------------------- */
.review-marquee-container {
  width: 100%;
  background-color: #fff5f8;
  padding: 0.75rem 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
}

.review-marquee-content {
  display: flex;
  white-space: nowrap;
  animation: scrollMarquee 40s linear infinite;
  gap: 3rem;
  padding-left: 3rem;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.star-icon {
  color: var(--primary);
}

.review-text {
  color: #1f2937;
  font-weight: 500;
  font-style: italic;
}

.review-name {
  color: #6b7280;
  font-weight: 600;
  font-size: 0.85rem;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-33.333% - 1rem)); }
}

.review-marquee-container:hover .review-marquee-content {
  animation-play-state: paused;
}

/* --------------------------------------------------------------------------
   7. CELEBRATION VIDEOS
   -------------------------------------------------------------------------- */
.celebration-videos-section {
  padding: 3rem 0;
  background-color: var(--bg-color);
}

.section-badge {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  display: block;
  text-transform: uppercase;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.video-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 1/1.2;
  background-color: #000;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.celebration-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.play-button {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  z-index: 2;
  position: relative;
  animation: playPulse 2s infinite;
}

@keyframes playPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.play-button::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: -1;
  backdrop-filter: blur(4px);
  animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.2; }
  100% { transform: scale(1); opacity: 0.5; }
}

.video-card:hover .play-button {
  transform: scale(1.1);
  animation-play-state: paused;
}

@media (max-width: 640px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button::before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }
}

/* Modal Popup Styles */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000; /* Set z-index to 10000 to be above the navbar */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem; /* Generous padding to prevent vertical overflow clipping */
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto; /* Enable scroll if height exceeds screen size */
}

.video-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 400px; /* Reduced slightly for better mobile fit */
  max-height: 90vh;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.modal-card-header {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  background-color: #fff;
}

.modal-title-container {
  display: flex;
  flex-direction: column;
}

.modal-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0;
}

.modal-card-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary); /* Gold color theme */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

.modal-card-body {
  position: relative;
  width: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-card-footer {
  padding: 1.5rem;
  background-color: #fff;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-card-description {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}

.modal-cta-btn {
  width: 100%;
  text-align: center;
  background: var(--gradient);
  color: #111827;
  font-weight: 700;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.modal-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.video-modal-overlay.open .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--text-main);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-modal-close:hover {
  background-color: rgba(255, 0, 0, 0.1);
  color: #dc2626;
  transform: scale(1.1);
}

.celebration-video-popup {
  width: 100%;
  max-height: 45vh; /* Restrict height so entire card fits on screen */
  display: block;
  object-fit: contain; /* Preserve aspect ratio without stretching */
  background-color: #000;
}

/* --------------------------------------------------------------------------
   8. MEET BINGE VIBE GALLERY
   -------------------------------------------------------------------------- */
.meet-section {
  padding: 2rem 0;
  background-color: var(--bg-color);
}

.meet-desc {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4b5563;
}

.gallery-grid {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item-large {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-md);
}

.gallery-item-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-small-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item-small {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}

.gallery-item-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

@media (max-width: 640px) {
  .gallery-grid {
    padding: 0 1rem;
  }
  
  .gallery-item-large {
    border-radius: 16px;
    aspect-ratio: 4/3;
  }
  
  .gallery-item-small {
    border-radius: 16px;
  }
  
  .meet-desc {
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------------------
   9. QUICK INFO & STATS
   -------------------------------------------------------------------------- */
.quick-info-section {
  padding: 2rem 0;
  background-color: var(--bg-alt);
}

.pills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.info-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background-color: #f3f4f6;
  border-radius: 50px;
  color: #111827;
  font-weight: 500;
  font-size: 0.9375rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.pill-icon {
  color: #6366f1;
  display: flex;
  align-items: center;
}

.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  max-width: 600px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #111827;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
}

.stat-label {
  font-size: 1rem;
  color: #111827;
  font-weight: 600;
}

.text-yellow {
  color: #fbbf24;
}

@media (max-width: 640px) {
  .stats-row {
    gap: 2rem;
  }
  
  .stat-value {
    font-size: 1.125rem;
  }
  
  .stat-label {
    font-size: 0.875rem;
  }
  
  .pills-grid {
    gap: 0.5rem;
  }
  
  .info-pill {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}

/* --------------------------------------------------------------------------
   10. EXTRA VIBES & DECOR GALLERY
   -------------------------------------------------------------------------- */
.extra-vibes-section {
  padding: 2rem 0 5rem;
  background-color: var(--bg-color);
}

.extra-gallery {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.extra-gallery::-webkit-scrollbar {
  display: none;
}

.extra-gallery-item {
  flex: 0 0 300px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}

.extra-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.extra-footer {
  margin-top: 3rem;
}

.extra-subtitle {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.btn-book-now {
  background: var(--gradient);
  color: #111827;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  animation: pulse 2s infinite;
}

.btn-book-now:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

@media (max-width: 640px) {
  .extra-gallery-item {
    flex: 0 0 250px;
  }
  
  .btn-book-now {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------------------
   11. THE EXPERIENCE (FEATURES)
   -------------------------------------------------------------------------- */
.section-experience {
  background-color: #fafafa;
  padding: 2rem 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.experience-card {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

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

.experience-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: #f3f4f6;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.experience-emoji {
  font-size: 2rem;
}

.experience-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.experience-desc {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .experience-card {
    padding: 1.5rem 0.75rem;
    border-radius: 16px;
  }

  .experience-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .experience-emoji {
    font-size: 1.5rem;
  }

  .experience-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .experience-desc {
    font-size: 0.8125rem;
  }
}

/* --------------------------------------------------------------------------
   12. OCCASIONS GRID
   -------------------------------------------------------------------------- */
.section-occasions {
  padding: 2rem 0;
  background-color: white;
}

.occasions-new-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 3rem auto;
}

.occasion-new-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.occasion-new-card:hover {
  transform: translateY(-3px);
  background: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.occasion-new-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #fff1f5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.occasion-new-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.occasion-new-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.occasion-new-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .occasions-new-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .occasion-new-card {
    padding: 1rem;
    gap: 0.75rem;
    flex-direction: column;
    text-align: center;
  }

  .occasion-new-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .occasion-new-title {
    font-size: 0.9375rem;
  }

  .occasion-new-desc {
    font-size: 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   13. EVERYTHING INCLUDED
   -------------------------------------------------------------------------- */
.section-included {
  padding: 2rem 0;
  background-color: #fafafa;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin: 3rem auto;
}

.included-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: white;
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.included-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.included-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.included-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 640px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .included-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .included-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .included-title {
    font-size: 0.875rem;
  }
}

/* --------------------------------------------------------------------------
   14. REVIEWS SCROLLER
   -------------------------------------------------------------------------- */
.section-reviews {
  padding: 2rem 0 1rem;
  background-color: white;
}

.rating-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #f3f4f6;
  padding: 1rem 2rem;
  border-radius: 40px;
  margin-top: 1.5rem;
}

.rating-badge .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 0.25rem;
}

.rating-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

.reviews-scroller {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 3rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-scroller::-webkit-scrollbar {
  display: none;
}

.review-new-card {
  flex: 0 0 320px;
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

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

.review-new-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.6;
  color: #1f2937;
  margin-bottom: 2rem;
}

.review-new-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f3f4f6;
  padding-top: 1rem;
}

.review-new-name {
  font-weight: 700;
  color: #111827;
  font-size: 0.9375rem;
}

.review-new-occasion {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.8125rem;
}

.btn-book-now-pink {
  background: var(--gradient);
  color: #111827;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  animation: pulse 2s infinite;
}

@media (max-width: 640px) {
  .review-new-card {
    flex: 0 0 280px;
    padding: 1.5rem;
  }
  
  .review-new-text {
    font-size: 1rem;
  }
  
  .btn-book-now-pink {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  .rating-badge {
    padding: 0.75rem 1.5rem;
  }

  .rating-text {
    font-size: 0.8125rem;
  }
}

/* --------------------------------------------------------------------------
   15. LOCATION & MAP
   -------------------------------------------------------------------------- */
.section-location {
  background-color: var(--bg-color);
  padding: 2rem 0;
}

.location-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.map-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  height: 450px;
  position: relative;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .map-container {
    height: 350px;
  }
}

/* --------------------------------------------------------------------------
   16. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.max-w-3xl {
  max-width: 800px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  font-weight: 600;
}

.faq-question h3 {
  font-size: 1.125rem;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.faq-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--text-muted);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
  opacity: 1;
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   17. FOOTER SECTION
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--text-main);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 1.5rem;
}

.brand-col .logo-text {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-desc {
  color: #a0a0a0;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: #a0a0a0;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #a0a0a0;
  line-height: 1.6;
}

.contact-icon {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact a {
  color: #a0a0a0;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #808080;
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --------------------------------------------------------------------------
   18. STICKY BOTTOM ACTION BAR & WIGGLE
   -------------------------------------------------------------------------- */
.bottom-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row-reverse; /* WhatsApp on the left, Call Now on the right */
  background: white;
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
  gap: 1rem;
}

.action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: white;
  animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 80%, 100% { transform: rotate(0deg) scale(1); }
  85% { transform: rotate(3deg) scale(1.05); }
  90% { transform: rotate(-3deg) scale(1.05); }
  95% { transform: rotate(3deg) scale(1.05); }
}

.call-btn {
  background-color: var(--primary);
  color: #111827;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.call-btn .icon-pink {
  color: #111827;
}

.call-btn:hover {
  background-color: var(--secondary);
  color: #111827;
  transform: translateY(-2px);
}

.whatsapp-btn {
  background-color: #25d366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background-color: #1ebc5a;
  transform: translateY(-2px);
}

/* ==========================================================================
   19. RESPONSIVE DESKTOP LAYOUT ENHANCEMENTS (WIDTHS >= 992PX)
   ========================================================================== */
@media (min-width: 992px) {
  /* 1. Global Container Width Upgrades */
  .container {
    max-width: 1200px;
    padding: 0 2rem;
  }

  /* 2. Meet Binge Vibe Gallery - Modern Editorial Layout (Side-by-Side Split) */
  .gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin-top: 3rem;
  }

  .gallery-item-large {
    height: 100%;
    aspect-ratio: auto;
  }

  .gallery-item-small-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
  }

  .gallery-item-small {
    flex: 1;
    aspect-ratio: auto;
  }

  /* 3. Extra Vibes Gallery - Desktop Clean Static Grid (2 rows of 3) */
  .extra-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
  }

  .extra-gallery-item {
    flex: none;
    width: 100%;
  }

  /* 4. Experience Cards - Elegant Row of 4 Columns */
  .experience-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    gap: 1.5rem;
    margin-top: 4rem;
  }

  .experience-card {
    padding: 3rem 1.5rem;
  }

  /* 5. Occasions Section - Symmetrical 2x4 Layout */
  .occasions-new-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    gap: 1.5rem;
    margin-top: 4rem;
  }

  .occasion-new-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1rem;
  }

  /* 6. Everything Included - Elegant 2x5 Layout (No Stretching) */
  .included-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1100px;
    gap: 1.5rem;
    margin-top: 4rem;
  }

  .included-card {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.25rem;
    gap: 1rem;
  }

  .included-icon {
    margin: 0 auto;
  }

  /* 7. Reviews Section - 3 Column Grid (No Horizonal Scrolling Needed) */
  .reviews-scroller {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 0;
  }

  .review-new-card {
    flex: none;
    width: 100%;
    height: 100%;
  }
}

/* Hide Sticky Bottom Action Bar and reset body padding on Tablet/Desktop screens */
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
  
  .bottom-action-bar {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   20. SEO BLOGS SECTION
   -------------------------------------------------------------------------- */
.seo-blogs-section {
  padding: 4rem 0;
  background-color: var(--bg-alt);
}

.blogs-scroll-container {
  width: 100%;
  overflow-x: auto;
  padding: 1rem 1rem 2rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
  -webkit-overflow-scrolling: touch;
}

.blogs-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.blogs-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.blogs-scroll-container::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}

.blogs-wrapper {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.seo-blog-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  width: 340px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.seo-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.seo-blog-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.seo-blog-content {
  font-size: 0.95rem;
  color: #4b5563; /* slightly darker muted text */
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.seo-highlight {
  font-weight: 700;
  color: var(--primary); /* Matched to landing page gold theme */
}

.seo-read-more {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary); /* Match the highlight gold */
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin-top: auto;
}

.seo-read-more:hover {
  opacity: 0.8;
}

/* ==========================================================================
   21. PREMIUM BOOKING FUNNEL WIZARD & MODAL STYLES
   Dark Cinematic Theme, HSL Accents, Glassmorphism & High-Contrast CTAs
   ========================================================================== */

/* Design Variables specifically for the Funnel */
:root {
  --funnel-bg: #0A0A0F;
  --funnel-surface: #111827;
  --funnel-surface-light: #1F2937;
  --funnel-red: #E94560;
  --funnel-red-glow: rgba(233, 69, 96, 0.4);
  --funnel-gold: #F5A623;
  --funnel-gold-glow: rgba(245, 166, 35, 0.3);
  --funnel-success: #27AE60;
  --funnel-warning: #F39C12;
  --funnel-error: #E74C3C;
  --funnel-text-primary: #FFFFFF;
  --funnel-text-secondary: #9CA3AF;
  --funnel-border: rgba(255, 255, 255, 0.08);
  --funnel-border-focus: rgba(233, 69, 96, 0.5);
}

/* Modal Overlay base */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 4, 6, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Wizard Box */
.booking-wizard {
  width: 100%;
  max-width: 600px;
  height: 90vh;
  max-height: 850px;
  background-color: var(--funnel-bg);
  border: 1px solid var(--funnel-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  color: var(--funnel-text-primary);
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.open .booking-wizard {
  transform: scale(1) translateY(0);
}

/* Drag Handle / Mobile header */
.wizard-drag-handle {
  display: none;
  width: 40px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  margin: 0.75rem auto 0.25rem;
  flex-shrink: 0;
}

/* Wizard Header */
.wizard-header {
  padding: 1.5rem 1.75rem 1rem;
  border-bottom: 1px solid var(--funnel-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  flex-shrink: 0;
}

.wizard-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wizard-title-container h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--funnel-text-primary);
}

.wizard-title-container p {
  font-size: 0.8125rem;
  color: var(--funnel-text-secondary);
}

.wizard-close {
  background: transparent;
  border: none;
  color: var(--funnel-text-secondary);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.wizard-close:hover {
  color: var(--funnel-red);
  transform: rotate(90deg);
}

/* Progress bar system */
.progress-bar-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.progress-track {
  flex: 1;
  height: 6px;
  background-color: var(--funnel-surface-light);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 15%; /* Incremented by step */
  background: linear-gradient(90deg, var(--funnel-red) 0%, #ff6b8b 100%);
  box-shadow: 0 0 8px var(--funnel-red-glow);
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--funnel-red);
  min-width: 65px;
  text-align: right;
}

/* Urgency Timer Banner */
.hold-timer-banner {
  background: rgba(243, 156, 18, 0.15);
  border-bottom: 1px solid rgba(243, 156, 18, 0.3);
  padding: 0.5rem 1.75rem;
  display: none; /* Show from step 3 onwards */
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--funnel-warning);
  font-weight: 600;
  flex-shrink: 0;
  animation: timerPulse 2s infinite;
}

@keyframes timerPulse {
  0%, 100% { background: rgba(243, 156, 18, 0.12); }
  50% { background: rgba(243, 156, 18, 0.22); }
}

.hold-timer-banner.active {
  display: flex;
}

.timer-countdown {
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

/* Wizard Body / Step Screens */
.wizard-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--funnel-surface-light) transparent;
}

.wizard-body::-webkit-scrollbar {
  width: 6px;
}

.wizard-body::-webkit-scrollbar-thumb {
  background-color: var(--funnel-surface-light);
  border-radius: 999px;
}

.wizard-step {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  animation: stepFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.wizard-step.active {
  display: flex;
}

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

/* Sub-headings for wizard steps */
.step-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--funnel-text-primary);
  margin-bottom: 0.25rem;
}

.step-description {
  font-size: 0.8125rem;
  color: var(--funnel-text-secondary);
  line-height: 1.4;
}

/* Input Fields Styles */
.funnel-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.funnel-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--funnel-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.funnel-input {
  background-color: var(--funnel-surface);
  border: 1px solid var(--funnel-border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  width: 100%;
}

.funnel-input:focus {
  outline: none;
  border-color: var(--funnel-red);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.15);
}

.funnel-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.input-error {
  border-color: var(--funnel-error) !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
}

.error-text {
  color: #ff6b6b;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.125rem;
}

/* STEP 1: Occasion Tiles Radio Grid */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.occasion-tile {
  background-color: var(--funnel-surface);
  border: 1px solid var(--funnel-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
}

.occasion-tile:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  background-color: var(--funnel-surface-light);
}

.occasion-icon-emoji {
  font-size: 1.75rem;
  line-height: 1;
}

.occasion-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--funnel-text-primary);
}

/* Selected Occasion Tile state */
.occasion-radio:checked + .occasion-tile {
  border-color: var(--funnel-red);
  background-color: rgba(233, 69, 96, 0.08);
  box-shadow: 0 0 0 2px var(--funnel-red), 0 8px 24px rgba(233, 69, 96, 0.15);
}

.occasion-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* STEP 2: Personalized Recommendation Banner */
.recommendation-banner {
  background: rgba(233, 69, 96, 0.1);
  border: 1px dashed var(--funnel-red);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--funnel-text-primary);
  margin-bottom: 0.5rem;
}

.recommendation-banner span {
  font-weight: 700;
  color: var(--funnel-red);
}

/* STEP 2: Theatre Cards in Modal */
.funnel-theatre-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.funnel-theatre-card {
  background-color: var(--funnel-surface);
  border: 1px solid var(--funnel-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.25rem;
  cursor: pointer;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.funnel-theatre-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background-color: var(--funnel-surface-light);
}

.theatre-card-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  align-self: center;
}

.theatre-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.theatre-card-badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background: linear-gradient(135deg, var(--funnel-red) 0%, #ff6b8b 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(233, 69, 96, 0.3);
}

.theatre-card-badge.gold-badge {
  background: linear-gradient(135deg, var(--funnel-gold) 0%, #f7c978 100%);
  box-shadow: 0 4px 10px rgba(245, 166, 35, 0.3);
}

.theatre-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theatre-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.15rem 0;
}

.theatre-amenity-tag {
  font-size: 0.7rem;
  color: var(--funnel-text-secondary);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.theatre-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.theatre-price-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--funnel-red);
}

.theatre-price-label {
  font-size: 0.75rem;
  color: var(--funnel-text-secondary);
}

/* Selected Theatre state */
.theatre-radio:checked + .funnel-theatre-card {
  border-color: var(--funnel-red);
  background-color: rgba(233, 69, 96, 0.08);
  box-shadow: 0 0 0 2px var(--funnel-red), 0 8px 24px rgba(233, 69, 96, 0.15);
}

.theatre-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* STEP 3: Slot Grid Styles */
.slots-grid-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

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

.slot-pill {
  background-color: var(--funnel-surface);
  border: 1px solid var(--funnel-border);
  border-radius: var(--radius-sm);
  padding: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
  height: 64px;
}

.slot-pill:not(.booked):hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background-color: var(--funnel-surface-light);
}

.slot-time {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
}

.slot-status-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Slot status variants */
.slot-pill.available {
  border-color: rgba(39, 174, 96, 0.3);
}

.slot-pill.available .slot-status-label {
  color: var(--funnel-success);
}

.slot-pill.high-demand {
  border-color: rgba(243, 156, 18, 0.4);
}

.slot-pill.high-demand .slot-status-label {
  color: var(--funnel-warning);
}

.slot-pill.booked {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: rgba(255, 255, 255, 0.02);
  border-color: transparent;
}

.slot-pill.booked .slot-time {
  text-decoration: line-through;
  color: var(--funnel-text-secondary);
}

.slot-pill.booked .slot-status-label {
  color: var(--funnel-text-secondary);
}

/* Selected slot state */
.slot-radio:checked + .slot-pill {
  background-color: var(--funnel-red) !important;
  border-color: var(--funnel-red) !important;
  box-shadow: 0 4px 15px var(--funnel-red-glow);
}

.slot-radio:checked + .slot-pill .slot-time,
.slot-radio:checked + .slot-pill .slot-status-label {
  color: white !important;
}

.slot-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* STEP 4: Add-Ons UI */
.addon-categories {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.addon-category-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--funnel-gold);
  border-bottom: 1px solid var(--funnel-border);
  padding-bottom: 0.35rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.addon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.addon-card {
  background-color: var(--funnel-surface);
  border: 1px solid var(--funnel-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.addon-card:hover {
  background-color: var(--funnel-surface-light);
  border-color: rgba(255, 255, 255, 0.15);
}

.addon-details-container {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.addon-thumb {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.addon-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.addon-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
}

.addon-desc {
  font-size: 0.75rem;
  color: var(--funnel-text-secondary);
}

.addon-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--funnel-red);
}

.addon-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2; /* keep button responsive */
}

/* Plus/Minus counter inside addon */
.addon-counter-btn {
  background: var(--funnel-surface-light);
  border: 1px solid var(--funnel-border);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.addon-counter-btn:hover {
  background-color: var(--funnel-red);
  border-color: var(--funnel-red);
}

.addon-quantity {
  font-size: 0.875rem;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

/* Checkbox addon style */
.addon-checkbox-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid var(--funnel-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: transparent;
  background-color: transparent;
}

.addon-card.selected {
  border-color: var(--funnel-red);
  background-color: rgba(233, 69, 96, 0.05);
}

.addon-card.selected .addon-checkbox-icon {
  background-color: var(--funnel-red);
  border-color: var(--funnel-red);
  color: white;
}

/* STEP 5: Review Booking Breakdown */
.review-summary-box {
  background-color: var(--funnel-surface);
  border: 1px solid var(--funnel-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.75rem;
}

.review-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.review-label-col {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-row-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--funnel-text-secondary);
}

.review-row-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}

.review-row-subvalue {
  font-size: 0.75rem;
  color: var(--funnel-text-secondary);
}

.review-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  align-self: center;
}

/* Promo Box */
.promo-code-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.promo-input-wrapper {
  display: flex;
  gap: 0.5rem;
}

.btn-promo-apply {
  background-color: var(--funnel-surface-light);
  border: 1px solid var(--funnel-border);
  color: white;
  padding: 0 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-promo-apply:hover {
  background-color: var(--funnel-red);
  border-color: var(--funnel-red);
}

.promo-status-msg {
  font-size: 0.75rem;
  font-weight: 700;
  display: none;
}

.promo-status-msg.success {
  color: var(--funnel-success);
  display: block;
}

.promo-status-msg.error {
  color: var(--funnel-error);
  display: block;
}

/* Booking running bill */
.bill-breakdown-box {
  background-color: var(--funnel-surface);
  border: 1px solid var(--funnel-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.bill-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--funnel-text-secondary);
}

.bill-row.discount-row {
  color: var(--funnel-success);
}

.bill-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 800;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

.bill-total-price {
  color: var(--funnel-red);
}

/* Trust signals near CTAs */
.checkout-trust-signals {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.trust-signal-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--funnel-text-secondary);
}

.trust-signal-item svg {
  color: var(--funnel-success);
}

/* STEP 6: Razorpay Payment simulation Screen */
.payment-sim-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
  text-align: center;
  gap: 1.5rem;
}

.razorpay-sim-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0b2f64; /* Razorpay deep navy blue */
  background: white;
  padding: 0.4rem 1.2rem;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.payment-loading-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.payment-loading-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 6px solid var(--funnel-red);
  border-radius: 50%;
  animation: ringAnim 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--funnel-red) transparent transparent transparent;
}

.payment-loading-ring div:nth-child(1) { animation-delay: -0.45s; }
.payment-loading-ring div:nth-child(2) { animation-delay: -0.3s; }
.payment-loading-ring div:nth-child(3) { animation-delay: -0.15s; }

@keyframes ringAnim {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.payment-methods-sim {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pay-sim-option {
  background: var(--funnel-surface);
  border: 1px solid var(--funnel-border);
  padding: 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
}

.pay-sim-option:hover {
  background-color: var(--funnel-surface-light);
  border-color: var(--funnel-red);
}

.pay-sim-option svg {
  color: var(--funnel-red);
}

/* STEP 7: Booking Confirmation / Success View */
.success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(39, 174, 96, 0.1);
  border: 3px solid var(--funnel-success);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--funnel-success);
  margin-bottom: 0.5rem;
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
}

.success-desc {
  font-size: 0.875rem;
  color: var(--funnel-text-secondary);
  max-width: 400px;
  line-height: 1.5;
}

.confirmation-card {
  background-color: var(--funnel-surface);
  border: 1px solid var(--funnel-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.confirmation-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
}

.confirmation-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.confirm-label {
  color: var(--funnel-text-secondary);
}

.confirm-val {
  font-weight: 700;
  color: white;
}

.confirm-val.val-red {
  color: var(--funnel-red);
}

/* Invitation Section */
.guest-invite-box {
  width: 100%;
  max-width: 420px;
  background: rgba(245, 166, 35, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.invite-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--funnel-gold);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.invite-desc {
  font-size: 0.75rem;
  color: var(--funnel-text-secondary);
  line-height: 1.4;
}

/* Wizard Footer Buttons */
.wizard-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--funnel-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
  background-color: var(--funnel-surface);
}

.btn-funnel {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
}

.btn-funnel-next {
  background: linear-gradient(135deg, var(--funnel-red) 0%, #ff6b8b 100%);
  color: white;
  box-shadow: 0 4px 15px var(--funnel-red-glow);
  flex: 1;
  justify-content: center;
}

.btn-funnel-next:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
}

.btn-funnel-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-funnel-back {
  background: var(--funnel-surface-light);
  border: 1px solid var(--funnel-border);
  color: var(--funnel-text-secondary);
}

.btn-funnel-back:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-funnel-whatsapp {
  background-color: #25d366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  font-size: 0.95rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  width: 100%;
  justify-content: center;
}

.btn-funnel-whatsapp:hover {
  background-color: #1ebc5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.btn-funnel-invite {
  background-color: transparent;
  border: 2px solid var(--funnel-gold);
  color: var(--funnel-gold);
  width: 100%;
  justify-content: center;
}

.btn-funnel-invite:hover {
  background-color: var(--funnel-gold);
  color: #111827;
}

/* Fixed Mobile Sticky CTA Bar Styling */
.funnel-mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: var(--funnel-red);
  background: linear-gradient(135deg, var(--funnel-red) 0%, #ff5273 100%);
  display: none; /* Shown dynamically via media queries */
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-bar-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.sticky-bar-title {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sticky-bar-subtitle {
  font-size: 0.7rem;
  opacity: 0.85;
  font-weight: 500;
}

.btn-sticky-book {
  background: white;
  color: var(--funnel-red);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  animation: mobileButtonPulse 2.5s infinite;
}

@keyframes mobileButtonPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* CSS-only Confetti Canvas styling */
.confetti-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--funnel-red);
  top: -10px;
  opacity: 0.8;
  animation: confettiFall 4s linear infinite;
}

@keyframes confettiFall {
  0% { transform: translateY(0) rotate(0deg); top: -10px; }
  100% { transform: translateY(900px) rotate(720deg); top: 100%; opacity: 0; }
}

/* ==========================================================================
   22. RESPONSIVE MEDIA QUERIES FOR MODAL
   ========================================================================== */

/* Mobile Adaptations */
@media (max-width: 768px) {
  /* sticky bottom override */
  .bottom-action-bar {
    display: none !important; /* Hide old whatsapp/call bottom bar entirely! */
  }

  body {
    padding-bottom: 64px !important; /* spacing for new sticky bar */
  }

  .funnel-mobile-sticky-bar {
    display: flex; /* Show the high-converting sticky bar! */
  }

  .booking-wizard {
    height: 95vh;
    max-height: none;
    border-radius: 24px 24px 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .booking-modal-overlay.open .booking-wizard {
    transform: translateY(0);
  }

  .booking-modal-overlay {
    align-items: flex-end; /* Pin sheet to bottom */
  }

  .wizard-drag-handle {
    display: block; /* drag handle bar */
  }

  .wizard-header {
    padding: 0.5rem 1.25rem 0.75rem;
  }

  .wizard-body {
    padding: 1.25rem;
  }

  .wizard-footer {
    padding: 1rem 1.25rem;
  }

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

  .funnel-theatre-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }

  .theatre-card-img {
    width: 100%;
    height: 120px;
  }

  .theatre-card-badge {
    top: 10px;
    right: 10px;
  }

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

  .addon-card {
    padding: 0.75rem;
  }

  .checkout-trust-signals {
    gap: 0.75rem;
  }
}
