/* ===== VARIABLES & RESET ===== */
:root {
  --bg-dark: #FFFFFF;
  --bg-card: #F8F9FA;
  --bg-light: #F0F2F5;
  --text-heading: #1A1D23;
  --text-body: #4A5568;
  --text-muted: #718096;
  --text-dark: #1A1D23;
  --accent-primary: #E91E63;
  --accent-secondary: #8A2BE2;
  --accent-warm: #FF6B6B;
  --border-color: rgba(0, 0, 0, 0.08);
  --border-glow: rgba(233, 30, 99, 0.4);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);

  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-emoji: 'Noto Color Emoji', 'Segoe UI Emoji', sans-serif;
  --radius-card: 16px;
  --radius-sm: 12px;
}

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

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

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

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

a { text-decoration: none; }

/* Background Utility Classes */
.bg-dark { background-color: var(--bg-dark); }
.bg-card { background-color: var(--bg-card); }
.bg-light { background-color: var(--bg-light); }
.text-white { color: #FFFFFF !important; }
.border-top-dark { border-top: 1px solid var(--border-color); }

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, #E91E63, #FF6B6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px !important;
  gap: 12px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-heading);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.logo-dot { color: var(--accent-primary); }

.header-nav {
  display: none;
  gap: 24px;
}
.nav-link {
  color: var(--text-body);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--accent-primary); }

.btn-header-cta {
  background: var(--accent-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-header-cta:hover {
  filter: brightness(1.15);
  transform: scale(1.03);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--bg-card);
  z-index: 1001;
  padding: 80px 24px 24px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.active { right: 0; }
.mobile-nav-link {
  color: var(--text-heading);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 10px;
  transition: all 0.2s;
}
.mobile-nav-link:hover { background: rgba(0,0,0,0.05); }

@media(min-width: 768px) {
  .header-nav { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 400;
  line-height: 1.25;
}

h1 { font-size: 36px; margin-bottom: 20px; }
h2 { font-size: 28px; margin-bottom: 12px; }
h3 { font-size: 20px; margin-bottom: 8px; }
h4 { font-size: 16px; margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; color: var(--text-heading); }

.section-label {
  display: inline-block;
  color: var(--accent-primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.section-subtext {
  font-size: 14px;
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto 24px auto;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.star-color { color: #FFD700; }
.small-text { font-size: 13px; color: var(--text-muted); }

/* ===== UTILITIES & LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 40px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  text-decoration: none;
  font-size: 15px;
}
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-primary {
  background: linear-gradient(135deg, #E91E63, #C2185B);
  color: #FFFFFF;
}
.btn-primary-dark {
  background: linear-gradient(135deg, #E91E63, #C2185B);
  color: #FFFFFF;
}
.btn-primary:hover, .btn-primary-dark:hover {
  filter: brightness(1.15);
  transform: scale(1.02);
}
.btn-outline-glow {
  background: transparent;
  color: var(--accent-primary);
  border: 1.5px solid var(--accent-primary);
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.15);
}
.btn-outline-glow:hover {
  background: rgba(233, 30, 99, 0.08);
  box-shadow: 0 0 15px rgba(233, 30, 99, 0.3);
}
.btn-glow {
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.35);
}
.btn-glow:hover {
  box-shadow: 0 6px 28px rgba(233, 30, 99, 0.5);
}
.btn-block { width: 100%; }
.btn-large { font-size: 17px; padding: 16px 44px; }

/* ===== SECTION 1: HERO ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 220px 0 60px;
  overflow: hidden;
  margin-top: 60px;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background-color: var(--bg-dark);
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.5) 75%, rgba(255,255,255,1) 100%);
}
.hero-content {
  max-width: 700px;
  color: var(--text-heading);
}
.hero-badge {
  display: inline-block;
  background: rgba(233, 30, 99, 0.15);
  border: 1px solid rgba(233, 30, 99, 0.3);
  color: var(--accent-primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-subtext {
  font-size: 16px;
  margin-bottom: 32px;
  color: var(--text-body);
}
.trust-strip {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-divider { opacity: 0.4; }

/* ===== SECTION 2: VIDEO GRID ===== */
.bg-light {
  color: var(--text-dark);
}
.bg-light .section-label {
  color: var(--accent-primary);
}
.bg-light h2 {
  color: var(--text-dark);
}
.bg-light .section-subtext {
  color: #666;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.video-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  gap: 10px;
}
.video-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}
.video-play-btn {
  width: 48px;
  height: 48px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(233,30,99,0.3);
  transition: transform 0.2s;
}
.video-placeholder:hover .video-play-btn {
  transform: scale(1.1);
}
.video-placeholder-text {
  font-size: 12px;
  color: #888;
  text-align: center;
  line-height: 1.4;
}
.video-placeholder.has-video .video-play-btn,
.video-placeholder.has-video .video-placeholder-text {
  display: none;
}
.video-tag {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* ===== SECTION 3: THEATRE GALLERY ===== */
.theatre-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.theatre-gallery-main {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.theatre-gallery-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.theatre-gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.theatre-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.theatre-gallery-img:hover {
  transform: scale(1.05);
}

.theatre-info-bar {
  text-align: center;
  margin-bottom: 16px;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.tag {
  background-color: rgba(0,0,0,0.06);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  color: var(--text-heading);
  font-weight: 500;
}
.theatre-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--text-heading);
  gap: 16px;
  font-weight: 600;
}
.stat-div {
  width: 1px;
  height: 16px;
  background: var(--border-color);
}

/* ===== VIBE CAROUSEL ===== */
.vibe-carousel-wrapper {
  margin: 24px -20px 0;
  padding: 0 20px;
}
.vibe-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-primary) transparent;
  scroll-snap-type: x mandatory;
}
.vibe-carousel::-webkit-scrollbar {
  height: 4px;
}
.vibe-carousel::-webkit-scrollbar-thumb {
  background-color: var(--accent-primary);
  border-radius: 4px;
}
.vibe-img {
  flex: 0 0 80%;
  max-width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  scroll-snap-align: center;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===== SECTION 4: EXPERIENCE / FEATURES 2-COL ===== */
.features-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-card-compact {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all 0.3s;
}
.glow-hover:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 30, 99, 0.4);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.1);
}
.feature-icon-small {
  font-size: 28px;
  font-family: var(--font-emoji);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
}
.feature-card-compact h4 {
  font-size: 14px;
  margin-bottom: 2px;
}
.feature-card-compact p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== SECTION 5: OCCASIONS 2-COL ===== */
.occasions-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.occasion-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}
.occasion-card:hover {
  border-color: rgba(233, 30, 99, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(233, 30, 99, 0.08);
}
.occ-emoji-big {
  font-size: 32px;
  font-family: var(--font-emoji);
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(233, 30, 99, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.occ-text h4 {
  font-size: 14px;
  margin-bottom: 2px;
}
.occ-text p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ===== SECTION 6: INCLUDED 2-COL ===== */
.included-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 700px;
  margin: 0 auto;
}
.included-item-compact {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--text-heading);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.inc-icon {
  font-size: 20px;
  font-family: var(--font-emoji);
  flex-shrink: 0;
}

/* ===== SECTION 7: REVIEWS ===== */
.badge-google {
  display: inline-block;
  background: rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
}
.reviews-scroll-container {
  overflow-x: auto;
  padding-bottom: 16px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-scroll-container::-webkit-scrollbar { display: none; }
.reviews-grid {
  display: flex;
  gap: 16px;
  min-width: max-content;
}
.review-card {
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-text {
  font-style: italic;
  font-size: 15px;
  color: var(--text-heading);
  margin-bottom: 16px;
  font-family: var(--font-heading);
  line-height: 1.5;
}
.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
}
.review-author strong { color: var(--text-heading); }
.review-tag { color: var(--accent-primary); font-size: 11px; font-weight: 600; }

/* ===== SECTION 8: FAQ ===== */
.faq-container { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  transition: color 0.3s;
}
.faq-question:hover h4 { color: var(--accent-primary); }
.faq-question h4 { font-size: 16px; margin: 0; color: var(--text-heading); }
.chevron { color: var(--accent-primary); font-size: 12px; transition: transform 0.3s ease; }
.faq-item.active .chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 18px; }
.faq-answer p { font-size: 14px; color: var(--text-body); }

/* ===== SECTION 9: FINAL CTA ===== */
.final-cta-card {
  text-align: center;
  padding: 48px 20px;
  background: rgba(233, 30, 99, 0.04);
  border: 1px solid rgba(233, 30, 99, 0.2);
  border-radius: var(--radius-card);
  box-shadow: 0 0 30px rgba(233, 30, 99, 0.06);
}
.neon-border {
  border: 1px solid rgba(233, 30, 99, 0.3);
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.08);
}
.final-cta-subtext { font-size: 15px; margin-bottom: 24px; color: var(--text-body); }
.location-text { font-size: 14px; color: var(--text-muted); }
.social-icons { display: flex; justify-content: center; gap: 24px; margin-top: 16px; }
.social-icons a { color: var(--text-muted); font-weight: 500; font-size: 14px; transition: color 0.3s; }
.social-icons a:hover { color: var(--text-heading); }

.footer {
  text-align: center;
  padding: 24px 20px 120px;
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== STICKY FLOATING BUTTONS (Desktop & Mobile) ===== */
.sticky-float-btn {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.3s;
}
.sticky-float-btn:hover {
  transform: scale(1.1);
}
.sticky-call {
  left: 20px;
  bottom: 24px;
  background: #1E293B;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}
.sticky-whatsapp {
  right: 20px;
  bottom: 24px;
  background: #25D366;
  color: #fff;
}
.sticky-whatsapp:hover {
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

/* ===== STICKY MOBILE SPLIT BAR ===== */
.split-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  z-index: 1000;
  display: flex;
  gap: 10px;
}

.split-sticky .btn {
  flex: 1;
  padding: 12px 0;
  border-radius: 12px;
  font-size: 14px;
}
.btn-call {
  background: #1E293B;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .section { padding: 60px 0; }
  .hero { padding: 240px 0 80px; }

  .split-sticky { display: none; }
  .footer { padding-bottom: 40px; }

  .theatre-gallery {
    grid-template-columns: 2fr 1fr;
  }
  .theatre-gallery-main {
    grid-row: 1 / 3;
    aspect-ratio: auto;
  }
  .theatre-gallery-side {
    grid-template-columns: 1fr;
  }

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

  .features-grid-2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .occasions-grid-2col {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .included-grid-2col {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .review-card { width: 320px; }
}

@media (max-width: 767px) {
  .header-nav { display: none !important; }
  
  .sticky-float-btn {
    display: none !important;
  }
  
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .feature-card-compact {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
  }
  
  .occasion-card {
    padding: 12px;
    gap: 10px;
  }
  .occ-emoji-big {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}

/* Hide desktop sticky on mobile, show mobile sticky */
@media (min-width: 768px) {
  .sticky-float-btn {
    display: flex;
  }
}
