/* ================================================================
   ROOT VARIABLES & RESET
================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&family=Cormorant+Garamond:wght@300;400;500&family=Dancing+Script:wght@400;600;700&family=Montserrat:wght@300;400;500;600&family=Noto+Serif+Devanagari:wght@400;500;600&display=swap');

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --text-primary: rgba(255,255,255,0.85);
  --text-secondary: #ffffff;
  --gold: #ffffff;
  --gold-light: #ffffff;
  --gold-dark: #cccccc;
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-cursive: 'Dancing Script', cursive;
  --font-light: 'Cormorant Garamond', serif;
  --nav-height: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section[id], div[id] { scroll-margin-top: 40px; }
body { background: var(--bg-primary); color: var(--text-primary); font-family: var(--font-secondary); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 40px); max-width: 1240px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.4rem 0 1.4rem;
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.07);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(6,6,6,0.82);
  border-color: rgba(255,110,180,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,110,180,0.06), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Logo */
.nav-logo img {
  height: 38px; object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.3));
}

/* Links — grouped in a glass pill */
.nav-links {
  display: flex; align-items: center; gap: 0.2rem; list-style: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
}
.nav-links a {
  font-family: var(--font-secondary); font-size: 0.66rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  transition: color 0.22s, background 0.22s, text-shadow 0.22s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.nav-right { display: flex; align-items: center; gap: 0.7rem; }

/* Language Dropdown */
.lang-dropdown { position: relative; }
.lang-selected {
  display: flex; align-items: center; gap: 0.35rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-secondary); font-size: 0.64rem;
  font-weight: 700; letter-spacing: 0.12em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px; cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.lang-selected:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.lang-selected svg { transition: transform 0.25s; flex-shrink: 0; }
.lang-dropdown.open .lang-selected svg { transform: rotate(180deg); }
.lang-options {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,110,180,0.18);
  border-radius: 14px; padding: 0.4rem 0;
  min-width: 140px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.22s ease; z-index: 200;
  box-shadow: 0 16px 40px rgba(0,0,0,0.8);
}
.lang-dropdown.open .lang-options { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.55rem 1rem; cursor: pointer; transition: background 0.15s;
}
.lang-option:hover, .lang-option.active { background: rgba(255,110,180,0.08); }
.lang-option.active .lo-code,
.lang-option.active .lo-label { color: #ff6eb4; }
.lo-code {
  font-family: var(--font-secondary); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5); min-width: 22px;
}
.lo-label {
  font-family: var(--font-secondary); font-size: 0.76rem;
  color: rgba(255,255,255,0.7); letter-spacing: 0.04em;
}
.lo-devanagari {
  font-family: 'Noto Serif Devanagari', serif !important;
  letter-spacing: 0 !important;
}

/* Book Now — white neon pill */
.btn-booknow {
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: var(--font-secondary); font-size: 0.64rem;
  font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.48rem 1.35rem; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: all 0.3s;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(255,255,255,0.4);
  box-shadow: 0 0 10px rgba(255,255,255,0.08);
}
.btn-booknow:hover {
  background: rgba(255,255,255,0.16);
  border-color: #fff;
  color: #fff;
  text-shadow: 0 0 12px rgba(255,255,255,0.8);
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 1.5px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: all 0.3s; }

/* ================================================================
   HERO / BANNER SECTION
================================================================ */
.hero-section {
  height: 100vh; max-height: 100vh; position: relative; overflow: hidden;
  background: #000;
  display: flex; align-items: center;
}
.hero-bg-texture {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(180,50,50,0.06) 0%, transparent 50%);
}

/* Floating neon celebration icons */
.hero-floats {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.hf {
  position: absolute; display: flex; align-items: center; justify-content: center;
  opacity: 0.55; filter: drop-shadow(0 0 6px currentColor) drop-shadow(0 0 14px currentColor);
  animation: hfDrift 6s ease-in-out infinite;
}
/* Positions + colors + staggered delays */
.hf-1  { top: 12%; left: 6%;    color: #a29bfe; animation-duration: 5.5s; animation-delay: 0s;    } /* balloon — purple */
.hf-2  { top: 8%;  left: 48%;   color: #74b9ff; animation-duration: 7s;   animation-delay: 1s;    } /* star — blue */
.hf-3  { top: 72%; left: 4%;    color: #ff9f43; animation-duration: 6s;   animation-delay: 0.5s;  } /* cake — orange */
.hf-4  { top: 20%; right: 4%;   color: #55efc4; animation-duration: 5s;   animation-delay: 1.5s;  } /* heart — mint */
.hf-5  { top: 60%; right: 6%;   color: #a29bfe; animation-duration: 6.5s; animation-delay: 2s;    } /* music — purple */
.hf-6  { top: 82%; left: 44%;   color: #00cec9; animation-duration: 7.5s; animation-delay: 0.8s;  } /* diamond — cyan */
.hf-7  { top: 40%; left: 2%;    color: #55efc4; animation-duration: 5.8s; animation-delay: 2.5s;  } /* gift — mint */
.hf-8  { top: 15%; right: 18%;  color: #74b9ff; animation-duration: 6.2s; animation-delay: 1.2s;  } /* champagne — blue */
.hf-9  { top: 50%; left: 52%;   color: #74b9ff; animation-duration: 6.8s; animation-delay: 0.3s;  } /* camera — blue */
.hf-10 { top: 88%; right: 22%;  color: #a29bfe; animation-duration: 4.8s; animation-delay: 1.8s;  } /* star filled — purple */
.hf-11 { top: 32%; left: 56%;   color: #00cec9; animation-duration: 7.2s; animation-delay: 3s;    } /* ring — cyan */
.hf-12 { top: 5%;  right: 8%;   color: #ffeaa7; animation-duration: 5.2s; animation-delay: 0.6s;  } /* sparkle — cream */
.hf-13 { top: 78%; right: 14%;  color: #ff9f43; animation-duration: 6.4s; animation-delay: 2.2s;  } /* balloon 2 — orange */
.hf-14 { top: 55%; left: 14%;   color: #a29bfe; animation-duration: 5.6s; animation-delay: 1.4s;  } /* heart filled — purple */
.hf-15 { top: 25%; left: 30%;   color: #74b9ff; animation-duration: 7.8s; animation-delay: 0.9s;  } /* candle — blue */
.hf-16 { top: 45%; right: 28%;  color: #00b894; animation-duration: 4.5s; animation-delay: 2.8s;  } /* dot — green */
.hf-17 { top: 68%; left: 62%;   color: #e17055; animation-duration: 5.3s; animation-delay: 1.6s;  } /* dot — orange */
.hf-18 { top: 92%; left: 18%;   color: #6c5ce7; animation-duration: 6.9s; animation-delay: 0.4s;  } /* dot — violet */

@keyframes hfDrift {
  0%,100% { transform: translateY(0px)   rotate(-4deg) scale(1);    }
  33%      { transform: translateY(-12px) rotate(3deg)  scale(1.08); }
  66%      { transform: translateY(6px)   rotate(-2deg) scale(0.95); }
}

.hero-container {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 5% 0 8%;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  align-items: center; gap: 2rem;
  padding-top: calc(18px + 60px + 1.5rem);
  height: 100vh;
}
.hero-left {
  display: flex; flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 2rem 0;
}

/* Banner wrap — contains headline + overlapping buttons */
.hero-banner-wrap {
  position: relative;
  width: 100%;
}

/* ── Neon Headline Block ── */
.hero-neon-headline {
  position: relative;
  width: 100%;
  display: flex; flex-direction: column;
  gap: 0;
}

.hn-celebrate {
  font-family: var(--font-secondary);
  font-size: 0.6rem; letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255,200,230,0.45);
  margin-bottom: 1rem;
}

.hn-brand {
  display: flex; flex-direction: column;
  line-height: 0.88; margin-bottom: 1rem;
  gap: 0.05rem;
}
.hn-brand-main {
  font-family: var(--font-cursive);
  font-size: clamp(4.2rem, 7vw, 6.8rem);
  font-weight: 700; color: #fff;
  text-shadow:
    0 0 7px #fff,
    0 0 18px rgba(200,220,255,0.9),
    0 0 40px rgba(120,160,255,0.6),
    0 0 75px rgba(80,120,255,0.3);
  animation: neonFlicker 5s ease-in-out infinite;
}
.hn-brand-sub {
  font-family: var(--font-cursive);
  font-size: clamp(3.4rem, 5.8vw, 5.4rem);
  font-weight: 700; color: #fff;
  text-shadow:
    0 0 7px #fff,
    0 0 18px rgba(200,220,255,0.9),
    0 0 40px rgba(120,160,255,0.6),
    0 0 75px rgba(80,120,255,0.3);
  animation: neonFlicker 5s ease-in-out infinite;
  animation-delay: 0.4s;
}
.hn-dot {
  color: #a29bfe;
  text-shadow: 0 0 8px #a29bfe, 0 0 22px #a29bfe, 0 0 45px #a29bfe;
}

.hn-tagline {
  font-family: var(--font-cursive);
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.6rem;
  letter-spacing: 0.02em;
}

.hn-divider {
  width: 90%; height: 1px; margin-bottom: 1.4rem;
  background: linear-gradient(90deg,
    rgba(150,180,255,0.6) 0%,
    rgba(200,220,255,0.4) 55%,
    transparent 100%
  );
}

/* Stats row */
.hn-stats {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 1.6rem;
}
.hn-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 1.4rem;
}
.hn-stat:first-child { padding-left: 0; }
.hn-stat-num {
  font-family: var(--font-primary);
  font-size: 1.9rem; font-weight: 700; color: #fff; line-height: 1;
  text-shadow: 0 0 10px rgba(255,180,220,0.8), 0 0 25px rgba(255,80,160,0.5);
}
.hn-stat-lbl {
  font-family: var(--font-secondary);
  font-size: 0.56rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
  margin-top: 0.25rem;
}
.hn-stat-sep {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,120,180,0.5), transparent);
}

/* Event tags */
.hn-tags {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  margin-bottom: 1.6rem;
}
.hn-tags span {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-secondary);
  font-size: 0.68rem; letter-spacing: 0.1em;
  color: rgba(220,230,255,0.7);
  background: rgba(120,150,255,0.06);
  border: 1px solid rgba(120,150,255,0.2);
  border-radius: 20px; padding: 0.35rem 0.9rem;
  text-shadow: none;
}
.hn-tags span svg { flex-shrink: 0; opacity: 0.7; }

/* CTA row */
.hn-cta-row {
  display: flex; align-items: center; gap: 1.4rem;
}
.hn-cta-book {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; border-radius: 999px;
  background: #fff; color: #000;
  font-family: var(--font-secondary); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
  transition: all 0.3s;
  text-decoration: none;
}
.hn-cta-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.35);
}
.hn-cta-explore {
  font-family: var(--font-secondary); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.45);
  padding-bottom: 2px; cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
  text-decoration: none;
}
.hn-cta-explore:hover { color: #fff; border-color: rgba(255,255,255,0.8); }

/* Book Now / Click Here — hidden (removed) */
.hero-booknow-btn,
.hero-clickhere-btn { display: none; }
.hero-tagline {
  font-family: var(--font-cursive); font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: rgba(255,255,255,0.7); letter-spacing: 1px;
  margin-top: 5rem; display: none;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-primary); font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold); font-weight: 700; line-height: 1;
}
.stat-label {
  font-family: var(--font-secondary); font-size: 0.72rem;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.55);
  text-transform: uppercase; margin-top: 0.3rem;
}
.hero-cta { display: flex; gap: 1rem; align-items: center; }
.btn-primary {
  background: #fff;
  color: #000; font-family: var(--font-primary); font-size: 0.82rem;
  letter-spacing: 0.2em; padding: 0.85rem 2rem; border-radius: 999px;
  border: none; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,255,255,0.3); }
.btn-secondary {
  background: transparent; border: 1px solid rgba(255,255,255,0.5);
  color: var(--gold); font-family: var(--font-secondary); font-size: 0.78rem;
  letter-spacing: 0.15em; padding: 0.85rem 1.8rem; border-radius: 999px;
  cursor: pointer; transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); }
.hero-right { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image-wrap {
  position: relative;
  width: 460px; height: 460px;
  flex-shrink: 0;
}
.hero-event-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.08) saturate(1.1);
  -webkit-mask-image: radial-gradient(circle 347px at 50% 50%,
    black 0%,
    black 30%,
    rgba(0,0,0,0.9) 42%,
    rgba(0,0,0,0.6) 52%,
    rgba(0,0,0,0.25) 62%,
    rgba(0,0,0,0.05) 72%,
    transparent 80%
  );
  mask-image: radial-gradient(circle 330px at 50% 50%,
    black 0%,
    black 30%,
    rgba(0,0,0,0.9) 42%,
    rgba(0,0,0,0.6) 52%,
    rgba(0,0,0,0.25) 62%,
    rgba(0,0,0,0.05) 72%,
    transparent 80%
  );
}

/* ================================================================
   ABOUT / OUR STORY SECTION
================================================================ */
.about-section {
  position: relative; padding: 6rem 5% 6rem 8%;
  background: #fff; color: #1a1a1a;
  overflow: hidden; z-index: 1;
}
.about-wave-top {
  position: absolute; top: -2px; left: 0; right: 0;
  width: 100%; pointer-events: none; z-index: 2;
}
.about-wave-top img { width: 100%; display: block; }
.about-container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 3;
}

/* Label with lines */
.about-label-row {
  display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.2rem;
}
.about-label-line { flex: 1; height: 1px; background: #ccc; }
.about-label {
  font-family: var(--font-cursive); font-size: 1.1rem;
  color: #c0392b; white-space: nowrap; font-weight: 400;
}

.about-title {
  font-family: var(--font-cursive); font-size: clamp(2rem, 3.5vw, 3rem);
  color: #111; line-height: 1.15; margin-bottom: 1.8rem; font-weight: 700;
  text-shadow:
    0 0 6px rgba(0,0,0,0.4),
    0 0 16px rgba(180,0,60,0.2),
    0 0 30px rgba(180,0,60,0.1);
}
.about-text {
  font-family: var(--font-secondary); font-size: 0.85rem;
  line-height: 1.9; color: #555; margin-bottom: 1.2rem; text-align: center;
}

/* About gallery — staggered photo stack */
.about-gallery-col {
  position: relative;
  height: 420px;
}

.about-photo-stack {
  position: relative;
  width: 100%; height: 100%;
}

.about-photo {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.about-photo:hover {
  transform: scale(1.03) translateY(-4px) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  z-index: 10;
}

/* Photo positions — overlapping stagger */
.ap-1 {
  width: 72%; height: 280px;
  top: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 1;
}
.ap-2 {
  width: 62%; height: 240px;
  top: 60px; right: 0;
  transform: rotate(2.5deg);
  z-index: 2;
  border: 4px solid #fff;
}
.ap-3 {
  width: 50%; height: 180px;
  bottom: 0; left: 18%;
  transform: rotate(-1.5deg);
  z-index: 3;
  border: 4px solid #fff;
}

/* Floating stat badges */
.about-badge {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  padding: 0.7rem 1.1rem;
  border-radius: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 20;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: transform 0.3s ease;
}
.about-badge:hover { transform: scale(1.08) translateY(-2px) !important; }

.ab-1 {
  background: rgba(10,10,10,0.88);
  border: 1px solid rgba(255,110,180,0.5);
  box-shadow: 0 0 20px rgba(255,110,180,0.2), 0 8px 32px rgba(0,0,0,0.3);
  bottom: 30px; right: 8px;
}
.ab-2 {
  background: rgba(10,10,10,0.88);
  border: 1px solid rgba(100,180,255,0.5);
  box-shadow: 0 0 20px rgba(100,180,255,0.2), 0 8px 32px rgba(0,0,0,0.3);
  top: 10px; right: 10px;
}
.ab-3 {
  background: rgba(10,10,10,0.88);
  border: 1px solid rgba(85,239,196,0.5);
  box-shadow: 0 0 20px rgba(85,239,196,0.2), 0 8px 32px rgba(0,0,0,0.3);
  top: 50%; left: -10px;
  transform: translateY(-50%);
}

.ab-num {
  font-family: var(--font-cursive);
  font-size: 1.5rem; font-weight: 700;
  line-height: 1; color: #fff;
}
.ab-1 .ab-num { text-shadow: 0 0 12px rgba(255,110,180,0.8); }
.ab-2 .ab-num { text-shadow: 0 0 12px rgba(100,180,255,0.8); }
.ab-3 .ab-num { text-shadow: 0 0 12px rgba(85,239,196,0.8); }

.ab-lbl {
  font-family: var(--font-secondary);
  font-size: 0.55rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.15rem;
}

/* ================================================================
   SERVICES SECTION
================================================================ */
.services-section .section-header { margin-bottom: 1.4rem; }
.services-section {
  padding: 2.5rem 5% 2rem; background: var(--bg-primary);
  position: relative; z-index: 1;
}
.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}

/* Premium service card */
.service-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 1.4rem 1.1rem 1.2rem;
  text-align: center; transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100,180,255,0.5), transparent);
  transition: width 0.4s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(120,180,255,0.3); box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 24px rgba(120,180,255,0.06); }
.service-card:hover::before { width: 80%; }

/* Radial glow blob */
.svc-glow {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 100px; border-radius: 50%;
  background: radial-gradient(circle, rgba(120,180,255,0.1) 0%, transparent 70%);
  pointer-events: none; transition: opacity 0.35s; opacity: 0;
}
.service-card:hover .svc-glow { opacity: 1; }

.service-icon {
  display: flex; justify-content: center; align-items: center;
  width: 48px; height: 48px; margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover .service-icon {
  color: #74b9ff; border-color: rgba(100,180,255,0.5);
  box-shadow: 0 0 16px rgba(100,180,255,0.25);
}

.service-name {
  font-family: var(--font-primary); font-size: 0.95rem;
  color: rgba(255,255,255,0.9); margin-bottom: 0.45rem; font-weight: 600;
}
.service-desc {
  font-size: 0.72rem; color: rgba(255,255,255,0.42); line-height: 1.6;
  margin-bottom: 0.8rem; flex: 1;
}

/* Feature tags */
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 0.3rem; justify-content: center;
  margin-bottom: 0.9rem;
}
.svc-tags span {
  font-family: var(--font-secondary); font-size: 0.54rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(120,180,255,0.8);
  border: 1px solid rgba(100,160,255,0.22);
  background: rgba(100,160,255,0.05);
  border-radius: 999px; padding: 0.2rem 0.6rem;
}

/* Book Now per card */
.svc-btn {
  display: inline-block;
  font-family: var(--font-secondary); font-size: 0.56rem;
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; padding: 0.35rem 1rem;
  transition: all 0.3s; text-decoration: none; margin-top: auto;
}
.svc-btn:hover {
  color: #74b9ff; border-color: rgba(100,180,255,0.6);
  background: rgba(100,180,255,0.08);
  box-shadow: 0 0 12px rgba(100,180,255,0.2);
}

/* View All Services button */
.svc-more-wrap { text-align: center; margin-top: 1.6rem; }
.svc-more-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-secondary); font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: #74b9ff;
  border: 1.5px solid rgba(100,180,255,0.55);
  background: rgba(100,180,255,0.07);
  border-radius: 999px; padding: 0.65rem 2rem;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(100,180,255,0.4);
  box-shadow: 0 0 16px rgba(100,180,255,0.1);
  transition: all 0.3s ease;
}
.svc-more-btn:hover {
  background: rgba(100,180,255,0.14); border-color: #74b9ff;
  box-shadow: 0 0 28px rgba(100,180,255,0.3), 0 0 55px rgba(100,180,255,0.1);
  transform: translateY(-2px); color: #fff;
  text-shadow: 0 0 14px rgba(100,180,255,0.8);
}
.svc-more-btn svg { transition: transform 0.3s; }
.svc-more-btn:hover svg { transform: translateY(3px); }
.section-break-dark {
  display: block;
  background: #000;
  margin: 0; padding: 0; line-height: 0;
  height: 20px;
  position: relative;
  overflow: visible;
  z-index: 2;
}
.section-break-dark img {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 105%;
  height: 60px;
  object-fit: fill;
  display: block;
  z-index: 2;
}

/* Section break — white-to-black jagged edge */
.section-break-white {
  display: block;
  background: #fff;
  margin: 0; padding: 0; line-height: 0;
  height: 20px;
  position: relative;
  overflow: visible;
  z-index: 2;
}
.section-break-white img {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 105%;
  height: 60px;
  object-fit: fill;
  display: block;
  z-index: 2;
}

.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  font-family: var(--font-secondary); font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-cursive); font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff; line-height: 1.1;
  text-shadow:
    0 0 6px rgba(255,255,255,0.7),
    0 0 16px rgba(200,220,255,0.4),
    0 0 32px rgba(150,180,255,0.2);
  animation: neonFlicker 6s ease-in-out infinite;
}
@keyframes neonFlicker {
  0%, 95%, 100% {
    text-shadow:
      0 0 6px rgba(255,255,255,0.7),
      0 0 16px rgba(200,220,255,0.4),
      0 0 32px rgba(150,180,255,0.2);
  }
  96% {
    text-shadow:
      0 0 3px rgba(255,255,255,0.4);
  }
  97% {
    text-shadow:
      0 0 6px rgba(255,255,255,0.7),
      0 0 16px rgba(200,220,255,0.4),
      0 0 32px rgba(150,180,255,0.2);
  }
}
/* ================================================================
   GALLERY SECTION (exact CSS provided)
================================================================ */
.event-gallery-section {
  position: relative; width: 100%; padding: 5rem 1.25rem;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('assets/backgroundgallary.png') center / cover no-repeat;
  overflow: hidden;
}
.event-gallery-container { max-width: 1200px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.gallery-header { margin-bottom: 2rem; }
.gallery-header-image { max-width: 300px; width: 80%; filter: drop-shadow(0 8px 22px rgba(0,0,0,0.45)); }
.gallery-decorations { position: absolute; inset: 0; z-index: 1; pointer-events: none; display: block !important; }
.gallery-decorations .sparkle { position: absolute !important; display: block !important; line-height: 1; font-family: var(--font-primary); color: rgba(255,255,255,0.85); animation: twinkle 3.6s ease-in-out infinite; }
.star-1  { top:  8%; left:  6%; font-size: 1.4rem; }
.star-2  { top: 18%; right: 14%; font-size: 1.15rem; animation-delay: 1s; }
.star-3  { top: 44%; left: 22%; font-size: 1.3rem;  animation-delay: 2s; }
.star-4  { top: 78%; right: 18%; font-size: 1.2rem; animation-delay: .5s; }
.heart-1 { top: 32%; left: 38%; font-size: 1.25rem; animation-delay: .8s; }
.heart-2 { top: 62%; right: 30%; font-size: 1.15rem; animation-delay: 2.2s; }
.dot-1   { top: 40%; left:  4%; font-size: .95rem;  animation-delay: 1.8s; }
.dot-2   { top: 85%; right:  6%; font-size: 1rem;   animation-delay: .7s; }
@keyframes twinkle { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 1; transform: scale(1.35); } }
.polaroid-container { position: relative; min-height: 320px; margin-top: 0; display: flex; justify-content: center; align-items: center; overflow: visible; }
.polaroid-photo { opacity: 0; position: absolute; transform: translateY(40px) scale(0.9); transition: all 0.6s ease; pointer-events: none; }
.polaroid-photo.active { opacity: 1; position: relative; transform: translateY(0) scale(1); pointer-events: auto; }
.polaroid-photo.active:nth-child(1) { transform: translateX(-40px) rotate(-6deg)  scale(1.10); z-index: 1; }
.polaroid-photo.active:nth-child(2) { transform: translateX(0)     rotate(2deg)   scale(1.20); z-index: 3; }
.polaroid-photo.active:nth-child(3) { transform: translateX(40px)  rotate(-4deg)  scale(1.10); z-index: 2; }
.polaroid-frame { background: #fff; width: 300px; padding: 1rem 1rem 1.2rem; box-shadow: 0 18px 36px rgba(0,0,0,0.65); border-radius: 8px; }
.polaroid-frame img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; }
.polaroid-caption { margin-top: 0.8rem; font-family: var(--font-cursive); font-size: 1rem; color: #2b160b; text-align: center; }
.gallery-navigation { margin-top: 1.5rem; display: flex; justify-content: center; align-items: center; gap: 1.5rem; }
.nav-arrow { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.3); border: 2px solid rgba(255,255,255,0.65); color: #fff; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.25s ease, background 0.25s ease; }
.nav-arrow:hover { background: rgba(255,255,255,0.5); transform: scale(1.12); }
.dots-container { display: flex; gap: 0.7rem; }
.nav-dot { width: 13px; height: 13px; border-radius: 50%; background: rgba(255,255,255,0.35); border: 2px solid rgba(255,255,255,0.8); cursor: pointer; transition: transform 0.25s ease, background 0.25s ease; }
.nav-dot.active { background: #fff; transform: scale(1.3); box-shadow: 0 0 12px rgba(255,255,255,0.8); }

/* ================================================================
   PACKAGES SECTION
================================================================ */
.packages-section {
  position: relative; width: 100%;
  padding: 3rem 2% 2.5rem; overflow: hidden;
  background: #000; z-index: 1;
}
.packages-section .section-header { margin-bottom: 1.2rem; }
.packages-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 60%);
}
.event-tabs {
  display: flex; justify-content: center; gap: 2.5rem;
  flex-wrap: wrap; margin-bottom: 24px;
}
.event-tab {
  display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
  background: transparent; border: none; cursor: pointer;
  padding: 0; transition: transform 0.25s ease;
}
.event-tab:hover { transform: translateY(-3px); }

/* Icon circle */
.et-icon {
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  transition: all 0.3s ease;
  position: relative;
}

/* Label */
.et-label {
  font-family: var(--font-secondary);
  font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
}

/* Active state — neon glow */
.event-tab.active .et-icon {
  background: rgba(255,110,180,0.08);
  border-color: rgba(255,110,180,0.7);
  color: #ff6eb4;
  box-shadow:
    0 0 0 4px rgba(0,0,0,0.9),
    0 0 0 5px rgba(255,110,180,0.25),
    0 0 18px rgba(255,110,180,0.4),
    inset 0 0 12px rgba(255,110,180,0.08);
}
.event-tab.active .et-icon svg {
  filter: drop-shadow(0 0 5px rgba(255,110,180,0.9));
}
.event-tab.active .et-label {
  color: #ff6eb4;
  text-shadow: 0 0 8px rgba(255,110,180,0.6);
}

/* Per-tab neon colors on active */
.event-tab[data-event="birthday"].active .et-icon {
  border-color: rgba(255,110,180,0.7); color: #ff6eb4;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.9), 0 0 0 5px rgba(255,110,180,0.25), 0 0 18px rgba(255,110,180,0.4), inset 0 0 12px rgba(255,110,180,0.08);
  background: rgba(255,110,180,0.08);
}
.event-tab[data-event="birthday"].active .et-icon svg { filter: drop-shadow(0 0 5px #ff6eb4); }
.event-tab[data-event="birthday"].active .et-label { color: #ff6eb4; text-shadow: 0 0 8px rgba(255,110,180,0.6); }

.event-tab[data-event="romantic"].active .et-icon {
  border-color: rgba(255,100,100,0.7); color: #ff6464;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.9), 0 0 0 5px rgba(255,100,100,0.25), 0 0 18px rgba(255,100,100,0.4), inset 0 0 12px rgba(255,100,100,0.08);
  background: rgba(255,100,100,0.08);
}
.event-tab[data-event="romantic"].active .et-icon svg { filter: drop-shadow(0 0 5px #ff6464); }
.event-tab[data-event="romantic"].active .et-label { color: #ff6464; text-shadow: 0 0 8px rgba(255,100,100,0.6); }

.event-tab[data-event="anniversary"].active .et-icon {
  border-color: rgba(162,155,254,0.7); color: #a29bfe;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.9), 0 0 0 5px rgba(162,155,254,0.25), 0 0 18px rgba(162,155,254,0.4), inset 0 0 12px rgba(162,155,254,0.08);
  background: rgba(162,155,254,0.08);
}
.event-tab[data-event="anniversary"].active .et-icon svg { filter: drop-shadow(0 0 5px #a29bfe); }
.event-tab[data-event="anniversary"].active .et-label { color: #a29bfe; text-shadow: 0 0 8px rgba(162,155,254,0.6); }

.event-tab[data-event="theatre"].active .et-icon {
  border-color: rgba(0,206,201,0.7); color: #00cec9;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.9), 0 0 0 5px rgba(0,206,201,0.25), 0 0 18px rgba(0,206,201,0.4), inset 0 0 12px rgba(0,206,201,0.08);
  background: rgba(0,206,201,0.08);
}
.event-tab[data-event="theatre"].active .et-icon svg { filter: drop-shadow(0 0 5px #00cec9); }
.event-tab[data-event="theatre"].active .et-label { color: #00cec9; text-shadow: 0 0 8px rgba(0,206,201,0.6); }

.packages-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  position: relative; z-index: 1;
  align-items: stretch;
}

/* Theme color variables */
.pkg-card.silver   { --accent: 192, 192, 192; }
.pkg-card.gold     { --accent: 201, 161, 74;  }
.pkg-card.diamond  { --accent: 0,   229, 255; }
.pkg-card.platinum { --accent: 229, 228, 226; }

/* Card */
.pkg-card {
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(var(--accent),0.08), transparent 60%),
    #050505;
  border: 1px solid rgba(var(--accent),0.38);
  border-radius: 16px; padding: 16px 14px 14px;
  text-align: center; position: relative;
  width: 100%; display: flex; flex-direction: column;
  cursor: pointer; backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.7), inset 0 0 20px rgba(var(--accent),0.05);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s ease;
}
.pkg-card::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 60%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(var(--accent),0.8), transparent);
}
.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.85), inset 0 0 28px rgba(var(--accent),0.08);
}

/* Tier badge */
.pkg-badge {
  position: absolute; top: 10px; right: 10px;
  font-size: 0.5rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgb(var(--accent)); border: 1px solid rgba(var(--accent),0.55);
  padding: 2px 7px; border-radius: 30px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  font-family: var(--font-secondary);
}

/* Icon */
.pkg-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(var(--accent),0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 6px;
  color: rgb(var(--accent));
  background: rgba(var(--accent),0.06);
}

/* Event label */
.pkg-event-label {
  font-size: 0.55rem; letter-spacing: 2px;
  color: #999; margin-bottom: 3px; text-transform: uppercase;
  font-family: var(--font-secondary);
}

/* Name */
.pkg-name {
  font-family: var(--font-primary); font-size: 1.25rem;
  font-weight: 600; color: rgb(var(--accent));
  margin: 2px 0 3px;
  text-shadow: 0 0 6px rgba(var(--accent),0.25);
  line-height: 1.1;
}

/* Price */
.pkg-price {
  font-family: var(--font-primary); font-size: 1rem;
  color: #fff; margin: 2px 0 3px;
}

/* Divider */
.pkg-divider {
  width: 70%; height: 1px; margin: 8px auto;
  background: linear-gradient(to right, transparent, rgba(var(--accent),0.55), transparent);
}

/* Feature TAGS */
.pkg-features {
  list-style: none; padding: 0; margin: 0 0 8px;
  flex: 1;
  display: flex; flex-wrap: wrap;
  gap: 5px; justify-content: center; align-content: flex-start;
}
.pkg-features li {
  font-size: 0.62rem; color: rgba(var(--accent), 1);
  padding: 3px 9px; line-height: 1.3;
  border: 1px solid rgba(var(--accent),0.35);
  border-radius: 20px;
  background: rgba(var(--accent),0.07);
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
  font-family: var(--font-secondary);
}
.pkg-features li svg { flex-shrink: 0; opacity: 0.8; }

/* Add-ons note */
.pkg-addons-note {
  font-size: 0.6rem; color: #888;
  margin-bottom: 8px; font-style: italic;
  font-family: var(--font-light);
}

/* Book button */
.pkg-btn {
  margin-top: auto; align-self: center;
  width: 80%; max-width: 180px;
  padding: 8px 0; border-radius: 30px;
  background: transparent; font-size: 0.62rem;
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; cursor: pointer;
  border: 1px solid rgba(var(--accent),0.6);
  color: rgb(var(--accent));
  position: relative; overflow: hidden;
  transition: all 0.35s ease;
  font-family: var(--font-secondary);
}
.pkg-btn::before {
  content: ""; position: absolute; inset: 0; left: -100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.55s ease;
}
.pkg-btn:hover::before { left: 100%; }
.pkg-btn:hover { background: rgba(var(--accent),0.12); box-shadow: 0 0 14px rgba(var(--accent),0.25); }


/* ================================================================
   CELEBRATE / BOOKING CARD SECTION (exact CSS provided)
================================================================ */
.celebrate-section { padding: 6rem 5%; display: flex; justify-content: center; color: var(--text-primary); font-family: var(--font-secondary); background: var(--bg-primary); }
.celebrate-container { display: flex; align-items: center; gap: 4.5rem; max-width: 1100px; width: 100%; }
.neon-title { font-family: var(--font-cursive); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 400; line-height: 1.05; color: var(--text-secondary); letter-spacing: 1px; text-shadow: 0 0 10px rgba(255,255,255,0.6), 0 0 22px rgba(255,255,255,0.5), 0 0 40px rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
.celebrate-desc { font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; max-width: 450px; color: var(--text-primary); }
.booking-features { list-style: none; padding: 0; }
.booking-features li { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.9rem; font-size: 0.92rem; color: var(--text-primary); }
.booking-features li .feat-icon { font-size: 1.2rem; }
.feat-svg { display: flex; align-items: center; color: var(--gold); flex-shrink: 0; }
.booking-card-parchment { max-width: 500px; width: 100%; margin-left: auto; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)); border-radius: 26px; padding: 2rem 2rem 2.4rem; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 40px 90px rgba(0,0,0,0.85); position: relative; }
.booking-card-parchment::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 1px rgba(255,255,255,0.25), 0 0 60px rgba(255,255,255,0.12); pointer-events: none; }
.card-header { text-align: center; font-family: var(--font-primary); font-size: 2rem; font-weight: 500; letter-spacing: 0.12em; margin-bottom: 0.35rem; color: var(--text-secondary); }
.month-year { text-align: center; font-family: var(--font-secondary); letter-spacing: 0.28em; margin-bottom: 1.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.8rem; justify-items: center; margin-bottom: 1.2rem; }
.calendar-grid span { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-secondary); font-size: 0.9rem; font-weight: 500; cursor: pointer; background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), 0 8px 20px rgba(0,0,0,0.6); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.calendar-grid span:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45), 0 14px 36px rgba(0,0,0,0.8); }
.calendar-grid span.today { background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.16)); }
.calendar-grid span.selected { background: linear-gradient(180deg, rgba(0,212,255,0.4), rgba(0,212,255,0.16)); }
.calendar-grid span.disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
.start-booking-btn { width: 100%; padding: 0.95rem; border-radius: 999px; font-family: var(--font-primary); font-size: 0.82rem; letter-spacing: 0.28em; margin-top: 1.1rem; background: #fff; color: #000; border: none; cursor: pointer; transition: all 0.3s; }
.start-booking-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,255,255,0.4); }

/* ================================================================
   ADD-ONS SECTION
================================================================ */
.addons-section { padding: 4rem 5%; background: #000; position: relative; z-index: 1; }
.addons-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem;
}

/* ── Premium Addon Card ── */
.addon-card {
  background:
    radial-gradient(ellipse at 50% 0%, var(--addon-glow, rgba(255,255,255,0.08)) 0%, transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,0.04) 0%, #080808 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2rem 1rem 1.6rem;
  text-align: center; cursor: pointer;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s ease;
  position: relative; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 8px 32px rgba(0,0,0,0.6);
}

/* Inner neon border via inset shadow */
.addon-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  border: 1px solid var(--addon-color, rgba(255,255,255,0.2));
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.35s;
}

/* Outer glow ring (double border effect) */
.addon-card::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 24px;
  border: 1px solid var(--addon-color, rgba(255,255,255,0.08));
  opacity: 0.25;
  pointer-events: none;
  transition: opacity 0.35s;
}

/* Corner accent — top-left */
.addon-card .addon-corner-tl,
.addon-card .addon-corner-br {
  position: absolute;
  width: 16px; height: 16px;
  pointer-events: none; z-index: 2;
}
.addon-card .addon-corner-tl {
  top: 8px; left: 8px;
  border-top: 2px solid var(--addon-color, rgba(255,255,255,0.4));
  border-left: 2px solid var(--addon-color, rgba(255,255,255,0.4));
  border-radius: 4px 0 0 0;
}
.addon-card .addon-corner-br {
  bottom: 8px; right: 8px;
  border-bottom: 2px solid var(--addon-color, rgba(255,255,255,0.4));
  border-right: 2px solid var(--addon-color, rgba(255,255,255,0.4));
  border-radius: 0 0 4px 0;
}

.addon-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 20px 50px rgba(0,0,0,0.7),
    0 0 30px var(--addon-glow, rgba(255,255,255,0.06));
}
.addon-card:hover::before { opacity: 1; }
.addon-card:hover::after  { opacity: 0.55; }

.addon-card.selected::before { opacity: 1; }
.addon-card.selected::after  { opacity: 0.7; }
.addon-card.selected {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 20px 50px rgba(0,0,0,0.7),
    0 0 40px var(--addon-glow, rgba(255,255,255,0.1));
}
.addon-card.selected .addon-check { opacity: 1; transform: scale(1); }

/* Check badge */
.addon-check {
  position: absolute; top: 0.7rem; right: 0.7rem;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--addon-color, #fff);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.4);
  transition: all 0.25s cubic-bezier(.34,1.56,.64,1); z-index: 3;
  box-shadow: 0 0 8px var(--addon-color, rgba(255,255,255,0.5));
}
.addon-check svg { color: #000; }

/* Icon wrap — glowing circle */
.addon-icon-wrap {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  background: radial-gradient(circle, var(--addon-glow, rgba(255,255,255,0.08)) 0%, transparent 70%);
  border: 1px solid var(--addon-color, rgba(255,255,255,0.2));
  color: var(--addon-color, #fff);
  position: relative; z-index: 1;
  box-shadow: 0 0 14px var(--addon-glow, rgba(255,255,255,0.06)), inset 0 0 10px var(--addon-glow, rgba(255,255,255,0.04));
  transition: box-shadow 0.35s;
}
.addon-card:hover .addon-icon-wrap {
  box-shadow: 0 0 22px var(--addon-glow, rgba(255,255,255,0.12)), inset 0 0 14px var(--addon-glow, rgba(255,255,255,0.08));
}

/* Name */
.addon-name {
  font-family: var(--font-primary); font-size: 0.92rem;
  color: rgba(255,255,255,0.9); margin-bottom: 0.4rem; font-weight: 500;
  position: relative; z-index: 1; letter-spacing: 0.02em;
}

/* Price — neon colored */
.addon-price {
  font-size: 0.75rem; font-family: var(--font-secondary);
  color: var(--addon-color, rgba(255,255,255,0.5));
  letter-spacing: 0.08em; font-weight: 600;
  position: relative; z-index: 1;
  text-shadow: 0 0 8px var(--addon-glow, rgba(255,255,255,0.2));
}

/* ================================================================
   TESTIMONIALS SECTION
================================================================ */
.testimonials-section { padding: 5rem 5%; background: var(--bg-primary); position: relative; z-index: 1; }
.testimonials-track { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 2rem; position: relative;
}
.testimonial-card::before { content: '"'; font-family: var(--font-cursive); font-size: 5rem; color: rgba(255,255,255,0.15); position: absolute; top: -0.5rem; left: 1rem; line-height: 1; }
.testimonial-text { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-primary); font-size: 1rem; color: #000; flex-shrink: 0; }
.author-name { font-family: var(--font-primary); font-size: 0.9rem; color: var(--gold); }
.author-event { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.3rem; }

/* ================================================================
   CONTACT SECTION
================================================================ */
.contact-section {
  padding: 0; background: #fff;
  position: relative; overflow: hidden; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center;
}
.contact-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.contact-particle {
  position: absolute; font-size: 1.2rem;
  animation: floatParticle linear infinite;
  opacity: 0; color: rgba(0,0,0,0.06);
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}
.contact-container {
  max-width: 1200px; width: 100%;
  margin: 0 auto; padding: 4rem 5%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; position: relative; z-index: 1;
  align-items: start;
}

/* Form col — clean, no card */
.contact-form-col {
  background: none; border: none; border-radius: 0;
  padding: 0; box-shadow: none;
}
.contact-form-col::before { display: none; }

.contact-title {
  font-family: var(--font-cursive);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  color: #111; margin-bottom: 0.3rem; font-weight: 700;
  line-height: 1.1;
}
.contact-subtitle { font-size: 0.82rem; color: #444; margin-bottom: 1.8rem; font-family: var(--font-light); letter-spacing: 0.04em; }
.contact-form { display: flex; flex-direction: column; gap: 0.85rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: #555; font-family: var(--font-secondary); }
.form-group input, .form-group textarea {
  background: transparent; border: none;
  border-bottom: 1px solid #bbb;
  padding: 0.6rem 0; color: #111;
  font-family: var(--font-light); font-size: 0.88rem;
  transition: border-color 0.25s; outline: none; border-radius: 0;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #888; }
.form-group input:focus, .form-group textarea:focus { border-bottom-color: #c0392b; }
.form-group textarea { resize: none; min-height: 70px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-send {
  background: #111; color: #fff; border: 1px solid #111;
  padding: 0.8rem 2rem; border-radius: 2px;
  font-family: var(--font-secondary); font-size: 0.68rem;
  letter-spacing: 0.25em; cursor: pointer; transition: all 0.3s;
  align-self: flex-start; text-transform: uppercase; margin-top: 0.4rem;
}
.btn-send:hover { background: transparent; color: #111; }

/* Info col — clean dark-on-white, no card */
.contact-info {
  background: none; border: none; border-radius: 0;
  padding: 0; box-shadow: none; backdrop-filter: none;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.contact-info::before { display: none; }

/* "Our Details" — big cursive neon gold */
.contact-info-title {
  font-family: var(--font-cursive);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700; line-height: 1.05;
  color: #1a1a1a;
  text-shadow:
    0 0 10px rgba(255,160,0,0.5),
    0 0 25px rgba(255,120,0,0.35),
    0 0 50px rgba(255,80,0,0.2);
  margin-bottom: 0.6rem;
}

/* Divider under title */
.contact-info-title + .contact-info-divider {
  display: block; width: 60px; height: 2px;
  background: linear-gradient(to right, #c0392b, transparent);
  margin-bottom: 0.8rem;
}

.contact-detail {
  display: flex; align-items: flex-start; gap: 0.9rem;
}
.contact-detail-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #333; margin-top: 0.1rem;
  border: none; background: none; box-shadow: none; border-radius: 0;
}
.contact-detail-text {
  font-size: 0.9rem; color: #222; line-height: 1.6;
  font-family: var(--font-secondary);
  font-weight: 500;
}
.contact-detail-text strong { display: none; }

/* Map */
.contact-map {
  width: 100%; height: 180px;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-top: 0.4rem;
}
.contact-map iframe {
  width: 100%; height: 100%; border: none; display: block;
  border-radius: 14px;
}

/* White section overrides */
.contact-section .section-label { color: #aaa; }
.contact-section .section-title {
  color: #111;
  text-shadow:
    0 0 6px rgba(0,0,0,0.3),
    0 0 18px rgba(100,0,40,0.15),
    0 0 35px rgba(100,0,40,0.08);
  animation: none;
}
.contact-section .section-divider { background: #ddd; }
.floating-actions {
  position: fixed; right: 1.5rem; bottom: 6rem;
  display: flex; flex-direction: column; gap: 0.8rem; z-index: 999;
}
.fab {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; cursor: pointer; border: none;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none; color: #fff;
  position: relative;
}
.fab:hover { transform: scale(1.12); }
.fab-whatsapp {
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(0,230,100,0.6);
  color: #00e664;
  box-shadow: 0 0 12px rgba(0,230,100,0.35), 0 0 28px rgba(0,230,100,0.15);
}
.fab-whatsapp svg { filter: drop-shadow(0 0 5px rgba(0,230,100,0.8)); }
.fab-whatsapp:hover {
  box-shadow: 0 0 20px rgba(0,230,100,0.6), 0 0 45px rgba(0,230,100,0.3);
  border-color: rgba(0,230,100,0.9);
}
.fab-call {
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(100,180,255,0.6);
  color: #64b4ff;
  box-shadow: 0 0 12px rgba(100,180,255,0.35), 0 0 28px rgba(100,180,255,0.15);
}
.fab-call svg { filter: drop-shadow(0 0 5px rgba(100,180,255,0.8)); }
.fab-call:hover {
  box-shadow: 0 0 20px rgba(100,180,255,0.6), 0 0 45px rgba(100,180,255,0.3);
  border-color: rgba(100,180,255,0.9);
}
.fab-book {
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(255,210,0,0.6);
  color: #ffe066;
  box-shadow: 0 0 12px rgba(255,210,0,0.35), 0 0 28px rgba(255,210,0,0.15);
}
.fab-book svg { filter: drop-shadow(0 0 5px rgba(255,210,0,0.8)); }
.fab-book:hover {
  box-shadow: 0 0 20px rgba(255,210,0,0.6), 0 0 45px rgba(255,210,0,0.3);
  border-color: rgba(255,210,0,0.9);
}
.fab-label {
  position: absolute; right: 60px; background: rgba(0,0,0,0.85);
  color: #fff; font-size: 0.72rem; padding: 0.3rem 0.7rem;
  border-radius: 6px; white-space: nowrap; opacity: 0;
  transition: opacity 0.2s; pointer-events: none;
  font-family: var(--font-secondary);
}
.fab:hover .fab-label { opacity: 1; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: #050505; border-top: 1px solid rgba(255,255,255,0.1);
  padding: 3rem 5% 1.5rem;
}
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: var(--font-primary); font-size: 0.9rem; color: var(--gold); margin-bottom: 1rem; letter-spacing: 0.1em; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1rem; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all 0.25s; cursor: pointer; }
.social-btn:hover { background: rgba(255,255,255,0.15); border-color: var(--gold); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ================================================================
   UTILITY / SHARED
================================================================ */
.section-divider { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0.8rem auto 0; }
.text-gold { color: var(--gold); }
.hidden { display: none !important; }
.pkg-panel { display: none; }
.pkg-panel.active { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .packages-grid, .pkg-panel.active { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile hero image */
.hero-mobile-img { display: none; }

/* Mobile about image */
.about-mobile-img { display: none; }

/* Packages sticky header wrapper */
.pkg-sticky-header { position: relative; }

@media (max-width: 768px) {
  /* ── Navbar ── */
  .navbar {
    top: 10px;
    width: calc(100% - 24px);
    height: 52px;
    padding: 0 1rem;
    border-radius: 999px;
  }
  .nav-logo img { height: 38px; }
  .nav-links {
    display: none;
    position: fixed;
    top: calc(10px + 52px + 8px);
    left: 12px; right: 12px;
    background: rgba(6,6,6,0.97) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,110,180,0.15);
    border-radius: 20px !important;
    flex-direction: column;
    padding: 1.2rem;
    gap: 0.4rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-booknow {
    font-size: 0.56rem;
    padding: 0.38rem 0.9rem;
    letter-spacing: 0.12em;
  }
  .lang-selected {
    font-size: 0.58rem;
    padding: 0.3rem 0.55rem;
  }

  /* ── Hero ── */
  .hero-section {
    height: auto;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .hero-container {
    grid-template-columns: 1fr;
    padding: 0 5%;
    padding-top: calc(10px + 52px + 1rem);
    height: auto;
    min-height: 0;
    gap: 0;
    flex: 0 0 auto;
  }
  .hero-right { display: none; }
  .hero-left { padding: 1rem 0 1.5rem; justify-content: flex-start; }
  .hn-celebrate { margin-bottom: 1.4rem; }
  .hn-brand { margin-bottom: 1.4rem; }
  .hn-brand-main { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .hn-brand-sub  { font-size: clamp(2.2rem, 9vw, 3.6rem); }
  .hn-tagline    { font-size: 0.9rem; margin-bottom: 1.8rem; }
  .hn-divider    { margin-bottom: 1.8rem; }
  .hn-stats { gap: 0; flex-wrap: nowrap; overflow-x: auto; margin-bottom: 1.8rem; }
  .hn-stat { padding: 0 0.7rem; }
  .hn-stat-num { font-size: 1.3rem; }
  .hn-cta-row { flex-wrap: wrap; gap: 1rem; margin-bottom: 0; }
  .hn-tags { gap: 0.5rem; margin-bottom: 1.8rem; }
  .hn-tags span { font-size: 0.62rem; padding: 0.32rem 0.8rem; }

  /* Hero image on mobile — circular radial mask like desktop */
  .hero-mobile-img {
    display: block;
    width: 310px;
    height: 310px;
    margin: 0.5rem auto 0;
    overflow: visible;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }
  .hero-mobile-img img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center center;
    display: block;
    filter: brightness(0.92) contrast(1.08) saturate(1.1);
    -webkit-mask-image: radial-gradient(circle 190px  at 50% 50%,
      black 0%,
      black 35%,
      rgba(0,0,0,0.88) 48%,
      rgba(0,0,0,0.55) 58%,
      rgba(0,0,0,0.2) 68%,
      transparent 78%
    );
    mask-image: radial-gradient(circle 220px at 50% 50%,
      black 0%,
      black 35%,
      rgba(0,0,0,0.88) 48%,
      rgba(0,0,0,0.55) 58%,
      rgba(0,0,0,0.2) 68%,
      transparent 78%
    );
  }
  /* CTA row goes before image — handled in HTML order */
  .hn-cta-row { margin-top: 0.5rem; }
  /* Make headline a flex column */
  .hero-neon-headline { display: flex; flex-direction: column; }

  /* Kill the floating icons on mobile — they cause the gap */
  .hero-floats { display: none; }

  /* ── About mobile image — hidden since stack is visible ── */
  .about-mobile-img { display: none; }

  /* ── Fix overflow:hidden on sections that breaks sticky ── */
  .packages-section,
  .services-section,
  .addons-section,
  .testimonials-section { overflow: visible; }

  /* ── Packages sticky header + tabs ── */
  .pkg-sticky-header {
    position: sticky;
    top: 70px;
    z-index: 10;
    background: #000;
    padding-bottom: 0.5rem;
  }
  .pkg-sticky-header .section-header {
    padding-top: 0.8rem;
    padding-bottom: 0.3rem;
    margin-bottom: 0.5rem;
  }

  /* ── Other sticky section headlines ── */
  .services-section .section-header,
  .addons-section .section-header,
  .testimonials-section .section-header {
    position: sticky;
    top: 70px;
    z-index: 10;
    padding-top: 0.8rem;
    padding-bottom: 0.4rem;
  }
  .services-section .section-header { background: var(--bg-primary); }
  .addons-section .section-header { background: #000; }
  .testimonials-section .section-header { background: var(--bg-primary); }

  /* ── Packages event tabs — single row, scrollable ── */
  .event-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 1.2rem;
    padding: 0 4% 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .event-tabs::-webkit-scrollbar { display: none; }
  .event-tab { flex-shrink: 0; }
  .et-icon { width: 52px; height: 52px; }

  /* ── Sections ── */
  .about-container { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-gallery-col {
    display: block;
    height: 340px;
    margin: 0 1rem;
  }
  .ap-1 { width: 68%; height: 220px; }
  .ap-2 { width: 58%; height: 200px; top: 50px; }
  .ap-3 { width: 52%; height: 160px; bottom: 0; }
  .ab-1 { bottom: 10px; right: 0; }
  .ab-2 { top: 0; right: 0; }
  .ab-3 { top: 50%; left: -5px; }
  .celebrate-container { flex-direction: column; }
  .contact-container { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .packages-grid, .pkg-panel.active {
    grid-template-columns: repeat(4, 280px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 4% 1rem;
    gap: 12px;
  }
  .packages-grid::-webkit-scrollbar,
  .pkg-panel.active::-webkit-scrollbar { display: none; }
  #packagesContainer { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .packages-grid, .pkg-panel.active { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .et-icon { width: 46px; height: 46px; }
  .et-label { font-size: 0.55rem; }
}
