/* ============================================================
   Namita Mehndi — Main Stylesheet
   Color Palette: Deep Maroon #8B1A3A | Warm Gold #C9A84C
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --maroon: #8B1A3A;
  --maroon-dark: #5C0E25;
  --maroon-light: #B52848;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5EDD8;
  --cream: #FDF8F0;
  --cream-dark: #F5EDD8;
  --text-dark: #2A1015;
  --text-mid: #5A2030;
  --text-light: #9A6070;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(139, 26, 58, .12);
  --shadow-md: 0 8px 32px rgba(139, 26, 58, .18);
  --shadow-lg: 0 20px 60px rgba(139, 26, 58, .22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
.heading-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--cream-dark);
}

.text-center {
  text-align: center;
}

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

.text-maroon {
  color: var(--maroon);
}

/* ---------- Ornament Divider ---------- */
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 16px 0 32px;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.ornament::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.ornament-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(253, 248, 240, .98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .nav-logo {
  color: var(--maroon);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .9);
  position: relative;
  transition: var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--text-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--maroon-dark) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, .4) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: relative;
  z-index: 1001;
  /* Above mobile menu */
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--maroon);
}

/* Hamburger active transformation to X */
.hamburger.open span {
  background: var(--gold-light) !important;
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--maroon-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
}

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

.mobile-menu a {
  color: var(--white);
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}

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

.hero-media {
  position: absolute;
  inset: 0;
  background: var(--maroon-dark);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}

.video-sound-toggle {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 10;
  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition);
}

.video-sound-toggle:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .video-sound-toggle {
    bottom: 85px;
    right: 20px;
  }
}

.hero-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(92, 14, 37, .15) 0%,
      rgba(42, 16, 21, .10) 50%,
      rgba(201, 168, 76, .10) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  opacity: 0;
  /* animated by GSAP */
}

.hero-title {
  font-size: clamp(2.4rem, 6.5vw, 6rem);
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, .4);
  margin-bottom: 24px;
  opacity: 0;
}

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

.typewriter {
  border-right: 3px solid var(--gold-light);
  animation: blinkCursor 0.75s step-end infinite;
  padding-right: 4px;
}

@keyframes blinkCursor {
  from, to { border-color: transparent }
  50% { border-color: var(--gold-light) }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .85);
  max-width: 560px;
  margin: 0 auto 44px;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .6);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(201, 168, 76, .5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--maroon);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-dark:hover {
  background: var(--maroon-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Ripple Effect */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transform: scale(0);
  animation: ripple .6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Button Group Utility */
.button-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.btn-outline-maroon {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
}

.btn-outline-maroon:hover {
  background: rgba(139, 26, 58, .08);
  border-color: var(--maroon-dark);
  color: var(--maroon-dark);
  transform: translateY(-3px);
}

@media (max-width: 576px) {
  .button-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .button-group .btn {
    width: 100%;
    justify-content: center;
    margin: 0 !important;
    /* Reset layout margins */
  }
}

/* Stagger Child default state for GSAP scroll animations */
.stagger-child {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

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

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 30px;
  right: -24px;
  background: var(--gold);
  color: var(--maroon-dark);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-image-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-image-badge .label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
}

.about-image-deco {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: .3;
}

.about-content {}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card .icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.feature-card h4 {
  font-size: 1rem;
  color: var(--maroon);
}

.feature-card p {
  font-size: .85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  color: var(--white);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-suffix {
  color: var(--gold);
  font-size: 2rem;
}

.stat-label {
  font-size: .9rem;
  opacity: .8;
  margin-top: 8px;
  letter-spacing: .05em;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(92, 14, 37, .85), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay-text {
  color: var(--white);
}

.gallery-overlay-text h4 {
  font-size: 1rem;
}

.gallery-overlay-text span {
  font-size: .8rem;
  color: var(--gold-light);
}

.gallery-load-more {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   SERVICES / PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 2px solid transparent;
  transition: var(--transition);
}

.pricing-card:hover,
.pricing-card.popular {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--maroon-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pricing-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--maroon);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--maroon-dark);
  line-height: 1;
}

.pricing-price span {
  font-size: 1.2rem;
}

.pricing-duration {
  font-size: .85rem;
  color: var(--text-light);
  margin: 8px 0 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: .9rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pricing-features li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
}

/* Pricing Slider */
.price-slider-wrap {
  background: var(--maroon);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 60px;
  text-align: center;
  color: var(--white);
}

.price-slider-wrap h3 {
  color: var(--gold-light);
  margin-bottom: 8px;
}

.price-slider-wrap p {
  opacity: .8;
  margin-bottom: 32px;
}

.slider-track {
  position: relative;
  margin: 0 auto;
  max-width: 500px;
}

input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .3);
  outline: none;
  margin: 0;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(201, 168, 76, .5);
  border: 3px solid var(--white);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: .8rem;
  opacity: .7;
}

.slider-result {
  margin-top: 32px;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.slider-package-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold-light);
}

.slider-package-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
}

.slider-package-details {
  font-size: .9rem;
  opacity: .8;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.testimonial-card {
  min-width: 360px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
  flex-shrink: 0;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: .8;
  color: var(--gold);
  opacity: .2;
  position: absolute;
  top: 20px;
  left: 24px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

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

.author-name {
  font-weight: 600;
  font-size: .95rem;
}

.author-event {
  font-size: .8rem;
  color: var(--text-light);
}

.testimonial-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.booking-info {}

.booking-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.booking-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--maroon);
}

.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.step-indicator {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--cream-dark);
}

.step:last-child::after {
  display: none;
}

.step.active::after {
  background: var(--gold);
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .9rem;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step.active .step-circle {
  background: var(--gold);
  color: var(--maroon-dark);
  box-shadow: 0 4px 12px rgba(201, 168, 76, .4);
}

.step.done .step-circle {
  background: var(--maroon);
  color: var(--white);
}

.step-label {
  font-size: .75rem;
  color: var(--text-light);
}

.step.active .step-label {
  color: var(--gold);
  font-weight: 600;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp .4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, .15);
}

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

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  margin-top: 8px;
}

.available {
  background: #e8f5e9;
  color: #2e7d32;
}

.unavailable {
  background: #ffebee;
  color: #c62828;
}

.checking {
  background: #fff8e1;
  color: #f57f17;
}

/* Package selection cards */
.package-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.package-option {
  display: none;
}

.package-option+label {
  display: block;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.package-option:checked+label {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.package-option+label:hover {
  border-color: var(--gold);
}

.package-option+label .pkg-name {
  font-weight: 700;
  color: var(--maroon);
}

.package-option+label .pkg-price {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
}

.package-option+label .pkg-time {
  font-size: .75rem;
  color: var(--text-light);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  transition: var(--transition);
  animation: pulse 2s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  }

  50% {
    box-shadow: 0 8px 36px rgba(37, 211, 102, .7);
  }
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--maroon-dark);
  color: rgba(255, 255, 255, .85);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: .9rem;
  opacity: .75;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.8;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--gold-light);
}

.footer-heading {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  font-size: .9rem;
  opacity: .75;
  transition: var(--transition);
}

.footer ul li a:hover {
  opacity: 1;
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: .85rem;
  opacity: .6;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .95);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: .7;
  transition: var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
  color: var(--gold);
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 160px 0 80px;
  text-align: center;
  color: var(--white);
}

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

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  font-size: .9rem;
  opacity: .75;
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb span {
  opacity: .5;
}

/* ============================================================
   LOADING & ANIMATIONS (GSAP targets)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

.fade-in {
  opacity: 0;
  will-change: opacity;
}

.scale-in {
  opacity: 0;
  transform: scale(.9);
  will-change: transform, opacity;
}

/* ============================================================
   SUCCESS / ERROR ALERTS
   ============================================================ */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: none;
}

.alert.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.alert-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ============================================================
   TABLET RESPONSIVE (max-width: 992px)
   ============================================================ */
@media (max-width: 992px) {
  .navbar {
    padding: 12px 0 !important;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-badge {
    right: 8px;
    bottom: 16px;
  }

  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pricing-grid .pricing-card:last-child {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .slider-result {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* ============================================================
   IMPROVED MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 16px;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  /* Hero mobile */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-badge {
    font-size: .7rem;
    padding: 6px 16px;
  }

  /* About mobile details */
  .about-features {
    grid-template-columns: 1fr 1fr;
  }

  .about-image-badge .num {
    font-size: 2rem;
  }

  /* Stats mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  /* Gallery mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: .8rem;
  }

  /* Pricing mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-grid .pricing-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  /* Booking mobile */
  .booking-form-wrap {
    padding: 24px 16px;
  }

  .step-circle {
    width: 30px;
    height: 30px;
    font-size: .8rem;
  }

  .step-label {
    font-size: .65rem;
  }

  .package-select-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Contact mobile */
  .contact-card {
    padding: 16px;
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer {
    padding: 40px 0 100px;
  }

  /* Prevent iOS zoom on form inputs - Safari zooms if text size is < 16px */
  .popup-field input,
  .popup-field select,
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important;
  }

  /* Smooth momentum scrolling for iOS overlays */
  .popup-overlay {
    -webkit-overflow-scrolling: touch;
  }

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

  /* Pricing slider mobile wrapper */
  .price-slider-wrap {
    padding: 24px 16px;
  }

  .slider-package-price {
    font-size: 2.2rem;
  }

  /* Testimonials mobile slider */
  .testimonial-card {
    min-width: 280px;
    padding: 24px 20px;
  }
}

@media (max-width: 576px) {
  .package-select-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Slider label formatting on narrow mobile */
  .slider-labels span {
    font-size: 0.72rem;
  }

  .slider-labels span i {
    display: none;
  }
}

@media (max-width: 360px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 1.7rem;
  }
}

/* Horizontal Table Momentum Scroll wrapper for iOS Safari compatibility */
.table-responsive {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  width: 100%;
  border-radius: var(--radius-lg);
}

.table-responsive table {
  min-width: 680px;
}

/* ============================================================
   @KEYFRAMES BOUNCE (hero scroll arrow)
   ============================================================ */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* ============================================================
   SERVICES GRID — Kya Kya Banate Hain
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--maroon);
  font-size: 1.05rem;
  margin: 0;
}

.service-card p {
  color: var(--text-light);
  font-size: .88rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 4px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--maroon);
  gap: 10px;
}

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

@media (max-width:576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PAGE TRANSITIONS
   ============================================================ */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--maroon-dark);
  transform: translateY(100%);
  pointer-events: none;
}

/* ============================================================
   FONT AWESOME ICON SIZING IN FEATURES
   ============================================================ */
.feature-card .icon i {
  font-size: 1.6rem;
}

.booking-icon i {
  font-size: 1.1rem;
}

.contact-card-icon i {
  font-size: 1.4rem;
}

.whatsapp-float i {
  font-size: 1.6rem;
  color: white;
}

.nav-links a i {
  font-size: .85rem;
  margin-right: 2px;
}

.footer ul li a i {
  font-size: .7rem;
  margin-right: 4px;
}

/* ============================================================
   FOOTER CONTACT LIST
   ============================================================ */
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  margin-bottom: 12px;
  opacity: .8;
}

.footer-contact-list li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, .85);
}

.footer-contact-list li a:hover {
  color: var(--gold-light);
}

/* ============================================================
   MOBILE STICKY BOTTOM BAR
   ============================================================ */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--maroon-dark);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .25);
  border-top: 1px solid rgba(201, 168, 76, .3);
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  padding: 12px 8px;
  color: rgba(255, 255, 255, .85);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-bar-btn i {
  font-size: 1.2rem;
}

.mobile-bar-btn:hover {
  background: rgba(255, 255, 255, .08);
}

.mobile-bar-btn.book-btn {
  background: var(--gold);
  color: var(--maroon-dark);
  font-size: .75rem;
}

.mobile-bar-btn.book-btn:hover {
  background: var(--gold-light);
}

.mobile-bar-btn.wa-btn {
  color: #25D366;
}

.mobile-bar-btn.wa-btn i {
  color: #25D366;
}

@media (max-width:768px) {
  .mobile-book-bar {
    display: flex;
  }

  /* Hide desktop WhatsApp float on mobile (replaced by bar) */
  .whatsapp-float {
    display: none;
  }

  body {
    padding-bottom: 65px;
  }
}

/* ============================================================
   POPUP — LIMITED TIME BOOKING OFFER
   ============================================================ */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(42, 16, 21, .85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.popup-overlay.open {
  display: flex;
  animation: fadeInOverlay .4s ease;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.popup-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: slideUpCard .4s cubic-bezier(.34, 1.56, .64, 1);
  margin: auto;
}

@keyframes slideUpCard {
  from {
    opacity: 0;
    transform: translateY(40px) scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(139, 26, 58, .1);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--maroon);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.popup-close i {
  color: #d1d1d1;
}

.popup-close:hover {
  background: var(--maroon);
  color: white;
}

.popup-header {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 28px 28px 24px;
  text-align: center;
  color: white;
}

.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--maroon-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  animation: pulseBadge 1.5s ease-in-out infinite;
}

@keyframes pulseBadge {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

.popup-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: white;
}

.popup-header h3 span {
  color: var(--gold-light);
}

.popup-countdown {
  font-size: .85rem;
  opacity: .85;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.countdown-timer {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .1em;
}

.popup-form {
  padding: 20px 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.popup-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.popup-field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 5px;
}

.popup-field label i {
  color: var(--gold);
}

.popup-field input,
.popup-field select {
  padding: 11px 14px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.popup-field input:focus,
.popup-field select:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
}

.popup-submit {
  width: calc(100% - 56px);
  margin: 16px 28px 0;
  justify-content: center;
  font-size: 1rem;
}

.popup-note {
  text-align: center;
  font-size: .75rem;
  color: var(--text-light);
  margin: 10px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.popup-note i {
  color: var(--gold);
}

.popup-footer {
  background: var(--cream-dark);
  padding: 12px 28px;
  font-size: .8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.popup-footer a {
  color: var(--maroon);
  font-weight: 600;
}

.popup-alert {
  margin: 12px 28px 0;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.popup-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.popup-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

@media (max-width:500px) {
  .popup-form {
    grid-template-columns: 1fr;
  }

  .popup-header {
    padding: 24px 20px 18px;
  }

  .popup-header h3 {
    font-size: 1.2rem;
  }

  .popup-submit {
    width: calc(100% - 32px);
    margin: 16px 16px 0;
  }

  .popup-note {
    margin: 10px 0 12px;
  }

  .popup-footer {
    padding: 12px 16px;
  }

  .popup-alert {
    margin: 12px 16px 0;
  }
}

/* ============================================================
   SHORT VIEWPORT OPTIMIZATIONS (Landscape mode on Tablet/Mobile)
   ============================================================ */
@media (max-height: 700px) {
  .hero {
    padding-top: 85px;
    padding-bottom: 40px;
  }
  .hero-badge {
    margin-bottom: 12px !important;
  }
  .hero-title {
    margin-bottom: 12px !important;
    font-size: 2.2rem !important;
  }
  .hero-subtitle {
    margin-bottom: 20px !important;
    font-size: 0.95rem !important;
  }
}

@media (max-height: 500px) {
  .hero {
    padding-top: 75px;
    padding-bottom: 30px;
  }
  .hero-badge {
    display: none !important; /* Hide badge on extremely short landscape screens to save space */
  }
  .hero-title {
    font-size: 1.8rem !important;
    margin-bottom: 8px !important;
  }
  .hero-subtitle {
    display: none !important; /* Hide subtitle to avoid vertical overflow */
  }
}

/* ============================================================
   INTERACTIVE PREMIUM COMPONENT STYLING (CALENDAR & ESTIMATOR)
   ============================================================ */

/* 1. Viewport Reveal Animations */
.fade-up, .fade-in, .scale-in, .stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in {
  transform: scale(0.98);
}
.scale-in {
  transform: scale(0.85);
}
.fade-up.visible, .fade-in.visible, .scale-in.visible, .visible .stagger-child {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 2. Interactive Calendar Widget */
.calendar-widget {
  background: var(--maroon-dark);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cal-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cal-btn:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
}
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.calendar-day:hover:not(.disabled) {
  background: rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
}
.calendar-day.selected {
  background: var(--gold) !important;
  color: var(--maroon-dark) !important;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}
.calendar-day.disabled {
  opacity: 0.2;
  cursor: not-allowed;
  text-decoration: line-through;
}
.calendar-day.today:not(.selected) {
  border-color: var(--gold);
  color: var(--gold);
}

/* 3. Time Slots Picker Widget */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 10px;
}
.time-slot-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-light);
}
.time-slot-card.available {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
}
.time-slot-card.available:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.time-slot-card.selected {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--maroon-dark) !important;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
}
.time-slot-card.booked {
  opacity: 0.25;
  cursor: not-allowed;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.03);
  text-decoration: line-through;
  color: var(--text-light);
}

/* 4. Interactive Henna Cost Estimator */
#estimator {
  background: linear-gradient(135deg, #4A0516, #2d020d) !important;
  color: var(--white) !important;
  position: relative;
  overflow: hidden;
}
#estimator::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-light));
  z-index: 10;
}
#estimator h2 {
  color: var(--white) !important;
}
#estimator p {
  color: rgba(255, 255, 255, 0.75) !important;
}
#estimator .section-label {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--gold-light) !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
}
#estimator .ornament {
  color: var(--gold) !important;
}
#estimator .ornament::before,
#estimator .ornament::after {
  background: var(--gold) !important;
}

.estimator-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(251, 218, 126, 0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  text-align: left;
  margin-top: 30px;
}
.estimator-main {
  display: flex;
  flex-direction: column;
}
.estimator-cards-grid {
  display: grid;
  gap: 16px;
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.estimator-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.estimator-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.estimator-card.active {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}
.estimator-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.estimator-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.estimator-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.4;
}
.estimator-card .card-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-top: 14px;
}
.estimator-card .card-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--maroon-dark);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-bottom-left-radius: 8px;
  text-transform: uppercase;
}
.addon-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.addon-pill {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.addon-pill input {
  display: none;
}
.addon-pill span {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.addon-pill:hover span {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.05);
}
.addon-pill input:checked + span {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--maroon-dark) !important;
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.35);
}

.estimator-summary {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
}
.summary-total {
  margin-top: auto;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.summary-total .total-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
  margin-top: 4px;
}

@media (max-width: 992px) {
  .estimator-wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

/* 5. Booking Page Step 1 Columns */
.booking-step-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
  text-align: left;
}
.booking-fields-side, .booking-schedule-side {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .booking-step-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* 6. Compact Booking Form Overrides */
.booking-fields-side .form-group {
  margin-bottom: 14px !important;
}
.booking-fields-side label {
  margin-bottom: 6px !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
}
.booking-fields-side input, 
.booking-fields-side select {
  padding: 8px 12px !important;
  height: 42px !important;
  font-size: 0.9rem !important;
}
.calendar-widget {
  padding: 14px 16px !important;
  margin-bottom: 14px !important;
}
.calendar-header {
  margin-bottom: 10px !important;
}
.calendar-header span {
  font-size: 0.96rem !important;
}
.cal-btn {
  width: 30px !important;
  height: 30px !important;
  font-size: 0.8rem !important;
}
.calendar-weekdays {
  margin-bottom: 8px !important;
  font-size: 0.78rem !important;
}
.calendar-days {
  gap: 5px !important;
}
.calendar-day {
  font-size: 0.85rem !important;
  height: 32px !important;
  width: 32px !important;
  line-height: 30px !important;
  margin: 0 auto;
}
.time-slots-grid {
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)) !important;
  gap: 8px !important;
  margin-top: 8px !important;
}
.time-slot-card {
  padding: 8px 4px !important;
  font-size: 0.82rem !important;
  border-radius: 6px !important;
}
.time-slot-card span {
  font-size: 0.62rem !important;
}