/* ==========================================================================
   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;
}
