/* ============================================================
   FLAGS BANQUET ANDHERI — style.css
   Complete stylesheet — all sections, fully mobile responsive
============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16.5px;
  background: #FFFFFF;
  color: #1C1C1E;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --navy:    #0A1628;
  --navy-2:  #132540;
  --amber:   #D4882A;
  --amber-light: #F0AC55;
  --amber-dark: #B8711F;
  --white:   #FFFFFF;
  --light:   #F5F5F7;
  --border:  #E5E5EA;
  --charcoal:#1C1C1E;
  --muted:   #6E6E73;
  --green:   #1A7A4A;
  --red:     #DC2626;
  --whatsapp:#25D366;
  --radius:  10px;
  --radius-lg: 18px;
  --shadow:  0 2px 16px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 30px rgba(10,22,40,0.10);
  --shadow-lg: 0 24px 60px rgba(10,22,40,0.16);
  --shadow-gold: 0 12px 32px rgba(212,136,42,0.28);
  --transition: 0.2s ease;
  --transition-slow: 0.45s cubic-bezier(0.16,1,0.3,1);
  --gradient-navy: linear-gradient(135deg, #0A1628 0%, #132A47 55%, #0A1628 100%);
  --gradient-gold: linear-gradient(135deg, #E8A13E 0%, #D4882A 50%, #B8711F 100%);
}

/* ── GLOBAL POLISH ─────────────────────────────────────────── */
::selection { background: var(--amber); color: var(--white); }

*:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── SHARED SECTION STYLES ─────────────────────────────────── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--amber);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.section-heading {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  border: 1.5px solid var(--navy);
  transition: background var(--transition), color var(--transition);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13.5px;
  border: 1.5px solid var(--navy);
  transition: all var(--transition);
  text-align: center;
  width: 100%;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--whatsapp);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
}

.btn-whatsapp:hover {
  background: #1DAF56;
  transform: translateY(-1px);
}

.btn-whatsapp-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  color: var(--whatsapp);
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  border: 1.5px solid var(--whatsapp);
  transition: all var(--transition);
  margin-top: 12px;
}

.btn-whatsapp-outline:hover {
  background: var(--whatsapp);
  color: var(--white);
}

/* ── PROGRESS BAR ──────────────────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--amber);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── NAVIGATION ────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  transition: box-shadow var(--transition), backdrop-filter var(--transition), height 0.25s ease;
  height: 68px;
  --navbar-h: 68px;
}

#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.92);
  height: 52px;
  --navbar-h: 52px;
}

#navbar.scrolled .logo-main,
#navbar.scrolled .logo-location {
  font-size: 15px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height 0.25s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  transition: opacity 0.2s, width 0.25s ease, height 0.25s ease;
}

.nav-logo-img:hover { opacity: 0.85; }

#navbar.scrolled .nav-logo-img {
  width: 32px;
  height: 32px;
}

.logo-main {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo-dot {
  color: var(--amber);
  font-size: 17px;
  font-weight: 800;
}

.logo-location {
  font-size: 17px;
  font-weight: 700;
  color: var(--amber);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--amber);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 700;
  transition: background var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--amber-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.hamburger:active {
  background: rgba(212,136,42,0.08);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Backdrop behind the mobile panel */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  padding: 8px 20px 24px;
  position: fixed;
  top: var(--navbar-h, 68px);
  left: 0;
  right: 0;
  z-index: 999;
  max-height: calc(100vh - var(--navbar-h, 68px));
  overflow-y: auto;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 16px 32px rgba(10,22,40,0.14);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1), opacity 0.22s ease, visibility 0.28s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 4px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 0.5px solid var(--border);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu a:active {
  background: rgba(212,136,42,0.06);
}

.mobile-menu a .menu-icon {
  font-size: 17px;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.mobile-menu .mobile-cta {
  display: block;
  background: var(--amber);
  color: var(--white);
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  margin-top: 16px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(212,136,42,0.3);
}

.mobile-menu-quick-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.mobile-menu-quick-row button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-quick-row .quick-call {
  background: rgba(10,22,40,0.06);
  color: var(--navy);
  border: 1px solid var(--border);
}

.mobile-menu-quick-row .quick-whatsapp {
  background: #25D366;
  color: #fff;
}

/* Lock background scroll while the panel is open */
body.menu-open {
  overflow: hidden;
}

/* ── CONTACT PICKER (Call / WhatsApp number chooser) ─────────
   Desktop: small floating card above the FAB stack.
   Mobile: full-width bottom sheet — easier to tap with a thumb. */
.contact-picker-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.45);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.contact-picker-overlay.open {
  display: block;
  opacity: 1;
}

.contact-picker-sheet {
  position: fixed;
  right: 24px;
  bottom: 168px;
  width: 290px;
  max-width: calc(100vw - 48px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px rgba(10,22,40,0.24);
  padding: 18px;
  z-index: 1001;
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: bottom right;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), opacity 0.2s ease, visibility 0.25s;
}

.contact-picker-sheet.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-picker-sheet .cp-handle {
  display: none;
}

.cp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.cp-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.cp-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(10,22,40,0.06);
  color: var(--charcoal);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.cp-close:hover {
  background: rgba(10,22,40,0.1);
}

.cp-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  border-radius: 12px;
  background: rgba(10,22,40,0.03);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.cp-row:hover,
.cp-row:active {
  background: rgba(212,136,42,0.08);
  border-color: rgba(212,136,42,0.3);
}

.cp-row-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.cp-row-icon--call {
  background: rgba(10,22,40,0.08);
}

.cp-row-icon--wa {
  background: rgba(37,211,102,0.15);
}

.cp-row-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.cp-row-text strong {
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cp-row-text small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 1px;
}

.cp-row-arrow {
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .contact-picker-sheet {
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    max-width: none;
    border-radius: 20px 20px 0 0;
    padding: 10px 20px calc(20px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transform-origin: center;
    box-shadow: 0 -8px 32px rgba(10,22,40,0.22);
  }

  .contact-picker-sheet.open {
    transform: translateY(0);
  }

  .contact-picker-sheet .cp-handle {
    display: block;
    width: 40px;
    height: 4px;
    background: var(--border);
    border-radius: 99px;
    margin: 6px auto 14px;
  }

  .cp-row {
    padding: 15px 14px;
  }

  .cp-row-text strong {
    font-size: 15.5px;
  }
}

.dot-green { background: var(--green); }
.dot-red   { background: var(--red); }

/* ── FSSAI FOOD SYMBOLS (Veg square / Non-veg square) ─────── */
.food-symbol {
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid;
  border-radius: 3px;
}

.food-symbol-veg {
  border-color: #1A7A4A;
  background: transparent;
}

.food-symbol-nonveg {
  border-color: #B22222;
  background: transparent;
}

.food-symbol-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

.food-symbol-veg .food-symbol-dot {
  background: #1A7A4A;
}

.food-symbol-nonveg .food-symbol-dot {
  background: #B22222;
}

/* ── SHARED FADE-UP ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}

@keyframes tickerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,122,74,0.4); }
  50%       { box-shadow: 0 0 0 5px rgba(26,122,74,0); }
}

/* ── CINEMATIC HERO — photos as background, text on top ────── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-container {
  position: relative;
  width: 100%;
  min-height: 92vh;
  padding: 0;
  display: block;
}

/* Dark gradient over the photos so white text stays readable
   everywhere, strongest behind the text panel on the left */
.hero-container::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6,14,26,0.94) 0%, rgba(6,14,26,0.80) 32%, rgba(6,14,26,0.30) 62%, rgba(6,14,26,0.55) 100%),
    linear-gradient(0deg, rgba(6,14,26,0.55) 0%, rgba(6,14,26,0) 22%);
  pointer-events: none;
}

/* ── TEXT PANEL: sits above the photo background ───────────── */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92vh;
  max-width: 660px;
  padding: 80px 40px;
  color: #fff;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--amber-light);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s ease 0.2s forwards;
}

.hero-title {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.35s forwards;
  font-size: clamp(34px, 4.6vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.hero-title .line-highlight {
  position: relative;
  display: inline-block;
  color: var(--amber-light);
}

.hero-title .line-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  animation: drawLine 0.7s ease 1.0s forwards;
}

@keyframes drawLine {
  to { width: 100%; }
}

.kitchen-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s ease 0.55s forwards;
}

.kitchen-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 99px;
}

.hero-subtitle {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
  max-width: 520px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s ease 0.7s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s ease 0.85s forwards;
}

.hero-content .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

.hero-content .btn-secondary:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.hero-ticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 6px 14px 6px 10px;
  border-radius: 99px;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.5s ease 1.0s forwards;
}

.ticker-dot {
  width: 7px;
  height: 7px;
  background: #3DDC84;
  border-radius: 50%;
  animation: tickerPulse 2s ease infinite;
  flex-shrink: 0;
}

/* ── PHOTO LAYER: full-bleed crossfade background ──────────── */
.hero-photos {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 0;
  opacity: 1;
  animation: none;
}

.photo-track {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.photo-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  overflow: hidden;
  cursor: default;
  box-shadow: none;
  transform: none;
  filter: saturate(1) brightness(0.78);
  opacity: 0;
  transition: opacity 1.4s ease;
}

.photo-card.is-active {
  opacity: 1;
  transform: none;
  filter: saturate(1.05) brightness(0.78);
  box-shadow: none;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-card:first-child {
  opacity: 1;
}

/* Labels are redundant once photos sit behind the text — hide them */
.photo-card-label { display: none; }

/* Progress dots — bottom-right, above everything */
.photo-dots {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 6px;
  margin-top: 0;
}

.photo-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.photo-dots span.is-active {
  width: 20px;
  border-radius: 3px;
  background: var(--amber-light);
}

/* ── NAV / BUTTON MICRO-INTERACTIONS ───────────────────────── */
.btn-primary,
.btn-secondary,
.nav-cta {
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(212,136,42,0.35);
}

.btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
}

/* Stats bar */
.stats-bar {
  background: var(--light);
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 40px;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  gap: 4px;
}

.stat-num-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.stat-plus {
  font-size: 26px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── ESTIMATOR SECTION ─────────────────────────────────────── */
.estimator-section {
  background: var(--light);
  padding: 80px 0;
}

.estimator-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 0.5px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}

.estimator-row {
  margin-bottom: 32px;
}

.estimator-row:last-child {
  margin-bottom: 0;
}

.estimator-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

/* Event type buttons */
.event-type-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.event-btn {
  padding: 10px 18px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

.event-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.event-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

/* Guest slider */
.slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slider-num-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.slider-num-display span:first-child {
  font-size: 38px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
  line-height: 1;
}

.slider-unit {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

input[type="range"] {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--border);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--amber);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
  border: 2px solid var(--white);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* Session toggle */
.session-toggle {
  display: flex;
  gap: 12px;
}

.session-btn {
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

.session-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

.result-text {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 8px;
}

.result-highlight {
  color: var(--navy);
  font-weight: 700;
}

.result-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ── TWO KITCHENS SECTION ──────────────────────────────────── */
.kitchens-section {
  background: var(--white);
  padding: 80px 0;
}

.kitchens-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.kitchen-card {
  background: var(--light);
  border-radius: 12px;
  padding: 32px 28px;
  border-left: 4px solid transparent;
  transition: transform var(--transition);
  cursor: pointer;
  position: relative;
}

.kitchen-card:hover {
  transform: translateY(-3px);
}

.kitchen-veg {
  border-left-color: var(--green);
}

.kitchen-nonveg {
  border-left-color: var(--red);
}

.kitchen-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.kitchen-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.kitchen-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.kitchen-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tag-veg {
  background: rgba(26,122,74,0.1);
  color: var(--green);
}

.tag-nonveg {
  background: rgba(220,38,38,0.1);
  color: var(--red);
}

.kitchen-card .kitchen-menu {
  display: none;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.kitchen-card.expanded .kitchen-menu {
  display: block;
  animation: fadeUp 0.3s ease forwards;
}

.kitchen-card .kitchen-hover-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
  font-style: italic;
  transition: opacity 0.2s ease;
}

.kitchen-card:hover .kitchen-hover-hint {
  color: var(--amber);
}

.kitchen-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kitchen-menu-list li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}

.kitchen-menu-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--amber);
}

.kitchens-seo-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 32px;
  background: var(--light);
  border-radius: 12px;
}

.seo-subheading {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.kitchens-seo-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── EVENTS SECTION ────────────────────────────────────────── */
.events-section {
  background: var(--light);
  padding: 80px 0;
}

.event-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.event-tab {
  padding: 10px 22px;
  border-radius: 99px;
  border: none;
  background: var(--border);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

.event-tab:hover {
  background: rgba(212,136,42,0.15);
  color: var(--amber);
}

.event-tab.active {
  background: var(--amber);
  color: var(--white);
}

.event-panels {
  max-width: 1000px;
  margin: 0 auto;
}

.event-panel {
  display: none;
  grid-template-columns: 60% 40%;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: none;
}

.event-panel.active {
  display: grid;
  animation: panelFadeIn 0.25s ease forwards;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.event-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.event-info {
  padding: 36px 36px 36px 0;
}

.event-info h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.event-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.event-features li {
  font-size: 14px;
  color: var(--charcoal);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.event-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

/* ── PACKAGES SECTION ──────────────────────────────────────── */
.packages-section {
  background: var(--white);
  padding: 80px 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 24px;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.package-card:not(.package-featured):hover {
  border-color: var(--amber);
}

.package-featured {
  border-top: 3px solid var(--amber);
  box-shadow: 0 4px 24px rgba(212,136,42,0.15);
}

.pkg-popular-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--amber);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.04em;
}

.pkg-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}

.pkg-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-amount {
  font-size: 34px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
}

.price-unit {
  font-size: 13px;
  color: var(--muted);
}

.pkg-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.feat-veg {
  font-size: 13.5px;
  color: var(--charcoal);
  padding-left: 4px;
}

.packages-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.packages-note a {
  color: var(--amber);
  text-decoration: underline;
}

/* ── GALLERY SECTION ───────────────────────────────────────── */
.gallery-section {
  background: var(--light);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.gallery-img:hover {
  transform: scale(1.02);
}

/* ── CONTACT SECTION ───────────────────────────────────────── */
.contact-section {
  background: var(--white);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--amber);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Map */
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  margin-bottom: 20px;
  position: relative;
}

.map-pin-pulse {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--amber);
  z-index: 10;
  pointer-events: none;
  animation: mapPulse 2s ease infinite;
}

@keyframes mapPulse {
  0%   { box-shadow: 0 0 0 0 rgba(212,136,42,0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(212,136,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,136,42,0); }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.detail-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.detail-value {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
}

a.detail-value {
  color: var(--amber);
}

/* Form progress dots */
.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  align-items: center;
}

.form-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s ease, transform 0.2s ease;
}

.form-progress-dot.done {
  background: var(--green);
  transform: scale(1.2);
}

.form-progress-dot.active {
  background: var(--amber);
  transform: scale(1.2);
}

.form-progress-label {
  font-size: 11px;
  color: var(--muted);
  margin-left: 8px;
}

.btn-whatsapp.btn-pulse {
  animation: waPulse 1.5s ease infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}

/* ── REVIEWS SECTION ───────────────────────────────────────── */
.reviews-section {
  background: var(--light);
  padding: 80px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto 28px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.review-stars {
  color: #F59E0B;
  font-size: 15px;
  letter-spacing: 2px;
}

.review-pull {
  font-size: 15px;
  font-weight: 700;
  color: var(--amber);
  font-style: italic;
  line-height: 1.4;
}

.review-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 12px;
  border-top: 0.5px solid var(--border);
}

.review-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.review-event-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  background: rgba(212,136,42,0.1);
  padding: 2px 10px;
  border-radius: 99px;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--muted);
}

.reviews-cta {
  text-align: center;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  transition: color var(--transition);
}

.reviews-link:hover {
  color: var(--amber);
}

/* ── FOOTER ────────────────────────────────────────────────── */
#footer {
  background: var(--navy);
  padding: 56px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-address {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.back-to-top {
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
  transition: opacity var(--transition);
}

.back-to-top:hover {
  opacity: 0.8;
}

/* ── CALL + WHATSAPP FAB STACK ────────────────────────────── */
.whatsapp-fab,
.call-fab {
  position: fixed;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002; /* stays above the picker overlay/sheet so users can switch pickers without closing first */
  transition: transform var(--transition), box-shadow var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-fab {
  bottom: 24px;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  animation: waBounce 10s ease infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.whatsapp-fab::before {
  content: '';
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: pulse-wa 2s ease-out infinite;
}

.call-fab {
  bottom: 96px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(10,22,40,0.35);
}

.call-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(10,22,40,0.45);
}

@keyframes pulse-wa {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

@keyframes waBounce {
  0%, 85%, 100% { transform: scale(1); }
  88%           { transform: scale(1.12); }
  92%           { transform: scale(0.96); }
  96%           { transform: scale(1.06); }
}

/* ── STICKY BOTTOM BAR ─────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.sticky-bar.show {
  transform: translateY(0);
}

.sticky-bar.hidden {
  display: none;
}

.sticky-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.sticky-cta {
  background: var(--amber);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition);
}

.sticky-cta:hover {
  background: var(--amber-dark);
}

.sticky-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
}

.sticky-close:hover {
  color: var(--white);
}

/* ── SCROLL REVEAL — major sections ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { opacity:1; transform:translateY(0); transition-delay: 0.55s; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── ESTIMATOR ADDITIONS ───────────────────────────────────── */
.result-per-plate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--muted);
}

.result-per-plate strong {
  color: var(--navy);
  font-weight: 700;
}

.tier-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.tier-small  { background: rgba(26,122,74,0.1);  color: #1A7A4A; }
.tier-medium { background: rgba(212,136,42,0.1); color: var(--amber); }
.tier-large  { background: rgba(29,78,216,0.1);  color: #1D4ED8; }

.session-note-text {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* ── ESTIMATOR — VEG/NON-VEG PACKAGE REDESIGN ──────────────── */
.menu-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.menu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.menu-btn:hover {
  border-color: var(--green);
}

.menu-btn.active {
  border-color: var(--green);
  background: rgba(26,122,74,0.06);
}

.menu-radio {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  position: relative;
  transition: all var(--transition);
}

.menu-btn.active .menu-radio {
  border-color: var(--green);
}

.menu-btn.active .menu-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  transform: translate(-50%, -50%);
}

.menu-btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-btn-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.menu-btn-sub {
  font-size: 12px;
  color: var(--muted);
}

.pkg-option-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pkg-option-group.hidden { display: none; }

.pkg-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.pkg-option:hover {
  border-color: var(--amber);
}

.pkg-option.active {
  border-color: var(--amber);
  background: rgba(212,136,42,0.07);
}

.pkg-opt-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
}

.pkg-opt-price {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}

.pkg-option.active .pkg-opt-name {
  color: var(--navy);
}

.pkg-option.active .pkg-opt-price {
  color: var(--amber-dark);
}

@media (max-width: 640px) {
  .pkg-option-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

.estimator-result {
  background: var(--navy);
  border-radius: 14px;
  padding: 28px 32px 32px;
  margin-top: 32px;
  text-align: left;
  border: none;
}

.result-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  background: transparent;
  border-radius: 0;
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.result-summary-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 0 16px;
}

.result-summary-item:first-child { padding-left: 0; }

.result-summary-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

.result-summary-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.result-summary-val.amber { color: var(--amber); }

.result-summary-divider {
  display: none;
}

.result-total-wrap { text-align: center; }

.result-total-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.result-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.result-range {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.estimator-result .btn-primary {
  width: 100%;
  text-align: center;
  margin-top: 24px;
  display: block;
}

@media (max-width: 640px) {
  .result-summary {
    justify-content: flex-start;
  }
  .result-summary-item {
    padding: 0 12px 12px 0;
    min-width: 45%;
  }
  .result-summary-item:first-child { padding-left: 0; }
}

.additional-charges {
  margin-top: 28px;
  padding: 20px 24px;
  background: #FFFBF5;
  border: 1px dashed #E5C88A;
  border-radius: 10px;
}

.additional-charges-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.additional-charges-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.additional-charges-list li {
  font-size: 12.5px;
  color: var(--muted);
  padding-left: 4px;
  line-height: 1.5;
}

.additional-charges-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  padding-top: 10px;
  border-top: 1px solid #E5C88A;
}

/* ── MOBILE CTA BAR (injected via JS, styled here too) ─────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy);
  padding: 10px 20px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  gap: 12px;
}

.mobile-cta-call, .mobile-cta-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mobile-cta-call:active, .mobile-cta-whatsapp:active { opacity: 0.85; }

.mobile-cta-call {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.mobile-cta-whatsapp {
  background: #25D366;
  color: #fff;
}

/* ── MOBILE RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {

  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-container {
    min-height: 88vh;
    padding-bottom: 0;
  }

  .hero-content {
    padding: 100px 20px 48px;
    min-height: 88vh;
    max-width: 100%;
  }

  .photo-dots {
    right: 20px;
    bottom: 18px;
  }

  /* Stats bar */
  .stats-bar {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 24px;
  }

  .stat-item { padding: 0 20px; }
  .stat-divider { display: none; }

  /* Estimator */
  .estimator-card { padding: 24px 20px; }
  .event-type-selector { gap: 8px; }

  /* Kitchens */
  .kitchens-grid { grid-template-columns: 1fr; }

  /* Events */
  .event-panel { grid-template-columns: 1fr; }
  .event-panel.active { display: flex; flex-direction: column; }
  .event-photo img { height: 220px; }
  .event-info { padding: 24px; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; max-width: 460px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Sticky bar */
  .sticky-text { display: none; }

  /* Mobile CTA bar replaces FAB + sticky bar */
  .mobile-cta-bar { display: flex; }
  .whatsapp-fab   { display: none; }
  .call-fab       { display: none; }
  .sticky-bar     { display: none !important; }

}

@media (max-width: 480px) {

  .section-container { padding: 0 16px; }

  .hero-content { padding: 88px 16px 40px; }

  .hero-title { font-size: 32px; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { text-align: center; }

  .photo-dots { right: 16px; bottom: 14px; }

  .event-tabs { gap: 6px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; justify-content: flex-start; }
  .event-tab  { white-space: nowrap; flex-shrink: 0; }

  .gallery-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .packages-grid { max-width: 100%; }

}

/* ============================================================
   PREMIUM ENHANCEMENT LAYER
   Adds visual depth, motion, and polish on top of the base
   styles above without touching markup or JS hooks.
============================================================ */

/* ── Section eyebrow gets a little accent line ─────────────── */
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 22px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--amber));
}
.section-eyebrow::after { background: linear-gradient(90deg, var(--amber), transparent); }

.section-eyebrow[style*="text-align:left"],
.contact-form-wrap .section-eyebrow {
  justify-content: flex-start;
}
.contact-form-wrap .section-eyebrow::before { display: none; }

/* ── Buttons: shine sweep + deeper, warmer shadows ─────────── */
.btn-primary,
.nav-cta,
.mobile-menu .mobile-cta {
  background: var(--gradient-gold);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.btn-primary::before,
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn-primary:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(212,136,42,0.38);
}

.btn-primary:hover::before,
.nav-cta:hover::before {
  left: 130%;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary,
.btn-outline {
  transition: all var(--transition-slow);
}

.btn-secondary:hover,
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #2FE07A, var(--whatsapp));
  box-shadow: 0 10px 28px rgba(37,211,102,0.32);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37,211,102,0.4);
}

/* ── Navbar: crisper glass effect ────────────────────────── */
#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(10,22,40,0.10);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(255,255,255,0.85);
}

/* ── Hero photo layer already provides the visual richness;
   no extra background treatment needed here. ─────────────── */

.kitchen-badges span {
  transition: transform var(--transition), box-shadow var(--transition);
}
.kitchen-badges span:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ── Stats bar: richer contrast panel ──────────────────────── */
.stats-bar {
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-navy);
  opacity: 0.02;
  z-index: -1;
}

/* ── Estimator: elevated card with gold edge ───────────────── */
.estimator-card {
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10,22,40,0.06);
  transition: box-shadow var(--transition-slow);
}
.estimator-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: var(--radius) var(--radius) 0 0;
}

.pkg-option, .menu-btn {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pkg-option:hover, .menu-btn:hover {
  transform: translateY(-1px);
}
.pkg-option.active, .menu-btn.active {
  box-shadow: var(--shadow-gold);
}

.estimator-result {
  background: var(--gradient-navy);
  box-shadow: var(--shadow-lg);
}

.result-price {
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Kitchen cards: gradient wash + lift ───────────────────── */
.kitchen-card {
  position: relative;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  border: 1px solid rgba(10,22,40,0.06);
}
.kitchen-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ── Event tabs: smoother active pill ──────────────────────── */
.event-tab {
  transition: all var(--transition-slow);
}
.event-tab.active {
  box-shadow: var(--shadow-gold);
}
.event-photo img {
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.event-photo { overflow: hidden; border-radius: var(--radius-lg); }
.event-photo:hover img {
  transform: scale(1.05);
}

/* ── Package cards: depth + featured glow ──────────────────── */
.package-card {
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
  border: 1px solid rgba(10,22,40,0.06);
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.package-featured {
  position: relative;
  border: 1.5px solid var(--amber);
  box-shadow: var(--shadow-gold);
}
.package-featured:hover {
  box-shadow: 0 20px 50px rgba(212,136,42,0.35);
}
.price-amount {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.package-featured .price-amount {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Gallery: zoom + soft vignette on hover ────────────────── */
.gallery-img {
  border-radius: var(--radius);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow var(--transition-slow), filter var(--transition-slow);
}
.gallery-img:hover {
  transform: scale(1.035);
  box-shadow: var(--shadow-lg);
  filter: saturate(1.1);
}

/* ── Reviews: cleaner card depth ───────────────────────────── */
.review-card {
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  border: 1px solid rgba(10,22,40,0.06);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.review-stars {
  background: linear-gradient(135deg, var(--amber-light), var(--amber-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

/* ── Form fields: soft glow focus ──────────────────────────── */
.form-group input,
.form-group select {
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  box-shadow: 0 0 0 4px rgba(212,136,42,0.14);
  transform: translateY(-1px);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ── Footer: subtle top gradient hairline ──────────────────── */
#footer {
  position: relative;
}
#footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

/* ── WhatsApp FAB: richer glow ──────────────────────────────── */
.whatsapp-fab {
  background: linear-gradient(135deg, #2FE07A, var(--whatsapp));
  box-shadow: 0 10px 30px rgba(37,211,102,0.42);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 40px rgba(37,211,102,0.5);
}

/* ── Call FAB: matching richer depth ─────────────────────────── */
.call-fab {
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  box-shadow: 0 10px 30px rgba(10,22,40,0.38);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.call-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 40px rgba(10,22,40,0.48);
}

/* ── Sticky bar: navy gradient ──────────────────────────────── */
.sticky-bar {
  background: var(--gradient-navy);
  box-shadow: 0 -6px 24px rgba(10,22,40,0.18);
}

/* ── Smooth image loading feel ─────────────────────────────── */
img {
  transition: filter 0.3s ease;
}

/* ── Ripple click feedback (used by initRipple in script.js) ── */
@keyframes rippleAnim {
  to { transform: scale(2.4); opacity: 0; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}