/* ══════════════════════════════════════════════════════════
   THE HOUSE OF CELEBRATIONS EVENTS — Ultra-Luxury Event Management Website
   style.css — Dark Gold Luxury Aesthetic
   ══════════════════════════════════════════════════════════ */

/* ──────────────── CSS VARIABLES ──────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #9A7A30;
  --black:       #080808;
  --black-soft:  #0f0f0f;
  --black-card:  #141414;
  --black-hover: #1a1a1a;
  --white:       #FAFAF8;
  --white-dim:   #c0bdb4;
  --white-muted: #7a7672;
  --border:      rgba(201,168,76,0.18);
  --border-soft: rgba(255,255,255,0.06);

  --font-display: 'Cinzel', serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;

  --ease-luxury:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);

  --section-pad: 110px;
  --container:   1280px;
  --radius:      2px;
}

/* ──────────────── RESET & BASE ──────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }

/* ──────────────── CUSTOM CURSOR ──────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.1s var(--ease-smooth);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  transition: transform 0.12s var(--ease-smooth), width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hovered {
  width: 52px; height: 52px;
  border-color: var(--gold);
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ──────────────── PRELOADER ──────────────── */
#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preloader-inner {
    text-align: center;
    animation: cinematicFade 2.8s ease forwards;
}

.preloader-welcome {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    letter-spacing: 8px;
    margin-bottom: 24px;
    animation: fadeUp 1.2s ease;
}

.preloader-logo {
    font-size: 68px;
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    letter-spacing: 10px;
    animation: glowFade 2s ease;
}

.preloader-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, #C9A84C, transparent);
    margin: 18px auto;
    animation: lineExpand 1.5s ease;
}

.preloader-sub {
    color: #C9A84C;
    font-size: 18px;
    letter-spacing: 8px;
    margin-top: 14px;
    animation: fadeUp 1.8s ease;
}

.preloader-tagline {
    margin-top: 30px;
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    letter-spacing: 4px;
    animation: fadeUp 2.2s ease;
}

@keyframes glowFade {
    0% {
        opacity: 0;
        transform: scale(0.96);
        text-shadow: 0 0 0 rgba(201,168,76,0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 24px rgba(201,168,76,0.28);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 120px;
        opacity: 1;
    }
}

@keyframes cinematicFade {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* ──────────────── CONTAINER & LAYOUT ──────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.section-pad { padding: var(--section-pad) 0; }
.dark-section { background: var(--black-soft); }
.mt-lg { margin-top: 2.5rem; display: inline-block; }

/* ──────────────── TYPOGRAPHY ──────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 560px;
  margin: 0 auto;
}
.section-header.centered { text-align: center; margin-bottom: 60px; }
.section-header.centered .section-desc { margin-bottom: 0; }
.body-text {
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* ──────────────── BUTTONS ──────────────── */
.btn-gold, .btn-ghost, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-luxury);
}
.btn-gold:hover::before { transform: scaleX(1); }
.btn-gold span, .btn-gold { position: relative; z-index: 1; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-full { width: 100%; justify-content: center; }

/* ──────────────── NAVBAR ──────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background 0.5s, padding 0.4s, backdrop-filter 0.5s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.25em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-elara { color: var(--white); }
.logo-divider { color: var(--gold); font-size: 0.5rem; }
.logo-events { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-luxury);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
  border-color: var(--gold);
}
.nav-cta::after { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.35s var(--ease-luxury);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ──────────────── HERO ──────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-video-wrap:hover .hero-video { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.55) 50%,
    rgba(8,8,8,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--white-dim);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 110px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white-muted);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 40px;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  max-width: 200px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold);
  display: inline-block;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  margin: 0 32px;
}

/* ──────────────── REVEAL ANIMATIONS ──────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-gallery {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s var(--ease-luxury) var(--delay, 0s),
              transform 0.7s var(--ease-luxury) var(--delay, 0s);
}
.reveal-gallery.visible {
  opacity: 1;
  transform: scale(1);
}

/* ──────────────── ABOUT ──────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.about-img-frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-luxury);
}
.about-img-frame:hover img { transform: scale(1.04); }
.about-img-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80%; height: 60%;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.3;
}
.about-badge {
  position: absolute;
  bottom: 30px; left: -30px;
  background: var(--gold);
  padding: 20px 24px;
  z-index: 2;
}
.badge-inner { text-align: center; }
.badge-year {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(0,0,0,0.6);
  text-transform: uppercase;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--black);
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.7);
  margin-top: 4px;
}
.about-pillars { margin: 2rem 0; display: flex; flex-direction: column; gap: 18px; }
.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border-soft);
  border-left: 2px solid var(--gold);
  background: rgba(201,168,76,0.03);
  transition: background 0.3s, border-color 0.3s;
}
.pillar:hover { background: rgba(201,168,76,0.07); border-left-color: var(--gold-light); }
.pillar-icon { color: var(--gold); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.pillar strong { display: block; font-weight: 500; color: var(--white); margin-bottom: 2px; font-size: 0.9rem; letter-spacing: 0.05em; }
.pillar p { font-size: 0.85rem; color: var(--white-muted); margin: 0; line-height: 1.5; }

/* ──────────────── SERVICES ──────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
.service-card {
  background: var(--black-card);
  overflow: hidden;
  position: relative;
  transition: background 0.3s;
}
.service-card:hover { background: var(--black-hover); }
.service-img {
  overflow: hidden;
  height: 220px;
  position: relative;
}
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.8), transparent 60%);
  transition: opacity 0.4s;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-luxury);
}
.service-card:hover .service-img img { transform: scale(1.07); }
.service-body {
  padding: 28px;
  position: relative;
}
.service-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 10px;
}
.service-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.service-card:hover .service-title { color: var(--gold-light); }
.service-body p {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.7;
}
.service-arrow {
  display: inline-block;
  color: var(--gold);
  margin-top: 14px;
  font-size: 1.1rem;
  transform: translateX(0);
  transition: transform 0.3s var(--ease-luxury);
}
.service-card:hover .service-arrow { transform: translateX(6px); }

/* ──────────────── WHY US ──────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-right { display: flex; flex-direction: column; gap: 16px; }
.why-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-luxury);
}
.why-card:hover {
  border-color: var(--border);
  background: rgba(201,168,76,0.04);
  transform: translateX(6px);
}
.why-icon {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.why-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.why-card p { font-size: 0.88rem; color: var(--white-muted); line-height: 1.65; margin: 0; }

/* ──────────────── GALLERY ──────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 8px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item.large { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
}

/* ──────────────── INSTAGRAM ──────────────── */
.instagram-section { margin-top: 60px; text-align: center; }
.insta-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 20px;
}
.insta-handle {
  color: var(--gold);
  transition: color 0.3s;
}
.insta-handle:hover { color: var(--gold-light); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-luxury);
}
.insta-item:hover img { transform: scale(1.08); }
.insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: opacity 0.4s;
}
.insta-item:hover .insta-hover { opacity: 1; }

/* ──────────────── PACKAGES ──────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.package-card {
  border: 1px solid var(--border-soft);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.4s var(--ease-luxury);
  background: var(--black-card);
}
.package-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
}
.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--black-card), rgba(201,168,76,0.05));
  transform: scale(1.02);
}
.package-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.package-badge-top {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 4px 16px;
  font-weight: 500;
}
.package-header { margin-bottom: 32px; }
.package-tier {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.package-price { display: flex; align-items: baseline; gap: 4px; }
.currency { font-family: var(--font-sans); font-size: 1.2rem; color: var(--white-dim); }
.amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.per { font-size: 0.75rem; color: var(--white-muted); }
.package-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.package-features li {
  font-size: 0.88rem;
  color: var(--white-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
}
.package-features li.inactive { color: var(--white-muted); opacity: 0.45; }
.packages-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--white-muted);
  margin-bottom: 50px;
}
.packages-note a { color: var(--gold); }

/* ──────────────── RAZORPAY ──────────────── */
.razorpay-section {
  border: 1px solid var(--border-soft);
  padding: 40px;
  text-align: center;
}
.razorpay-inner { max-width: 480px; margin: 0 auto; }
.razorpay-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 16px;
}
.razorpay-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #3395FF;
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.razorpay-btn:hover { background: #1a7fd4; transform: translateY(-2px); }
.razorpay-note {
  font-size: 0.72rem;
  color: var(--white-muted);
  margin-top: 12px;
}

/* ──────────────── TESTIMONIALS ──────────────── */
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.7s var(--ease-luxury);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 80px;
  text-align: center;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 28px;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 32px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.testimonial-author img {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--white-muted);
}
.testimonial-author > div { text-align: left; }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  color: var(--white-dim);
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.carousel-dots { display: flex; gap: 8px; }
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white-muted);
  transition: all 0.3s;
  cursor: pointer;
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* ──────────────── PROCESS TIMELINE ──────────────── */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 40px;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform: translateX(-50%);
}
.timeline-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 48px;
  align-items: center;
}
.timeline-step.left .timeline-content {
  grid-column: 1;
  text-align: right;
  padding-right: 40px;
}
.timeline-step.left .timeline-dot { grid-column: 2; }
.timeline-step.left > *:last-child:not(.timeline-dot) { grid-column: 3; }
.timeline-step.right .timeline-content {
  grid-column: 3;
  text-align: left;
  padding-left: 40px;
}
.timeline-step.right .timeline-dot { grid-column: 2; }
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--black);
  box-shadow: 0 0 0 1px var(--gold);
  justify-self: center;
}
.timeline-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 8px;
}
.timeline-content h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.65;
}

/* ──────────────── FAQ ──────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  text-align: left;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 300;
  gap: 16px;
  transition: color 0.3s;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}
.faq-question:hover, .faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-luxury);
  width: 20px; text-align: center;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-luxury), padding 0.4s;
}
.faq-answer p {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.75;
  padding-bottom: 20px;
}
.faq-answer.open { max-height: 300px; }

/* ──────────────── CONTACT ──────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-icon { color: var(--gold); font-size: 0.7rem; margin-top: 4px; flex-shrink: 0; }
.contact-info-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 4px;
}
.contact-info-item p, .contact-info-item a {
  font-size: 0.95rem;
  color: var(--white-dim);
  margin: 0;
}
.contact-info-item a:hover { color: var(--gold); }

/* ──────────────── INQUIRY FORM ──────────────── */
.inquiry-form {
  background: var(--black-card);
  border: 1px solid var(--border-soft);
  padding: 48px 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group.full { grid-column: 1 / -1; margin-bottom: 20px; }
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  color: var(--white);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 300;
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23C9A84C'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-muted); opacity: 0.5; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: 18px;
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-top: 16px;
}

/* ──────────────── FOOTER ──────────────── */
.footer { background: var(--black-soft); border-top: 1px solid var(--border-soft); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  border-radius: 50%;
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-links h5 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a, .footer-links li {
  font-size: 0.85rem;
  color: var(--white-muted);
  transition: color 0.3s;
}
.footer-links li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--white-muted);
}
.footer-bottom a {
  color: var(--white-muted);
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--gold); }

/* ──────────────── WHATSAPP FAB ──────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.35s var(--ease-luxury), box-shadow 0.35s;
  animation: fabPulse 2.5s ease infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  animation: none;
}
.fab-tooltip {
  position: absolute;
  right: 72px;
  background: var(--black-card);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: 1px solid var(--border-soft);
}
.fab-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--border-soft);
}
.whatsapp-fab:hover .fab-tooltip { opacity: 1; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.6); }
}

/* ──────────────── MOBILE NAV ──────────────── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.5s var(--ease-luxury);
    z-index: 999;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .nav-link {
    font-size: 1rem;
    letter-spacing: 0.25em;
  }
  .nav-cta { padding: 12px 32px; }
}

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.large, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  :root { --section-pad: 70px; }
  .container { padding: 0 24px; }
  .about-grid, .why-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-badge { left: 10px; }
  .timeline-step { grid-template-columns: 1fr; }
  .timeline-line { display: none; }
  .timeline-step.left .timeline-content,
  .timeline-step.right .timeline-content { grid-column: 1; text-align: left; padding: 0 0 0 24px; border-left: 2px solid var(--gold); }
  .timeline-dot { display: none; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-6px); }
  .hero-stats { flex-wrap: wrap; gap: 0; padding: 16px; }
  .stat-item { flex: 0 0 45%; padding: 12px 0; }
  .stat-divider { display: none; }
  .hero-scroll-hint { display: none; }
  .testimonial-slide { padding: 0 20px; }
  .inquiry-form { padding: 30px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; height: auto; }
  .gallery-item { height: 250px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 4rem); }
  .whatsapp-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
