/* ============================================
   AUDIOHOLIC — BLACK & GOLD LUXURY THEME
   ============================================ */

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

:root {
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #b8960c;
  --primary: #d4af37;
  --primary-light: #f0d060;
  --primary-dark: #b8960c;
  --secondary: #c9a227;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-card: #161616;
  --light: #1a1a1a;
  --gray: #a3a3a3;
  --text: #f5f5f5;
  --muted: #9ca3af;
  --radius: 12px;
  --shadow: 0 10px 40px rgba(0,0,0,0.5);
  --glass: rgba(10,10,10,0.85);
  --glass-border: rgba(212,175,55,0.2);
  --card-bg: #161616;
  --card-border: rgba(212,175,55,0.15);
  --card-shadow: 0 4px 24px rgba(0,0,0,0.35);
  --card-hover-bg: rgba(212,175,55,0.06);
  --card-hover-border: rgba(212,175,55,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden !important;
  overflow-y: auto !important;
  line-height: 1.6;
}

html {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

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

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

/* ============================================
   NAVBAR
   ============================================ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253,248,236,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,175,55,0.3);
  z-index: 9999;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 16px rgba(154,123,10,0.1);
  gap: 20px;
}

header.scrolled {
  padding: 7px 6%;
  box-shadow: 0 4px 24px rgba(154,123,10,0.15);
  border-bottom-color: rgba(212,175,55,0.4);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Split nav — logo centered, links left & right */
nav.nav-left,
nav.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav.nav-left {
  justify-content: flex-end;
  flex: 1;
}

nav.nav-right {
  justify-content: flex-start;
  flex: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: clamp(48px, 5vw, 60px);
  width: clamp(48px, 5vw, 60px);
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15),
              0 0 14px rgba(212, 175, 55, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.logo img:hover {
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25),
              0 0 22px rgba(212, 175, 55, 0.5);
  transform: scale(1.05);
}

nav a {
  color: #333333;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover, nav a.active {
  color: #9a7b0a;
  background: rgba(212,175,55,0.18);
}

.nav-book-btn {
  padding: 9px 22px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #111 !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  margin-left: 8px;
  font-size: 15px !important;
}

.nav-book-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #9a7b0a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 6% 60px;
  overflow: hidden;
  box-sizing: border-box;
}

/* two-column inner wrapper */
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: url('images/banner1.jpg') no-repeat center bottom ;
}

.hero-bg-img {
  display: none;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  animation: orbFloat 14s ease-in-out infinite;
}

.hero-orb-1 {
  width: 280px;
  height: 280px;
  background: var(--gold);
  top: 10%;
  left: 5%;
  animation-duration: 16s;
}

.hero-orb-2 {
  width: 200px;
  height: 200px;
  background: #ff6b35;
  bottom: 20%;
  right: 15%;
  animation-duration: 12s;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 160px;
  height: 160px;
  background: var(--gold-light);
  top: 50%;
  left: 40%;
  animation-duration: 18s;
  animation-delay: -8s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.25) 65%, rgba(0,0,0,0.5) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.particle {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle var(--dur, 8s) var(--delay, 0s) ease-in infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content-left {
  text-align: left;
}

.hero-content-left .hero-tags {
  justify-content: flex-start;
}

.hero-content-left .hero-btns {
  justify-content: flex-start;
}

/* ── Inline stats row ── */
.hero-inline-stats {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  animation: fadeUp 0.9s 0.8s ease both;
}

.hero-inline-stat {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-right: 1px solid rgba(212,175,55,0.2);
}

.hero-inline-stat:last-child { border-right: none; }

.hero-inline-stat .stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-inline-stat .stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* hero right-side form wrapper */
.hero-form-wrap {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s 0.5s ease both;
  max-width: 480px;
  width: 100%;
  justify-self: end;
  margin-top: 20px;
  padding-top: 14px;
}

.hero-form-highlight {
  padding: 3px;
  margin-top: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.4),
    0 20px 60px rgba(0,0,0,0.45),
    0 0 50px rgba(212,175,55,0.35);
}

.form-highlight-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(212,175,55,0.45);
}

.hero-form-wrap::-webkit-scrollbar { display: none; }

.hero-booking-form {
  background: linear-gradient(180deg, #fffdf7 0%, #fdf8ec 100%) !important;
  border: none !important;
  border-radius: 13px !important;
  padding: 18px 16px 14px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8) !important;
}

.hero-booking-form h3 {
  font-size: 15px !important;
  margin-bottom: 10px !important;
  color: #9a7b0a !important;
  text-align: center;
}

.hero-booking-form .form-row {
  gap: 8px !important;
}

.hero-booking-form .form-group {
  margin-bottom: 4px !important;
}

.hero-booking-form .form-group label {
  font-size: 9.5px !important;
  margin-bottom: 2px !important;
  color: #555 !important;
  font-weight: 600 !important;
}

.hero-booking-form input,
.hero-booking-form textarea,
.hero-booking-form select {
  padding: 6px 9px !important;
  font-size: 11px !important;
  border-radius: 7px !important;
  background: #ffffff !important;
  border: 1px solid rgba(154,123,10,0.25) !important;
  color: #1a1a1a !important;
}

.hero-booking-form input:focus,
.hero-booking-form textarea:focus,
.hero-booking-form select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.2) !important;
}

.hero-booking-form input::placeholder,
.hero-booking-form textarea::placeholder {
  color: #999 !important;
}

.hero-booking-form textarea {
  min-height: 38px !important;
}

.hero-booking-form .btn-full {
  margin-top: 4px !important;
  padding: 8px 14px !important;
  font-size: 12px !important;
}

.hero-booking-form small {
  font-size: 9px !important;
  line-height: 1.2 !important;
}

/* ── CTA section booking form — same cream bg, full-size overrides ── */
.booking-section .hero-booking-form {
  padding: 40px 36px !important;
}

.booking-section .hero-booking-form h3 {
  font-size: 22px !important;
  margin-bottom: 28px !important;
}

.booking-section .hero-booking-form .form-row {
  gap: 16px !important;
}

.booking-section .hero-booking-form .form-group {
  margin-bottom: 16px !important;
}

.booking-section .hero-booking-form .form-group label {
  font-size: 13px !important;
  margin-bottom: 6px !important;
  color: #555 !important;
  font-weight: 600 !important;
}

.booking-section .hero-booking-form input,
.booking-section .hero-booking-form textarea,
.booking-section .hero-booking-form select {
  padding: 12px 16px !important;
  font-size: 15px !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  border: 1px solid rgba(154,123,10,0.25) !important;
  color: #1a1a1a !important;
}

.booking-section .hero-booking-form textarea {
  min-height: 110px !important;
}

.booking-section .hero-booking-form .btn-full {
  margin-top: 8px !important;
  padding: 14px 32px !important;
  font-size: 15px !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50px;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeDown 0.8s ease both;
}
.hero-badge::before  { content: '✨'; }
.hero-badge::after  { content: '✨'; }

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: #ffffff;
  animation: fadeUp 0.9s 0.2s ease both;
}

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

.hero p {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  animation: fadeUp 0.9s 0.4s ease both;
}

.hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  animation: fadeUp 0.9s 0.5s ease both;
}

.hero-tag {
  padding: 8px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.hero-tag:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212,175,55,0.15);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.6s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(212,175,55,0.5);
}

.btn-outline:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1.2s 1s ease both;
}

.scroll-wheel {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel::before {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212,175,55,0.2);
}

.stat-item {
  padding: 16px 30px;
  text-align: center;
  border-right: 1px solid rgba(212,175,55,0.25);
  flex: 1;
  max-width: 200px;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  display: block;
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  padding: 80px 8%;
}

/* Alternating section backgrounds */
.section-light {
  background: #111111;
  position: relative;
  border-top: 1px solid rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.section-light > * {
  position: relative;
  z-index: 1;
}

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

.section-light .card h3 { color: #ffffff; }
.section-light .card p  { color: var(--muted); }
.section-light .card-link { color: var(--gold); }
.section-light .card-icon { background: rgba(212,175,55,0.08); border-color: rgba(212,175,55,0.2); }

.section-light .title { color: #ffffff; }
.section-light .section-tag { color: var(--gold); }
.section-light .section-sub { color: var(--muted); }

.section-light .step h4 { color: #ffffff; }
.section-light .step p  { color: var(--muted); }
.section-light .step-num {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.4);
  color: var(--gold);
}

.section-light .section-tag::before,
.section-light .section-tag::after { opacity: 0.4; }

.section-dark {
  background: #0a0a0a;
  border-top: 1px solid rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.section-light-gold {
  background: linear-gradient(180deg, #fdf8ec 0%, #f5e6c8 50%, #f0dfa8 100%);
  border-top: 1px solid rgba(212,175,55,0.25);
  border-bottom: 1px solid rgba(212,175,55,0.25);
}

.section-light-gold .title { color: #1a1a1a; }
.section-light-gold .title .gold { color: #9a7b0a; }
.section-light-gold .section-tag { color: #b8960c; }
.section-light-gold .section-sub { color: #555555; }
.section-light-gold .step h4 { color: #1a1a1a; }
.section-light-gold .step p { color: #666666; }

/* Cards on light-gold bg */
.section-light-gold .card {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 20px rgba(154,123,10,0.08);
}
.section-light-gold .card h3 { color: #1a1a1a; }
.section-light-gold .card p  { color: #555555; }
.section-light-gold .card .card-icon { filter: none; }

/* Gallery items on dark bg */
.section-dark .filter-btn { color: #ccc; }
.section-dark .filter-btn:hover,
.section-dark .filter-btn.active { color: var(--gold); }

/* About text on light-gold */
.section-light-gold .about-text p { color: #444444; }
.section-light-gold .features-list li { color: #444444; }
.section-light-gold .about-text h2 { color: #1a1a1a; }

/* Contact points on light-gold */
.section-light-gold .contact-points li { color: #333333; }
.section-light-gold .contact-points strong { color: #1a1a1a; }
.section-light-gold .booking-info p { color: #555555; }
.section-light-gold .booking-info h2 { color: #1a1a1a; }

.section-dark .step h4 { color: #ffffff; }
.section-dark .step p { color: var(--muted); }

.section-light-gold .marquee-wrapper::before {
  background: linear-gradient(to right, #f5e6c8, transparent);
}
.section-light-gold .marquee-wrapper::after {
  background: linear-gradient(to left, #f5e6c8, transparent);
}

.section-gold {
  background: linear-gradient(180deg, #0d0d0d 0%, #111111 50%, #0d0d0d 100%);
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  font-weight: 600;
}

.section-tag::before,
.section-tag::after {
  content: '—';
  margin: 0 8px;
  opacity: 0.3;
}

.title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.title .gold { color: var(--gold); }

.section-sub {
  font-size: 16px;
  color: var(--gray);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CELEBRATION CARDS
   ============================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  padding: 32px 28px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(30px);
}

.card.reveal.visible,
.card.visible {
  animation: cardPop 0.65s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  background: var(--card-hover-bg);
  border-color: var(--card-hover-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

/* Compact shared pricing cards */
.common-pricing .grid {
  max-width: 980px;
  gap: 18px;
  margin-left: auto;
  margin-right: auto;
}

.common-pricing .card {
  padding: 20px 24px;
}

.common-pricing .card-icon {
  width: 48px;
  height: 48px;
  font-size: 23px;
  margin-bottom: 12px;
}

.common-pricing .card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.common-pricing .card p {
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 600px) {
  .common-pricing .grid { gap: 14px; }
  .common-pricing .card { padding: 18px; }
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s ease;
}

.card-link:hover { gap: 10px; color: var(--gold-light); }

/* Celebration highlight cards */
.celebration-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.5s ease;
}

.celebration-card.reveal.visible {
  animation: cardPop 0.7s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}

.celebration-card.reveal.visible:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.12);
}

.celebration-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.celebration-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: background 0.4s ease;
}

.celebration-card:hover .celebration-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, rgba(212,175,55,0.1) 100%);
}

.celebration-card-tag {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.celebration-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}

.celebration-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}

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

/* ============================================
   PERFECT FOR SECTION
   ============================================ */
.perfect-for-section {
  padding-bottom: 80px;
}

.perfect-for-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

.pf-card {
  text-decoration: none;
  display: block;
  width: calc((100% - 6 * 16px) / 7);
  min-width: 120px;
  max-width: 160px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,0.13) 0%, transparent 70%),
    var(--card-bg);
  border: 1.5px solid rgba(212,175,55,0.55);
  border-radius: 12px;
  padding: 24px 16px 20px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--card-shadow), 0 0 18px rgba(212,175,55,0.07);
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.pf-card.reveal.visible {
  animation: cardPop 0.65s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

.pf-card.reveal.visible:hover {
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(212,175,55,0.28) 0%, transparent 70%),
    var(--card-hover-bg);
  border-color: var(--gold);
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.25);
}

.pf-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
  color: var(--gold);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.pf-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.pf-card:hover .pf-icon {
  transform: scale(1.12);
  background: rgba(212,175,55,0.18);
  border-color: var(--gold);
}

.pf-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.pf-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .perfect-for-grid { gap: 12px; }
  .pf-card { min-width: 110px; }
}

@media (max-width: 600px) {
  .pf-card { min-width: 130px; max-width: 48%; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 500px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-visual:hover img { transform: scale(1.04); }

.about-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-visual-badge .badge-icon { font-size: 28px; }

.about-visual-badge .badge-text { font-size: 13px; line-height: 1.4; }

.about-visual-badge strong { display: block; color: var(--gold); font-size: 16px; }

.about-text h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 20px; color: #ffffff; }

.about-text p { color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 16px; line-height: 1.8; }

.features-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #ccc;
}

.features-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}

/* ============================================
   EXPERIENCE / PROCESS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}

.step {
  text-align: center;
  padding: 30px 20px;
}

.step.reveal.visible {
  animation: cardPop 0.6s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}

.step.reveal.visible:hover .step-num {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(212,175,55,0.35);
}

.step-num {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.4s ease, background 0.3s ease;
}

.step:hover .step-num {
  background: rgba(212,175,55,0.25);
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #ffffff; }
.step p { font-size: 13px; color: var(--muted); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.gallery-item.visible {
  opacity: 1;
  transform: scale(1);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-item-overlay span { font-size: 13px; color: var(--gold); font-weight: 600; }

/* Legacy gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
}

.gallery img.visible {
  opacity: 1;
  transform: scale(1);
}

.gallery img:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* ============================================
   TESTIMONIALS — MARQUEE
   ============================================ */
.testimonials {
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  overflow: hidden;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* fade edges */
.marquee-wrapper {
  position: relative;
  overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
  will-change: transform;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-wrapper--testimonials .testimonial-card {
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.marquee-wrapper--testimonials .testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonials-track {
  display: flex;
  gap: 24px;
}

.testimonial-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-width: 340px;
  max-width: 340px;
  flex-shrink: 0;
  transform: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212,175,55,0.15);
}

/* push author to bottom of card */
.testimonial-text {
  font-size: 15px;
  color: #ccc;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}

.stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(212,175,55,0.12);
  margin-top: auto;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #111;
  font-size: 16px;
  flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 700; color: #ffffff; }
.author-event { font-size: 12px; color: var(--gold); }

/* ============================================
   CELEBRATION CARDS GRID
   ============================================ */
.celebration-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .celebration-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .celebration-cards { grid-template-columns: 1fr; }
}

/* celebration-card body overlay (used in index.php inline cards) */
.celebration-card-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s ease;
}

.celebration-card:hover .celebration-card-body {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, rgba(212,175,55,0.08) 100%);
}

.celebration-card-body h3  { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.celebration-card-body p   { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 14px; }

/* ============================================
   TESTIMONIALS MARQUEE
   ============================================ */
.testi-marquee-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -8%;
  padding: 10px 0 20px;
}

/* fade edges */
.testi-marquee-wrap::before,
.testi-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.testi-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f5e6c8, transparent);
}
.testi-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f5e6c8, transparent);
}

.testi-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testiScroll 32s linear infinite;
  padding: 10px 20px;
}

.testi-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes testiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testi-card {
  background: #161616;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 20px;
  padding: 28px 26px;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 24px rgba(212,175,55,0.12);
}

.testi-card .stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 0;
}

.testi-text {
  font-size: 14px;
  color: #ccc;
  line-height: 1.75;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(212,175,55,0.12);
  margin-top: auto;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #111;
  font-size: 15px;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.testi-author span {
  font-size: 12px;
  color: var(--gold);
}

/* ============================================
   TESTIMONIALS GRID (static fallback)
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-grid .testimonial-card {
  min-width: unset;
  max-width: unset;
  flex-shrink: unset;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* Section-light-gold overrides for testimonial cards */
.section-light-gold .testimonial-card {
  background: rgba(255,255,255,0.85);
  border-color: rgba(212,175,55,0.3);
}
.section-light-gold .testimonial-card .testimonial-text { color: #444; }
.section-light-gold .testimonial-card .stars { color: #b8960c; }
.section-light-gold .testimonial-card strong { color: #1a1a1a; }
.section-light-gold .testimonial-card span { color: #9a7b0a; }

/* ============================================
   STEPS GRID (How It Works)
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================================
   CTA BOOKING SECTION (dark + floating form)
   ============================================ */
.cta-booking-section {
  background: #0d0d0d;
  padding: 80px 6%;
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.cta-booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT panel */
.cta-left { color: #fff; }

.cta-left .section-tag { color: var(--gold); margin-bottom: 12px; }

.cta-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cta-info-icon {
  width: 36px;
  height: 36px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.cta-info-list strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}

.cta-info-list span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.cta-map-wrap {
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(212,175,55,0.04);
}

.cta-map-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  font-size: 13px;
  color: #fff;
}

.cta-map-label strong { color: var(--gold); font-size: 13px; }

/* RIGHT panel — floating form card */
.cta-right { position: relative; }

.cta-form-card {
  background: linear-gradient(180deg, #fffdf7 0%, #fdf8ec 100%);
  border-radius: 16px;
  padding: 32px 28px 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 3px rgba(212,175,55,0.3);
}

.cta-form-card .form-group label {
  font-size: 13px !important;
  color: #555 !important;
  font-weight: 600 !important;
  margin-bottom: 5px !important;
}

.cta-form-card input,
.cta-form-card select,
.cta-form-card textarea {
  background: #fff !important;
  border: 1px solid rgba(154,123,10,0.25) !important;
  color: #1a1a1a !important;
  font-size: 14px !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
}

.cta-form-card input:focus,
.cta-form-card select:focus,
.cta-form-card textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15) !important;
}

.cta-form-card textarea {
  min-height: 90px !important;
}

.cta-form-card .form-row {
  gap: 14px !important;
}

.cta-form-card .form-group {
  margin-bottom: 12px !important;
}

@media (max-width: 900px) {
  .cta-booking-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   BOOKING / CONTACT
   ============================================ */
.booking-section {
  position: relative;
  overflow: hidden;
}

.booking-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-map {
  padding: 10px 0;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(154,123,10,0.1);
  border: 1px solid rgba(154,123,10,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a7b0a;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .booking-section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Light gold booking variant — no dark photo overlay */
.booking-section.section-light-gold .booking-bg {
  display: none;
}

.booking-section.section-light-gold::before,
.booking-section.section-light-gold::after {
  display: none;
}

.booking-section.section-light-gold .booking-info h2,
.booking-section.section-light-gold .booking-info .title {
  color: #1a1a1a;
}

/* Contact page standalone booking form — dark text on light-gold card */
.booking-section .booking-form:not(.hero-booking-form) {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 100%;
  width: 100%;
}

.booking-section .booking-form:not(.hero-booking-form) h3 {
  color: #9a7b0a;
}

.booking-section .booking-form:not(.hero-booking-form) label {
  color: #1a1a1a !important;
  font-weight: 600;
}

.booking-section .booking-form:not(.hero-booking-form) input,
.booking-section .booking-form:not(.hero-booking-form) textarea,
.booking-section .booking-form:not(.hero-booking-form) select {
  background: rgba(255,255,255,0.85) !important;
  border-color: rgba(154,123,10,0.3) !important;
  color: #1a1a1a !important;
}

.booking-section .booking-form:not(.hero-booking-form) input::placeholder,
.booking-section .booking-form:not(.hero-booking-form) textarea::placeholder {
  color: rgba(0,0,0,0.35) !important;
}

.booking-section .booking-form:not(.hero-booking-form) select option {
  background: #ffffff;
  color: #1a1a1a;
}

.booking-section .booking-form:not(.hero-booking-form) p {
  color: rgba(0,0,0,0.45) !important;
}

.booking-section.section-light-gold .booking-info .title .gold {
  color: #9a7b0a;
}

.booking-section.section-light-gold .booking-info p {
  color: #555555;
}

.booking-section.section-light-gold .contact-points li {
  color: #444444;
}

.booking-section.section-light-gold .contact-points li strong {
  color: #1a1a1a;
}

.booking-section.section-light-gold .location-map-wrap {
  border-color: rgba(154,123,10,0.3);
  background: rgba(255,255,255,0.5);
}

.booking-section.section-light-gold .location-map-label {
  background: rgba(212,175,55,0.15);
  border-bottom-color: rgba(154,123,10,0.2);
}

.booking-section.section-light-gold .location-map-label strong {
  color: #9a7b0a;
}

.booking-section.section-light-gold .location-map-label span {
  color: #666666;
}

/* ── background image with zoom-on-hover ── */
.booking-section .booking-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1578681994506-b8f463449011?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  z-index: 0;
}

.booking-section:hover .booking-bg {
  transform: scale(1.06);
}

/* dark overlay so text stays readable */
.booking-section .booking-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.82) 0%,
    rgba(10,8,5,0.75) 50%,
    rgba(0,0,0,0.80) 100%
  );
}

/* gold shimmer streaks */
.booking-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.booking-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.booking-info h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; color: #ffffff; }

.booking-info p { color: var(--muted); font-size: 15px; margin-bottom: 30px; line-height: 1.8; }

.contact-points { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.contact-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #ccc;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.contact-icon:hover {
  background: rgba(212,175,55,0.22);
  box-shadow: 0 4px 14px rgba(212,175,55,0.2);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Dark section contact icon */
.section-light-gold .contact-icon {
  background: rgba(154,123,10,0.1);
  border-color: rgba(154,123,10,0.3);
  color: #9a7b0a;
}

.booking-form {
  background: rgba(22,22,22,0.95);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.booking-form h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--gold);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  color: #ffffff;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  background: rgba(212,175,55,0.05);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3); }

select option { background: #1a1a1a; color: #ffffff; }

textarea { resize: vertical; min-height: 110px; }

.btn-full { width: 100%; justify-content: center; margin-top: 8px; }

/* ── Location Map ── */
.location-map-wrap {
  margin-top: 32px;
  border: 1.5px solid rgba(212,175,55,0.3);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(212,175,55,0.04);
}

.location-map-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.location-map-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.location-map-label strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}

.location-map-label span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.location-map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}

.location-map-frame iframe {
  display: block;
  filter: grayscale(30%) contrast(1.1) brightness(0.85) sepia(20%);
  transition: filter 0.4s ease;
}

.location-map-frame:hover iframe {
  filter: grayscale(0%) contrast(1) brightness(1) sepia(0%);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #080808;
  border-top: 1px solid rgba(212,175,55,0.15);
}

footer.footer-light-gold {
  background-image: url('images/logo.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(212,175,55,0.35);
  position: relative;
}

footer.footer-light-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(253, 248, 236, 0.82);
  z-index: 0;
}

footer.footer-light-gold .footer-main,
footer.footer-light-gold .footer-bottom {
  position: relative;
  z-index: 1;
}

footer.footer-light-gold .footer-main,
footer.footer-light-gold .footer-bottom {
  position: relative;
  z-index: 1;
}

footer.footer-light-gold .footer-brand p { color: #555555; }

footer.footer-light-gold .footer-col h4 { color: #9a7b0a; }

footer.footer-light-gold .footer-col ul li a {
  color: #444444;
}

footer.footer-light-gold .footer-col ul li a:hover { color: #9a7b0a; }

footer.footer-light-gold .footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.3);
  color: #242424;
}

footer.footer-light-gold .social-btn {
  background: rgba(212,175,55,0.15);
  border-color: rgba(154,123,10,0.3);
  color: #9a7b0a;
}

footer.footer-light-gold .social-btn:hover {
  background: #9a7b0a;
  border-color: #9a7b0a;
  color: #fdf8ec;
}

.footer-main {
  padding: 60px 8% 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand .logo { display: inline-flex; align-items: center; margin-bottom: 16px; }
.footer-brand .logo img { height: 40px; width: auto; }

/* Footer logo as background image */
.footer-logo-bg {
  display: block;
  width: 130px;
  height: 130px;
  background-image: url('images/logo.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.15),
              0 0 24px rgba(212,175,55,0.35);
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.footer-logo-bg:hover {
  box-shadow: 0 0 0 5px rgba(212,175,55,0.25),
              0 0 36px rgba(212,175,55,0.55);
  transform: scale(1.05);
}

.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 300px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: var(--gold);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 22px 8%;
  border-top: 1px solid rgba(212,175,55,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.footer-bottom-left p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

footer.footer-light-gold .footer-bottom-left p {
  color: #444;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

footer.footer-light-gold .footer-credit {
  color: #666;
}

.footer-credit a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-credit a:hover { opacity: 1; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

@keyframes heroKenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.1) translate(-1.5%, -1%); }
  100% { transform: scale(1.06) translate(1%, 0.5%); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  33%       { transform: translate(30px, -20px) scale(1.1); opacity: 0.45; }
  66%       { transform: translate(-20px, 15px) scale(0.95); opacity: 0.25; }
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80%       { transform: translateY(12px); opacity: 0; }
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(212,175,55,0)); }
  50%       { filter: drop-shadow(0 0 12px rgba(212,175,55,0.5)); }
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) translateX(var(--x,0)); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) translateX(var(--x2,20px)); opacity: 0; }
}

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

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

@keyframes wordReveal {
  from { opacity: 0; transform: translateY(24px) rotateX(12deg); }
  to   { opacity: 1; transform: translateY(0) rotateX(0); }
}

@keyframes cardPop {
  from { opacity: 0; transform: translateY(40px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes tagSlide {
  from { opacity: 0; letter-spacing: 6px; transform: translateY(-10px); }
  to   { opacity: 1; letter-spacing: 2px; transform: translateY(0); }
}

@keyframes heroLineReveal {
  from { opacity: 0; transform: translateY(30px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Text shimmer */
.text-shimmer {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s ease-in-out infinite;
}

.hero-title-animate {
  animation: heroLineReveal 1s 0.15s ease both;
}

.hero-sub-animate {
  animation: heroLineReveal 1s 0.35s ease both;
}

.section-header.visible .tag-slide {
  animation: tagSlide 0.8s ease both;
}

.animate-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.animate-title.in-view .word {
  opacity: 1;
  transform: translateY(0);
}

/* Animated text showcase */
.text-showcase {
  padding: 70px 8%;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.text-showcase-inner {
  max-width: 800px;
  margin: 0 auto 36px;
}

.text-rotate-heading {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.text-showcase.section-light-gold .text-rotate-heading,
.text-showcase.section-light-gold .text-rotate-line {
  color: #1a1a1a;
}

.text-showcase.section-light-gold .text-showcase-sub {
  color: #555555;
}

.text-rotate-line {
  display: block;
}

.text-rotate {
  display: inline-block;
  height: 1.3em;
  overflow: hidden;
  position: relative;
  width: auto;
  text-align: center;
}

.text-rotate-track {
  display: flex;
  flex-direction: column;
  animation: rotateWords 10s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.text-rotate-track span {
  display: block;
  height: 1.3em;
  line-height: 1.3em;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes rotateWords {
  0%, 16%   { transform: translateY(0); }
  20%, 36%  { transform: translateY(-1.3em); }
  40%, 56%  { transform: translateY(-2.6em); }
  60%, 76%  { transform: translateY(-3.9em); }
  80%, 96%  { transform: translateY(-5.2em); }
  100%      { transform: translateY(-6.5em); }
}

.text-showcase-sub {
  font-size: 17px;
  color: var(--muted);
  margin-top: 16px;
  animation: heroLineReveal 0.9s 0.4s ease both;
}

.feature-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.feature-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 24px 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-chip-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s ease;
}

.feature-chip h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}

.feature-chip.reveal.visible {
  animation: cardPop 0.65s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

.feature-chip.reveal.visible:hover {
  transform: translateY(-8px) scale(1.03);
  background: var(--card-hover-bg);
  border-color: var(--card-hover-border);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4), 0 0 16px rgba(212,175,55,0.12);
}

.feature-chip.reveal.visible:hover .feature-chip-icon {
  transform: scale(1.15);
}

.feature-chip.reveal.visible:hover h4 {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .feature-chips { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .feature-chips { grid-template-columns: 1fr; }
  .feature-chip { min-height: 110px; }
}

/* Celebration grid */
.celebration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Reveal on scroll base states — always visible, animate on scroll */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-right {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   SCREEN PAGE
   ============================================ */
.screen-hero {
  height: 65vh;
  min-height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Taller hero on preview page to give more breathing room */
.preview-hero {
  height: 70vh;
  min-height: 480px;
}

.preview-hero-title {
  font-size: clamp(28px, 5vw, 64px);
}

@media (max-width: 768px) {
  .screen-hero {
    height: auto;
    min-height: 420px;
    padding-top: 100px;
    padding-bottom: 48px;
  }
  .preview-hero {
    min-height: 420px;
  }
  .preview-hero-title {
    font-size: clamp(26px, 7vw, 42px);
    padding: 0 16px;
  }
  .screen-hero-content p {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .screen-hero {
    padding-top: 90px;
    padding-bottom: 40px;
  }
}

.screen-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?q=80&w=1920&auto=format&fit=crop') center/cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.screen-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.55));
}

.screen-hero-content { position: relative; z-index: 1; }

.screen-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.screen-features .card {
  padding: 20px 18px;
}

.screen-features .card .card-icon { font-size: 28px; margin-bottom: 10px; }
.screen-features .card h3 { font-size: 14px; margin-bottom: 8px; }
.screen-features .card p  { font-size: 12px; line-height: 1.55; }

@media (max-width: 900px) {
  .screen-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .screen-features {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .screen-features .card {
    padding: 16px 14px;
  }
}

/* ============================================
   PRICING / PACKAGES
   ============================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.package-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(212,175,55,0.55);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  border-radius: 24px;
  padding: 38px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 1;
  
}

.package-card.visible { opacity: 1; transform: translateY(0); }

.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 4px 32px rgba(212,175,55,0.2), inset 0 1px 0 rgba(212,175,55,0.1);
  background: linear-gradient(160deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
}

.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.package-icon { font-size: 46px; margin-bottom: 16px; }

.package-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: #ffffff; }

.package-card > p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }

.package-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin: 20px 0;
}

.price-currency { font-size: 20px; color: var(--gold); font-weight: 700; line-height: 1.6; }
.price-amount { font-size: 52px; font-weight: 800; color: var(--gold); line-height: 1; }
.price-period { font-size: 13px; color: var(--muted); margin-bottom: 8px; }

.package-features { list-style: none; text-align: center; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }

.package-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #ccc; }

.package-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.package-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 24px rgba(212,175,55,0.15);
}

/* Keep preview-package details and actions aligned across each row. */
.preview-pricing .packages-grid { align-items: stretch; }
.preview-pricing .package-card {
  display: flex;
  flex-direction: column;
}
.preview-pricing .package-card--featured {
  border-color: var(--gold);
}
.preview-pricing .package-badge {
  top: 16px;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.preview-pricing .package-card > .btn { margin-top: auto; }

/* Packages — mobile horizontal scroll */
@media (max-width: 768px) {
  .packages-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 14px;
    -webkit-overflow-scrolling: touch;
    padding-left: 5%;
    padding-right: 5%;
  }
  .packages-grid::-webkit-scrollbar { display: none; }
  .package-card {
    min-width: 78vw !important;
    max-width: 78vw !important;
    flex-shrink: 0 !important;
    scroll-snap-align: center !important;
    transform: none !important;
  }
  .package-card:hover { transform: none !important; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { height: 350px; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }

  /* collapse hero to single column on tablet */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-content,
  .hero-content-left { text-align: center; }
  .hero-tags,
  .hero-content-left .hero-tags { justify-content: center; }
  .hero-btns,
  .hero-content-left .hero-btns { justify-content: center; }
  .hero-form-wrap { max-height: none; overflow-y: visible; }
  .hero-form-wrap { max-width: 100%; justify-self: center; }
  .hero-form-highlight { max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .section { padding: 60px 5%; }
  header { padding: 10px 5%; }

  /* ── Mobile Nav ── */
  nav.nav-left,
  nav.nav-right {
    display: none !important;
  }

  .logo { flex-shrink: 0; }
  .hamburger { display: flex; z-index: 99999; position: relative; }

  .nav-book-btn {
    margin-left: 0 !important;
    margin-top: 8px !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 15px !important;
    display: block !important;
    border-radius: 10px !important;
  }
  .hero { padding: 90px 5% 50px; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-content-left { text-align: center; }
  .hero-tags { justify-content: center; }
  .hero-btns { justify-content: center; flex-wrap: wrap; }
  .hero-inline-stats { justify-content: center; }
  .hero-form-highlight { max-width: 100%; }
  .hero h1 { font-size: clamp(28px, 7vw, 44px); }
  .hero-stats { display: none; }

  /* about grid */
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-visual { height: 240px; }

  /* perfect for grid */
  .perfect-for-grid { gap: 10px; }
  .pf-card { min-width: 130px; max-width: 46%; }

  /* screen features — handled inline after definition */

  /* contact page */
  .contact-page-wrapper { grid-template-columns: 1fr; gap: 30px; }

  /* booking wrapper */
  .booking-wrapper { grid-template-columns: 1fr; }

  /* form rows */
  .form-row { grid-template-columns: 1fr; }

  /* footer */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .gallery-masonry { columns: 2; }

  .stat-item { max-width: unset; }
}

@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 40px 6% 30px !important;
  }

  .footer-brand {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer-logo-bg {
    width: 90px !important;
    height: 90px !important;
    margin: 0 auto 16px !important;
  }

  .footer-brand p { text-align: center; }

  .footer-social { justify-content: center; }

  .footer-col { text-align: left; }

  .footer-col h4 { font-size: 13px; margin-bottom: 10px; }

  .footer-bottom {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
    padding: 16px 5% !important;
  }

  .footer-bottom-left { align-items: center !important; text-align: center !important; }
  .footer-credit { justify-content: center !important; }
}

  .process-steps::before { display: none; }

  .gallery-masonry { columns: 1; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .section-header { margin-bottom: 40px; }
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.fab-wrap {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform 0.25s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.25s ease;
}

/* Override Font Awesome's shared `.fab` class so the floating action icons stay centered. */
.fab-wrap > a.fab {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
}

.fab-wrap > a.fab svg {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  margin: 0;
  transform: translate(-50%, -50%);
}

.fab:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}

.fab-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
  color: #111;
}

.fab-call:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 28px rgba(212,175,55,0.55);
}

.fab-whatsapp {
  background: #25d366;
}

.fab-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

@media (max-width: 480px) {
  .fab-wrap { bottom: 20px; right: 16px; gap: 12px; }
  .fab { width: 46px; height: 46px; }
}


/* ============================================
   BOOKING POPUP MODAL
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

/* Modal box — base */
.popup-modal {
  position: relative;
  width: 100%;
}

.popup-modal--form-only {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  transform: scale(0.9) translateY(24px);
  transition: transform 0.35s cubic-bezier(0.34,1.3,0.64,1);
}

.popup-overlay.active .popup-modal--form-only {
  transform: scale(1) translateY(0);
}

/* Gold border wrapper */
.popup-modal--form-only .hero-form-highlight {
  padding: 3px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow: 0 0 0 1px rgba(212,175,55,0.4),
              0 16px 48px rgba(0,0,0,0.55),
              0 0 40px rgba(212,175,55,0.25);
}

/* Cream inner card */
.popup-booking-form {
  background: linear-gradient(180deg, #fffdf7 0%, #fdf8ec 100%) !important;
  border-radius: 12px !important;
  border: none !important;
  padding: 14px 14px 12px !important;
}

/* Title */
.popup-booking-form h3 {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #9a7b0a !important;
  text-align: center !important;
  margin-bottom: 10px !important;
}

/* Labels */
.popup-booking-form .form-group {
  margin-bottom: 6px !important;
}

.popup-booking-form .form-group label {
  font-size: 10px !important;
  font-weight: 600 !important;
  color: #555 !important;
  margin-bottom: 2px !important;
  display: block;
}

/* All inputs, selects, textarea */
.popup-booking-form input,
.popup-booking-form select,
.popup-booking-form textarea {
  width: 100% !important;
  padding: 6px 9px !important;
  font-size: 11px !important;
  border-radius: 6px !important;
  border: 1.5px solid rgba(154,123,10,0.25) !important;
  background: #fff !important;
  color: #1a1a1a !important;
  height: auto !important;
  outline: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.popup-booking-form input:focus,
.popup-booking-form select:focus,
.popup-booking-form textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 2px rgba(212,175,55,0.18) !important;
}

.popup-booking-form input::placeholder,
.popup-booking-form textarea::placeholder {
  color: #bbb !important;
  font-size: 11px !important;
}

/* Textarea */
.popup-booking-form textarea {
  min-height: 48px !important;
}

/* Row gap */
.popup-booking-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  margin-bottom: 0 !important;
}

/* Submit button */
.popup-booking-form .btn-full {
  width: 100% !important;
  padding: 8px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  margin-top: 6px !important;
  border-radius: 7px !important;
  justify-content: center !important;
}

/* Disclaimer */
.popup-disclaimer {
  text-align: center !important;
  font-size: 10px !important;
  color: #999 !important;
  margin-top: 6px !important;
}

/* Close button */
.popup-close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 10;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  border: none;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(212,175,55,0.5);
  transition: transform 0.2s ease;
}

.popup-close:hover { transform: scale(1.15); }

/* Badge */
.popup-modal--form-only .form-highlight-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(212,175,55,0.45);
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .popup-overlay {
    padding: 8px 6px;
    align-items: flex-start;
    overflow-y: auto;
  }
  .popup-modal--form-only {
    max-width: 100%;
    margin: 20px auto 12px;  /* breathing room from top */
  }
  .popup-booking-form { padding: 10px 10px 8px !important; }
  .popup-booking-form h3 { font-size: 11px !important; margin-bottom: 6px !important; }
  .popup-booking-form .form-group { margin-bottom: 4px !important; }
  .popup-booking-form .form-group label { font-size: 9px !important; margin-bottom: 1px !important; }
  .popup-booking-form input,
  .popup-booking-form select,
  .popup-booking-form textarea {
    padding: 5px 7px !important;
    font-size: 11px !important;
    border-radius: 5px !important;
  }
  .popup-booking-form .form-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 5px !important;
  }
  .popup-booking-form textarea { min-height: 36px !important; }
  .popup-booking-form .btn-full {
    padding: 7px !important;
    font-size: 11px !important;
    margin-top: 4px !important;
  }
  .popup-disclaimer { font-size: 9px !important; margin-top: 4px !important; }
  .popup-close { top: -9px; right: -7px; width: 24px; height: 24px; font-size: 10px; }
  /* Keep gold border wrapper compact */
  .popup-modal--form-only .hero-form-highlight {
    border-radius: 11px;
  }
  .popup-modal--form-only .form-highlight-badge {
    font-size: 8px !important;
    padding: 3px 10px !important;
    top: -11px !important;
  }
}

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

/* Close button — reposition for form-only card */
.popup-modal--form-only .popup-close {
  top: -12px;
  right: -12px;
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
  z-index: 20;
}

/* Close button */
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  line-height: 1;
}

.popup-close:hover {
  background: var(--gold);
  color: #111;
  transform: rotate(90deg) scale(1.1);
}

/* Left panel */
.popup-left {
  padding: 44px 36px 36px;
  background: linear-gradient(160deg, #0d0d0d 0%, #141414 100%);
  border-right: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 20px 0 0 20px;
}

.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50px;
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: fit-content;
}

.popup-left h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

.popup-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* Perks list */
.popup-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.popup-perks li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 8px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.popup-perks li:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.35);
}

/* Stats row */
.popup-stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 6px;
}

.popup-stat {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.popup-stat:last-child { border-right: none; }

.popup-stat span {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.popup-stat small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
  display: block;
}

/* Right panel */
.popup-right {
  padding: 44px 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 20px 20px 0;
}

/* Override inner form sizing for popup context */
.popup-booking-form {
  padding: 14px 14px 12px !important;
}

.popup-booking-form h3 {
  font-size: 13px !important;
  margin-bottom: 10px !important;
}

.popup-booking-form .form-row {
  gap: 8px !important;
}

.popup-booking-form .form-group {
  margin-bottom: 6px !important;
}

.popup-booking-form .form-group label {
  font-size: 10px !important;
  margin-bottom: 2px !important;
}

.popup-booking-form input,
.popup-booking-form select {
  padding: 6px 9px !important;
  font-size: 11px !important;
}

.popup-booking-form .btn-full {
  padding: 8px 20px !important;
  font-size: 12px !important;
  margin-top: 6px !important;
}

.popup-disclaimer {
  text-align: center;
  font-size: 10px;
  color: rgba(100, 100, 100, 0.85);
  margin-top: 6px;
  line-height: 1.5;
}

/* Animation keyframe for entry */
@keyframes popupFadeIn {
  from { opacity: 0; transform: scale(0.88) translateY(30px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Scrollbar inside modal */
.popup-modal::-webkit-scrollbar { width: 5px; }
.popup-modal::-webkit-scrollbar-track { background: transparent; }
.popup-modal::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

/* ── Responsive — tablet / phone ── */
@media (max-width: 720px) {
  .popup-modal {
    grid-template-columns: 1fr;
    max-width: 420px;
    border-radius: 16px;
  }

  .popup-left {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px 16px 0 0;
    padding: 36px 24px 24px;
    gap: 12px;
  }

  .popup-right {
    border-radius: 0 0 16px 16px;
    padding: 24px 20px 28px;
  }

  .popup-perks { display: none; }
}

@media (max-width: 420px) {
  .popup-overlay { padding: 6px 4px; }
  .popup-modal { max-width: 100%; }
  .popup-booking-form { padding: 9px 9px 7px !important; }
  .popup-booking-form .form-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 4px !important;
  }
  .popup-booking-form input,
  .popup-booking-form select,
  .popup-booking-form textarea {
    padding: 4px 6px !important;
    font-size: 10.5px !important;
  }
}

/* ============================================
   CONTACT PAGE LAYOUT
   ============================================ */
.contact-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-page-left {
  display: flex;
  flex-direction: column;
}

.contact-page-right .booking-form {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(154, 123, 10, 0.25);
  border-radius: 16px;
  padding: 32px 28px;
}

.contact-page-right .booking-form h3 {
  color: #9a7b0a;
  font-size: 20px;
  margin-bottom: 24px;
}

.contact-page-right .booking-form label {
  color: #1a1a1a !important;
  font-weight: 600;
}

.contact-page-right .booking-form input,
.contact-page-right .booking-form textarea,
.contact-page-right .booking-form select {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(154, 123, 10, 0.3) !important;
  color: #1a1a1a !important;
}

.contact-page-right .booking-form input::placeholder,
.contact-page-right .booking-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.35) !important;
}

.contact-page-right .booking-form select option {
  background: #ffffff;
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .contact-page-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   BOOKING CONFIRMATION TICKET MODAL
   ============================================ */

.ticket-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

/* ── Ticket card ── */
.ticket-modal {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.3);
  transform: scale(0.85) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
}

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

/* ── Header ── */
.ticket-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2200 100%);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.ticket-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  flex-shrink: 0;
}

.ticket-header-text h2 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 3px;
}

.ticket-header-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.ticket-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.ticket-close:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* ── Body ── */
.ticket-body {
  padding: 22px 24px 16px;
  background: #fffdf5;
  position: relative;
}

/* Diagonal stamp */
.ticket-stamp {
  position: absolute;
  top: 22px;
  right: -28px;
  background: rgba(212,175,55,0.15);
  border: 1.5px solid rgba(212,175,55,0.4);
  color: #b8960c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 38px;
  transform: rotate(35deg);
  text-transform: uppercase;
  pointer-events: none;
}

/* ── Detail rows ── */
.ticket-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 18px;
}

.ticket-detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ticket-detail-item.full-width {
  grid-column: 1 / -1;
}

.ticket-detail-item label {
  font-size: 10px;
  font-weight: 700;
  color: #b8960c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticket-detail-item span {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  word-break: break-word;
}

/* ── Tear divider ── */
.ticket-divider {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 -24px 16px;
}

.ticket-divider-line {
  flex: 1;
  border-top: 2px dashed rgba(212,175,55,0.35);
}

.ticket-divider-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0.3);
}

.ticket-divider-circle.left  { margin-left: -10px; }
.ticket-divider-circle.right { margin-right: -10px; }

/* ── Footer row ── */
.ticket-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ticket-booking-id,
.ticket-venue {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ticket-booking-id small,
.ticket-venue small {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticket-booking-id strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

.ticket-venue strong {
  font-size: 12px;
  font-weight: 700;
  color: #333;
}

/* ── Barcode ── */
.barcode-lines {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 36px;
}

.barcode-lines::before {
  content: '';
  display: block;
  width: 44px;
  height: 100%;
  background: repeating-linear-gradient(
    to right,
    #1a1a1a 0px, #1a1a1a 2px,
    transparent 2px, transparent 4px,
    #1a1a1a 4px, #1a1a1a 5px,
    transparent 5px, transparent 7px,
    #1a1a1a 7px, #1a1a1a 10px,
    transparent 10px, transparent 12px,
    #1a1a1a 12px, #1a1a1a 13px,
    transparent 13px, transparent 15px,
    #1a1a1a 15px, #1a1a1a 18px,
    transparent 18px, transparent 20px,
    #1a1a1a 20px, #1a1a1a 21px,
    transparent 21px, transparent 23px,
    #1a1a1a 23px, #1a1a1a 26px,
    transparent 26px, transparent 28px,
    #1a1a1a 28px, #1a1a1a 29px,
    transparent 29px, transparent 31px,
    #1a1a1a 31px, #1a1a1a 34px,
    transparent 34px, transparent 36px,
    #1a1a1a 36px, #1a1a1a 38px,
    transparent 38px, transparent 44px
  );
  border-radius: 2px;
  opacity: 0.75;
}

/* ── Actions ── */
.ticket-actions {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
  background: #fff;
  border-top: 1px solid rgba(212,175,55,0.15);
}

.ticket-actions .btn {
  flex: 1;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  padding: 11px 16px;
}

.ticket-note {
  text-align: center;
  font-size: 11px;
  color: #aaa;
  padding: 0 24px 16px;
  background: #fff;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 520px) {
  .ticket-modal { border-radius: 16px; }
  .ticket-details { grid-template-columns: 1fr; }
  .ticket-stamp { display: none; }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 248, 236, 0.99);
  backdrop-filter: blur(20px);
  z-index: 9998;
  flex-direction: column;
  align-items: stretch;
  padding: 90px 28px 40px;
  gap: 4px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  display: block;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(212, 175, 55, 0.15);
  color: #9a7b0a;
}

.mobile-book-btn {
  margin-top: 10px !important;
  text-align: center !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #111 !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  display: block !important;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(0, 0, 0, 0.4);
}

.mobile-menu-overlay.open {
  display: block;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: var(--gold);
}

.faq-question {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  transition: background 0.25s ease, color 0.25s ease;
}

.faq-question:hover {
  background: rgba(212,175,55,0.08);
  color: var(--gold);
}

.faq-item.open .faq-question {
  background: rgba(212,175,55,0.1);
  color: var(--gold);
}

/* On light-gold bg */
.section-light-gold .faq-question {
  background: rgba(255,255,255,0.6);
  color: #1a1a1a;
}

.section-light-gold .faq-question:hover,
.section-light-gold .faq-item.open .faq-question {
  background: rgba(212,175,55,0.15);
  color: #9a7b0a;
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  background: rgba(255,255,255,0.02);
}

.faq-answer p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin: 0;
  padding: 16px 0;
}

.section-light-gold .faq-answer {
  background: rgba(255,255,255,0.4);
}

.section-light-gold .faq-answer p {
  color: #444;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px;
}

/* ============================================
   AVAILABILITY CHECKER MODAL
   ============================================ */
.avail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.avail-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.avail-modal {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(32px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.06);
}
.avail-overlay.active .avail-modal {
  transform: translateY(0) scale(1);
}

/* --- Header --- */
.avail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 28px 16px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.avail-header-left h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px;
}
.avail-header-left p {
  font-size: 13px;
  color: #888;
  margin: 0;
}
.avail-close {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #555;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.avail-close:hover { background: #e5e7eb; }

/* --- Legend --- */
.avail-legend {
  display: flex;
  gap: 20px;
  padding: 12px 28px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.avail-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #444;
  font-weight: 500;
}
.avail-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.avail-dot--available { background: #22c55e; }
.avail-dot--booked    { background: #ef4444; }
.avail-dot--closed    { background: #52525b; }

/* --- Table --- */
.avail-table-wrap {
  overflow: auto;
  flex: 1;
  padding: 0 4px;
}
.avail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 540px;
}
.avail-table thead tr {
  background: #f9f7f0;
  position: sticky;
  top: 0;
  z-index: 1;
}
.avail-table th {
  padding: 11px 14px;
  text-align: center;
  color: #b8960c;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e9e0c0;
  white-space: nowrap;
}
.avail-th-date { text-align: left; }
.avail-th-day  { text-align: left; }

.avail-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}
.avail-table tbody tr:hover { background: #fafafa; }
.avail-table tbody tr.avail-row--today { background: #fffbeb; }

.avail-table td {
  padding: 10px 14px;
  text-align: center;
  vertical-align: middle;
}
.avail-td-date {
  text-align: left;
  white-space: nowrap;
  font-weight: 700;
  color: #111;
  font-size: 13px;
}
.avail-td-date span { display: block; font-size: 11px; color: #999; font-weight: 400; }
.avail-td-day {
  text-align: left;
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

/* Slot pill */
.avail-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  width: 100%;
  max-width: 110px;
  white-space: nowrap;
}
.avail-slot--available {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
}
.avail-slot--booked {
  background: rgba(239,68,68,0.15);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.3);
}
.avail-slot--closed {
  background: rgba(82,82,91,0.2);
  color: #71717a;
  border: 1px solid rgba(82,82,91,0.3);
}

/* Today badge */
.avail-today-badge {
  display: inline-block;
  background: var(--gold, #d4af37);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

/* --- Footer --- */
.avail-footer {
  padding: 16px 28px 22px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
  flex-shrink: 0;
}
.avail-footer p {
  font-size: 12px;
  color: #888;
  margin: 0;
}
.avail-footer a { color: var(--gold, #d4af37); }

/* --- Mobile --- */
@media (max-width: 600px) {
  .avail-header  { padding: 18px 16px 12px; }
  .avail-legend  { padding: 10px 16px; gap: 14px; }
  .avail-footer  { padding: 14px 16px 18px; }
  .avail-table th,
  .avail-table td { padding: 8px 8px; }
  .avail-slot { padding: 4px 8px; font-size: 10px; max-width: 90px; }
}

/* Scrollbar — light theme */
.avail-table-wrap::-webkit-scrollbar { width: 6px; height: 6px; }
.avail-table-wrap::-webkit-scrollbar-track { background: #f3f4f6; }
.avail-table-wrap::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 4px; }

/* ============================================
   PAYMENT FLOW MODAL
   ============================================ */

/* Overlay */
.pay-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pay-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Modal box */
.pay-modal {
  background: #fff;
  border-radius: 22px;
  width: 100%;
  max-width: 780px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2);
}
.pay-overlay.active .pay-modal {
  transform: translateY(0) scale(1);
}

/* Steps — only one visible at a time */
.pay-step {
  display: flex;
  flex-direction: column;
  flex: 1;          /* fill the modal height */
  min-height: 0;    /* allow flex children to shrink below content size */
  overflow: hidden; /* clip, let inner body scroll */
}
.pay-step--hidden { display: none !important; }

/* ── Header ── */
.pay-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;  /* never compress the header */
}

/* ── Body — scrollable middle ── */
.pay-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  min-height: 0;
}

/* ── Footer — always pinned at bottom ── */
.pay-footer {
  display: flex;
  gap: 12px;
  padding: 14px 24px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;   /* never compress the footer */
  background: #fff;
}

/* Summary grid */
.pay-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 20px;
}
.pay-summary-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pay-summary-item label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  font-weight: 600;
}
.pay-summary-item span {
  font-size: 14px;
  color: #111;
  font-weight: 500;
}
.pay-summary-item--full { grid-column: 1 / -1; }

/* Amount box */
.pay-amount-box {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pay-amount-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #444;
}
/* Extra guest row — indented, muted */
#payExtraRow {
  font-size: 13px;
  color: #888;
  padding-left: 12px;
  border-left: 2px solid #e9e0c0;
}
#payExtraRow span:last-child {
  color: #b8960c;
  font-weight: 600;
}
/* Subtotal row — separator before GST */
.pay-amount-subtotal {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  border-top: 1px dashed #e5e7eb;
  padding-top: 8px;
  margin-top: 2px;
}
.pay-amount-total {
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}
.pay-amount-total span:last-child { color: #d4af37; }

.pay-note {
  margin-top: 14px;
  font-size: 12px;
  color: #888;
  text-align: center;
}

/* ── QR Step body ── */
.pay-body--qr {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 20px 24px;
}
.pay-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.pay-qr-label {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}
.pay-qr-box {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.pay-qr-box img,
#payQrCanvas canvas {
  display: block;
  border-radius: 8px;
}
.pay-upi-apps {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.pay-upi-app-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.pay-upi-id-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9f7f0;
  border: 1px solid #e9e0c0;
  border-radius: 8px;
  padding: 8px 12px;
  width: 100%;
}
.pay-upi-id-label {
  font-size: 11px;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}
.pay-upi-id-val {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  flex: 1;
}
.pay-copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  padding: 0;
  line-height: 1;
}

/* QR right panel */
.pay-qr-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pay-paying-amt {
  background: linear-gradient(135deg, #d4af37, #b8960c);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pay-paying-amt small { font-size: 11px; opacity: 0.85; }
.pay-paying-amt strong { font-size: 28px; font-weight: 800; line-height: 1; }

.pay-qr-steps { display: flex; flex-direction: column; gap: 10px; }
.pay-qr-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #444;
}
.pay-qr-step-num {
  width: 22px; height: 22px;
  background: #d4af37;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pay-qr-step p { margin: 0; line-height: 1.5; }

.pay-ref-row {
  background: #f3f4f6;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pay-ref-row label { font-size: 11px; color: #888; }
.pay-ref-badge {
  font-size: 14px;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 1px;
}

/* ── Ticket body ── */
.pay-body--ticket {
  background: #f3f4f6;
  padding: 20px;
  display: flex;
  justify-content: center;
}
.pay-ticket {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
}
.pay-ticket-top {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pay-ticket-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.pay-ticket-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(212,175,55,0.5);
}
.pay-ticket-brand strong { display: block; font-size: 15px; color: #fff; }
.pay-ticket-brand span  { font-size: 11px; color: rgba(255,255,255,0.55); }
.pay-ticket-ref {
  font-size: 13px;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Ticket divider with notches */
.pay-ticket-divider {
  display: flex;
  align-items: center;
  position: relative;
  height: 20px;
  background: #fff;
}
.pay-ticket-notch {
  width: 20px; height: 20px;
  background: #f3f4f6;
  border-radius: 50%;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pay-ticket-notch--l { left: -10px; border: 1px solid #e5e7eb; border-left: none; }
.pay-ticket-notch--r { right: -10px; border: 1px solid #e5e7eb; border-right: none; }
.pay-ticket-dash {
  flex: 1;
  height: 1px;
  border-top: 2px dashed #e5e7eb;
  margin: 0 14px;
}

/* Ticket detail rows */
.pay-ticket-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  padding: 16px 24px;
}
.pay-ticket-detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pay-ticket-detail-item.full { grid-column: 1 / -1; }
.pay-ticket-detail-item label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #999;
  font-weight: 600;
}
.pay-ticket-detail-item span {
  font-size: 13px;
  color: #111;
  font-weight: 600;
}

/* Ticket footer */
.pay-ticket-footer {
  padding: 14px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pay-ticket-venue {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: #555;
}
.pay-ticket-venue strong { display: block; color: #111; font-size: 13px; }
.pay-ticket-venue small  { color: #888; font-size: 11px; }
.pay-ticket-status-badge {
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ── Security strip ── */
.pay-ticket-security-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a1a1a, #2d2200);
  padding: 7px 16px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #d4af37;
  text-transform: uppercase;
  text-align: center;
}
.pay-ticket-security-icon { font-size: 11px; }

/* ── Amount paid row ── */
.pay-ticket-amount-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f9f7f0;
  border-top: 1px solid #e9e0c0;
  border-bottom: 1px solid #e9e0c0;
  padding: 10px 24px;
}
.pay-ticket-amount-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-right: 1px solid #e9e0c0;
  padding-right: 16px;
  padding-left: 4px;
}
.pay-ticket-amount-item:first-child { padding-left: 0; }
.pay-ticket-amount-item:last-child  { border-right: none; }
.pay-ticket-amount-item label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #999;
  font-weight: 700;
}
.pay-ticket-amount-item span {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}
.pay-ticket-paid-badge {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* ── Security QR in footer ── */
.pay-ticket-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.pay-ticket-qr-wrap small {
  font-size: 9px;
  color: #aaa;
  letter-spacing: 0.5px;
}
#payTicketQr canvas,
#payTicketQr img {
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  display: block;
}

@media (max-width: 520px) {
  .pay-ticket-amount-row { flex-direction: column; gap: 8px; padding: 10px 16px; }
  .pay-ticket-amount-item { border-right: none; border-bottom: 1px solid #e9e0c0; padding: 0 0 8px 0; }
  .pay-ticket-amount-item:last-child { border-bottom: none; padding-bottom: 0; }
  .pay-ticket-security-strip { font-size: 8px; letter-spacing: 1px; }
}

/* ── Footer bar ── */
.pay-footer--ticket { justify-content: center; }
.pay-btn-cancel  { flex-shrink: 0; }
.pay-btn-proceed,
.pay-btn-paid    { flex: 1; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .pay-body--qr {
    flex-direction: column;
    align-items: center;
  }
  .pay-qr-right { width: 100%; }
  .pay-summary-grid { grid-template-columns: 1fr; }
  .pay-ticket-details { grid-template-columns: 1fr; }
  .pay-footer { flex-wrap: wrap; }
  .pay-btn-proceed,
  .pay-btn-paid { width: 100%; }
  .pay-ticket-footer { flex-direction: column; align-items: flex-start; }
}

/* ── Duplicate / Error Alert ── */
#payDupAlert {
  position: fixed;
  inset: 0;
  z-index: 10100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 0.2s ease;
}
.pay-dup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
}
.pay-dup-box {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px 24px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  animation: slideUp 0.3s cubic-bezier(.22,.68,0,1.2);
}
.pay-dup-icon {
  width: 52px; height: 52px;
  background: #fef2f2;
  border: 2px solid #fecaca;
  color: #dc2626;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.pay-dup-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
}
.pay-dup-box p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}


/* ============================================
   MULTI-STEP BOOKING FORM (MSF)
   ============================================ */

.msf-wrap {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e9e0c0;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

/* ── Tabs ── */
.msf-tabs {
  display: flex;
  border-bottom: 2px solid #f0e8c8;
  overflow-x: auto;
  scrollbar-width: none;
  background: #fdfaf3;
}
.msf-tabs::-webkit-scrollbar { display: none; }

.msf-tab {
  flex: 1;
  min-width: max-content;
  padding: 14px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #999;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.msf-tab:hover { color: #b8960c; }
.msf-tab.active {
  color: #b8960c;
  border-bottom-color: #d4af37;
  background: #fff;
}
.msf-tab.done {
  color: #22c55e;
}
.msf-tab.done::before {
  content: '✓ ';
  font-size: 11px;
}

/* ── Progress Bar ── */
.msf-progress {
  height: 4px;
  background: #f0e8c8;
}
.msf-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #b8960c);
  transition: width 0.4s ease;
  border-radius: 0 4px 4px 0;
}

/* ── Steps ── */
.msf-step {
  display: none;
  padding: 24px 28px 20px;
  animation: msfFadeIn 0.3s ease;
}
.msf-step.active { display: block; }

@keyframes msfFadeIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.msf-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}
.msf-step-sub {
  font-size: 13px;
  color: #888;
  margin: 0 0 20px;
}
.req { color: #e53e3e; }

/* ── Occasion / Addon Cards Grid ── */
.msf-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}
.msf-card-grid--checkbox {
  grid-template-columns: repeat(4, 1fr);
}

.msf-card {
  cursor: pointer;
  display: block;
}
.msf-card input { display: none; }

.msf-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 14px;
  border: 2px solid #e9e0c0;
  background: #fdfaf3;
  text-align: center;
  transition: all 0.2s ease;
  min-height: 88px;
}

.msf-card:hover .msf-card-inner {
  border-color: #d4af37;
  background: #fffbef;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(212,175,55,0.18);
}

.msf-card input:checked + .msf-card-inner {
  border-color: #d4af37;
  background: linear-gradient(135deg, #d4af37, #b8960c);
  box-shadow: 0 6px 20px rgba(212,175,55,0.35);
  transform: translateY(-2px);
}

.msf-card input:checked + .msf-card-inner .msf-card-emoji,
.msf-card input:checked + .msf-card-inner .msf-card-label,
.msf-card input:checked + .msf-card-inner .msf-card-price {
  color: #fff;
}

.msf-card-emoji {
  font-size: 26px;
  line-height: 1;
  transition: transform 0.2s;
}
.msf-card input:checked + .msf-card-inner .msf-card-emoji {
  transform: scale(1.15);
}
.msf-card-label {
  font-size: 11px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}
.msf-card-price {
  font-size: 11px;
  font-weight: 700;
  color: #b8960c;
  background: rgba(212,175,55,0.12);
  padding: 2px 8px;
  border-radius: 20px;
}
.msf-card input:checked + .msf-card-inner .msf-card-price {
  background: rgba(255,255,255,0.25);
}

/* ── Step 5: Order Summary ── */
.msf-summary {
  background: #fdfaf3;
  border: 1px solid #e9e0c0;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.msf-summary-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.msf-summary-item.full { grid-column: 1 / -1; }
.msf-summary-item label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  font-weight: 600;
}
.msf-summary-item span {
  font-size: 13px;
  color: #111;
  font-weight: 600;
}

.msf-amount-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.msf-amount-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
}
.msf-amount-row.addon { color: #b8960c; }
.msf-amount-row.total {
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}
.msf-amount-row.total span:last-child { color: #d4af37; }

/* ── Terms ── */
.msf-terms {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 13px;
}
.msf-terms h4 {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px;
}
.msf-terms ul {
  margin: 0 0 12px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.msf-terms ul li { color: #555; line-height: 1.5; }
.msf-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #333;
  font-weight: 500;
}
.msf-agree input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #d4af37;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Nav Buttons ── */
.msf-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f0e8c8;
  margin-top: 8px;
}
.msf-nav .btn { min-width: 140px; }
.msf-submit { flex: 1; }

/* ── Validation error ── */
.msf-field-error {
  border-color: #ef4444 !important;
  background: #fff5f5 !important;
}
.msf-error-msg {
  font-size: 11px;
  color: #ef4444;
  margin-top: 4px;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .msf-card-grid,
  .msf-card-grid--checkbox { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .msf-step { padding: 18px 16px 16px; }
  .msf-card-grid,
  .msf-card-grid--checkbox { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .msf-card-inner { padding: 10px 4px; min-height: 76px; }
  .msf-card-emoji { font-size: 22px; }
  .msf-card-label { font-size: 10px; }
  .msf-summary { grid-template-columns: 1fr; }
  .msf-nav .btn { min-width: 100px; font-size: 13px; }
  .msf-tab { font-size: 11px; padding: 12px 8px; }
}
@media (max-width: 400px) {
  .msf-card-grid,
  .msf-card-grid--checkbox { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   FLOATING QUICK BOOKING BUTTON
   ============================================ */
#quickBookingBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  border: none;
  border-radius: 50px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(212,175,55,0.55), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

#quickBookingBtn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 36px rgba(212,175,55,0.65), 0 4px 12px rgba(0,0,0,0.35);
}

@media (max-width: 600px) {
  #quickBookingBtn {
    bottom: 18px;
    right: 18px;
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* ============================================
   CONTACT PAGE — MOBILE FIXES
   ============================================ */

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {
  .contact-page-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }

  .contact-page-right .booking-form {
    padding: 28px 22px;
  }

  .msf-card-grid,
  .msf-card-grid--checkbox {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  .contact-page-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    overflow: hidden;
  }

  .contact-page-left,
  .contact-page-right {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .contact-page-right .booking-form {
    padding: 20px 16px;
    border-radius: 16px;
  }

  /* Tabs — scrollable, smaller text */
  .msf-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }

  .msf-tab {
    font-size: 10px;
    padding: 10px 6px;
    min-width: auto;
    flex: 1;
  }

  /* Step content */
  .msf-step {
    padding: 16px 14px 14px;
  }

  .msf-step-title {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .msf-step-sub {
    font-size: 12px;
    margin-bottom: 14px;
  }

  /* Form rows — single column */
  .msf-step .form-row {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .msf-step .form-group {
    margin-bottom: 12px;
  }

  /* Occasion & addon cards — 3 per row */
  .msf-card-grid,
  .msf-card-grid--checkbox {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .msf-card-inner {
    padding: 10px 4px;
    min-height: 74px;
    border-radius: 10px;
  }

  .msf-card-emoji { font-size: 20px; }
  .msf-card-label { font-size: 10px; }

  /* Step 5 summary */
  .msf-summary {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    padding: 12px 14px;
  }

  /* Nav buttons */
  .msf-nav {
    gap: 8px;
    padding-top: 14px;
  }

  .msf-nav .btn {
    min-width: 0;
    flex: 1;
    font-size: 13px;
    padding: 10px 14px;
  }

  /* Contact info */
  .contact-points li {
    font-size: 13px;
    gap: 10px;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  /* Map */
  .location-map-wrap {
    margin-top: 20px;
  }

  .location-map-frame iframe {
    height: 180px;
  }

  /* FAQs */
  .contact-page-left > div[style*="margin-top:32px"] {
    margin-top: 20px !important;
  }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
  .contact-page-wrapper {
    gap: 20px;
  }

  .contact-page-right .booking-form {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .msf-tab {
    font-size: 9px;
    padding: 9px 4px;
  }

  .msf-step {
    padding: 14px 12px 12px;
  }

  /* Cards — 2 columns on very small screens for better tap targets */
  .msf-card-grid,
  .msf-card-grid--checkbox {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .msf-card-inner {
    min-height: 80px;
    padding: 12px 6px;
  }

  .msf-card-emoji { font-size: 22px; }
  .msf-card-label { font-size: 11px; }

  .msf-summary {
    grid-template-columns: 1fr;
  }

  .msf-nav .btn {
    font-size: 12px;
    padding: 9px 10px;
  }

  .msf-step-title {
    font-size: 15px;
  }

  /* Inputs/selects — full width, no overflow */
  .msf-step input,
  .msf-step select,
  .msf-step textarea {
    font-size: 14px;
    padding: 10px 12px;
  }

  .contact-points {
    gap: 12px;
  }

  .contact-points li {
    font-size: 12px;
  }
}
