/* =================================================================
   SHIRDITOURISM — MASTER STYLESHEET
   Used by ALL pages: home, packages, package-detail, hotels,
   blogs, blog-detail, about, contact, testimonials, terms, privacy, refund.

   Sections in this file:
     1.  Design tokens (CSS variables)
     2.  Base / reset
     3.  Utilities
     4.  Buttons
     5.  Top utility bar
     6.  Sticky orange header
     7.  Mobile menu drawer
     8.  Hero section (homepage)
     9.  Quick services
     10. Tour packages cards (used on home + packages page)
     11. Why Pilgrims Choose Us (full content, compact mobile)
     12. VIP Darshan
     13. Testimonials (horizontal scroll on ALL screens)
     14. Gallery
     15. Blog cards (used on home + blog list)
     16. About Shirdi
     17. CTA banner
     18. Footer (animated devotional bg)
     19. Mobile bottom app nav (5 icons, elevated middle)
     20. Floating WhatsApp
     21. Inner page hero (sub-pages)
     22. Package detail page
     23. Blog detail page
     24. Content pages (about, terms, etc.)
     25. Reduced motion
   ================================================================= */


/* ===================================================================
   1. DESIGN TOKENS
   ================================================================== */
:root {
  /* Brand */
  --saffron: #FF6B1A;
  --saffron-deep: #E94E1B;
  --orange: #FF8F3F;
  --orange-light: #FFB069;
  --gold: #F5B800;
  --gold-deep: #D4A017;
  --gold-soft: #FFE7A3;
  --maroon: #8B2D3F;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FFFAF3;
  --cream: #FFF6E8;
  --cream-warm: #FFF1DC;
  --ink: #1F1B16;
  --ink-soft: #4A433C;
  --ink-mute: #7A7269;
  --line: #F0E6D8;
  --line-soft: #F8EFE0;

  /* Dark theme */
  --dark: #1A1410;
  --dark-2: #2A1F18;
  --dark-text: rgba(255, 255, 255, 0.78);
  --dark-text-mute: rgba(255, 255, 255, 0.52);

  /* Functional */
  --whatsapp: #25D366;
  --whatsapp-deep: #128C7E;

  /* Gradients */
  --grad-saffron: linear-gradient(135deg, #FF6B1A 0%, #FF8F3F 100%);
  --grad-saffron-deep: linear-gradient(135deg, #E94E1B 0%, #FF6B1A 100%);
  --grad-gold: linear-gradient(135deg, #F5B800 0%, #FF8F3F 100%);
  --grad-warm: linear-gradient(135deg, #FFE7A3 0%, #FFB069 100%);
  --grad-divine: linear-gradient(120deg, #FF6B1A, #F5B800, #FF8F3F);
  --grad-dark: linear-gradient(180deg, #1A1410 0%, #2A1F18 100%);

  /* Typography */
  --ff-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-deva: 'Tiro Devanagari Hindi', 'Noto Sans Devanagari', serif;
  --ff-rupee: 'Inter', 'Roboto', 'Noto Sans', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --sh-sm: 0 2px 12px -4px rgba(31, 27, 22, 0.08);
  --sh-md: 0 12px 32px -10px rgba(233, 78, 27, 0.18);
  --sh-lg: 0 24px 60px -16px rgba(233, 78, 27, 0.25);
  --sh-card: 0 8px 30px -8px rgba(31, 27, 22, 0.12);

  /* Layout */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --header-h-desktop: 78px;
  --header-h-mobile: 70px;
}


/* ===================================================================
   2. BASE / RESET
   ================================================================== */
* { box-sizing: border-box; }
*:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
  border-radius: 4px;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: clip; max-width: 100vw; }

body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100vw;
  position: relative;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }


/* ===================================================================
   3. UTILITIES
   ================================================================== */
.gradient-text {
  background: var(--grad-divine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-pad { padding: clamp(38px, 5vw, 64px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--grad-saffron);
  border-radius: 2px;
}

.section-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--saffron-deep); }
.section-lead {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 640px;
  line-height: 1.75;
}
.section-header.center { text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.center .section-lead { margin-left: auto; margin-right: auto; }

/* Rupee symbol - uses font with proper ₹ glyph */
.rupee {
  font-family: var(--ff-rupee);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-right: 1px;
  font-feature-settings: "tnum" 1;
}


/* ===================================================================
   4. BUTTONS
   ================================================================== */
.btn {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary-grad {
  background: var(--grad-saffron);
  color: var(--white);
  box-shadow: 0 8px 22px -6px rgba(233, 78, 27, 0.5);
}
.btn-primary-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(233, 78, 27, 0.6);
  color: var(--white);
}

.btn-outline-saffron {
  background: transparent;
  color: var(--saffron-deep);
  border: 2px solid var(--saffron-deep);
}
.btn-outline-saffron:hover {
  background: var(--saffron-deep);
  color: var(--white);
}

.btn-white-saffron {
  background: var(--white);
  color: var(--saffron-deep);
}
.btn-white-saffron:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-pair {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: center;
}
.btn-pair > .btn {
  flex: 1 1 auto;
  min-width: 0;
  padding: 13px 16px;
  font-size: 13px;
}
@media (min-width: 768px) {
  .btn-pair { flex-wrap: wrap; gap: 14px; }
  .btn-pair > .btn { flex: 0 0 auto; padding: 14px 26px; font-size: 14px; }
}


/* ===================================================================
   5. TOP UTILITY BAR (WHITE strip, part of sticky header)
   ================================================================== */
.top-bar {
  background: var(--white);
  color: var(--ink-soft);
  font-size: 12.5px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 500;
}
.top-bar .top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar a { color: var(--ink-soft); transition: color 0.25s; }
.top-bar a:hover { color: var(--saffron-deep); }
.top-bar .top-deva {
  font-family: var(--ff-deva);
  font-style: italic;
  color: var(--saffron-deep);
  font-weight: 600;
}
.top-bar i { margin-right: 5px; color: var(--saffron-deep); }
.top-bar .top-left { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.top-bar .top-left a { display: inline-flex; align-items: center; }
.top-bar .top-divider { color: var(--line); margin: 0 6px; }

@media (max-width: 768px) {
  .top-bar { text-align: center; padding: 6px 0; font-size: 11px; }
  .top-bar .top-inner { justify-content: center; gap: 8px; }
  .top-bar .top-left { display: none; }
  .top-bar .top-deva { display: block; width: 100%; text-align: center; }
}


/* ===================================================================
   6. STICKY HEADER GROUP (top bar + orange header sticky together)
   ================================================================== */
.header-sticky-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.header-sticky-wrap.scrolled {
  box-shadow: 0 8px 30px -10px rgba(31, 27, 22, 0.15);
}

.site-header {
  background: var(--grad-saffron);
  color: var(--white);
  box-shadow: 0 4px 20px -8px rgba(233, 78, 27, 0.25);
}
.site-header .navbar {
  padding: 18px 0 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  padding: 3px;
  box-shadow: 0 4px 12px -3px rgba(0, 0, 0, 0.2);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.brand-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 4px;
  font-weight: 600;
}

/* Desktop nav (orange header version) */
.nav-main {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
  margin: 0;
}
.nav-main a {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.nav-main a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-soft);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-main a:hover::after,
.nav-main a.active::after { width: 100%; }
.nav-main a:hover,
.nav-main a.active { color: var(--gold-soft); }

.header-cta { display: flex; gap: 10px; align-items: center; }

/* Sound toggle (Om button) */
.sound-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--white);
  transition: all 0.3s;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--ff-deva);
  line-height: 1;
}
.sound-toggle:hover, .sound-toggle.playing {
  background: var(--white);
  color: var(--saffron-deep);
}
.sound-toggle.playing::before {
  content: '';
  position: absolute;
  inset: -3px;
  border: 2px solid var(--white);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

/* Header Call button (no more WhatsApp button in header) */
.btn-call-header {
  background: var(--white);
  color: var(--saffron-deep);
  border: none;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.1);
}
.btn-call-header:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hamburger menu - mobile */
.menu-toggle {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.hamburger span {
  width: 100%;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .nav-main { display: none; }
  .menu-toggle { display: flex; }
  .btn-call-header { display: none; }
  .site-header .navbar { padding: 10px 0; min-height: 64px; }
  .brand-img { width: 44px; height: 44px; }
  .brand-name { font-size: 18px; }
  .brand-tag { font-size: 8px; letter-spacing: 0.22em; }
}
@media (max-width: 480px) {
  .site-header .navbar { padding: 9px 0; min-height: 60px; }
  .brand-img { width: 40px; height: 40px; }
  .brand-name { font-size: 16px; }
  .header-cta { gap: 7px; }
  .sound-toggle { width: 36px; height: 36px; font-size: 18px; }
  .menu-toggle { width: 38px; height: 38px; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}


/* ===================================================================
   7. PREMIUM MOBILE MENU DRAWER
   ================================================================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1990;
  background: rgba(31, 20, 16, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  width: min(360px, 86vw);
  background: linear-gradient(180deg, #FFFAF3 0%, #FFF6E8 100%);
  box-shadow: -20px 0 60px -10px rgba(31, 20, 16, 0.3);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden; /* drawer itself doesn't scroll */
  visibility: hidden;
}
.mobile-menu-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

/* The drawer's three sections */
.mm-header {
  flex: 0 0 auto;          /* sticky at top - never shrinks */
}
.mm-nav {
  flex: 1 1 auto;          /* this is the only scrollable area */
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  min-height: 0;           /* required for flex child to scroll */
}
.mm-cta, .mm-footer {
  flex: 0 0 auto;          /* sticky at bottom - never shrinks */
}

.mm-header {
  background: var(--grad-saffron);
  color: var(--white);
  padding: 14px 18px 16px;
  position: relative;
  overflow: hidden;
}
.mm-mandala {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  opacity: 0.4;
  animation: mm-rotate 50s linear infinite;
  pointer-events: none;
}
@keyframes mm-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.mm-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}
.mm-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mm-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 36px;
}
.mm-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  padding: 3px;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.5s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mobile-menu-drawer.open .mm-logo {
  opacity: 1;
  transform: scale(1);
}
.mm-brand-name {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s 0.3s ease;
}
.mobile-menu-drawer.open .mm-brand-name {
  opacity: 1;
  transform: translateY(0);
}
.mm-brand-tag {
  font-family: var(--ff-deva);
  font-size: 11px;
  font-style: italic;
  color: var(--gold-soft);
  margin-top: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s 0.4s ease;
}
.mobile-menu-drawer.open .mm-brand-tag {
  opacity: 1;
  transform: translateY(0);
}

.mm-nav {
  flex: 1;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
}
.mm-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s, padding-left 0.3s;
  position: relative;
  opacity: 0;
  transform: translateX(30px);
}
.mobile-menu-drawer.open .mm-link {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s, padding-left 0.3s;
  transition-delay: calc(0.4s + var(--mm-i, 0) * 0.05s);
}
.mm-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--saffron-deep);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.mm-label { flex: 1; }
.mm-arrow {
  color: var(--ink-mute);
  font-size: 14px;
  transition: transform 0.3s, color 0.3s;
}
.mm-link:hover, .mm-link:active {
  background: var(--cream);
  color: var(--saffron-deep);
  padding-left: 26px;
}
.mm-link:hover .mm-icon, .mm-link:active .mm-icon {
  background: var(--grad-saffron);
  color: var(--white);
  transform: rotate(-6deg);
}
.mm-link:hover .mm-arrow {
  color: var(--saffron-deep);
  transform: translateX(4px);
}

.mm-cta {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.mm-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  width: auto;
  transition: all 0.3s;
}
.mm-cta-wa {
  background: linear-gradient(135deg, var(--saffron, #E94E1B), var(--saffron-deep, #C73E0E));
  color: var(--white);
  box-shadow: 0 4px 12px -2px rgba(233, 78, 27, 0.4);
}
.mm-cta-wa:hover, .mm-cta-wa:active {
  background: linear-gradient(135deg, var(--saffron-deep, #C73E0E), var(--saffron, #E94E1B));
  color: var(--white);
  transform: translateY(-1px);
}

/* Bottom orange tagline strip + social icons */
.mm-footer {
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--grad-saffron);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.mm-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 50%, rgba(255, 231, 163, 0.18) 0px, rgba(255, 231, 163, 0.18) 1px, transparent 2px, transparent 14px, rgba(255, 231, 163, 0.18) 15px, rgba(255, 231, 163, 0.18) 16px, transparent 17px),
    radial-gradient(circle at 10% 50%, rgba(255, 231, 163, 0.18) 0px, rgba(255, 231, 163, 0.18) 1px, transparent 2px, transparent 14px, rgba(255, 231, 163, 0.18) 15px, rgba(255, 231, 163, 0.18) 16px, transparent 17px);
  z-index: -1;
  pointer-events: none;
}
.mm-blessing {
  font-family: var(--ff-deva);
  font-style: italic;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.mm-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.mm-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mm-social a:hover, .mm-social a:active {
  background: var(--white);
  color: var(--saffron-deep);
  transform: translateY(-2px) scale(1.05);
}


/* ===================================================================
   8. HERO (homepage)
   ================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: #160d06;
}

/* ---- Full-width image slider ---- */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-track {
  display: flex;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.45, 0, 0.15, 1);
}
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #160d06;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (prefers-reduced-motion: reduce) {
  .hero-track { transition: none; }
}
.hero-slide-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 11, 5, 0.92) 0%, rgba(18, 11, 5, 0.72) 42%, rgba(18, 11, 5, 0.3) 74%, rgba(18, 11, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(18, 11, 5, 0.55) 0%, transparent 42%);
}
.hero-slide .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-slide-content {
  max-width: 600px;
  padding: 64px 0;
  color: #fff;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero-eyebrow .om {
  color: var(--gold, #F5B800);
  font-size: 18px;
  font-family: var(--ff-deva);
}

.hero-slide-content h1 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1.07;
  letter-spacing: -0.022em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.5);
}
.hero-slide-content h1 .gradient-text {
  display: inline-block;
  font-style: italic;
  background: var(--grad-gold, linear-gradient(100deg, #FFD86B, #F5B800));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 540px;
  line-height: 1.7;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .hero-actions {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 14px;
    font-size: 13px;
  }
}
.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn-hero-ghost:hover {
  background: #fff;
  color: var(--saffron-deep);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ---- Arrows + dots ---- */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(18, 11, 5, 0.42);
  color: #fff;
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.3s, border-color 0.3s;
}
.hero-arrow:hover {
  background: var(--saffron, #FF6B1A);
  border-color: var(--saffron, #FF6B1A);
}
.hero-arrow-prev { left: 22px; }
.hero-arrow-next { right: 22px; }

.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 6;
}
.hero-dot {
  width: 30px;
  height: 5px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--white);
  width: 46px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hero-slide { min-height: 72vh; }
  .hero-slide-content { max-width: 100%; }
}
@media (max-width: 600px) {
  .hero-slide { min-height: 78vh; }
  .hero-slide-content { padding: 44px 0; }
  .hero-lead { font-size: 15px; }
  .hero-arrow { width: 40px; height: 40px; font-size: 16px; }
  .hero-arrow-prev { left: 10px; }
  .hero-arrow-next { right: 10px; }
  .hero-dots { bottom: 16px; }
}


/* ===================================================================
   9. QUICK SERVICES (homepage)
   ================================================================== */
.quick-services { padding: clamp(38px, 5vw, 64px) 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

/* Image-based service cards (homepage) */
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 310px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 34px -18px rgba(124, 45, 18, 0.5);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 12, 6, 0.1) 0%, rgba(20, 12, 6, 0.5) 52%, rgba(20, 12, 6, 0.93) 100%);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 48px -18px rgba(124, 45, 18, 0.62);
}
.svc-card:hover .svc-img {
  transform: scale(1.09);
}
.svc-body {
  position: relative;
  z-index: 2;
  padding: 24px 22px;
}
.svc-body h3 {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.svc-body p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 14px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold-soft, #FFE7A3);
}
.svc-link i { transition: transform 0.3s; }
.svc-card:hover .svc-link i { transform: translateX(4px); }
@media (max-width: 991px) {
  .svc-card { min-height: 264px; }
  .svc-body { padding: 18px; }
  .svc-body h3 { font-size: 17px; }
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 36px 22px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 30px;
  color: var(--white);
  margin: 0 auto 22px;
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon { transform: rotate(-5deg) scale(1.05); }
.service-icon.bg-1 { background: linear-gradient(135deg, #FF6B1A, #FF8F3F); }
.service-icon.bg-2 { background: linear-gradient(135deg, #F5B800, #FFB069); }
.service-icon.bg-3 { background: linear-gradient(135deg, #E94E1B, #F5B800); }
.service-icon.bg-4 { background: linear-gradient(135deg, #FF8F3F, #E94E1B); }
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron-deep);
}
.service-link i { transition: transform 0.3s; }
.service-card:hover .service-link i { transform: translateX(4px); }

@media (max-width: 991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .service-card { padding: 28px 16px; }
  .service-icon { width: 60px; height: 60px; font-size: 24px; margin-bottom: 16px; }
  .service-card h3 { font-size: 17px; }
  .service-card p { font-size: 12px; }
}


/* ===================================================================
   10. TOUR PACKAGES (cards used on home + packages list page)
   ================================================================== */
.packages { background: var(--cream); position: relative; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sh-lg);
}
.pkg-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.pkg-img svg,
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.pkg-card:hover .pkg-img svg,
.pkg-card:hover .pkg-img img { transform: scale(1.1); }
.pkg-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--grad-saffron);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 14px -4px rgba(233, 78, 27, 0.5);
}
.pkg-badge.gold { background: var(--grad-gold); }
.pkg-duration {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pkg-duration i { color: var(--saffron-deep); }

.pkg-body {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pkg-route {
  font-size: 11px;
  font-weight: 700;
  color: var(--saffron-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pkg-card h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.pkg-card h3 a { color: inherit; }
.pkg-card h3 a:hover { color: var(--saffron-deep); }
.pkg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.pkg-meta span {
  font-size: 12px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pkg-meta i { color: var(--saffron); font-size: 14px; }
.pkg-divider {
  height: 1px;
  background: var(--line-soft);
  margin: auto 0 16px;
}
.pkg-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.pkg-price { display: flex; flex-direction: column; line-height: 1.2; }
.pkg-price-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.pkg-price-amount {
  font-family: var(--ff-rupee);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  background: var(--grad-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pkg-price-amount .rupee { font-weight: 700; }
.pkg-price-card .pkg-price-amount .rupee { font-weight: 700; }
.pkg-price-amount sub {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-mute);
  -webkit-text-fill-color: var(--ink-mute);
  margin-left: 4px;
}
.pkg-actions { display: flex; gap: 8px; align-items: center; }
.pkg-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  white-space: nowrap;
}
.pkg-btn-view {
  background: var(--grad-saffron);
  color: var(--white);
  box-shadow: 0 4px 12px -3px rgba(233, 78, 27, 0.4);
}
.pkg-btn-view:hover {
  color: var(--white);
  transform: translateX(2px);
  box-shadow: 0 6px 16px -3px rgba(233, 78, 27, 0.55);
}
.pkg-btn-view i { transition: transform 0.3s; }
.pkg-btn-view:hover i { transform: translateX(3px); }

.packages-cta { text-align: center; margin-top: 56px; }

@media (max-width: 991px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 600px) {
  .packages-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 24px;
    margin: 0;
  }
  .pkg-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
    min-width: 280px;
  }
}


/* ===================================================================
   11. WHY PILGRIMS CHOOSE US (full content + tighter spacing)
   ================================================================== */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.why-card {
  text-align: center;
  padding: 36px 22px;
  background: var(--white);
  border: 2px solid var(--line-soft);
  border-radius: var(--radius);
  transition: all 0.4s ease;
}
.why-card:hover {
  border-color: var(--line-soft);
  border-top-color: var(--saffron-deep);
  transform: translateY(-6px);
  box-shadow: inset 0 4px 0 0 var(--saffron-deep), var(--sh-md);
}
.why-icon-wrap {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  position: relative;
  display: grid;
  place-items: center;
}
.why-icon-inner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}
.why-card:hover .why-icon-inner {
  background: var(--grad-saffron);
  transform: rotate(8deg);
}
.why-icon-inner i {
  font-size: 28px;
  color: var(--saffron-deep);
  transition: color 0.4s;
}
.why-card:hover .why-icon-inner i { color: var(--white); }
.why-icon-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px dashed var(--gold-soft);
  border-radius: 50%;
  animation: spin-ring 12s linear infinite;
  z-index: 1;
}
@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.why-card h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* MOBILE: 2 cols, COMPACT but keep full content */
@media (max-width: 991px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 36px; }
  .why-card { padding: 22px 14px; }
  .why-icon-wrap { width: 64px; height: 64px; margin-bottom: 12px; }
  .why-icon-inner { width: 48px; height: 48px; }
  .why-icon-inner i { font-size: 22px; }
  .why-card h3 { font-size: 15px; margin-bottom: 6px; }
  .why-card p { font-size: 12px; line-height: 1.5; }
}


/* ===================================================================
   12. VIP DARSHAN (homepage)
   ================================================================== */
.vip-section {
  background: linear-gradient(120deg, var(--cream) 0%, var(--cream-warm) 50%, var(--gold-soft) 100%);
  position: relative;
  overflow: hidden;
}
.vip-section::before {
  content: 'ॐ';
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  font-family: var(--ff-deva);
  font-size: 28rem;
  color: var(--saffron-deep);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}
.vip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--saffron-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: var(--sh-sm);
}
.vip-badge i { color: var(--gold-deep); }
.vip-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
}
.vip-content h2 em { color: var(--saffron-deep); font-style: italic; }
.vip-content > p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 26px;
}
.vip-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.vip-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.vip-feature i {
  width: 36px;
  height: 36px;
  background: var(--white);
  color: var(--saffron-deep);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: var(--sh-sm);
}
.vip-feature strong { display: block; font-size: 14px; font-weight: 600; }
.vip-feature small { font-size: 12px; color: var(--ink-mute); }

.vip-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow: var(--sh-lg);
}
.vip-visual svg,
.vip-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vip-visual-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 11, 5, 0.26) 0%, transparent 30%, transparent 76%, rgba(18, 11, 5, 0.24) 100%);
}
.vip-float-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad-saffron);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 15px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 22px -6px rgba(233, 78, 27, 0.55);
}

@media (max-width: 991px) {
  .vip-grid { grid-template-columns: 1fr; gap: 40px; }
  .vip-visual { max-width: 380px; margin: 0 auto; }
}


/* ===================================================================
   13. TESTIMONIALS (horizontal scroll on ALL screens)
   ================================================================== */
.testimonials { background: var(--white); position: relative; overflow: hidden; }

.testimonials-owl {
  margin-top: 50px;
}
.testimonials-owl .owl-stage-outer {
  padding: 14px 0;
}
.testimonials-owl .owl-stage {
  display: flex;
}
.testimonials-owl .owl-item {
  display: flex;
}

.test-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line-soft);
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.test-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.test-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: var(--ff-display);
  font-size: 70px;
  line-height: 0.8;
  color: var(--gold-soft);
  font-weight: 700;
}
.test-stars {
  color: var(--gold-deep);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.test-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}
.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-saffron);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}
.test-meta strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.test-meta small {
  font-size: 12px;
  color: var(--ink-mute);
}

/* Owl nav arrows */
.testimonials-owl .owl-nav {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.testimonials-owl .owl-nav button.owl-prev,
.testimonials-owl .owl-nav button.owl-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line-soft);
  color: var(--saffron-deep);
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--sh-sm);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.testimonials-owl .owl-nav button.owl-prev:hover,
.testimonials-owl .owl-nav button.owl-next:hover {
  background: var(--grad-saffron);
  color: var(--white);
  border-color: transparent;
}
.testimonials-owl .owl-nav button.owl-prev.disabled,
.testimonials-owl .owl-nav button.owl-next.disabled {
  opacity: 0.35;
}
/* Owl dots */
.testimonials-owl .owl-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.testimonials-owl .owl-dots .owl-dot {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.testimonials-owl .owl-dots .owl-dot span {
  display: block;
  width: 9px;
  height: 9px;
  margin: 0;
  border-radius: 50%;
  background: var(--line-soft);
  transition: background 0.3s, width 0.3s;
}
.testimonials-owl .owl-dots .owl-dot.active span {
  background: var(--saffron);
  width: 26px;
  border-radius: 5px;
}

@media (max-width: 600px) {
  .test-card { padding: 20px 18px; }
  .test-text { font-size: 13px; margin-bottom: 14px; }
  .test-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 12px;
  }
  .test-avatar {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  .test-meta strong { font-size: 13px; }
  .test-meta small { font-size: 11px; }
}


/* ===================================================================
   14. GALLERY
   ================================================================== */
.gallery { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 14px;
  margin-top: 50px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--sh-md);
}
.gallery-item svg { width: 100%; height: 100%; transition: transform 0.5s; display: block; }
.gallery-item:hover svg { transform: scale(1.1); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 27, 22, 0.65) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gallery-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.row-2  { grid-row: span 2; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 140px 140px 140px;
    gap: 10px;
  }
  .gallery-item.span-2 { grid-column: span 1; }
  .gallery-item.row-2  { grid-row: span 1; }
}


/* ===================================================================
   15. BLOG CARDS (homepage preview + blog list page)
   ================================================================== */
.blogs-section { background: var(--cream); }

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.blog-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}
.blog-img svg,
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.blog-card:hover .blog-img svg,
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--saffron-deep);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.blog-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-meta i { color: var(--saffron); font-size: 12px; }
.blog-card h3 {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--saffron-deep); }
.blog-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 18px;
}
.blog-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}
.blog-link i { transition: transform 0.3s; }
.blog-card:hover .blog-link i { transform: translateX(4px); }

@media (max-width: 991px) {
  .blogs-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 600px) {
  .blogs-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
}


/* ===================================================================
   16. ABOUT SHIRDI (homepage)
   ================================================================== */
.about-shirdi { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-video { position: relative; }
.video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: var(--sh-lg);
  background: var(--ink);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.about-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}
.about-content h2 em { color: var(--saffron-deep); font-style: italic; }
.about-content p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-quote {
  background: var(--cream);
  border-left: 3px solid var(--saffron-deep);
  padding: 18px 22px;
  margin: 22px 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-style: normal;
  color: var(--saffron-deep);
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (max-width: 991px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .video-wrapper { max-width: 540px; margin: 0 auto; }
}


/* ===================================================================
   17. CTA BANNER
   ================================================================== */
.cta-banner {
  background: var(--grad-saffron);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 44px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(245, 184, 0, 0.42) 0%, transparent 38%),
    radial-gradient(circle at 85% 50%, rgba(255, 255, 255, 0.16) 0%, transparent 42%);
  pointer-events: none;
}
.cta-banner::after {
  content: 'ॐ';
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-family: var(--ff-deva);
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px 48px;
  flex-wrap: wrap;
}
.cta-banner-text { flex: 1 1 380px; }
.cta-banner-text .eyebrow { margin-bottom: 8px; }
.cta-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.18;
}
.cta-banner h2 em { color: var(--gold-soft); font-style: italic; }
.cta-banner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.cta-banner-side {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-banner-phone {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.cta-banner-phone strong { color: var(--white); font-weight: 700; }
@media (max-width: 768px) {
  .cta-banner { padding: 38px 0; }
  .cta-banner-inner { flex-direction: column; text-align: center; gap: 20px; }
  .cta-banner-text { flex: 1 1 auto; }
  .cta-banner-side { align-items: center; width: 100%; }
  .cta-banner-actions { justify-content: center; }
}
@media (max-width: 600px) {
  .cta-banner-actions { flex-wrap: nowrap; width: 100%; }
  .cta-banner-actions .btn { flex: 1 1 0; min-width: 0; padding: 12px 14px; font-size: 13px; }
}


/* ===================================================================
   18. FOOTER (DARK + animated devotional bg)
   ================================================================== */
.footer {
  background: var(--dark);
  color: var(--dark-text);
  padding-top: 24px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-saffron);
  z-index: 2;
}

.footer-bg-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.footer-mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  animation: rotate-slow 80s linear infinite;
}
@keyframes rotate-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.footer-temples {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
}
.footer-diya {
  position: absolute;
  bottom: -40px;
  left: var(--x);
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: radial-gradient(circle at 50% 30%, #FFE7A3, #FF8F3F 60%, #E94E1B);
  box-shadow: 0 0 12px 3px rgba(255, 143, 63, 0.6), 0 0 24px 8px rgba(255, 143, 63, 0.3);
  animation: float-diya var(--duration, 18s) ease-in-out var(--d, 0s) infinite;
  opacity: 0;
}
.footer-diya::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 14px;
  background: radial-gradient(ellipse at 50% 70%, #FFE7A3, #F5B800 50%, #FF6B1A);
  border-radius: 50% 50% 50% 50% / 70% 70% 40% 40%;
  filter: blur(0.5px);
  animation: flicker 1.4s ease-in-out infinite;
}
@keyframes float-diya {
  0%   { bottom: -40px; opacity: 0; }
  10%  { opacity: 0.85; }
  50%  { transform: translateX(20px); }
  90%  { opacity: 0.6; }
  100% { bottom: 110%; opacity: 0; transform: translateX(-10px); }
}
@keyframes flicker {
  0%, 100% { transform: translateX(-50%) scale(1) rotate(-2deg); opacity: 1; }
  50% { transform: translateX(-50%) scale(1.1) rotate(2deg); opacity: 0.85; }
}
.footer-petal {
  position: absolute;
  bottom: -20px;
  left: var(--x);
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 30% 30%, #FFE7A3, #FF8F3F 60%, #E94E1B);
  border-radius: 50% 5% 50% 5%;
  opacity: 0;
  animation: float-petal var(--duration, 16s) linear var(--d, 0s) infinite;
}
@keyframes float-petal {
  0%   { bottom: -20px; opacity: 0; transform: rotate(0deg) translateX(0); }
  10%  { opacity: 0.5; }
  50%  { transform: rotate(calc(var(--rot, 360deg) * 0.5)) translateX(40px); }
  90%  { opacity: 0.3; }
  100% { bottom: 110%; opacity: 0; transform: rotate(var(--rot, 360deg)) translateX(-20px); }
}

.footer-content { position: relative; z-index: 1; }
.footer-content + .footer-tagline-strip + .footer-content { padding-top: 0; }
/* ===================================================================
   FOOTER — Heading + inline dot-separated links (clean horizontal flow)
   ================================================================== */
.footer-content {
  position: relative;
  z-index: 2;
  padding-top: 18px;
  padding-bottom: 22px;
}
.footer-brand-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 4px;
  text-align: center;
}
.footer-brand-row .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.footer-brand-row .brand-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  padding: 3px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px -4px rgba(245, 184, 0, 0.4);
}
.footer-brand-row .brand-name {
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  display: block;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.footer-brand-row .brand-tag {
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.footer-brand-desc {
  color: var(--dark-text);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 620px;
  text-align: center;
}

/* Section rows — heading + inline links */
.footer-sections {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-section {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}
.footer-section:last-child { border-bottom: none; padding-bottom: 4px; }

.footer-section h4 {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-soft);
  margin: 0 auto 12px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 8px;
}
.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-saffron);
  border-radius: 2px;
}
.footer-section h4 i {
  font-size: 14px;
  color: var(--saffron);
  width: 26px;
  height: 26px;
  background: rgba(245, 184, 0, 0.12);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

/* Links: 2-column grid (4-col on wide desktops) — left-aligned with saffron dot bullets */
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 24px;
  line-height: 1.5;
  font-size: 13px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.footer-links a {
  color: var(--dark-text);
  display: block;
  padding: 5px 0 5px 16px;
  position: relative;
  white-space: normal;
  transition: all 0.25s;
}
.footer-links a::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--saffron);
  opacity: 0.7;
  transition: all 0.3s;
}
.footer-links a::after {
  display: none;
  content: none;
}
.footer-links a:hover {
  color: var(--gold-soft);
  padding-left: 20px;
}
.footer-links a:hover::before {
  background: var(--gold-soft);
  opacity: 1;
  width: 6px;
  height: 6px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  justify-content: center;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-social a:hover {
  background: var(--grad-saffron);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
}

/* Saffron tagline strip */
.footer-tagline-strip {
  position: relative;
  z-index: 1;
  background: var(--grad-saffron);
  color: var(--white);
  text-align: center;
  padding: 14px 16px;
  font-family: var(--ff-deva);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  isolation: isolate;
}
.footer-tagline-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 92% 50%, rgba(255, 231, 163, 0.18) 0px, rgba(255, 231, 163, 0.18) 1px, transparent 2px, transparent 18px, rgba(255, 231, 163, 0.18) 19px, rgba(255, 231, 163, 0.18) 20px, transparent 21px, transparent 38px, rgba(255, 231, 163, 0.18) 39px, rgba(255, 231, 163, 0.18) 40px, transparent 41px),
    radial-gradient(circle at 8% 50%, rgba(255, 231, 163, 0.18) 0px, rgba(255, 231, 163, 0.18) 1px, transparent 2px, transparent 18px, rgba(255, 231, 163, 0.18) 19px, rgba(255, 231, 163, 0.18) 20px, transparent 21px, transparent 38px, rgba(255, 231, 163, 0.18) 39px, rgba(255, 231, 163, 0.18) 40px, transparent 41px);
  z-index: -1;
  pointer-events: none;
}
.footer-tagline-strip::after {
  content: 'ॐ        ॐ        ॐ        ॐ        ॐ';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-family: var(--ff-deva);
  font-size: 7rem;
  color: rgba(255, 250, 243, 0.08);
  letter-spacing: 8px;
  white-space: nowrap;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  line-height: 1;
}
.footer-tagline-strip-content {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.footer-tagline-strip span {
  display: inline-block;
  padding: 0 14px;
  position: relative;
  z-index: 2;
}
.footer-tagline-strip span:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -4px;
  color: var(--gold-soft);
  font-weight: 700;
}

/* Tablet */
@media (max-width: 991px) {
  .footer-brand-row {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .footer-brand-row .brand { justify-content: center; }
  .footer-brand-desc { margin: 0 auto; }
  .footer-social { justify-content: center; }
  /* Tablet: links go from 4-col (desktop) → 2-col */
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 4px 16px; max-width: 540px; }
}

/* Mobile */
@media (max-width: 768px) {
  /* ZERO wasted space above logo */
  .footer { padding-top: 0; }
  .footer-content { padding: 22px 0 14px; }

  /* Brand row: logo+name → 2-3 line description → social icons (vertical stack) */
  .footer-brand-row {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
    padding-bottom: 14px;
    margin-bottom: 4px;
    position: relative;
  }
  .footer-brand-row .brand,
  .footer-brand-desc,
  .footer-social {
    animation: footerFadeUp 0.55s ease-out backwards;
  }
  .footer-brand-row .brand { animation-delay: 0s; }
  .footer-brand-desc { animation-delay: 0.1s; }
  .footer-social { animation-delay: 0.2s; }
  @keyframes footerFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .footer-brand-row .brand {
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }
  .footer-brand-row .brand-img {
    width: 44px;
    height: 44px;
    box-shadow: 0 6px 18px -4px rgba(245, 184, 0, 0.4);
    margin-bottom: 2px;
  }
  .footer-brand-row .brand-name { font-size: 16px; }
  .footer-brand-row .brand-tag { font-size: 11px; }
  .footer-brand-desc {
    font-size: 12px;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 100%;
    color: rgba(255, 250, 243, 0.78);
    padding: 0 4px;
  }
  .footer-social {
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
  }
  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .footer-social a:active {
    background: var(--grad-saffron);
    transform: scale(0.94);
  }

  /* Sections — heading CENTERED with underline → 2-col links below */
  .footer-sections { gap: 0; }
  .footer-section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: none;
    text-align: center;
    animation: footerFadeUp 0.55s ease-out backwards;
  }
  .footer-section:nth-child(1) { animation-delay: 0.25s; }
  .footer-section:nth-child(2) { animation-delay: 0.35s; }
  .footer-section:nth-child(3) { animation-delay: 0.45s; }
  .footer-section:last-child { padding-bottom: 6px; }

  /* Heading: centered with saffron gradient underline */
  .footer-section h4 {
    font-size: 12px;
    margin: 0 auto;
    padding-bottom: 8px;
    position: relative;
    display: inline-flex;
    width: auto;
    letter-spacing: 0.06em;
  }
  .footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-saffron);
    border-radius: 2px;
    animation: underlineGrow 0.55s ease-out 0.55s backwards;
    transform-origin: center;
  }
  @keyframes underlineGrow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }
  .footer-section h4 i {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  /* Links: 2-column grid LEFT-aligned with saffron dot bullets */
  .footer-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
    font-size: 12px;
    line-height: 1.45;
    text-align: left;
    padding: 0 4px;
  }
  .footer-links a {
    display: block;
    color: var(--dark-text);
    padding: 6px 0 6px 14px;
    position: relative;
    white-space: normal;
    transition: all 0.25s;
  }
  .footer-links a::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--saffron);
    opacity: 0.7;
    transition: all 0.3s;
  }
  .footer-links a::after {
    /* kill the inline-dot separator on mobile */
    display: none !important;
    content: none !important;
  }
  .footer-links a:active {
    color: var(--gold-soft);
    padding-left: 18px;
  }
  .footer-links a:active::before {
    background: var(--gold-soft);
    opacity: 1;
    width: 6px;
    height: 6px;
  }

  /* Tagline strip stays vibrant */
  .footer-tagline-strip {
    font-size: 13px;
    padding: 16px 12px calc(96px + env(safe-area-inset-bottom));
    letter-spacing: 0.02em;
    margin-top: 4px;
  }
  .footer-tagline-strip span {
    padding: 0 6px;
    font-size: 13px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  }
  .footer-tagline-strip::after { font-size: 4.5rem; }
  .footer-mandala { width: 320px; height: 320px; }
}


/* ===================================================================
   19. MOBILE BOTTOM APP NAV (5 icons, ELEVATED middle)
   ================================================================== */
.mobile-app-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: var(--white);
  border-top: 1px solid var(--line-soft);
  box-shadow: 0 -8px 24px -4px rgba(31, 27, 22, 0.18);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
}
.mobile-app-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr 1fr;
  align-items: end;
  width: 100%;
  max-width: 100%;
  padding: 0 2px;
  box-sizing: border-box;
}
.mobile-app-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 2px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.mobile-app-nav a span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.mobile-app-nav a i {
  font-size: 20px;
  color: var(--ink-soft);
  transition: color 0.25s, transform 0.25s;
}

/* On very small screens (< 360px), tighten further */
@media (max-width: 380px) {
  .mobile-app-nav-grid { padding: 0; }
  .mobile-app-nav a { padding: 6px 1px; font-size: 9px; }
  .mobile-app-nav a i { font-size: 18px; }
  .mobile-app-nav a.featured .featured-icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
  .mobile-app-nav a.featured { margin-top: -28px; }
}
.mobile-app-nav a.active,
.mobile-app-nav a:hover { color: var(--saffron-deep); }
.mobile-app-nav a.active i,
.mobile-app-nav a:hover i {
  color: var(--saffron-deep);
  transform: scale(1.1);
}

/* Featured middle button - ELEVATED, distinct design */
.mobile-app-nav a.featured {
  position: relative;
  margin-top: -34px;
  padding: 0;
  gap: 0;
}
.mobile-app-nav a.featured .featured-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--grad-saffron);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow:
    0 -4px 16px -2px rgba(233, 78, 27, 0.45),
    0 8px 22px -4px rgba(233, 78, 27, 0.5),
    inset 0 -3px 6px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--white);
  position: relative;
}
.mobile-app-nav a.featured .featured-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--saffron);
  opacity: 0.5;
  animation: pulse-ring 2s ease-out infinite;
}
.mobile-app-nav a.featured span {
  margin-top: 4px;
  font-size: 10px;
  color: var(--saffron-deep);
  font-weight: 700;
}
.mobile-app-nav a.featured:hover .featured-icon { color: var(--white); transform: none; }
.mobile-app-nav a.featured:hover span { color: var(--saffron-deep); }

@media (max-width: 768px) { .mobile-app-nav { display: block; } }


/* ===================================================================
   20. FLOATING "GET FREE QUOTE" BUTTON (replaces WhatsApp float)
   ================================================================== */
.quote-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  background: var(--grad-saffron);
  color: var(--white);
  border: none;
  padding: 16px 26px 16px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 14px 32px -6px rgba(233, 78, 27, 0.55), 0 4px 12px -2px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.quote-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 40px -6px rgba(233, 78, 27, 0.7);
  color: var(--white);
}
.quote-fab .quote-fab-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  color: var(--saffron-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 17px;
  flex-shrink: 0;
  animation: quote-pulse 2.5s ease-in-out infinite;
}
@keyframes quote-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.quote-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-pill);
  background: var(--grad-saffron);
  opacity: 0.35;
  filter: blur(12px);
  z-index: -1;
  animation: quote-glow 3s ease-in-out infinite;
}
@keyframes quote-glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Mobile: shrink and adjust position above bottom app nav */
@media (max-width: 768px) {
  .quote-fab {
    bottom: 88px;
    right: 14px;
    padding: 12px 18px 12px 14px;
    font-size: 12px;
    gap: 8px;
  }
  .quote-fab .quote-fab-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .quote-fab .quote-fab-text-long { display: none; }
  .quote-fab .quote-fab-text-short { display: inline; }
}
@media (min-width: 769px) {
  .quote-fab .quote-fab-text-short { display: none; }
}

/* ===================================================================
   QUOTE MODAL POPUP
   ================================================================== */
.quote-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(31, 20, 16, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.quote-modal-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}
.quote-modal {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 80px -10px rgba(31, 20, 16, 0.4);
}
.quote-modal-overlay.open .quote-modal { transform: scale(1) translateY(0); }

.quote-modal-header {
  background: var(--grad-saffron);
  color: var(--white);
  padding: 12px 24px 12px;
  border-radius: 24px 24px 0 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.quote-modal-header::before {
  content: 'ॐ';
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  font-family: var(--ff-deva);
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  pointer-events: none;
}
.quote-modal-header h3 {
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 19px;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}
.quote-modal-header h3::before {
  content: '';
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path d='M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4.414A2 2 0 0 0 3 11.586l-2 2V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z'/><path d='M7.066 4.76A1.665 1.665 0 0 0 4 5.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 1 0 .6.58c1.486-1.54 1.293-3.214.682-4.112zm4 0A1.665 1.665 0 0 0 8 5.668a1.667 1.667 0 0 0 2.561 1.406c-.131.389-.375.804-.777 1.22a.417.417 0 1 0 .6.58c1.486-1.54 1.293-3.214.682-4.112z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px 17px;
  flex-shrink: 0;
}
.quote-modal-header p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12.5px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.quote-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}
.quote-modal-close:hover {
  background: var(--white);
  color: var(--saffron-deep);
  transform: rotate(90deg);
}

.quote-modal-body {
  padding: 24px 32px 28px;
}
.quote-modal-body label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 4px;
  margin-top: 18px;
}
/* Only the very first element in the form (qName label) needs no top margin */
.quote-modal-body > label:first-child { margin-top: 0; }
/* Labels inside .form-row columns: 0 top margin since the row itself provides the gap */
.quote-modal-body .form-row > div > label { margin-top: 0; }
/* Label icons (small inline, saffron-deep matches label text color) */
.quote-modal-body label::before {
  content: '';
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}
.quote-modal-body label[for="qName"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/></svg>");
}
.quote-modal-body label[for="qPhone"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z'/></svg>");
}
.quote-modal-body label[for="qFrom"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path d='M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10zm0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/></svg>");
}
.quote-modal-body label[for="qDate"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path d='M4 .5a.5.5 0 0 0-1 0V1H2a2 2 0 0 0-2 2v1h16V3a2 2 0 0 0-2-2h-1V.5a.5.5 0 0 0-1 0V1H4V.5zM16 14V5H0v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2zm-3.5-7h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5z'/></svg>");
}
.quote-modal-body label[for="qTrav"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path d='M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1H7Zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm-5.784 6A2.238 2.238 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.325 6.325 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1h4.216zM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z'/></svg>");
}
.quote-modal-body label[for="qMsg"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path d='M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4.414a1 1 0 0 0-.707.293L.854 15.146A.5.5 0 0 1 0 14.793V2zm3.5 1a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9zm0 2.5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9zm0 2.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5z'/></svg>");
}
.quote-modal-body .form-control,
.quote-modal-body select.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  background-color: var(--white);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.quote-modal-body .form-control:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.12);
}
.quote-modal-body .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}
.quote-modal-body textarea.form-control { min-height: 100px; resize: vertical; }
.quote-modal-body .quote-submit {
  width: 100%;
  margin-top: 22px;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  background: var(--grad-saffron);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 22px -6px rgba(233, 78, 27, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.quote-modal-body .quote-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -6px rgba(233, 78, 27, 0.6);
}
.quote-modal-trust { display: none; }

@media (max-width: 600px) {
  .quote-modal { border-radius: 18px; max-height: 92vh; }
  .quote-modal-header { padding: 12px 20px 12px; border-radius: 18px 18px 0 0; }
  .quote-modal-header h3 { font-size: 18px; gap: 10px; }
  .quote-modal-header h3::before { width: 34px; height: 34px; background-size: 18px 18px; }
  .quote-modal-header p { font-size: 12.5px; }
  .quote-modal-body { padding: 18px 22px 22px; }
  .quote-modal-body .form-row { grid-template-columns: 1fr; gap: 0; }
  /* Stacked: second column gets its own top gap when row collapses */
  .quote-modal-body .form-row > div + div > label { margin-top: 18px; }
}

/* Hide old whatsapp-float (no longer used) */
.whatsapp-float { display: none !important; }


/* ===================================================================
   TOURIST ATTRACTIONS — Full-width hero slider
   ================================================================== */
.ta-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) { .ta-hero { height: 220px; } }

/* Background slides */
.ta-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 0;
  transform: scale(1.04);
  animation: none;
}
.ta-hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  animation: taZoom 5s ease forwards;
}
@keyframes taZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

/* Gradient overlay */
.ta-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 8, 0, 0.72) 0%,
    rgba(30, 12, 0, 0.45) 60%,
    rgba(20, 8, 0, 0.55) 100%
  );
  z-index: 2;
}

/* Text content */
.ta-hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  padding-bottom: 40px;
}
.ta-hero-content .breadcrumbs--light a,
.ta-hero-content .breadcrumbs--light .current,
.ta-hero-content .breadcrumbs--light i { color: rgba(255,255,255,0.75); }
.ta-hero-content .breadcrumbs--light a:hover { color: #FFE7A3; }
.ta-hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin: 10px 0 12px;
  line-height: 1.18;
}
.ta-hero-content h1 em { color: var(--gold-soft, #FFE7A3); font-style: italic; }
.ta-hero-content p {
  font-size: clamp(13px, 2vw, 15px);
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Attraction label (bottom-left) */
.ta-hero-labels {
  position: absolute;
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 100%;
  text-align: center;
}
.ta-hero-label {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  width: fit-content;
  margin: 0 auto;
}
.ta-hero-label.is-active { display: inline-flex; }
.ta-hero-label i { color: var(--saffron, #FF6B1A); font-size: 11px; }

/* Dots */
.ta-hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 7px;
  align-items: center;
}
.ta-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 1.5px solid rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
  flex-shrink: 0;
}
.ta-hero-dot.is-active {
  background: #fff;
  width: 26px;
  border-radius: 4px;
  border-color: #fff;
}

/* ===================================================================
   21. INNER PAGE HERO (sub-pages: packages, blogs, about, contact, etc.)
   ================================================================== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #FFF5EC 0%, #FFF9F5 55%, #FFFCFA 100%);
  color: var(--ink);
  padding: 26px 0 34px;
  overflow: hidden;
  border-top: 3px solid var(--saffron);
  border-bottom: 1px solid rgba(255, 107, 26, 0.12);
}
/* Soft orange radial glow — left anchor */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 60%, rgba(255, 107, 26, 0.07) 0%, transparent 55%),
    radial-gradient(circle at 100% 40%, rgba(255, 160, 60, 0.05) 0%, transparent 45%);
  pointer-events: none;
}
/* ॐ — subtle orange watermark on right */
.page-hero::after {
  content: 'ॐ';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-deva);
  font-size: 68px;
  color: rgba(255, 107, 26, 0.09);
  line-height: 1;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}
.page-hero h1 {
  font-family: var(--ff-display);
  color: var(--ink);
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  margin: 4px 0 7px;
  padding-left: 16px;
  border-left: 4px solid var(--saffron);
  line-height: 1.25;
}
.page-hero h1 em {
  color: var(--saffron);
  font-style: italic;
}
.page-hero p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  padding-left: 20px;
  margin: 0;
}
/* Breadcrumbs — adjusted for light hero bg */
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 4px;
  column-gap: 8px;
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.18);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  margin-bottom: 12px;
  color: var(--ink-soft);
  max-width: 100%;
  line-height: 1.4;
}
.breadcrumbs a { color: var(--saffron); white-space: nowrap; }
.breadcrumbs a:hover { color: #c44d04; }
.breadcrumbs i { font-size: 9px; opacity: 0.55; }
.breadcrumbs span.current { color: var(--ink); font-weight: 600; }

@media (max-width: 768px) {
  .breadcrumbs {
    display: flex;
    column-gap: 6px;
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 16px;
    width: auto;
    max-width: calc(100% - 8px);
    margin-bottom: 12px;
  }
  .breadcrumbs i { font-size: 8px; }
  .breadcrumbs a, .breadcrumbs span.current {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 20px 0 28px;
    border-top-width: 3px;
  }
  .page-hero::after {
    font-size: 46px;
    right: 10px;
  }
  .page-hero h1 {
    padding-left: 12px;
    border-left-width: 3px;
  }
  .page-hero p {
    padding-left: 15px;
    font-size: 13px;
  }
}


/* ===================================================================
   22. PACKAGE DETAIL PAGE — with tabs + scrolling banner
   ================================================================== */

/* Full-width parallax scrolling banner */
.detail-banner {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 640px;
  overflow: hidden;
  background: var(--ink);
}
.detail-banner-bg {
  position: absolute;
  inset: -10% -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.1s linear;
  will-change: transform;
}
.detail-banner-bg svg,
.detail-banner-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* Slow ken-burns zoom on active detail slide for cinematic feel */
.banner-slide.is-active .detail-banner-bg img {
  animation: pkgHeroKenBurns 14s ease-out forwards;
}
.detail-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(31, 20, 16, 0.3) 0%,
    rgba(31, 20, 16, 0.15) 30%,
    rgba(31, 20, 16, 0.5) 70%,
    rgba(31, 20, 16, 0.85) 100%);
  pointer-events: none;
}
.detail-banner-content {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 2;
  color: var(--white);
}
.detail-banner-content .breadcrumbs { background: rgba(255, 255, 255, 0.18); }
.detail-banner-route {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}
.detail-banner h1 {
  font-family: var(--ff-display);
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 900px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.detail-banner h1 em { color: var(--gold-soft); font-style: italic; }
.detail-banner-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.detail-banner-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.detail-banner-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.detail-banner-stat i {
  font-size: 20px;
  color: var(--gold-soft);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
@media (max-width: 768px) {
  .detail-banner { height: 56vh; min-height: 380px; }
  .detail-banner-content { bottom: 30px; }
  .detail-banner-stats { gap: 12px; margin-top: 18px; }
  .detail-banner-stat { font-size: 12px; }
  .detail-banner-stat i { width: 30px; height: 30px; font-size: 16px; }
}

/* Package detail layout */
.pkg-detail { padding: 60px 0; background: #F4F5F7; }
.pkg-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: flex-start;
}
.pkg-detail-main {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-card);
}

/* TABS bar */
.pkg-tabs-nav {
  display: flex;
  background: var(--white);
  border-bottom: 2px solid var(--line-soft);
  padding: 0 8px;
  position: sticky;
  top: 130px;
  z-index: 10;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pkg-tabs-nav::-webkit-scrollbar { display: none; }
.pkg-tabs-nav button {
  background: transparent;
  border: none;
  padding: 18px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mute);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pkg-tabs-nav button i { font-size: 16px; }
.pkg-tabs-nav button:hover { color: var(--saffron-deep); }
.pkg-tabs-nav button.active { color: var(--saffron-deep); }
.pkg-tabs-nav button::after {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -2px;
  height: 3px;
  background: var(--grad-saffron);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.pkg-tabs-nav button.active::after { transform: scaleX(1); }

.pkg-detail-body { padding: 36px 40px 40px; }
.pkg-detail-route {
  font-size: 12px;
  font-weight: 700;
  color: var(--saffron-deep);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pkg-tab-content {
  display: none;
  animation: tabFadeIn 0.4s ease;
}
.pkg-tab-content.active { display: block; }
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.pkg-section-block {
  margin-bottom: 44px;
}
.pkg-section-block:last-child { margin-bottom: 0; }
/* Extra breathing room between Pickup and Dropping sections (padding-top, not margin-top, so it doesn't collapse) */
#sec-drop { padding-top: 20px; }
.pkg-section-block h2 {
  font-family: var(--ff-display);
  font-size: 24px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--saffron-deep);
}
.pkg-section-block p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.pkg-itinerary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pkg-day {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  border-left: 4px solid var(--saffron);
  position: relative;
  transition: all 0.3s;
}
.pkg-day:hover {
  border-left-color: var(--saffron-deep);
  transform: translateX(3px);
  background: var(--cream-warm);
}
.pkg-day-num {
  display: inline-block;
  background: var(--grad-saffron);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pkg-day h3 { font-family: var(--ff-display); font-size: 18px; margin-bottom: 8px; }
.pkg-day p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

.pkg-incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pkg-incl,
.pkg-excl {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--off-white);
  line-height: 1.55;
}
.pkg-incl { border-left: 3px solid #16a34a; }
.pkg-excl { border-left: 3px solid #dc2626; }
.pkg-incl i { color: #16a34a; font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.pkg-excl i { color: #dc2626; font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* FAQ numbering — faqs.html only */
.faqs-body { counter-reset: faq-num; }
.faqs-body .pkg-faq-item { counter-increment: faq-num; }
.faqs-body .pkg-faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.faqs-body .pkg-faq-q::before {
  margin-top: 1px;
}
.faqs-body .pkg-faq-q i.bi-chevron-down {
  margin-left: auto;
  flex-shrink: 0;
  margin-top: 3px;
}
.faqs-body .pkg-faq-q::before {
  content: counter(faq-num, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 4px;
  background: linear-gradient(135deg, #FF6B1A, #FF8F3F);
  color: #fff;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  margin-right: 12px;
}
.faqs-body .pkg-faq-item.open .pkg-faq-q::before {
  background: linear-gradient(135deg, #E85D04, #FF6B1A);
}

/* FAQ accordion (for SEO + UX) */
.pkg-faq-item {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.pkg-faq-q {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background 0.25s;
}
.pkg-faq-q:hover { background: var(--cream); }
.pkg-faq-q i {
  color: var(--saffron-deep);
  transition: transform 0.3s;
  font-size: 14px;
}
.pkg-faq-item.open .pkg-faq-q i { transform: rotate(180deg); }
.pkg-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.pkg-faq-item.open .pkg-faq-a { max-height: 500px; }
.pkg-faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* Sticky sidebar without enquiry form (replaced with simpler price+CTA card) */
.pkg-detail-side {
  position: sticky;
  top: 200px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pkg-price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--sh-card);
  border-top: 4px solid var(--saffron-deep);
  position: relative;
  overflow: hidden;
}
.pkg-price-card::before {
  content: 'ॐ';
  position: absolute;
  top: -10px;
  right: -10px;
  font-family: var(--ff-deva);
  font-size: 7rem;
  color: var(--saffron);
  opacity: 0.06;
  line-height: 1;
}
.pkg-price-card .pkg-price-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pkg-price-card .pkg-price-amount {
  font-family: var(--ff-rupee);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.015em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  background: var(--grad-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
  margin: 8px 0 4px;
}
.pkg-price-card .pkg-price-amount sub {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  -webkit-text-fill-color: var(--ink-mute);
  margin-left: 4px;
}
.pkg-price-card .pkg-price-amount .rupee {
  -webkit-text-fill-color: transparent;
  background: var(--grad-saffron);
  -webkit-background-clip: text;
  background-clip: text;
}
.pkg-price-card hr { border: 0; border-top: 1px dashed var(--line); margin: 18px 0; }
.pkg-price-card .pkg-cta-btn {
  width: 100%;
  margin-bottom: 8px;
  padding: 14px 20px;
  font-size: 14px;
}
.pkg-price-card .pkg-cta-btn:last-child { margin-bottom: 0; }
.pkg-price-card .pkg-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.pkg-price-card .pkg-trust-item {
  font-size: 12px;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.pkg-price-card .pkg-trust-item i { color: var(--saffron-deep); font-size: 14px; }

/* Help card under price card */
.pkg-help-card {
  background: var(--grad-saffron);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: center;
}
.pkg-help-card h4 {
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 18px;
  margin-bottom: 6px;
}
.pkg-help-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 14px;
  line-height: 1.6;
}
.pkg-help-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--saffron-deep);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
}
.pkg-help-card a:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

/* MOBILE sticky "Book Now" bar at bottom */
.pkg-mobile-bar {
  display: none;
  position: fixed;
  bottom: 72px; /* sit above .mobile-app-nav (~72-78px) */
  left: 0;
  right: 0;
  z-index: 96; /* above .mobile-app-nav (95) */
  background: var(--white);
  padding: 10px 14px;
  border-top: 1px solid var(--line-soft);
  box-shadow: 0 -10px 24px -6px rgba(31, 27, 22, 0.18);
  align-items: center;
  gap: 12px;
}
body:has(.mobile-app-nav) .pkg-mobile-bar { bottom: 76px; }
.pkg-mobile-bar .mobile-price {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.pkg-mobile-bar .mobile-price-label {
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.pkg-mobile-bar .mobile-price-amount {
  font-family: var(--ff-rupee);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  background: var(--grad-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pkg-mobile-bar .mobile-book-btn {
  background: var(--grad-saffron);
  color: var(--white);
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

/* DESKTOP STICKY BAR — show when .pkg-detail-fullpage is active (replaces hidden sidebar) */
@media (min-width: 992px) {
  body:has(.pkg-detail-fullpage) .pkg-mobile-bar,
  body.page-hotel-detail .pkg-mobile-bar,
  body.page-amusement-park-detail .pkg-mobile-bar {
    display: flex;
    bottom: 0;
    padding: 14px max(20px, calc((100% - 1200px) / 2 + 20px));
  }
  body:has(.pkg-detail-fullpage),
  body.page-hotel-detail,
  body.page-amusement-park-detail { padding-bottom: 88px; }
  body:has(.pkg-detail-fullpage) .quote-fab,
  body.page-hotel-detail .quote-fab,
  body.page-amusement-park-detail .quote-fab { bottom: 100px; }
  body:has(.pkg-detail-fullpage) .pkg-mobile-bar .mobile-price-amount,
  body.page-hotel-detail .pkg-mobile-bar .mobile-price-amount,
  body.page-amusement-park-detail .pkg-mobile-bar .mobile-price-amount { font-size: 26px; }
  body:has(.pkg-detail-fullpage) .pkg-mobile-bar .mobile-book-btn,
  body.page-hotel-detail .pkg-mobile-bar .mobile-book-btn,
  body.page-amusement-park-detail .pkg-mobile-bar .mobile-book-btn { padding: 14px 30px; font-size: 15px; }
}

/* Hide floating Quote FAB on amusement-park-detail entirely (Enquiry button is in the sticky bar) */
body.page-amusement-park-detail .quote-fab { display: none !important; }

@media (max-width: 991px) {
  .pkg-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .pkg-detail-side { position: static; }
  .pkg-detail-body { padding: 26px 24px 30px; }
  .pkg-incl-grid { grid-template-columns: 1fr; }
  .pkg-tabs-nav { top: 110px; }
  .pkg-tabs-nav button { padding: 14px 18px; font-size: 13px; }
}
@media (max-width: 768px) {
  .pkg-mobile-bar { display: flex; }
  /* push content above mobile bar + app-nav */
  body:has(.pkg-mobile-bar) { padding-bottom: 156px; }
  /* push quote-fab above mobile bar + app-nav */
  body:has(.pkg-mobile-bar) .quote-fab { bottom: 168px; }
  /* Mobile: keep the price/CTA card visible inline (not sticky) */
  .pkg-detail-side {
    display: block !important;
    position: static !important;
    width: 100%;
    margin-top: 14px;
  }
  .pkg-detail-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .pkg-price-card { padding: 20px 18px; }
  .pkg-price-card .pkg-cta-btn { padding: 12px 14px; font-size: 14px; }
}

/* Book Now CTA — strong primary action */
.btn-book-now {
  background: linear-gradient(135deg, #1B8F4A 0%, #0E6B36 100%);
  color: #fff;
  border: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px -8px rgba(14, 107, 54, 0.55);
  position: relative;
  overflow: hidden;
}
.btn-book-now:hover {
  background: linear-gradient(135deg, #15A555 0%, #117A3F 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(14, 107, 54, 0.7);
}
.btn-book-now i { color: #fff; }
.btn-book-now .book-now-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(27, 143, 74, 0.55);
  animation: bookNowPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes bookNowPulse {
  0% { box-shadow: 0 0 0 0 rgba(27, 143, 74, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(27, 143, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(27, 143, 74, 0); }
}

/* Mobile sticky bar — two-button layout */
.pkg-mobile-bar .mobile-price { flex: 0 0 auto; }
.pkg-mobile-bar .mobile-price-amount { font-size: 18px; }
.pkg-mobile-bar .mobile-actions {
  display: flex;
  gap: 6px;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}
.pkg-mobile-bar .mobile-book-btn {
  padding: 11px 14px !important;
  font-size: 13px !important;
  white-space: nowrap;
  flex: 0 1 auto;
}
.pkg-mobile-bar .mobile-book-btn i { font-size: 13px; }
.pkg-mobile-bar .mobile-book-btn.is-book {
  background: linear-gradient(135deg, #1B8F4A 0%, #0E6B36 100%) !important;
  color: #fff;
  text-decoration: none;
}
.pkg-mobile-bar .mobile-book-btn.is-quote {
  background: linear-gradient(135deg, var(--saffron, #E94E1B), var(--saffron-deep, #C73E0E));
}
@media (max-width: 380px) {
  .pkg-mobile-bar { padding: 8px 10px; gap: 6px; }
  .pkg-mobile-bar .mobile-price-amount { font-size: 16px; }
  .pkg-mobile-bar .mobile-price-label { font-size: 9px; }
  .pkg-mobile-bar .mobile-book-btn { padding: 10px 10px !important; font-size: 12px !important; }
}


/* ===================================================================
   23. BLOG DETAIL PAGE
   ================================================================== */
.blog-detail { padding: 70px 0; background: var(--off-white); }
.blog-detail-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.blog-article {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px 40px;
  box-shadow: var(--sh-card);
}
.blog-article-banner {
  margin: -36px -40px 30px;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.blog-article-banner svg { width: 100%; height: 100%; }
.blog-article h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}
.blog-article-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.blog-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-article-meta i { color: var(--saffron-deep); }
.blog-article-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.blog-article-content h2 {
  font-family: var(--ff-display);
  font-size: 24px;
  margin: 30px 0 14px;
  color: var(--ink);
}
.blog-article-content h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  margin: 24px 0 10px;
}
.blog-article-content ul {
  margin: 12px 0 18px;
  padding-left: 6px;
}
.blog-article-content ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.blog-article-content ul li::before {
  content: '\f26b';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--saffron-deep);
}
.blog-article-content blockquote {
  background: var(--cream);
  border-left: 4px solid var(--saffron-deep);
  padding: 18px 22px;
  margin: 22px 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 17px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 100px;
}
.blog-side-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  box-shadow: var(--sh-card);
}
.blog-side-card h3 {
  font-family: var(--ff-display);
  font-size: 17px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream);
}
.blog-side-list a {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.blog-side-list a:hover { color: var(--saffron-deep); }
.blog-side-list a:last-child { border-bottom: 0; }
.blog-side-list a i { color: var(--saffron-deep); font-size: 14px; flex-shrink: 0; margin-top: 2px; }

@media (max-width: 991px) {
  .blog-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .blog-side { position: static; }
  .blog-article { padding: 22px 22px 26px; }
  .blog-article-banner { margin: -22px -22px 22px; }
}


/* ===================================================================
   24. CONTENT PAGES (about, contact, terms, privacy, refund, testimonials)
   ================================================================== */
.content-page { padding: 70px 0; background: var(--off-white); }
.content-page-inner {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px 56px 56px;
  box-shadow: var(--sh-card);
}
.content-page-inner h2 {
  font-family: var(--ff-display);
  font-size: 24px;
  margin: 28px 0 12px;
  color: var(--ink);
  padding-left: 14px;
  border-left: 4px solid var(--saffron-deep);
}
.content-page-inner h2:first-child { margin-top: 0; }
.content-page-inner h3 {
  font-family: var(--ff-display);
  font-size: 19px;
  margin: 20px 0 8px;
}
.content-page-inner p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.content-page-inner ul {
  margin: 10px 0 16px;
  padding-left: 6px;
}
.content-page-inner ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.content-page-inner ul li::before {
  content: '\f26a';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--saffron-deep);
  font-size: 14px;
}
.content-page-inner strong { color: var(--ink); font-weight: 600; }
.content-page-inner a { color: var(--saffron-deep); text-decoration: underline; }

/* About page extras */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 30px 0;
}
.about-stat {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 22px 14px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 700;
  background: var(--grad-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
}
.about-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  margin-top: 24px;
}
.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--white);
  color: var(--saffron-deep);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-info-item p,
.contact-info-item a {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.contact-info-item a { color: var(--ink); text-decoration: none; }
.contact-info-item a:hover { color: var(--saffron-deep); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 28px 32px;
  border: 1px solid var(--line-soft);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form .form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 14px;
}
.contact-form .form-row .form-control { margin-bottom: 0; }
.contact-form .form-control:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.15);
}
.contact-form textarea.form-control {
  min-height: 130px;
  resize: vertical;
}
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}

@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .content-page-inner { padding: 32px 26px 36px; }
}


/* ===================================================================
   25. REDUCED MOTION
   ================================================================== */
@media (prefers-reduced-motion: reduce) {
  [data-aos] { transition: none !important; transform: none !important; opacity: 1 !important; }
  .hero-bg-mandala,
  .why-icon-wrap::before,
  .footer-mandala,
  .footer-diya, .footer-diya::before,
  .footer-petal,
  .mm-mandala { animation: none; }
  .whatsapp-float::before, .whatsapp-float::after { animation: none; }
  .hero-float-card { animation: none; }
}


/* ===================================================================
   26. HOMEPAGE STATS METRICS ROW (4 stat counters)
   ================================================================== */
.stats-strip {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(255, 184, 0, 0.16), transparent 60%),
    radial-gradient(ellipse at 90% 100%, rgba(233, 78, 27, 0.1), transparent 60%),
    linear-gradient(135deg, #FFFAF3 0%, #FFF1D6 100%);
  border-top: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream-warm);
}
.stats-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.stats-blob-1 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.4), transparent 70%);
  top: -120px; left: -70px;
}
.stats-blob-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(233, 78, 27, 0.22), transparent 70%);
  bottom: -150px; right: -80px;
}
.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.stat-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px -16px rgba(124, 45, 18, 0.45);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.4s ease;
}
.stat-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-saffron);
  transform: scaleY(0.4);
  transition: transform 0.4s ease;
}
.stat-tile:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: 0 18px 34px -18px rgba(124, 45, 18, 0.55);
}
.stat-tile:hover::before {
  transform: scaleY(1);
}
.stat-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  background: var(--grad-saffron);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 21px;
  box-shadow: 0 8px 18px -6px rgba(233, 78, 27, 0.6);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-tile:hover .stat-icon {
  transform: rotate(-8deg) scale(1.08);
}
.stat-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 700;
  background: var(--grad-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin-top: 2px;
}
@media (max-width: 991px) {
  .stats-strip { padding: 32px 0; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}


/* ===================================================================
   27. PACKAGE DETAIL — REMOVE TABS, SHOW ALL SECTIONS INLINE
   (overrides the tab-hide behavior; new design shows everything)
   ================================================================== */
.pkg-detail-fullpage .pkg-tabs-nav { display: none; }
/* When main is fullpage, collapse grid to single column and hide the right sidebar */
.pkg-detail-grid:has(.pkg-detail-fullpage) {
  grid-template-columns: 1fr;
}
.pkg-detail-grid:has(.pkg-detail-fullpage) .pkg-detail-side,
body.page-package-detail .pkg-detail-side,
body.page-hotel-detail .pkg-detail-side,
body.page-amusement-park-detail .pkg-detail-side {
  display: none !important;
}
.pkg-detail-fullpage .pkg-tab-content {
  display: block !important;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.pkg-detail-fullpage .pkg-tab-content:last-child {
  border-bottom: none;
}

/* Sticky in-page section nav — clicking scrolls down */
.pkg-section-nav {
  position: sticky;
  top: var(--header-h, 130px);
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  z-index: 10;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 4px;
  box-shadow: 0 4px 16px -8px rgba(31, 27, 22, 0.1);
  margin-top: -1px;
}

/* ==================================================================
   PACKAGE-DETAIL PAGE — sticky package context bar
   (replaces sticky main header; shows package name + section nav + CTA)
   ================================================================== */

/* On focused pages: main header NON-sticky (scrolls away) */
body.page-package-detail .header-sticky-wrap,
body.page-package-booking .header-sticky-wrap,
body.page-hotel-detail .header-sticky-wrap,
body.page-hotel-booking .header-sticky-wrap,
body.page-amusement-park-detail .header-sticky-wrap,
body.page-amusement-park-booking .header-sticky-wrap {
  position: relative;
  top: auto;
  z-index: auto;
}
/* Hide bottom mobile app nav on focused pages */
body.page-package-detail .mobile-app-nav,
body.page-package-booking .mobile-app-nav,
body.page-hotel-detail .mobile-app-nav,
body.page-hotel-booking .mobile-app-nav,
body.page-amusement-park-detail .mobile-app-nav,
body.page-amusement-park-booking .mobile-app-nav { display: none; }
/* Hide main footer on hotel-booking flow + result */
body.page-hotel-booking .footer,
body.page-amusement-park-booking .footer { display: none; }
/* Drop the bottom-bar offset since mobile-app-nav is gone */
body.page-package-detail .pkg-mobile-bar,
body.page-hotel-detail .pkg-mobile-bar,
body.page-amusement-park-detail .pkg-mobile-bar { bottom: 0 !important; }

/* Amusement-park-detail: enquiry button → teal palette (site theme, matches hotel enquiry) */
body.page-amusement-park-detail .mobile-enquiry-btn,
body.page-amusement-park-detail .ap-enquiry-btn {
  background: linear-gradient(135deg, #4DBFA8, #00838F);
  box-shadow: 0 8px 18px -4px rgba(0, 131, 143, 0.45);
}
body.page-amusement-park-detail .pkg-mobile-bar .mobile-price { flex: 1; }
body.page-amusement-park-detail .pkg-mobile-bar .mobile-book-btn { margin-left: auto; flex-shrink: 0; }
/* Park context bar Book Now → keep saffron (consistent CTA across detail pages) */
body.page-amusement-park-detail .pkg-context-cta i.bi-ticket-perforated-fill { font-size: 13px; }
/* Hotel-detail sticky bar: keep Book Now firmly to the right */
body.page-hotel-detail .pkg-mobile-bar .mobile-price { flex: 1; }
body.page-hotel-detail .pkg-mobile-bar .mobile-book-btn { margin-left: auto; flex-shrink: 0; }

/* Enquiry button — teal palette to contrast with saffron Book Now */
.mobile-enquiry-btn {
  background: linear-gradient(135deg, #4DBFA8, #00838F);
  color: #fff;
  border: 0;
  border-radius: var(--radius-pill, 999px);
  padding: 13px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -4px rgba(0, 131, 143, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mobile-enquiry-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -4px rgba(0, 131, 143, 0.6); color: #fff; }
.mobile-enquiry-btn i { font-size: 13px; }
@media (max-width: 600px) {
  .mobile-enquiry-btn { padding: 11px 14px; font-size: 12.5px; }
  .mobile-enquiry-btn i { font-size: 12px; }
}

/* ============================================================
   HOTEL ENQUIRY MODAL — teal/green palette
   ============================================================ */
.hd-enq-modal, .hd-enq-success {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.hd-enq-modal.is-open, .hd-enq-success.is-open { opacity: 1; }
.hd-enq-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 77, 90, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hd-enq-modal-card, .hd-enq-success-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hd-enq-modal.is-open .hd-enq-modal-card,
.hd-enq-success.is-open .hd-enq-success-card { transform: scale(1) translateY(0); }

.hd-enq-modal-head {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 20px 24px;
  background: linear-gradient(135deg, #4DBFA8 0%, #00838F 100%);
  color: #fff;
  position: relative;
}
.hd-enq-modal-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.hd-enq-modal-titleblock { min-width: 0; }
.hd-enq-modal-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1px;
}
.hd-enq-modal-titleblock h3 {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 2px;
  color: #fff;
}
.hd-enq-modal-titleblock p {
  font-size: 12px;
  margin: 0;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}
.hd-enq-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 13px;
  transition: background 0.2s, transform 0.3s;
}
.hd-enq-modal-close:hover { background: #fff; color: #00838F; transform: rotate(90deg); }

.hd-enq-modal-head { flex-shrink: 0; }
.hd-enq-modal-body {
  padding: 20px 22px 22px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}
.hd-enq-modal-body .bk-field label { color: #000; }
.hd-enq-modal-body .bk-field label > i {
  background: rgba(0, 131, 143, 0.12);
  color: #00838F;
}
.hd-enq-modal-body .bk-field input:focus,
.hd-enq-modal-body .bk-field select:focus {
  border-color: #00838F;
  box-shadow: 0 0 0 4px rgba(0, 131, 143, 0.12);
}
.hd-enq-submit {
  width: 100%;
  margin-top: 18px;
  background: linear-gradient(135deg, #4DBFA8 0%, #00838F 100%);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 22px -6px rgba(0, 131, 143, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hd-enq-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -6px rgba(0, 131, 143, 0.65); }

/* Success modal — green header */
.hd-enq-success-head {
  position: relative;
  text-align: center;
  padding: 14px 22px 14px;
  background: linear-gradient(135deg, #1B8F4A 0%, #0E6B36 100%);
  color: #fff;
}
.hd-enq-success-tick {
  width: 48px;
  height: 48px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px dashed rgba(255,255,255,0.5);
  display: grid;
  place-items: center;
}
.hd-enq-success-tick svg { width: 30px; height: 30px; }
.hd-enq-success-tick circle { stroke: #fff; stroke-width: 3; opacity: 0.55; fill: none; }
.hd-enq-success-tick path { stroke: #fff; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; fill: none; stroke-dasharray: 60; stroke-dashoffset: 60; animation: hdEnqDraw 0.5s 0.3s ease-out forwards; }
@keyframes hdEnqDraw { to { stroke-dashoffset: 0; } }
.hd-enq-success-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1px;
}
.hd-enq-success-head h3 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 2px;
  color: #fff;
}
.hd-enq-success-head p {
  font-size: 11.5px;
  margin: 0;
  color: rgba(255,255,255,0.95);
  line-height: 1.35;
}
.hd-enq-success-head p strong { color: #FFE7A3; }
.hd-enq-success-head .hd-enq-modal-close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.2); }
.hd-enq-success-head .hd-enq-modal-close:hover { background: #fff; color: #117A3F; }

.hd-enq-success-head { flex-shrink: 0; }
.hd-enq-success-body {
  padding: 20px 22px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}
.hd-enq-success-foot { flex-shrink: 0; }
.hd-enq-refrow {
  background: linear-gradient(135deg, #E8F5EC, #C5E5CF);
  border: 1.5px dashed #1B8F4A;
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  margin-bottom: 16px;
}
.hd-enq-reflabel {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #117A3F;
}
.hd-enq-refval {
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink, #1F1B16);
}
.hd-enq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line-soft, #F8EFE0);
  border-radius: 12px;
  background: #FAFCFB;
  overflow: hidden;
}
.hd-enq-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px dashed rgba(31,27,22,0.07);
}
.hd-enq-list li:last-child { border-bottom: 0; }
.hd-enq-k {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-mute, #7A7269);
  font-weight: 600;
  font-size: 12px;
}
.hd-enq-k i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 131, 143, 0.12);
  color: #00838F;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
}
.hd-enq-list strong { font-weight: 700; color: var(--ink, #1F1B16); text-align: right; word-break: break-word; }

.hd-enq-success-foot {
  display: flex;
  gap: 10px;
  padding: 0 22px 22px;
}
.hd-enq-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hd-enq-btn-wa { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; box-shadow: 0 8px 18px -4px rgba(18, 140, 126, 0.45); }
.hd-enq-btn-wa:hover { transform: translateY(-2px); color: #fff; }
.hd-enq-btn-done { background: #fff; color: var(--ink, #1F1B16); border: 1.5px solid var(--line-soft, #F8EFE0); }
.hd-enq-btn-done:hover { background: var(--cream, #FFF6E8); }

@media (max-width: 600px) {
  .hd-enq-modal-card, .hd-enq-success-card { border-radius: 18px; }
  .hd-enq-modal-head { padding: 18px 20px; grid-template-columns: 44px 1fr auto; }
  .hd-enq-modal-icon { width: 44px; height: 44px; font-size: 18px; }
  .hd-enq-modal-titleblock h3 { font-size: 17px; }
  .hd-enq-modal-body { padding: 16px 18px 18px; }
  .hd-enq-success-foot { flex-direction: column; padding: 0 18px 18px; }
}
body.page-package-detail:has(.pkg-mobile-bar),
body.page-hotel-detail:has(.pkg-mobile-bar),
body.page-amusement-park-detail:has(.pkg-mobile-bar) { padding-bottom: 80px; }

/* ===================================================================
   AMUSEMENT PARK — Enquiry Modal + Success Popup (purple/pink theme)
   ================================================================== */
.ap-enq-modal, .ap-enq-success {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 10500;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ap-enq-modal.is-open, .ap-enq-success.is-open { opacity: 1; }
.ap-enq-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 70, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ap-enq-modal-card, .ap-enq-success-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ap-enq-modal.is-open .ap-enq-modal-card,
.ap-enq-success.is-open .ap-enq-success-card { transform: scale(1) translateY(0); }

.ap-enq-modal-head {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 24px;
  background: linear-gradient(135deg, #4DBFA8 0%, #00838F 100%);
  color: #fff;
  position: relative;
  flex-shrink: 0;
}
.ap-enq-modal-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 50%);
  pointer-events: none;
}
.ap-enq-modal-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: grid;
  place-items: center;
  font-size: 22px;
  position: relative;
  z-index: 1;
}
.ap-enq-modal-titleblock { min-width: 0; position: relative; z-index: 1; }
.ap-enq-modal-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1px;
}
.ap-enq-modal-titleblock h3 {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 2px;
  color: #fff;
}
.ap-enq-modal-titleblock p {
  font-size: 12px;
  margin: 0;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}
.ap-enq-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 13px;
  transition: background 0.2s, transform 0.3s;
  position: relative;
  z-index: 1;
}
.ap-enq-modal-close:hover { background: #fff; color: #00838F; transform: rotate(90deg); }

.ap-enq-park-strip {
  background: linear-gradient(180deg, #F0FBFA 0%, #FFF 100%);
  border-bottom: 1px solid rgba(0, 131, 143, 0.15);
  padding: 10px 22px;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ap-enq-park-strip i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4DBFA8, #00838F);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
}
.ap-enq-park-strip strong { color: #00838F; font-weight: 700; }

.ap-enq-modal-body {
  padding: 18px 22px 20px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}
.ap-enq-modal-body .bk-field label { color: #000; }
.ap-enq-modal-body .bk-field label > i {
  background: rgba(0, 131, 143, 0.12);
  color: #00838F;
}
.ap-enq-modal-body .bk-field input:focus,
.ap-enq-modal-body .bk-field select:focus,
.ap-enq-modal-body .bk-field textarea:focus {
  border-color: #00838F;
  box-shadow: 0 0 0 4px rgba(0, 131, 143, 0.14);
}
.ap-enq-modal-body .bk-mobile-row:focus-within {
  border-color: #00838F;
  box-shadow: 0 0 0 3px rgba(0, 131, 143, 0.14);
}
.ap-enq-submit {
  width: 100%;
  margin-top: 16px;
  background: linear-gradient(135deg, #4DBFA8 0%, #00838F 100%);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 22px -6px rgba(0, 131, 143, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ap-enq-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -6px rgba(0, 131, 143, 0.65); }

/* Success modal — green header (universal success signal) */
.ap-enq-success-head {
  position: relative;
  text-align: center;
  padding: 14px 22px 14px;
  background: linear-gradient(135deg, #1B8F4A 0%, #0E6B36 100%);
  color: #fff;
  flex-shrink: 0;
}
.ap-enq-success-tick {
  width: 48px;
  height: 48px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px dashed rgba(255,255,255,0.5);
  display: grid;
  place-items: center;
}
.ap-enq-success-tick svg { width: 30px; height: 30px; }
.ap-enq-success-tick circle { stroke: #fff; stroke-width: 3; opacity: 0.55; fill: none; }
.ap-enq-success-tick path { stroke: #fff; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; fill: none; stroke-dasharray: 60; stroke-dashoffset: 60; animation: apEnqDraw 0.5s 0.3s ease-out forwards; }
@keyframes apEnqDraw { to { stroke-dashoffset: 0; } }
.ap-enq-success-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1px;
}
.ap-enq-success-head h3 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 2px;
  color: #fff;
}
.ap-enq-success-head p {
  font-size: 11.5px;
  margin: 0;
  color: rgba(255,255,255,0.95);
  line-height: 1.35;
}
.ap-enq-success-head p strong { color: #FFE7A3; }
.ap-enq-success-head .ap-enq-modal-close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.2); }
.ap-enq-success-head .ap-enq-modal-close:hover { background: #fff; color: #117A3F; }

.ap-enq-success-body {
  padding: 20px 22px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}
.ap-enq-refrow {
  background: linear-gradient(135deg, #E8F5EC, #C5E5CF);
  border: 1.5px dashed #1B8F4A;
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  margin-bottom: 16px;
}
.ap-enq-reflabel {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #117A3F;
}
.ap-enq-refval {
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink, #1F1B16);
}
.ap-enq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line-soft, #F8EFE0);
  border-radius: 12px;
  background: #FAFCFB;
  overflow: hidden;
}
.ap-enq-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px dashed rgba(31,27,22,0.07);
}
.ap-enq-list li:last-child { border-bottom: 0; }
.ap-enq-k {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-mute, #7A7269);
  font-weight: 600;
  font-size: 12px;
}
.ap-enq-k i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 131, 143, 0.12);
  color: #00838F;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
}
.ap-enq-list strong { font-weight: 700; color: var(--ink, #1F1B16); text-align: right; word-break: break-word; }

.ap-enq-success-foot {
  display: flex;
  gap: 10px;
  padding: 0 22px 22px;
  flex-shrink: 0;
}
.ap-enq-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ap-enq-btn-wa { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; box-shadow: 0 8px 18px -4px rgba(18, 140, 126, 0.45); }
.ap-enq-btn-wa:hover { transform: translateY(-2px); color: #fff; }
.ap-enq-btn-done { background: #fff; color: var(--ink, #1F1B16); border: 1.5px solid var(--line-soft, #F8EFE0); }
.ap-enq-btn-done:hover { background: #F0FBFA; }

@media (max-width: 600px) {
  .ap-enq-modal-card, .ap-enq-success-card { border-radius: 18px; }
  .ap-enq-modal-head { padding: 14px 18px; grid-template-columns: 44px 1fr auto; }
  .ap-enq-modal-icon { width: 44px; height: 44px; font-size: 18px; }
  .ap-enq-modal-titleblock h3 { font-size: 16px; }
  .ap-enq-modal-body { padding: 14px 16px 16px; }
  .ap-enq-success-foot { flex-direction: column; padding: 0 18px 18px; }
}

/* Enquiry modal — form body background */
.ap-enq-modal-body { background: #F8FDFC; }

/* Enquiry modal — section dividers */
.ap-enq-sect { margin-bottom: 12px; }
.ap-enq-sect-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00838F;
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1.5px solid rgba(0,131,143,0.18);
}
.ap-enq-sect-label i { font-size: 11px; }
.ap-pax-age {
  font-size: 10px;
  font-weight: 400;
  color: #9A8C80;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 2px;
}

/* Pax stepper (+/−) */
.ap-enq-pax {
  display: flex;
  align-items: center;
  height: 44px;
  border: 1.5px solid #DDD6CE;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s;
}
.ap-enq-pax:focus-within { border-color: #00838F; box-shadow: 0 0 0 3px rgba(0,131,143,0.14); }
.ap-enq-pax-btn {
  width: 42px;
  height: 100%;
  border: none;
  background: #F0FBFA;
  color: #00838F;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
  display: grid;
  place-items: center;
  user-select: none;
}
.ap-enq-pax-btn:hover { background: rgba(0,131,143,0.15); color: #005F69; }
.ap-enq-pax-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.ap-enq-pax-val {
  flex: 1;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink, #1F1B16);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

/* Enquiry modal textarea */
.ap-enq-msg-field textarea {
  background: #fff;
  border: 1.5px solid #DDD6CE;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 13.5px;
  font-family: var(--ff-body, 'Poppins', sans-serif);
  color: var(--ink, #1F1B16);
  resize: none;
  line-height: 1.55;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.ap-enq-msg-field textarea::placeholder { color: #B0A89E; font-size: 12.5px; }
.ap-enq-msg-field textarea:focus {
  outline: none;
  border-color: #00838F;
  box-shadow: 0 0 0 3px rgba(0,131,143,0.13);
}

/* ===================================================================
   AMUSEMENT PARK BOOKING — package cards, addon cards, pay-strip cta
   ================================================================== */
.apb-pkg-list { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
.apb-pkg-card {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--line-soft, #F8EFE0);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.15s;
}
.apb-pkg-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.apb-pkg-radio {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid #d6cabe;
  display: grid;
  place-items: center;
  background: #fff;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s;
}
.apb-pkg-radio::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
  transition: transform 0.25s;
}
.apb-pkg-card:has(input:checked) {
  border-color: #00838F;
  box-shadow: 0 6px 20px -6px rgba(0, 131, 143, 0.3);
  background: linear-gradient(135deg, #FAFCFB 0%, #E8F8F6 100%);
}
.apb-pkg-card:has(input:checked) .apb-pkg-radio {
  border-color: #00838F;
  background: linear-gradient(135deg, #4DBFA8, #00838F);
}
.apb-pkg-card:has(input:checked) .apb-pkg-radio::after { transform: scale(1); }
.apb-pkg-card:hover { border-color: #80CBC4; }
.apb-pkg-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.apb-pkg-name {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 700; color: var(--ink, #1F1B16);
}
.apb-pkg-name i { color: #00838F; font-size: 14px; }
.apb-pkg-meta { font-size: 12px; color: var(--ink-mute, #7A7269); line-height: 1.4; }
.apb-pkg-badge {
  display: inline-flex; align-items: center;
  font-size: 9.5px; font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.apb-pkg-badge-vip { background: linear-gradient(135deg, var(--saffron, #E94E1B), var(--saffron-deep, #C73E0E)); }
.apb-pkg-price {
  display: flex; flex-direction: column; align-items: flex-end;
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.apb-pkg-strike {
  color: #a8998a;
  text-decoration: line-through;
  font-size: 12px;
  margin-bottom: 1px;
}
.apb-pkg-amount {
  font-size: 18px;
  font-weight: 800;
  color: #E94E1B;
  letter-spacing: -0.02em;
  line-height: 1;
}
.apb-pkg-per { font-size: 10.5px; color: var(--ink-mute, #7A7269); margin-top: 2px; }

/* Pay strip CTA — saffron (site primary, matches Book Now everywhere) */
.apb-pay-cta {
  background: linear-gradient(135deg, var(--saffron, #E94E1B) 0%, var(--saffron-deep, #C73E0E) 100%) !important;
  box-shadow: 0 10px 22px -6px rgba(233, 78, 27, 0.5) !important;
}
.apb-pay-cta:hover { box-shadow: 0 14px 28px -6px rgba(199, 62, 14, 0.55) !important; }

/* Add-on cards (step 2) */
.apb-addon-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 12px; }
.apb-addon-card {
  display: grid;
  grid-template-columns: 38px 1fr 22px;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--line-soft, #F8EFE0);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.apb-addon-card input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.apb-addon-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(0, 131, 143, 0.12);
  color: #00838F;
  display: grid; place-items: center;
  font-size: 17px;
  flex-shrink: 0;
}
.apb-addon-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.apb-addon-name { font-size: 13.5px; font-weight: 700; color: var(--ink, #1F1B16); }
.apb-addon-price { font-size: 12px; color: #E94E1B; font-weight: 700; font-family: var(--ff-rupee); font-feature-settings: "tnum" 1, "lnum" 1; }
.apb-addon-check {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 2px solid #d6cabe;
  display: grid; place-items: center;
  background: #fff;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.apb-addon-check::after {
  content: '\F26B';
  font-family: 'bootstrap-icons';
  font-size: 14px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}
.apb-addon-card:has(input:checked) {
  border-color: #00838F;
  box-shadow: 0 4px 14px -4px rgba(0, 131, 143, 0.3);
  background: linear-gradient(135deg, #FAFCFB 0%, #E8F8F6 100%);
}
.apb-addon-card:has(input:checked) .apb-addon-check {
  border-color: #00838F;
  background: linear-gradient(135deg, #4DBFA8, #00838F);
}
.apb-addon-card:has(input:checked) .apb-addon-check::after { opacity: 1; }

/* Counter pills for adults/children */
.apb-counter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px; }
.apb-counter {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(180deg, #FAFCFB 0%, #FFF 100%);
  border: 1.5px solid var(--line-soft, #F8EFE0);
  border-radius: 14px;
}
.apb-counter-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4DBFA8, #00838F);
  color: #fff;
  display: grid; place-items: center;
  font-size: 16px;
}
.apb-counter-info { display: flex; flex-direction: column; gap: 1px; }
.apb-counter-label { font-size: 13.5px; font-weight: 700; color: var(--ink, #1F1B16); }
.apb-counter-hint { font-size: 11px; color: var(--ink-mute, #7A7269); }
.apb-counter-select {
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-size: 16px;
  font-weight: 800;
  color: #00838F;
  border: 1.5px solid #B2DFDB;
  border-radius: 10px;
  padding: 6px 10px;
  background: #fff;
  cursor: pointer;
}
.apb-counter-select:focus { outline: none; border-color: #00838F; box-shadow: 0 0 0 3px rgba(0, 131, 143, 0.15); }

/* Preview tiles (step 4) */
.apb-preview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.apb-preview-tile {
  padding: 14px 16px;
  background: linear-gradient(180deg, #FAFCFB 0%, #FFF 100%);
  border: 1px solid var(--line-soft, #F8EFE0);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.apb-preview-tile-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  color: var(--ink-mute, #7A7269);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.apb-preview-tile-label i {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(0, 131, 143, 0.12);
  color: #00838F;
  display: inline-grid; place-items: center;
  font-size: 11px;
}
.apb-preview-tile-value {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink, #1F1B16);
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.apb-preview-tile-sub { font-size: 11.5px; color: var(--ink-mute, #7A7269); }

@media (max-width: 600px) {
  .apb-pkg-card { grid-template-columns: 24px 1fr; padding: 12px 14px; }
  .apb-pkg-price { grid-column: 1 / -1; flex-direction: row; align-items: baseline; gap: 8px; margin-top: 4px; padding-left: 38px; }
  .apb-pkg-strike { margin-bottom: 0; }
  .apb-counter-grid { grid-template-columns: 1fr; }
}

/* Step 3 — grouped form cards with header strip + polished fields */
.apb-form-card {
  background: #fff;
  border: 1px solid var(--line-soft, #F8EFE0);
  border-radius: 16px;
  margin-top: 18px;
  overflow: hidden;
  box-shadow: 0 2px 10px -4px rgba(31, 27, 22, 0.06);
  transition: box-shadow 0.25s;
}
.apb-form-card:hover { box-shadow: 0 6px 18px -6px rgba(31, 27, 22, 0.1); }
.apb-form-card-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: linear-gradient(135deg, #F0FBFA 0%, #FAFCFB 100%);
  border-bottom: 1px solid rgba(0, 131, 143, 0.12);
}
.apb-form-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4DBFA8, #00838F);
  color: #fff;
  display: grid; place-items: center;
  font-size: 18px;
  box-shadow: 0 6px 14px -4px rgba(0, 131, 143, 0.4);
}
.apb-form-card-head h4 {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 1px;
  color: var(--ink, #1F1B16);
}
.apb-form-card-head p {
  font-size: 12px;
  color: var(--ink-mute, #7A7269);
  margin: 0;
}
.apb-form-card-body {
  padding: 18px 18px 20px;
}

/* Polished field styling — scoped to park booking pages */
body.page-amusement-park-booking .bk-field input,
body.page-amusement-park-booking .bk-field select,
body.page-amusement-park-booking .bk-field textarea {
  padding: 13px 14px;
  border: 1.5px solid #ECE4D6;
  border-radius: 10px;
  background: #FDFCF9;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
body.page-amusement-park-booking .bk-field input:hover,
body.page-amusement-park-booking .bk-field select:hover,
body.page-amusement-park-booking .bk-field textarea:hover {
  border-color: #B2DFDB;
  background: #fff;
}
body.page-amusement-park-booking .bk-field input:focus,
body.page-amusement-park-booking .bk-field select:focus,
body.page-amusement-park-booking .bk-field textarea:focus {
  border-color: #00838F;
  box-shadow: 0 0 0 4px rgba(0, 131, 143, 0.14);
  background: #fff;
}
body.page-amusement-park-booking .bk-field label > i {
  background: rgba(0, 131, 143, 0.12);
  color: #00838F;
}

/* Custom select chevron — replace native arrow */
body.page-amusement-park-booking .bk-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'><path fill='%2300838F' d='M3.204 5h9.592L8 10.481 3.204 5zm-.753.659l4.796 5.48a1 1 0 0 0 1.506 0l4.796-5.48c.566-.647.106-1.659-.753-1.659H3.204a1 1 0 0 0-.753 1.659z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
  padding-right: 38px;
}

/* Textarea — bigger, friendlier */
body.page-amusement-park-booking .bk-field textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.5;
  font-family: inherit;
}

/* Field hint chip */
.apb-field-hint {
  font-size: 11.5px;
  color: var(--ink-mute, #7A7269);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.apb-field-hint i { font-size: 11px; color: #00838F; }

@media (max-width: 600px) {
  .apb-form-card-head { padding: 12px 14px; grid-template-columns: 38px 1fr; gap: 12px; }
  .apb-form-card-icon { width: 38px; height: 38px; font-size: 16px; border-radius: 10px; }
  .apb-form-card-head h4 { font-size: 15px; }
  .apb-form-card-body { padding: 14px 14px 16px; }
}

/* Booking page: pill showing current step on the right side of the sticky bar */
.bk-step-pill {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--saffron-deep);
  background: rgba(233, 78, 27, 0.1);
  border: 1px solid rgba(233, 78, 27, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-feature-settings: "tnum" 1, "lnum" 1;
  flex-shrink: 0;
}
.bk-step-pill i { font-size: 13px; }
@media (max-width: 768px) {
  .bk-step-pill { font-size: 11px; padding: 6px 10px; }
  .bk-step-pill i { font-size: 12px; }
}

/* Booking page: show ONLY the currently-active accordion (feels like separate pages) */
body.page-package-booking .bk-acc:not(.is-open) { display: none; }
/* Hide in-section Continue & Pay buttons since the sticky pay-strip handles forward navigation */
body.page-package-booking [data-next-from],
body.page-package-booking #bkPayBtn { display: none; }
/* Section 1 has only Continue in its footer — hide the empty wrapper */
body.page-package-booking .bk-acc[data-section="1"] .bk-acc-foot { display: none; }
/* The single active section gets a full-card panel feel */
body.page-package-booking .bk-acc.is-open {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px -10px rgba(31, 27, 22, 0.12);
  margin-bottom: 20px;
}
body.page-package-booking .bk-acc.is-open .bk-acc-head {
  pointer-events: none; /* head is just a title now, no toggle needed since others are hidden */
}
body.page-package-booking .bk-acc.is-open .bk-acc-chev { display: none; }

/* The new sticky context bar */
.pkg-context-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 27, 22, 0.08);
  box-shadow: 0 6px 24px -10px rgba(31, 27, 22, 0.15);
  animation: pkgCtxSlide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pkgCtxSlide {
  from { transform: translateY(-12px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.pkg-context-bar::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--grad-saffron);
}
.pkg-context-bar-inner {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  min-height: 64px;
}
.pkg-context-back {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-saffron);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 6px 14px -4px rgba(233, 78, 27, 0.4);
  transition: transform 0.25s;
}
.pkg-context-back:hover { transform: scale(1.08) rotate(-6deg); color: var(--white); }
.pkg-context-title {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.pkg-context-route {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.pkg-context-route i { font-size: 11px; }
.pkg-context-name {
  font-family: var(--ff-display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
  /* allow long package names to wrap onto 2 lines instead of truncating */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.pkg-context-cta {
  background: linear-gradient(135deg, #1B8F4A 0%, #0E6B36 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 6px 14px -4px rgba(14, 107, 54, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.pkg-context-cta:hover {
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 10px 22px -6px rgba(14, 107, 54, 0.6);
}
.pkg-context-cta i { font-size: 13px; }

/* On package-detail AND hotel-detail AND amusement-park-detail: stick .pkg-section-nav flush BELOW the context bar */
body.page-package-detail .pkg-section-nav,
body.page-hotel-detail .pkg-section-nav,
body.page-amusement-park-detail .pkg-section-nav {
  top: 64px; /* sits flush under .pkg-context-bar (which is ~64px tall) */
  z-index: 99; /* below context bar (100) but above content */
}

/* Mobile: compact context bar, hide Book Now (it's in the bottom sticky bar) */
@media (max-width: 768px) {
  .pkg-context-bar-inner {
    grid-template-columns: 36px 1fr auto;
    gap: 8px 10px;
    padding: 8px 12px;
    min-height: auto;
  }
  .pkg-context-back { width: 36px; height: 36px; font-size: 14px; }
  .pkg-context-name { font-size: 15px; }
  .pkg-context-route { font-size: 9.5px; }
  .pkg-context-cta { display: none; }
  /* mobile: section nav sticks below the (potentially 2-line) context bar */
  body.page-package-detail .pkg-section-nav,
  body.page-hotel-detail .pkg-section-nav,
  body.page-amusement-park-detail .pkg-section-nav { top: 60px; }
}
/* Very narrow viewports: keep step pill inline on the right of title (saves vertical height) */
@media (max-width: 480px) {
  .pkg-context-bar-inner { gap: 6px 8px; padding: 8px 10px; }
  .pkg-context-name { font-size: 14px; }
  .pkg-context-route { font-size: 9px; }
  .bk-step-pill {
    align-self: center;
    font-size: 9.5px;
    padding: 4px 7px;
    gap: 3px;
    /* shorter label form like "6/6" */
    letter-spacing: 0;
  }
  .bk-step-pill i { font-size: 10px; }
}
.pkg-section-nav::-webkit-scrollbar { display: none; }
.pkg-section-nav > .container { display: flex; padding: 0; flex-wrap: nowrap; flex: 0 0 auto; min-width: 100%; width: max-content; max-width: none; }
.pkg-section-nav a {
  padding: 18px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mute);
  white-space: nowrap;
  position: relative;
  transition: color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.pkg-section-nav a i { font-size: 16px; }
.pkg-section-nav a:hover, .pkg-section-nav a.active { color: var(--saffron-deep); }
.pkg-section-nav a.active::after {
  content: '';
  position: absolute;
  left: 22px; right: 22px; bottom: 0;
  height: 3px;
  background: var(--grad-saffron);
  border-radius: 2px 2px 0 0;
}

/* "How to Reach" comparison table */
.reach-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
}
.reach-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
  min-width: 720px;
}
.reach-table thead {
  background: var(--cream);
}
.reach-table th {
  text-align: left;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  border-bottom: 2px solid var(--saffron);
}
.reach-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
  color: var(--ink-soft);
  line-height: 1.5;
}
.reach-table tbody tr:last-child td { border-bottom: none; }
.reach-table tbody tr:hover td { background: var(--cream); }
.reach-mode {
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.reach-stars { color: var(--saffron); letter-spacing: 1px; }

/* Pickup points grid */
.pickup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.pickup-card {
  background: var(--white);
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  transition: all 0.3s;
  position: relative;
}
.pickup-card:hover {
  border-color: var(--saffron);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(233, 78, 27, 0.25);
}
.pickup-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--saffron-deep);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 12px;
}
.pickup-card h4 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pickup-card p {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: 0;
}

/* Travel tips grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.tip-card {
  background: var(--cream);
  padding: 24px 22px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--saffron-deep);
}
.tip-card-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}
.tip-card h4 {
  font-family: var(--ff-display);
  font-size: 17px;
  margin-bottom: 8px;
}
.tip-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* Pilgrim mini testimonials */
.pkg-test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.pkg-test-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 22px 22px 20px;
  transition: all 0.3s;
}
.pkg-test-card:hover {
  border-color: var(--saffron);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(233, 78, 27, 0.2);
}
.pkg-test-stars {
  color: var(--saffron);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.pkg-test-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-style: italic;
}
.pkg-test-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}
.pkg-test-author .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-saffron);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
}
.pkg-test-author strong { font-size: 13px; display: block; }
.pkg-test-author small { font-size: 11px; color: var(--ink-mute); }

@media (max-width: 768px) {
  .pkg-section-nav a { padding: 14px 16px; font-size: 13px; }
}


/* ===================================================================
   28. HOTELS — direct grid + detail page
   ================================================================== */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.hotel-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}
.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px -10px rgba(31, 27, 22, 0.18);
}
.hotel-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #1B4F72, #2E86AB);
}
.hotel-card-img svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hotel-card-stars {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--saffron-deep);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.hotel-card-stars i { font-size: 10px; }
.hotel-card-distance {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(31, 27, 22, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--white);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hotel-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hotel-card-name {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.25;
}
.hotel-card-name a { color: var(--ink); }
.hotel-card-name a:hover { color: var(--saffron-deep); }
.hotel-card-locality {
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hotel-card-amenities {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--ink-soft);
}
.hotel-card-amenities span { display: inline-flex; align-items: center; gap: 4px; }
.hotel-card-amenities i { color: var(--saffron-deep); font-size: 13px; }
.hotel-card-rating {
  background: var(--cream);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 14px;
  width: fit-content;
}
.hotel-card-rating strong {
  font-size: 14px;
  color: var(--saffron-deep);
}
.hotel-card-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hotel-card-price {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.hotel-card-price-label {
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.hotel-card-price-amount {
  font-family: var(--ff-rupee);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  color: var(--saffron-deep);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.hotel-card-price-amount sub {
  font-family: var(--ff-sans);
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 3px;
}
.hotel-card-cta {
  background: var(--grad-saffron);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}
.hotel-card-cta:hover {
  color: var(--white);
  transform: translateX(2px);
}

/* Hotel filter bar */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 6px 18px -8px rgba(31, 27, 22, 0.1);
  margin-bottom: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-bar-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 6px;
}
.filter-chip {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.filter-chip:hover { background: var(--cream-warm); border-color: var(--saffron); }
.filter-chip.active {
  background: var(--grad-saffron);
  color: var(--white);
  border-color: var(--saffron-deep);
}

/* Hotel detail amenities grid */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--saffron);
  font-size: 14px;
  color: var(--ink-soft);
}
.amenity-item i { color: var(--saffron-deep); font-size: 18px; }

/* Room type cards */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.room-card {
  background: var(--white);
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s;
}
.room-card:hover {
  border-color: var(--saffron);
  box-shadow: 0 10px 24px -8px rgba(233, 78, 27, 0.2);
}
.room-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #B8860B, #D4A017);
  position: relative;
}
.room-card-img svg { width: 100%; height: 100%; }
.room-card-body { padding: 18px 20px 20px; }
.room-card-body h4 {
  font-family: var(--ff-display);
  font-size: 18px;
  margin-bottom: 6px;
}
.room-card-features {
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.room-card-features span { display: inline-flex; align-items: center; gap: 4px; }
.room-card-features i { color: var(--saffron-deep); }
.room-card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.room-card-price {
  font-family: var(--ff-rupee);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  color: var(--saffron-deep);
}
.room-card-price small { font-family: var(--ff-sans); font-size: 11px; color: var(--ink-mute); font-weight: 500; letter-spacing: 0; }


/* ===================================================================
   29. ATTRACTION CARDS
   ================================================================== */
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
}
.attraction-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px -10px rgba(31, 27, 22, 0.2);
}
.attraction-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.attraction-card-img svg { width: 100%; height: 100%; display: block; }
.attraction-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s ease; }
.attraction-card:hover .attraction-card-img img { transform: scale(1.07); }
.attraction-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 20, 16, 0.55) 100%);
  pointer-events: none;
}
.attraction-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--grad-saffron);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1;
}
.attraction-card-meta-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 1;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}
.attraction-card-meta-overlay span { display: inline-flex; align-items: center; gap: 5px; }
.attraction-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.attraction-card-body h3 {
  font-family: var(--ff-display);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
}
.attraction-card-body h3 a { color: var(--ink); }
.attraction-card-body h3 a:hover { color: var(--saffron-deep); }
.attraction-card-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.attraction-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--saffron-deep);
  font-weight: 700;
  font-size: 13px;
  margin-top: auto;
}
.attraction-card-link i { transition: transform 0.3s; }
.attraction-card-link:hover i { transform: translateX(4px); }

/* Attraction detail info table */
.info-table {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  padding: 6px 0;
}
.info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
  gap: 16px;
}
.info-row:last-child { border-bottom: none; }
.info-row-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.info-row-label i { color: var(--saffron-deep); font-size: 14px; }
.info-row-value {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
}
@media (max-width: 600px) {
  .info-row { grid-template-columns: 1fr; gap: 6px; padding: 12px 16px; }
}


/* ===================================================================
   30. WEB STORIES — Google-style grid + full-screen viewer
   ================================================================== */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.story-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 28px -8px rgba(31, 27, 22, 0.25);
  display: block;
}
.story-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px -8px rgba(31, 27, 22, 0.35);
}
.story-card svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.story-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 20, 16, 0.0) 30%, rgba(31, 20, 16, 0.85) 100%);
  z-index: 1;
}
.story-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px 18px;
  z-index: 2;
  color: var(--white);
}
.story-card-cat {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.story-card-title {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.story-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 10px;
  opacity: 0.85;
}
.story-card-meta i { font-size: 11px; }

/* Featured first card spans 2 cols */
.story-grid .story-card.featured {
  grid-column: span 2;
  aspect-ratio: 9/8;
}
.story-grid .story-card.featured .story-card-title {
  font-size: 22px;
}

@media (max-width: 600px) {
  .story-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .story-grid .story-card.featured { grid-column: span 2; aspect-ratio: 9/6; }
}

/* Web Story viewer (full-screen swipeable) */
.story-viewer {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 9/16;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px -10px rgba(31, 20, 16, 0.5);
}
.story-slide {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 28px 40px;
  color: var(--white);
}
.story-slide.active { display: flex; }
.story-slide svg.bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.story-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,20,16,0.5) 0%, transparent 30%, transparent 60%, rgba(31,20,16,0.85) 100%);
  z-index: 1;
}
.story-slide-content { position: relative; z-index: 2; }
.story-slide h2 {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.story-slide p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.story-progress {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  gap: 4px;
  z-index: 10;
}
.story-progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  overflow: hidden;
}
.story-progress-bar .fill {
  height: 100%;
  background: var(--white);
  width: 0%;
  transition: width 0.1s linear;
}
.story-progress-bar.completed .fill { width: 100% !important; }
.story-nav-area {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 5;
}
.story-nav-area .prev,
.story-nav-area .next {
  flex: 1;
  cursor: pointer;
  background: transparent;
  border: none;
}
.story-close {
  position: absolute;
  top: 30px;
  right: 14px;
  z-index: 11;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 14px;
}


/* ===================================================================
   31. RESPONSIVE OVERFLOW GUARDS — preserves sticky behavior
   ================================================================== */
/* Universal hard stop on horizontal overflow — but DON'T break sticky */
html {
  overflow-x: clip; /* clip preserves sticky, hidden breaks it */
  max-width: 100vw;
}
body {
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
}
/* Most direct children of body should clip their own overflow */
body > section,
body > main,
body > footer:not(.footer) {
  max-width: 100vw;
  overflow-x: clip;
}
/* Sticky/fixed elements MUST stay free of any overflow constraint */
#headerStickyWrap,
.mobile-app-nav,
.quote-fab,
.quote-modal-overlay,
.mobile-menu-overlay,
.mobile-menu-drawer {
  overflow: visible;
}

@media (max-width: 768px) {
  /* All semantic block-level elements must respect viewport width */
  section, main, article, aside {
    max-width: 100vw;
    overflow-x: clip;
  }
  /* Container constraint */
  .container, .container-fluid {
    max-width: 100%;
    width: 100%;
  }
  /* Heading text wrapping */
  h1, h2, h3, h4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  /* Media safety */
  svg, img, video, iframe {
    max-width: 100%;
  }
  /* Tables wrap or scroll inside their wrapper */
  table { max-width: 100%; }
  pre, code { max-width: 100%; overflow-x: auto; }
  /* Cards must not trigger overflow */
  .pkg-card, .blog-card, .service-card, .hotel-card, .attraction-card, .story-card {
    max-width: 100%;
    overflow: hidden;
  }
  /* Detail banner */
  .detail-banner-content { max-width: 100%; padding-left: 16px; padding-right: 16px; }
  .detail-banner-content h1 { font-size: 28px !important; line-height: 1.2; }
  /* Hero */
  .hero, .hero-content, .hero-slider { max-width: 100vw; overflow: hidden; }
  /* Anything explicitly meant to scroll horizontally inside the page must respect container */
  .reach-table-wrap, .test-track, .packages-grid {
    max-width: 100%;
  }
}

/* ===================================================================
   Whole-card click affordance — overlay link approach
   ================================================================== */
.pkg-card-clickable,
.blog-card-clickable {
  position: relative;
  cursor: pointer;
}
.card-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 4;
  text-indent: -9999px;
  overflow: hidden;
  border-radius: inherit;
}
.card-overlay-link:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 4px;
  border-radius: inherit;
}
/* Make sure inner SVGs/badges/buttons stay visible but non-blocking */
.pkg-card-clickable .pkg-img,
.pkg-card-clickable .pkg-body,
.blog-card-clickable .blog-img,
.blog-card-clickable .blog-body {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
/* The visual button text remains styled but is non-clickable - whole card already clicks */
.pkg-card-clickable .pkg-btn-view,
.blog-card-clickable .blog-link {
  pointer-events: none;
}
.pkg-card-clickable:hover .pkg-img svg,
.pkg-card-clickable:hover .pkg-img img,
.blog-card-clickable:hover .blog-img svg,
.blog-card-clickable:hover .blog-img img {
  transform: scale(1.06);
}
.pkg-card-clickable:hover,
.blog-card-clickable:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px -10px rgba(31, 27, 22, 0.22);
}


/* ===================================================================
   32. MOBILE MENU DRAWER — sticky header & footer + scroll fade
   ================================================================== */
/* Add subtle fade hint at top of scrollable nav when scrolled */
.mm-nav {
  position: relative;
  background:
    linear-gradient(rgba(255, 250, 243, 1) 0%, rgba(255, 250, 243, 0) 8px),
    linear-gradient(rgba(255, 250, 243, 0) calc(100% - 8px), rgba(255, 250, 243, 1) 100%);
  background-attachment: local, local;
  background-repeat: no-repeat;
  background-size: 100% 8px, 100% 8px;
  background-position: top, bottom;
}
/* CTA buttons get subtle press animation */
.mm-cta {
  box-shadow: 0 -4px 16px -4px rgba(31, 27, 22, 0.08);
}
.mm-cta-btn {
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mm-cta-btn:active {
  transform: scale(0.96);
}


/* ===================================================================
   33. FOOTER TAGLINE — animated shimmer highlight
   ================================================================== */
.footer-tagline-strip-content {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 250, 243, 0) 35%,
    rgba(255, 250, 243, 0.25) 50%,
    rgba(255, 250, 243, 0) 65%,
    transparent 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  background-repeat: no-repeat;
  animation: tagline-shimmer 6s ease-in-out infinite;
}
@keyframes tagline-shimmer {
  0%, 20%   { background-position: 100% 0; }
  60%, 100% { background-position: -100% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-tagline-strip-content { animation: none; }
}


/* ===================================================================
   34. FOOTER SECTION HEADING ICONS — gentle pulse on hover
   ================================================================== */
.footer-section h4 i {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s,
              color 0.3s;
}
.footer-section:hover h4 i {
  transform: rotate(-8deg) scale(1.1);
  background: rgba(245, 184, 0, 0.22);
  color: var(--gold-soft);
}
.footer-section h4 {
  transition: color 0.3s;
}
.footer-section:hover h4 {
  color: var(--white);
}


/* ===================================================================
   35. PACKAGE DETAIL — section designs (per mockup)
   ================================================================== */

/* Section heading: full-width gradient card with color-coded left border (Variant 3) */
.pkg-h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 6px;
  padding: 7px 14px 7px 12px;
  margin: 0 0 16px;
  box-shadow: 0 3px 10px -4px rgba(31, 27, 22, 0.08);
  line-height: 1.3;
  border-left: 4px solid var(--saffron);
  background: linear-gradient(135deg, #FFF5E6, #FFEAD0);
  width: 100%;
  box-sizing: border-box;
}
.pkg-h2 i {
  font-size: 13px;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(255, 143, 63, 0.18);
  color: var(--saffron-deep);
}

/* Color variants per section */
/* 1. Overview — Saffron/Cream */
.pkg-h2.over-heading {
  background: linear-gradient(135deg, #FFF5E6, #FFE7A3);
  border-left-color: #FF8F3F;
}
.pkg-h2.over-heading i { background: rgba(255, 143, 63, 0.2); color: #E94E1B; }

/* 2. Fare — Gold/Yellow */
.pkg-h2.fare-heading {
  background: linear-gradient(135deg, #FFF8DC, #FFE082);
  border-left-color: #B8860B;
}
.pkg-h2.fare-heading i { background: rgba(184, 134, 11, 0.2); color: #B8860B; }

/* 3. Itinerary — Purple/Lavender */
.pkg-h2.itin-heading {
  background: linear-gradient(135deg, #F3E5F5, #CE93D8);
  border-left-color: #6A1B9A;
}
.pkg-h2.itin-heading i { background: rgba(106, 27, 154, 0.2); color: #6A1B9A; }

/* 4. Inclusions — Green */
.pkg-h2.incl-heading {
  background: linear-gradient(135deg, #E8F5E9, #A5D6A7);
  border-left-color: #2E7D32;
}
.pkg-h2.incl-heading i { background: rgba(46, 125, 50, 0.2); color: #2E7D32; }

/* 5. Exclusions — Red/Pink */
.pkg-h2.excl-heading {
  background: linear-gradient(135deg, #FFEBEE, #EF9A9A);
  border-left-color: #C62828;
}
.pkg-h2.excl-heading i { background: rgba(198, 40, 40, 0.2); color: #C62828; }

/* 6. Pickup — Blue */
.pkg-h2.pick-heading {
  background: linear-gradient(135deg, #E3F2FD, #90CAF9);
  border-left-color: #1565C0;
}
.pkg-h2.pick-heading i { background: rgba(21, 101, 192, 0.2); color: #1565C0; }

/* 7. Dropping — Teal */
.pkg-h2.drop-heading {
  background: linear-gradient(135deg, #E0F2F1, #80CBC4);
  border-left-color: #00695C;
}
.pkg-h2.drop-heading i { background: rgba(0, 105, 92, 0.2); color: #00695C; }

/* 8. Cancellation — Coral/Orange */
.pkg-h2.canc-heading {
  background: linear-gradient(135deg, #FFF3E0, #FFCC80);
  border-left-color: #EF6C00;
}
.pkg-h2.canc-heading i { background: rgba(239, 108, 0, 0.2); color: #EF6C00; }

/* 9. Terms — Slate Blue */
.pkg-h2.term-heading {
  background: linear-gradient(135deg, #ECEFF1, #B0BEC5);
  border-left-color: #455A64;
}
.pkg-h2.term-heading i { background: rgba(69, 90, 100, 0.2); color: #455A64; }

/* 10. Travel Tips — Lime */
.pkg-h2.tips-heading {
  background: linear-gradient(135deg, #F9FBE7, #DCE775);
  border-left-color: #827717;
}
.pkg-h2.tips-heading i { background: rgba(130, 119, 23, 0.2); color: #827717; }

/* 11. Pilgrim Stories — Pink/Rose */
.pkg-h2.story-heading {
  background: linear-gradient(135deg, #FCE4EC, #F48FB1);
  border-left-color: #AD1457;
}
.pkg-h2.story-heading i { background: rgba(173, 20, 87, 0.2); color: #AD1457; }

/* 12. FAQ — Indigo */
.pkg-h2.faq-heading {
  background: linear-gradient(135deg, #E8EAF6, #9FA8DA);
  border-left-color: #283593;
}
.pkg-h2.faq-heading i { background: rgba(40, 53, 147, 0.2); color: #283593; }

/* Mobile: slightly tighter */
@media (max-width: 600px) {
  .pkg-h2 {
    font-size: 12.5px;
    padding: 5px 11px 5px 10px;
    gap: 7px;
    margin-bottom: 14px;
  }
  .pkg-h2 i {
    width: 22px;
    height: 22px;
    font-size: 11px;
    border-radius: 5px;
  }
}

/* 2. PACKAGE FARE — pricing table */
.fare-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  -webkit-overflow-scrolling: touch;
}
.fare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.fare-table thead { background: var(--cream); }
.fare-table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--line);
}
.fare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
}
.fare-table tr:last-child td { border-bottom: none; }
.fare-table tr:nth-child(even) { background: rgba(255, 247, 236, 0.5); }
.fare-table .fare-price {
  font-family: var(--ff-rupee);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  color: var(--saffron-deep);
  white-space: nowrap;
}

/* 3. PACKAGE ITINERARY — vertical timeline */
.itinerary-timeline {
  position: relative;
  padding-left: 28px;
}
.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--saffron-deep) 0%, var(--saffron) 50%, var(--gold-soft) 100%);
  border-radius: 2px;
}
.itin-day {
  position: relative;
  margin-bottom: 24px;
}
.itin-day:last-child { margin-bottom: 0; }
.itin-day-marker {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grad-saffron);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--saffron), 0 4px 10px -2px rgba(233, 78, 27, 0.4);
  z-index: 1;
}
.itin-day-title {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--saffron-deep);
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.itin-day-badge {
  background: rgba(245, 184, 0, 0.18);
  color: #BF360C;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.itin-day p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 6px;
}
.itin-day p:last-child { margin-bottom: 0; }

/* 4 + 5. INCLUSIONS / EXCLUSIONS */
.incl-excl-grid {
  display: block;
  margin-bottom: 0;
}
.incl-list, .excl-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.incl-list li, .excl-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  border-bottom: 1px dashed rgba(31, 27, 22, 0.06);
}
.incl-list li:last-child, .excl-list li:last-child { border-bottom: none; }
.incl-list li i {
  color: #2E7D32;
  font-size: 14px;
  width: 22px;
  height: 22px;
  background: rgba(46, 125, 50, 0.12);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.excl-list li i {
  color: #C62828;
  font-size: 14px;
  width: 22px;
  height: 22px;
  background: rgba(198, 40, 40, 0.12);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* 6 + 7. PICKUP / DROPPING POINTS — HORIZONTAL ROW cards with gaps */
.pdrop-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdrop-card {
  display: grid;
  grid-template-columns: 40px 1.4fr 1fr 1.6fr;
  align-items: center;
  gap: 14px;
  padding: 9px 16px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--saffron);
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pdrop-card:hover {
  background: var(--cream);
  transform: translateX(2px);
  box-shadow: 0 4px 14px -4px rgba(31, 27, 22, 0.1);
}
.pdrop-card.drop-card {
  border-left-color: #43A047;
}
.pdrop-card.drop-card:hover { background: rgba(241, 248, 233, 0.5); }
.pdrop-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 143, 63, 0.18);
  color: var(--saffron-deep);
  display: grid;
  place-items: center;
  font-size: 14px;
  margin: 0;
  flex-shrink: 0;
}
.pdrop-icon.drop-icon {
  background: rgba(67, 160, 71, 0.18);
  color: #1B5E20;
}
.pdrop-name {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}
.pdrop-time {
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--saffron-deep);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}
.pdrop-time.drop-time { color: #1B5E20; }
.pdrop-time i { font-size: 12px; }
.pdrop-landmark {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 768px) {
  .pdrop-card {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto auto;
    gap: 4px 12px;
    padding: 12px 14px;
  }
  .pdrop-icon { grid-row: 1 / 4; align-self: center; }
  .pdrop-name { grid-column: 2; }
  .pdrop-time { grid-column: 2; }
  .pdrop-landmark { grid-column: 2; }
}

/* 8. CANCELLATION POLICY — tiered cards (original details-page design, Inter number font) */
.cancel-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.cancel-tier {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
  border-top: 4px solid;
  transition: all 0.3s;
}
.cancel-tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -8px rgba(31, 27, 22, 0.15);
}
.cancel-tier-good {
  background: linear-gradient(180deg, #E8F5E9, var(--white));
  border-top-color: #2E7D32;
}
.cancel-tier-warn {
  background: linear-gradient(180deg, #FFF3E0, var(--white));
  border-top-color: #FF6B1A;
}
.cancel-tier-bad {
  background: linear-gradient(180deg, #FFEBEE, var(--white));
  border-top-color: #C62828;
}
/* Refund % — Inter + tabular nums (was Playfair) */
.cancel-pct {
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.cancel-tier-good .cancel-pct { color: #2E7D32; }
.cancel-tier-warn .cancel-pct { color: #FF6B1A; }
.cancel-tier-bad .cancel-pct { color: #C62828; }
.cancel-when {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.cancel-tier-good .cancel-when { color: #1B5E20; }
.cancel-tier-warn .cancel-when { color: #BF360C; }
.cancel-tier-bad .cancel-when { color: #B71C1C; }
.cancel-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* 9. TERMS & CONDITIONS — numbered box */
.tnc-box {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.tnc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(31, 27, 22, 0.07);
}
.tnc-item:last-child { border-bottom: none; padding-bottom: 0; }
.tnc-item:first-child { padding-top: 0; }
.tnc-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-saffron);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 10px -2px rgba(233, 78, 27, 0.3);
}
.tnc-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* 10. TRAVEL TIPS — card grid */
.tips-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.tips-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid rgba(233, 78, 27, 0.28);
  border-left: 5px solid var(--saffron, #E94E1B);
  border-radius: var(--radius-sm);
  padding: 18px 18px 16px 20px;
  box-shadow: 0 2px 10px rgba(233, 78, 27, 0.08);
  transition: all 0.3s ease;
}
.tips-card:hover {
  transform: translateY(-3px);
  border-color: var(--saffron);
  border-left-width: 7px;
  box-shadow: 0 14px 30px -10px rgba(233, 78, 27, 0.28);
}
.tips-card-icon {
  font-size: 26px;
  margin-bottom: 8px;
  line-height: 1;
}
.tips-card h4 {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}
.tips-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* 12. FAQ — modern accordion */
.faq-modern {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-modern-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-modern-item:hover {
  border-color: var(--saffron);
}
.faq-modern-q {
  background: linear-gradient(90deg, var(--cream), var(--white));
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  user-select: none;
  transition: background 0.3s;
}
.faq-modern-q > span:nth-child(2) { flex: 1; }
.faq-modern { counter-reset: faq-counter; }
.faq-modern-item { counter-increment: faq-counter; }
.faq-q-badge {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: transparent;        /* hide literal "Q" text */
  font-size: 0;
  line-height: 0;
  position: relative;        /* anchor for the counter pseudo */
  transition: all 0.3s;
}
.faq-q-badge::before {
  content: counter(faq-counter);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-rupee);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  line-height: 1;
  color: var(--saffron-deep);
}
.faq-modern-item.open .faq-q-badge::before { color: #fff; }
.faq-modern-chev {
  font-size: 14px;
  color: var(--ink-mute);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-modern-item.open .faq-modern-q {
  background: linear-gradient(90deg, var(--cream-warm), var(--white));
}
.faq-modern-item.open .faq-q-badge {
  background: var(--grad-saffron);
  color: var(--white);
  box-shadow: 0 4px 10px -2px rgba(233, 78, 27, 0.3);
}
.faq-modern-item.open .faq-modern-chev {
  transform: rotate(180deg);
  color: var(--saffron-deep);
}
.faq-modern-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-modern-item.open .faq-modern-a {
  grid-template-rows: 1fr;
}
.faq-modern-a-inner {
  overflow: hidden;
  padding: 0 18px;
}
.faq-modern-item.open .faq-modern-a-inner {
  padding: 14px 18px 16px 56px;
  border-top: 1px dashed var(--line-soft);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* MOBILE — adjustments */
@media (max-width: 768px) {
  .pkg-h2 {
    font-size: 14px;
    gap: 8px;
  }
  .pkg-h2 i {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
  .incl-list, .excl-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  /* .pdrop-grid is flex column now; specific mobile tweaks live in dedicated query above */
  .pdrop-name { font-size: 13.5px; }
  .cancel-tier-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cancel-tier {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "pct when"
      "pct note";
    column-gap: 14px;
    row-gap: 2px;
    align-items: center;
    text-align: left;
    padding: 12px 14px;
    border-top: none;
    border-left: 4px solid;
    background: linear-gradient(135deg, var(--cancel-tint, #E8F5E9), var(--white));
  }
  .cancel-tier-good { border-left-color: #2E7D32; --cancel-tint: #E8F5E9; }
  .cancel-tier-warn { border-left-color: #FF6B1A; --cancel-tint: #FFF3E0; }
  .cancel-tier-bad  { border-left-color: #C62828; --cancel-tint: #FFEBEE; }
  .cancel-pct {
    grid-area: pct;
    font-size: 28px;
    margin-bottom: 0;
    align-self: center;
  }
  .cancel-when { grid-area: when; align-self: end; }
  .cancel-note { grid-area: note; align-self: start; font-size: 12px; }
  .tips-card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .tips-card { padding: 14px 14px 12px; }
  .tips-card h4 { font-size: 13px; }
  .tips-card p { font-size: 12px; }
  .itinerary-timeline { padding-left: 22px; }
  .itinerary-timeline::before { left: 5px; }
  .itin-day-marker { left: -23px; width: 12px; height: 12px; top: 5px; }
  .itin-day-title { font-size: 13.5px; }
  .itin-day p { font-size: 13px; }
  .fare-table { font-size: 12.5px; }
  .fare-table th, .fare-table td { padding: 10px 12px; }
  .fare-table .fare-price { font-size: 15px; }
  .tnc-box { padding: 14px 16px; }
  .tnc-num { width: 24px; height: 24px; font-size: 12px; }
  .tnc-text { font-size: 12.5px; }
  .faq-modern-q { padding: 11px 14px; font-size: 13px; gap: 10px; }
  .faq-q-badge { width: 22px; height: 22px; font-size: 0; }
  .faq-q-badge::before { font-size: 11px; }
  .faq-modern-item.open .faq-modern-a-inner {
    padding: 12px 14px 12px 46px;
    font-size: 12.5px;
  }
}


/* ===================================================================
   36. NEED HELP FAB + POPUP MODAL
   ================================================================== */

/* The Need Help FAB reuses .quote-fab styling; only icon needs emoji tweak */
.need-help-fab-icon {
  font-size: 20px;
  line-height: 1;
}

/* Hide the FAB on desktop until JS reveals it (after scroll past Overview / form out of view).
   Mobile reveals it once Package Overview is visible (no form to track). */
.quote-fab.fab-hidden {
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
  visibility: hidden;
}
.quote-fab.fab-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}
/* Smooth transitions for both states */
.need-help-fab {
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0s linear 0s;
}
.need-help-fab.fab-hidden {
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

/* POPUP MODAL */
.need-help-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.need-help-modal.open {
  display: flex;
  animation: needHelpFade 0.25s ease-out;
}
@keyframes needHelpFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.need-help-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 27, 22, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.need-help-modal-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px 24px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 60px -10px rgba(31, 27, 22, 0.4);
  animation: needHelpPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes needHelpPop {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.need-help-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink-soft);
  border: none;
  display: grid;
  place-items: center;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s;
}
.need-help-close:hover {
  background: var(--ink);
  color: var(--white);
  transform: rotate(90deg);
}
.need-help-modal-head {
  text-align: center;
  margin-bottom: 18px;
}
.need-help-modal-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 6px;
}
.need-help-modal-head h3 {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.need-help-modal-head p {
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0;
}
.need-help-options {
  display: grid;
  gap: 10px;
}
.need-help-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  text-align: left;
  width: 100%;
  font-family: inherit;
}
.need-help-option:hover {
  border-color: var(--saffron);
  background: var(--cream);
  transform: translateX(2px);
  box-shadow: 0 6px 16px -6px rgba(233, 78, 27, 0.2);
}
.need-help-option-btn { font-family: inherit; font-size: inherit; }
.need-help-opt-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--white);
}
.need-help-opt-call { background: var(--grad-saffron); }
.need-help-opt-wa { background: var(--whatsapp); }
.need-help-opt-quote { background: rgba(245, 184, 0, 0.18); color: #BF360C; }
.need-help-opt-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.need-help-opt-title {
  font-family: var(--ff-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.need-help-opt-sub {
  font-size: 12px;
  color: var(--ink-mute);
}
.need-help-opt-chev {
  color: var(--ink-mute);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.need-help-option:hover .need-help-opt-chev {
  transform: translateX(3px);
  color: var(--saffron-deep);
}

/* Mobile: modal still works (just smaller) — but the in-page CTA is hidden */
@media (max-width: 768px) {
  .need-help-modal-card { padding: 24px 18px 20px; border-radius: 14px; }
  .need-help-modal-head h3 { font-size: 17px; }
  .need-help-opt-icon { width: 34px; height: 34px; font-size: 14px; }
  .need-help-opt-title { font-size: 13.5px; }
  .need-help-opt-sub { font-size: 11px; }
}


/* ===================================================================
   37. PACKAGES PAGE — hero, breadcrumb, intro, category grid, why us, FAQ
   ================================================================== */

/* HERO: full-width image background, no overlay, title only */
.pkg-hero {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: var(--cream);
}
.pkg-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.pkg-hero-bg svg,
.pkg-hero-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* Slow ken-burns zoom on active slide for cinematic feel */
.banner-slide.is-active .pkg-hero-bg img {
  animation: pkgHeroKenBurns 12s ease-out forwards;
}
@keyframes pkgHeroKenBurns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}
/* Dark gradient overlay so white title/tagline stay readable */
.pkg-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.70) 100%);
  pointer-events: none;
}
.pkg-hero-content {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}
.pkg-hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.4);
}
.pkg-hero-tag {
  font-size: clamp(13px, 1.6vw, 16px);
  color: var(--white);
  margin: 8px 0 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  font-style: italic;
}
@media (max-width: 768px) {
  .pkg-hero { height: 220px; }
  .pkg-hero-content { bottom: 20px; padding: 0 16px; }
  .pkg-hero-tag { font-size: 12px; margin-top: 6px; }
}

/* BREADCRUMB STRIP — placed AFTER hero */
.pkg-breadcrumb-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 0;
  font-size: 13px;
}
.pkg-breadcrumb-strip .container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pkg-breadcrumb-strip a {
  color: var(--ink-mute);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.pkg-breadcrumb-strip a:hover { color: var(--saffron-deep); }
.pkg-breadcrumb-strip i { font-size: 11px; color: #B0A090; }
.pkg-breadcrumb-strip .current {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 768px) {
  .pkg-breadcrumb-strip { padding: 10px 0; font-size: 12px; }
  .pkg-breadcrumb-strip i { font-size: 10px; }
}

/* INTRO + STATS */
.pkg-intro {
  padding: 36px 0 30px;
  border-bottom: 1px solid var(--line-soft);
}
.pkg-intro .container { max-width: 880px; }
.pkg-intro-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0 0 12px;
}
.pkg-intro-lead {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--ink-soft);
  line-height: 1.65;
  text-align: center;
  margin: 0 0 22px;
}
.pkg-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pkg-stat-card {
  background: linear-gradient(135deg, var(--cream), var(--cream-warm));
  border-left: 3px solid var(--saffron);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: transform 0.25s;
}
.pkg-stat-card:hover { transform: translateY(-2px); }

/* ── V2 — INNOVATIVE STAT CARDS (colored icon badge + lift on hover) ── */
.pkg-stats-grid--cards { gap: 14px; }
.pkg-stat-card--v2 {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-left: none;
  border-radius: 14px;
  padding: 20px 14px 16px;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px -6px rgba(31, 27, 22, 0.08);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.pkg-stat-card--v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--tone, var(--grad-saffron));
}
.pkg-stat-card--v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px -10px rgba(31, 27, 22, 0.18);
}
.pkg-stat-card--v2:hover .pkg-stat-icon {
  transform: rotate(-8deg) scale(1.08);
}
.pkg-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #fff;
  background: var(--tone, var(--grad-saffron));
  box-shadow: 0 8px 18px -6px var(--tone-shadow, rgba(233, 78, 27, 0.4));
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-stat-card--v2 .pkg-stat-num {
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--ink);
  background: none;
  -webkit-text-fill-color: initial;
}
.pkg-stat-card--v2 .pkg-stat-num small {
  font-size: 0.55em;
  color: var(--saffron-deep);
  margin-left: 2px;
}
.pkg-stat-card--v2 .pkg-stat-label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
/* Per-card color tones */
.stat-tone-saffron {
  --tone: linear-gradient(135deg, #FFB97A, #E94E1B);
  --tone-shadow: rgba(233, 78, 27, 0.4);
}
.stat-tone-teal {
  --tone: linear-gradient(135deg, #4DBFA8, #13564A);
  --tone-shadow: rgba(19, 86, 74, 0.4);
}
.stat-tone-gold {
  --tone: linear-gradient(135deg, #FFD86B, #C58E00);
  --tone-shadow: rgba(197, 142, 0, 0.4);
}
.stat-tone-green {
  --tone: linear-gradient(135deg, #6FCF7F, #1B8F4A);
  --tone-shadow: rgba(27, 143, 74, 0.4);
}
.pkg-stat-num {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--saffron-deep);
  line-height: 1;
}
.pkg-stat-label {
  font-size: clamp(10px, 1vw, 12px);
  color: var(--ink-soft);
  font-weight: 500;
}
@media (max-width: 768px) {
  .pkg-intro { padding: 24px 0 22px; }
  .pkg-intro-lead { font-size: 13px; margin-bottom: 16px; }
  .pkg-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .pkg-stat-card { padding: 10px 6px; }
  .pkg-stats-grid > .pkg-stat-card:nth-child(2) { display: none; }
}

/* CATEGORY GRID SECTION */
.pkg-cat-section {
  padding: 40px 0 44px;
  border-bottom: 1px solid var(--line-soft);
}
.pkg-cat-heading-wrap {
  text-align: center;
  margin-bottom: 26px;
}
.pkg-cat-heading {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--ink);
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  margin: 0;
}
.pkg-cat-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-saffron);
  border-radius: 3px;
}

/* Grid: 3 cols desktop, 2 cols tablet, 1 col mobile */
.pkg-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 991px) {
  .pkg-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
  .pkg-cat-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* Category Card — Ramoji style: image top, title in white card area below */
.pkg-cat-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 14px -4px rgba(31, 27, 22, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pkg-cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--saffron);
  box-shadow: 0 16px 32px -10px rgba(233, 78, 27, 0.22);
}
.pkg-cat-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.pkg-cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pkg-cat-card:hover .pkg-cat-card-img img {
  transform: scale(1.05);
}
.pkg-cat-card-body {
  padding: 14px 16px 16px;
  background: var(--white);
}
.pkg-cat-card-title {
  font-family: var(--ff-display);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}
.pkg-cat-card-count {
  font-family: var(--ff-rupee);
  color: var(--saffron-deep);
  font-weight: 700;
  font-size: 0.95em;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
@media (max-width: 991px) {
  .pkg-cat-card-img { height: 160px; }
}
@media (max-width: 600px) {
  .pkg-cat-card-img { height: 180px; }
  .pkg-cat-card-body { padding: 12px 14px 14px; }
  .pkg-cat-card-title { font-size: 15px; }
}

/* WHY US + FAQ SECTION */
.pkg-why-faq {
  padding: 44px 0 50px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.pkg-why-faq .container { max-width: 980px; }
.pkg-why-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0 0 12px;
}
.pkg-why-lead {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--ink-soft);
  line-height: 1.65;
  text-align: center;
  margin: 0 auto 28px;
  max-width: 780px;
}
.pkg-why-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.pkg-why-feat {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s;
}
.pkg-why-feat:hover {
  transform: translateY(-3px);
  border-color: var(--saffron);
  box-shadow: 0 12px 28px -10px rgba(233, 78, 27, 0.18);
}
.pkg-why-feat i {
  font-size: 26px;
  color: var(--saffron-deep);
  margin-bottom: 4px;
}
.pkg-why-feat strong {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.pkg-why-feat span {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}
@media (max-width: 991px) {
  .pkg-why-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pkg-why-features { grid-template-columns: 1fr; gap: 10px; }
  .pkg-why-feat { padding: 14px 12px; }
}

.pkg-faq-title {
  font-family: var(--ff-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0 0 18px;
}

.pkg-why-cta {
  text-align: center;
  margin-top: 36px;
  padding: 24px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px dashed var(--saffron);
}
.pkg-why-cta p {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}
@media (max-width: 480px) {
  .pkg-why-faq { padding: 28px 0 36px; }
  .pkg-why-cta { padding: 18px 14px; margin-top: 24px; }
  .pkg-why-cta p { font-size: 13.5px; }
  .pkg-cat-section { padding: 28px 0 32px; }
}


/* ===================================================================
   38. CATEGORY PAGE — package grid (category-{city}.html)
   ================================================================== */

.cat-pkg-section {
  padding: 40px 0 44px;
  border-bottom: 1px solid var(--line-soft);
}
.cat-pkg-heading-wrap {
  text-align: center;
  margin-bottom: 26px;
}
.cat-pkg-heading {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--ink);
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  margin: 0;
}
.cat-pkg-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-saffron);
  border-radius: 3px;
}
.cat-pkg-heading-count {
  font-family: var(--ff-rupee);
  color: var(--saffron-deep);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

/* Grid: desktop 2 cols (horizontal cards) / mobile 1 col */
.cat-pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .cat-pkg-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Package card — INNOVATIVE HORIZONTAL LAYOUT (image left, content right) */
.cat-pkg-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px -8px rgba(31, 27, 22, 0.1);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: grid;
  grid-template-columns: 200px 1fr;
  position: relative;
}
.cat-pkg-card::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 200px;
  width: 4px;
  background: linear-gradient(180deg, var(--saffron), var(--saffron-deep));
  opacity: 0;
  transition: opacity 0.3s;
}
.cat-pkg-card:hover {
  transform: translateY(-6px);
  border-color: var(--saffron);
  box-shadow: 0 22px 40px -12px rgba(233, 78, 27, 0.28);
}
.cat-pkg-card:hover::after { opacity: 1; }
.cat-pkg-card:hover .cat-pkg-card-img { transform: scale(1.04); }

/* Card image area — full card height on the LEFT */
.cat-pkg-card-img {
  position: relative;
  height: auto;
  min-height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.5s ease-out;
}
@media (max-width: 991px) {
  .cat-pkg-card {
    grid-template-columns: 1fr;
  }
  .cat-pkg-card::after { display: none; }
  .cat-pkg-card-img { min-height: 160px; height: 160px; }
}
.cat-pkg-card-img.cardA { background: linear-gradient(135deg, #FFE7A3, #FF8F3F); }
.cat-pkg-card-img.cardB { background: linear-gradient(135deg, #FFD6BD, #E94E1B); }
.cat-pkg-card-img.cardC { background: linear-gradient(135deg, #C4E0E5, #4A7B82); }
.cat-pkg-card-img.cardD { background: linear-gradient(135deg, #E8D5C4, #8B6F4E); }
.cat-pkg-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 50%);
  pointer-events: none;
}
/* Badges on image */
.cat-pkg-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 4px;
  z-index: 1;
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.25);
}
.cat-pkg-badge.badge-bestseller { background: #2E7D32; }
.cat-pkg-badge.badge-premium { background: #6A1B9A; }
.cat-pkg-badge.badge-family { background: #1565C0; }
.cat-pkg-badge.badge-comfort { background: #00838F; }

.cat-pkg-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--white);
  color: var(--saffron-deep);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  z-index: 1;
  box-shadow: 0 4px 10px -2px rgba(31, 27, 22, 0.18);
}

/* Card body */
.cat-pkg-card-body {
  padding: 14px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.cat-pkg-card-title {
  font-family: var(--ff-display);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}
.cat-pkg-card-rating {
  font-size: 12px;
  color: var(--saffron-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cat-pkg-card-rating i { font-size: 11px; }
.cat-pkg-card-reviews {
  color: var(--ink-mute);
  font-weight: 400;
  font-size: 11px;
}

/* USP CHIPS — flex-wrap properly aligned across all devices */
.cat-pkg-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: flex-start;
  align-content: flex-start;
}
.cat-pkg-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream);
  border: 1px solid var(--line-soft);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  line-height: 1.4;
}
.cat-pkg-chip i {
  color: var(--saffron-deep);
  font-size: 10px;
  flex-shrink: 0;
}

/* Card footer: price + CTA */
.cat-pkg-card-foot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding-top: 10px;
  margin-top: auto;
  border-top: 1px dashed var(--line-soft);
}
.cat-pkg-card-actions {
  display: flex;
  gap: 8px;
}
.cat-pkg-card-actions .cat-pkg-card-cta {
  flex: 1 1 0;
  justify-content: center;
  padding: 9px 8px;
}
.cat-pkg-card-cta--ghost {
  background: #fff !important;
  color: var(--saffron-deep, #C73E0E) !important;
  border: 1.5px solid var(--saffron, #E94E1B);
  box-shadow: 0 2px 8px -2px rgba(233, 78, 27, 0.18) !important;
}
.cat-pkg-card-cta--ghost:hover {
  background: #FFF4EC !important;
  color: var(--saffron-deep, #C73E0E) !important;
}
.cat-pkg-card-cta--book {
  background: linear-gradient(135deg, #1B8F4A 0%, #0E6B36 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px -3px rgba(14, 107, 54, 0.4) !important;
  position: relative;
  overflow: hidden;
}
.cat-pkg-card-cta--book:hover {
  background: linear-gradient(135deg, #15A555 0%, #117A3F 100%) !important;
  color: #fff !important;
  box-shadow: 0 6px 16px -3px rgba(14, 107, 54, 0.55) !important;
}
.cat-pkg-card-cta--book::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(27, 143, 74, 0.45);
  animation: catBookPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes catBookPulse {
  0% { box-shadow: 0 0 0 0 rgba(27, 143, 74, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(27, 143, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(27, 143, 74, 0); }
}
.cat-pkg-card-price {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cat-pkg-card-price-label {
  font-size: 10px;
  color: var(--ink-mute);
  font-weight: 500;
}
.cat-pkg-card-price-amount {
  font-family: var(--ff-rupee);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  color: var(--saffron-deep);
  line-height: 1;
}
.cat-pkg-card-price-amount small {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink-mute);
}
.cat-pkg-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--grad-saffron);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s;
  box-shadow: 0 4px 12px -3px rgba(233, 78, 27, 0.3);
}
.cat-pkg-card-cta:hover {
  transform: translateX(2px);
  box-shadow: 0 6px 16px -3px rgba(233, 78, 27, 0.45);
  color: var(--white);
}
.cat-pkg-card-cta i { font-size: 10px; }

/* Responsive tweaks */
@media (max-width: 991px) {
  .cat-pkg-card-body { padding: 14px 16px; gap: 8px; }
  .cat-pkg-chip { font-size: 10px; padding: 2px 7px; }
  .cat-pkg-card-cta { padding: 8px 12px; font-size: 12px; }
}
@media (max-width: 600px) {
  .cat-pkg-section { padding: 26px 0 32px; }
  .cat-pkg-card-body { padding: 13px; gap: 8px; }
  .cat-pkg-chip { font-size: 11px; padding: 3px 9px; }
  .cat-pkg-card-foot { padding-top: 12px; }
}
@media (max-width: 380px) {
  /* On very tight phones, allow CTAs to wrap */
  .cat-pkg-card-foot { gap: 8px; }
  .cat-pkg-card-actions { flex-direction: column; gap: 6px; }
  .cat-pkg-card-actions .cat-pkg-card-cta { width: 100%; }
}


/* ===================================================================
   39. TOURISM GUIDE DETAIL PAGE (redesigned)
   ================================================================== */

/* GUIDE HEAD: title + breadcrumb (no banner) */
.guide-head {
  padding: 28px 0 14px;
  background: var(--white);
}
.guide-head .container { max-width: 880px; }
.guide-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3.4vw, 36px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 12px;
}
.guide-breadcrumb {
  font-size: 13px;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.guide-breadcrumb a {
  color: var(--ink-mute);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.guide-breadcrumb a:hover { color: var(--saffron-deep); }
.guide-breadcrumb i { font-size: 10px; color: #B0A090; }
.guide-breadcrumb .current {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 600px) {
  .guide-head { padding: 20px 0 10px; }
  .guide-breadcrumb { font-size: 11.5px; gap: 5px; }
}

/* HERO IMAGE (JPG) */
.guide-hero-img-wrap {
  background: var(--white);
  padding: 6px 0 18px;
}
.guide-hero-img-wrap .container { max-width: 880px; }
.guide-hero-img {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 12px 30px -12px rgba(31, 27, 22, 0.18);
}
.guide-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (max-width: 600px) {
  .guide-hero-img { border-radius: 10px; }
}

/* META row (date, read time, author — NO social icons) */
.guide-meta-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
}
.guide-meta-wrap .container { max-width: 880px; }
.guide-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-mute);
  padding: 12px 0 16px;
}
.guide-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.guide-meta-item i {
  color: var(--saffron-deep);
  font-size: 13px;
}
.guide-meta-sep {
  color: #B0A090;
}
@media (max-width: 600px) {
  .guide-meta { font-size: 12px; gap: 7px; padding: 10px 0 14px; }
}

/* CONTENT */
.guide-content {
  padding: 28px 0 40px;
  background: var(--white);
}
.guide-content .container { max-width: 880px; }
.guide-content-inner {
  font-size: clamp(15px, 1.4vw, 16.5px);
  color: var(--ink-soft);
  line-height: 1.78;
}
.guide-content-inner p {
  margin: 0 0 18px;
}
.guide-content-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 14px;
  scroll-margin-top: 80px;
}
.guide-content-inner h3 {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 10px;
}
.guide-content-inner strong {
  color: var(--ink);
}

/* All links inside content: saffron + underline */
.guide-content-inner a:not(.btn):not(.guide-mid-cta-btns a):not(.guide-faq-q):not(.guide-scroll-popup-cta) {
  color: var(--saffron-deep);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(233, 78, 27, 0.45);
  transition: all 0.2s;
}
.guide-content-inner a:not(.btn):not(.guide-mid-cta-btns a):not(.guide-faq-q):not(.guide-scroll-popup-cta):hover {
  color: var(--saffron);
  text-decoration-color: var(--saffron);
}

/* Also style links inside FAQ answers */
.guide-faq-a a {
  color: var(--saffron-deep);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(233, 78, 27, 0.45);
}
.guide-faq-a a:hover {
  color: var(--saffron);
  text-decoration-color: var(--saffron);
}

@media (max-width: 600px) {
  .guide-content { padding: 22px 0 30px; }
  .guide-content-inner p { margin-bottom: 14px; }
  .guide-content-inner h2 { margin: 24px 0 10px; }
}

/* MID-CONTENT CTA — placed between H2 sections */
.guide-mid-cta {
  background: linear-gradient(135deg, var(--cream), var(--cream-warm));
  border: 1.5px dashed var(--saffron);
  border-radius: var(--radius-md);
  padding: 28px 24px 26px;
  margin: 36px 0;
  text-align: center;
  position: relative;
}
.guide-mid-cta-pill {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-saffron);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px -2px rgba(233, 78, 27, 0.4);
}
.guide-mid-cta-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 8px;
}
.guide-mid-cta h3 {
  font-family: var(--ff-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.guide-mid-cta p {
  font-size: clamp(13px, 1.3vw, 15px);
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.guide-mid-cta-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.guide-mid-cta-btns .btn {
  font-size: 13px;
  padding: 10px 22px;
}
@media (max-width: 480px) {
  .guide-mid-cta { padding: 24px 18px 20px; margin: 28px 0; }
  .guide-mid-cta-icon { font-size: 30px; }
  .guide-mid-cta-btns { flex-direction: column; align-items: stretch; gap: 8px; }
  .guide-mid-cta-btns .btn { width: 100%; }
}

/* FAQ section (at end of content) */
.guide-faq {
  margin: 44px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.guide-faq-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0 0 22px;
}
.guide-faq-list {
  display: grid;
  gap: 10px;
}
.guide-faq-item {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.25s;
}
.guide-faq-item:hover {
  border-color: var(--saffron);
}
.guide-faq-item[open] {
  border-color: var(--saffron);
  box-shadow: 0 6px 18px -8px rgba(233, 78, 27, 0.18);
}
.guide-faq-q {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--ff-display);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 600;
  color: var(--ink); /* DARK on white background — fixes the "kalisipoindi" issue */
  background: var(--white);
  transition: background 0.2s;
}
.guide-faq-q::-webkit-details-marker { display: none; }
.guide-faq-q::marker { display: none; }
.guide-faq-q:hover {
  background: var(--cream);
}
.guide-faq-q-badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-saffron);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
}
.guide-faq-q-text {
  flex: 1;
  line-height: 1.4;
}
.guide-faq-chev {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--saffron-deep);
  transition: transform 0.3s;
}
.guide-faq-item[open] .guide-faq-chev {
  transform: rotate(180deg);
}
.guide-faq-a {
  padding: 0 16px 16px 54px;
  font-size: clamp(13.5px, 1.3vw, 15px);
  color: var(--ink-soft);
  line-height: 1.65;
  background: var(--white);
}
@media (max-width: 600px) {
  .guide-faq { margin: 32px 0 0; padding-top: 22px; }
  .guide-faq-q { padding: 12px 14px; gap: 9px; }
  .guide-faq-q-badge { width: 24px; height: 24px; font-size: 11px; }
  .guide-faq-a { padding: 0 14px 14px 47px; }
}

/* RELATED GUIDES SECTION */
.related-guides {
  padding: 36px 0 44px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.related-guides .container { max-width: 1100px; }
.related-guides-heading-wrap {
  text-align: center;
  margin-bottom: 22px;
}
.related-guides-heading {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--ink);
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  margin: 0;
}
.related-guides-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-saffron);
  border-radius: 3px;
}
.related-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 991px) {
  .related-guides-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
  .related-guides-grid { grid-template-columns: 1fr; gap: 14px; }
}
.related-guide-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 14px -4px rgba(31, 27, 22, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.related-guide-card:hover {
  transform: translateY(-4px);
  border-color: var(--saffron);
  box-shadow: 0 16px 32px -10px rgba(233, 78, 27, 0.22);
}
.related-guide-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--cream);
}
.related-guide-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.related-guide-card:hover .related-guide-card-img img {
  transform: scale(1.05);
}
.related-guide-card-body {
  padding: 14px 16px 16px;
  background: var(--white);
}
.related-guide-card-title {
  font-family: var(--ff-display);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 600px) {
  .related-guide-card-img { height: 170px; }
}

/* SCROLL-TRIGGERED POPUP */
.guide-scroll-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: var(--white);
  border: 1.5px solid var(--saffron);
  border-radius: 14px;
  box-shadow: 0 24px 60px -12px rgba(31, 27, 22, 0.4);
  padding: 18px 18px 16px;
  opacity: 0;
  transform: translateY(24px) scale(0.95);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0s linear 0.4s;
}
.guide-scroll-popup.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0s linear 0s;
}
.guide-scroll-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink-soft);
  border: none;
  display: grid;
  place-items: center;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.guide-scroll-popup-close:hover {
  background: var(--ink);
  color: var(--white);
  transform: rotate(90deg);
}
.guide-scroll-popup-body {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-right: 22px;
}
.guide-scroll-popup-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFE7A3, #FF8F3F);
  display: grid;
  place-items: center;
  font-size: 28px;
}
.guide-scroll-popup-text {
  flex: 1;
}
.guide-scroll-popup-title {
  font-family: var(--ff-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}
.guide-scroll-popup-desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 8px;
}
.guide-scroll-popup-desc strong {
  color: var(--saffron-deep);
}
.guide-scroll-popup-cta {
  background: var(--grad-saffron);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s;
  width: 100%;
  font-family: inherit;
}
.guide-scroll-popup-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -4px rgba(233, 78, 27, 0.4);
}
@media (max-width: 600px) {
  .guide-scroll-popup {
    bottom: 90px;
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
    padding: 14px 14px 12px;
  }
  .guide-scroll-popup-icon { width: 48px; height: 48px; font-size: 24px; }
}

/* STICKY VERTICAL NEED HELP CHIP (right edge, vertical center) */
.guide-need-help-chip {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 100;
  background: var(--grad-saffron);
  color: var(--white);
  border: none;
  border-radius: 10px 0 0 10px;
  padding: 14px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: -4px 4px 16px -3px rgba(233, 78, 27, 0.45);
  font-family: inherit;
  transition: all 0.3s;
}
.guide-need-help-chip:hover {
  padding-right: 14px;
  box-shadow: -6px 4px 20px -3px rgba(233, 78, 27, 0.55);
}
.guide-nh-icon {
  font-size: 20px;
  line-height: 1;
}
.guide-nh-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media (max-width: 600px) {
  .guide-need-help-chip {
    padding: 12px 7px;
    border-radius: 8px 0 0 8px;
  }
  .guide-nh-icon { font-size: 18px; }
  .guide-nh-text { font-size: 9px; }
}


/* ===================================================================
   40. HOTELS PAGE — distinct teal theme with search hero, pills, grid
   ================================================================== */

/* HOTEL THEME COLORS */
:root {
  --hot-teal-deep: #00838F;
  --hot-teal: #4DD0E1;
  --hot-teal-light: #B2EBF2;
  --hot-teal-pale: #E0F7FA;
  --hot-bg-soft: #F0F9FA;
  --hot-text-mute: #607D8B;
  --hot-border: #C8E6E9;
}

/* HERO with photo bg + search overlay */
.hot-hero {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: var(--hot-teal-deep);
}
.hot-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hot-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
/* Slow ken-burns zoom on active slide for cinematic feel */
.banner-slide.is-active .hot-hero-bg img {
  animation: pkgHeroKenBurns 12s ease-out forwards;
}

.hot-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 77, 90, 0.55), rgba(0, 77, 90, 0.7));
}
.hot-hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 18px 28px;
  text-align: center;
}
.hot-hero-pill {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.hot-hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(20px, 3.6vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 8px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
  max-width: 720px;
}
.hot-hero-tag {
  font-size: clamp(12px, 1.4vw, 14px);
  color: var(--white);
  opacity: 0.95;
  margin: 0 0 22px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  max-width: 600px;
}

/* SEARCH BAR overlay */
.hot-hero-search {
  background: var(--white);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.4);
  display: flex;
  gap: 6px;
  align-items: center;
  width: 100%;
  max-width: 620px;
}
.hot-search-field {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  flex: 1;
  border-right: 1px solid var(--line-soft);
  min-width: 0;
}
.hot-search-field:last-of-type { flex: 0.7; }
.hot-search-field i {
  font-size: 14px;
  color: var(--hot-teal-deep);
  flex-shrink: 0;
}
.hot-search-field input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: inherit;
  color: var(--ink);
  background: transparent;
  min-width: 0;
}
.hot-search-field input::placeholder { color: var(--hot-text-mute); }
.hot-search-btn {
  background: var(--grad-saffron);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border: none;
  padding: 9px 18px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-family: inherit;
  box-shadow: 0 4px 12px -3px rgba(233, 78, 27, 0.4);
  transition: all 0.25s;
}
.hot-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -3px rgba(233, 78, 27, 0.5);
}
.hot-search-btn i { font-size: 12px; }

@media (max-width: 768px) {
  .hot-hero { height: 280px; }
  .hot-hero-content { padding: 18px 14px 20px; }
  .hot-hero-search {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 6px;
  }
  .hot-search-field {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
    padding: 8px 10px;
  }
  .hot-search-field:nth-last-of-type(1) { border-bottom: none; }
  .hot-search-btn { width: 100%; justify-content: center; padding: 10px; font-size: 13px; }
}
@media (max-width: 480px) {
  .hot-hero { height: 320px; }
}

/* BREADCRUMB */
.hot-breadcrumb {
  background: var(--white);
  padding: 10px 0;
  font-size: 12.5px;
  border-bottom: 1px solid var(--line-soft);
}
.hot-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hot-breadcrumb a {
  color: var(--hot-text-mute);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hot-breadcrumb a:hover { color: var(--hot-teal-deep); }
.hot-breadcrumb i { font-size: 10px; color: #B0BEC5; }
.hot-breadcrumb .current { color: var(--ink); font-weight: 600; }

/* STAT STRIP — horizontal teal-gradient bar */
.hot-stat-strip {
  background: linear-gradient(90deg, var(--hot-teal-deep) 0%, var(--hot-teal) 50%, var(--hot-teal-deep) 100%);
  color: var(--white);
}
.hot-stat-strip-inner {
  padding: 16px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.hot-stat {
  text-align: center;
  flex: 1;
}
.hot-stat-num {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 700;
  line-height: 1;
}
.hot-stat-label {
  font-size: clamp(10px, 1.1vw, 12px);
  opacity: 0.95;
  margin-top: 4px;
}
.hot-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hot-stat-strip-inner { padding: 12px 0; }
  .hot-stat-sep { height: 28px; }
}

/* INTRO */
.hot-intro {
  padding: 28px 0 22px;
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
.hot-intro .container { max-width: 800px; }
.hot-intro-title {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}
.hot-intro-lead {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 600px) {
  .hot-intro { padding: 22px 0 18px; }
}

/* CATEGORY PILLS */
.hot-cats {
  padding: 22px 0 24px;
  background: var(--hot-bg-soft);
  border-bottom: 1px solid var(--hot-border);
}
.hot-cats-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.hot-cats-title {
  font-family: var(--ff-display);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.hot-cats-meta {
  font-size: 12px;
  color: var(--hot-text-mute);
}
.hot-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hot-pill {
  background: var(--white);
  border: 1px solid #B0BEC5;
  color: var(--ink);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px 8px 12px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.25s;
}
.hot-pill:hover {
  border-color: var(--hot-teal-deep);
  color: var(--hot-teal-deep);
  background: var(--hot-teal-pale);
}
.hot-pill.is-active {
  background: var(--hot-teal-deep);
  border-color: var(--hot-teal-deep);
  color: var(--white);
  box-shadow: 0 4px 10px -3px rgba(0, 131, 143, 0.4);
}
.hot-pill-ico { font-size: 14px; line-height: 1; }
.hot-pill-count {
  background: #ECEFF1;
  color: #455A64;
  font-size: 10.5px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: var(--radius-pill);
  line-height: 1.5;
}
.hot-pill.is-active .hot-pill-count {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}
@media (max-width: 768px) {
  .hot-pills-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .hot-pills-row::-webkit-scrollbar { display: none; }
  .hot-pill {
    flex-shrink: 0;
    font-size: 12px;
    padding: 7px 12px 7px 10px;
  }
}

/* FEATURED STAYS GRID */
.hot-grid-section {
  padding: 32px 0 36px;
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
}
.hot-grid-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  gap: 12px;
  flex-wrap: wrap;
}
.hot-grid-title {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hot-grid-title i {
  color: #FFB800;
  font-size: 0.95em;
}
.hot-grid-all {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--hot-teal-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}
.hot-grid-all:hover { color: var(--saffron-deep); transform: translateX(2px); }
.hot-grid-all i { font-size: 11px; }

.hot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 991px) {
  .hot-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
  .hot-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* HOTEL CARD */
.hot-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px -4px rgba(31, 27, 22, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}
.hot-card:hover {
  transform: translateY(-4px);
  border-color: var(--hot-teal-deep);
  box-shadow: 0 18px 36px -10px rgba(0, 131, 143, 0.22);
}

.hot-card-imglink {
  display: block;
  text-decoration: none;
  color: inherit;
}
.hot-card-img {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: var(--cream);
}
.hot-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hot-card:hover .hot-card-img img {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .hot-card-img { height: 180px; }
}

.hot-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 1;
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.25);
}
.hot-card-badge.hot-badge-deal { background: #C62828; }
.hot-card-badge.hot-badge-tag { background: var(--hot-teal-deep); }

.hot-card-photos {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  z-index: 1;
}
.hot-card-photos i { font-size: 10px; }

.hot-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.hot-card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.hot-card-stars {
  background: #FFD700;
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}
.hot-card-type {
  font-size: 10.5px;
  color: var(--hot-text-mute);
  font-weight: 500;
}
.hot-card-score { display: none; }
/* Hide "Most loved by pilgrim families" review banner + "Why Stay With Us?" feature grid on all hotel pages */
.hot-loved, .hot-why { display: none; }
.hot-card-title {
  font-family: var(--ff-display);
  font-size: clamp(14px, 1.4vw, 15.5px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}
.hot-card-title a {
  color: inherit;
  text-decoration: none;
}
.hot-card-title a:hover { color: var(--hot-teal-deep); }
.hot-card-loc {
  font-size: 11.5px;
  color: var(--hot-text-mute);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hot-card-loc i {
  color: var(--saffron-deep);
  font-size: 11px;
}

.hot-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.hot-card-chip {
  font-size: 10px;
  background: var(--hot-bg-soft);
  color: #455A64;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1.4;
}

.hot-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  padding-top: 10px;
  margin-top: auto;
  border-top: 1px dashed var(--line-soft);
}
.hot-card-price {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hot-card-price-orig {
  font-family: var(--ff-rupee);
  font-size: 10px;
  font-feature-settings: "tnum" 1, "lnum" 1;
  color: #999;
  text-decoration: line-through;
  line-height: 1;
}
.hot-card-price-now {
  font-family: var(--ff-rupee);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  color: var(--hot-teal-deep);
  line-height: 1;
}
.hot-card-price-now small {
  font-family: var(--ff-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--hot-text-mute);
}
.hot-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--grad-saffron);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.25s;
  box-shadow: 0 4px 10px -3px rgba(233, 78, 27, 0.3);
}
.hot-card-cta:hover {
  transform: translateX(2px);
  color: var(--white);
  box-shadow: 0 6px 14px -3px rgba(233, 78, 27, 0.45);
}
.hot-card-cta i { font-size: 9px; }

/* MOST LOVED testimonial bar */
.hot-loved {
  background: linear-gradient(90deg, #FFE7A3, #FFD6BD);
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.hot-loved-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hot-loved-icon {
  font-size: 28px;
  flex-shrink: 0;
  color: #C62828;
  line-height: 1;
}
.hot-loved-text { flex: 1; }
.hot-loved-title {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.hot-loved-quote {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0;
  font-style: italic;
  line-height: 1.5;
}
.hot-loved-cta {
  background: var(--hot-teal-deep);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  transition: all 0.25s;
}
.hot-loved-cta:hover {
  background: #006064;
  color: var(--white);
  transform: translateX(2px);
}
.hot-loved-cta i { font-size: 11px; }
@media (max-width: 600px) {
  .hot-loved-inner { flex-wrap: wrap; gap: 10px; }
  .hot-loved-icon { font-size: 22px; }
  .hot-loved-cta {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

/* WHY US */
.hot-why {
  padding: 32px 0 36px;
  background: linear-gradient(180deg, var(--white) 0%, var(--hot-bg-soft) 100%);
  border-bottom: 1px solid var(--hot-border);
}
.hot-why .container { max-width: 980px; }
.hot-why-title {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0 0 8px;
}
.hot-why-lead {
  font-size: clamp(12px, 1.3vw, 14px);
  color: var(--ink-soft);
  text-align: center;
  margin: 0 auto 22px;
  max-width: 720px;
}
.hot-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.hot-why-feat {
  background: var(--white);
  border: 1px solid var(--hot-border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s;
}
.hot-why-feat:hover {
  transform: translateY(-3px);
  border-color: var(--hot-teal-deep);
  box-shadow: 0 12px 24px -10px rgba(0, 131, 143, 0.18);
}
.hot-why-feat i {
  font-size: 24px;
  color: var(--hot-teal-deep);
  margin-bottom: 4px;
}
.hot-why-feat strong {
  font-family: var(--ff-display);
  font-size: 13px;
  color: var(--ink);
}
.hot-why-feat span {
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.45;
}
@media (max-width: 768px) {
  .hot-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hot-why-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.hot-faq {
  padding: 32px 0 40px;
  background: var(--white);
}
.hot-faq-title {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0 0 22px;
}

/* ==================================================================
   MULTI-BANNER SLIDER (packages, category, package-detail)
   ================================================================== */
.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.banner-slider-track {
  position: relative;
  width: 100%;
  height: 360px;
}
.banner-slider--detail .banner-slider-track {
  height: 70vh;
  min-height: 480px;
  max-height: 640px;
}
.banner-slider .banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  z-index: 1;
}
.banner-slider .banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.banner-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, background 0.2s;
}
.banner-slide-cta:hover {
  transform: translateY(-2px);
  background: var(--gold-soft, #FFE7A3);
  color: var(--ink);
}
.banner-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  border-radius: 50%;
  color: #1f1410;
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: background 0.2s, transform 0.2s;
}
.banner-slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}
.banner-slider-prev { left: 16px; }
.banner-slider-next { right: 16px; }
.banner-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
  padding: 0;
  margin: 0;
}
.banner-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.banner-slider-dot.is-active {
  background: var(--gold-soft, #FFE7A3);
  border-color: var(--gold-soft, #FFE7A3);
  width: 28px;
  border-radius: 5px;
}
.banner-slider--detail .banner-slider-dots { bottom: 18px; }
@media (max-width: 768px) {
  .banner-slider-track { height: 220px; }
  .banner-slider--detail .banner-slider-track {
    height: 56vh;
    min-height: 380px;
  }
  .banner-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .banner-slider-prev { left: 8px; }
  .banner-slider-next { right: 8px; }
  .banner-slide-cta { padding: 8px 16px; font-size: 12px; margin-top: 10px; }
}

/* ==================================================================
   BOOKING PAGE — multi-step pilgrimage booking flow
   ================================================================== */
.booking-hero {
  position: relative;
  background: linear-gradient(135deg, #FF8F3F 0%, #E94E1B 60%, #7A1F44 100%);
  padding: 40px 0 30px;
  color: #fff;
  overflow: hidden;
}
.booking-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 231, 163, 0.25), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.18), transparent 40%);
  pointer-events: none;
}
.booking-hero .container { position: relative; z-index: 1; }
.booking-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin: 0 0 6px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.booking-hero p {
  font-size: 14px;
  margin: 0;
  opacity: 0.95;
}
.booking-hero .breadcrumbs {
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  font-size: 12px;
}
.booking-hero .breadcrumbs a { color: #fff; text-decoration: none; }
.booking-hero .breadcrumbs .current { color: var(--gold-soft, #FFE7A3); }

/* Step progress bar */
.booking-progress {
  background: #fff;
  border-bottom: 1px solid rgba(233, 78, 27, 0.18);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.booking-step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  font-size: 12px;
  color: var(--ink-mute, #8a7a6e);
  font-weight: 600;
  text-align: center;
}
.booking-step-item::before {
  content: '';
  position: absolute;
  top: 16px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: rgba(233, 78, 27, 0.2);
  z-index: 0;
}
.booking-step-item:first-child::before { display: none; }
.booking-step-item.is-done::before { background: var(--saffron, #E94E1B); }
.booking-step-num {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(233, 78, 27, 0.3);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 6px;
  transition: all 0.3s;
}
.booking-step-item.is-active .booking-step-num {
  background: var(--saffron, #E94E1B);
  border-color: var(--saffron, #E94E1B);
  color: #fff;
  box-shadow: 0 4px 14px rgba(233, 78, 27, 0.35);
}
.booking-step-item.is-done .booking-step-num {
  background: #1B8F4A;
  border-color: #1B8F4A;
  color: #fff;
}
.booking-step-item.is-active .booking-step-label { color: var(--saffron, #E94E1B); }
.booking-step-item.is-done .booking-step-label { color: #1B8F4A; }

/* Booking grid layout */
.booking-section { padding: 30px 0 60px; background: var(--off-white, #FBF6EE); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: flex-start;
}
.booking-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(233, 78, 27, 0.1);
}
.booking-step-pane { display: none; }
.booking-step-pane.is-active { display: block; animation: bookFadeIn 0.4s ease; }
@keyframes bookFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.booking-step-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink, #1f1410);
  margin: 0 0 6px;
}
.booking-step-sub {
  color: var(--ink-soft, #5a4b41);
  font-size: 14px;
  margin: 0 0 22px;
}

/* Form fields */
.booking-field { margin-bottom: 18px; }
.booking-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink, #1f1410);
  margin-bottom: 6px;
}
.booking-field .form-control,
.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(233, 78, 27, 0.2);
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: var(--saffron, #E94E1B);
  box-shadow: 0 0 0 3px rgba(233, 78, 27, 0.15);
}
.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Travellers stepper */
.booking-travellers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.booking-trav-item {
  background: #FFF8F2;
  border: 1.5px solid rgba(233, 78, 27, 0.18);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.booking-trav-item .trav-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft, #5a4b41);
  margin-bottom: 2px;
}
.booking-trav-item .trav-sub {
  display: block;
  font-size: 10px;
  color: var(--ink-mute, #8a7a6e);
  margin-bottom: 8px;
}
.booking-trav-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.booking-trav-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--saffron, #E94E1B);
  background: #fff;
  color: var(--saffron, #E94E1B);
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1;
}
.booking-trav-btn:hover { background: var(--saffron, #E94E1B); color: #fff; }
.booking-trav-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.booking-trav-count {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink, #1f1410);
  min-width: 22px;
  text-align: center;
}

/* Sharing / Pickup option cards */
.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.booking-option {
  position: relative;
  display: block;
  background: #fff;
  border: 1.5px solid rgba(233, 78, 27, 0.2);
  border-radius: 12px;
  padding: 14px 14px 14px 40px;
  cursor: pointer;
  transition: all 0.2s;
}
.booking-option input { position: absolute; opacity: 0; }
.booking-option::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(233, 78, 27, 0.4);
  border-radius: 50%;
  background: #fff;
  transition: all 0.2s;
}
.booking-option.is-selected,
.booking-option:has(input:checked) {
  border-color: var(--saffron, #E94E1B);
  background: #FFF8F2;
  box-shadow: 0 4px 14px rgba(233, 78, 27, 0.12);
}
.booking-option.is-selected::before,
.booking-option:has(input:checked)::before {
  border-color: var(--saffron, #E94E1B);
  background: radial-gradient(circle, var(--saffron, #E94E1B) 50%, #fff 55%);
}
.booking-option .opt-title {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink, #1f1410);
}
.booking-option .opt-sub {
  display: block;
  font-size: 12px;
  color: var(--ink-soft, #5a4b41);
  margin-top: 2px;
}
.booking-option .opt-price {
  display: block;
  font-family: var(--ff-rupee);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  color: var(--saffron-deep, #C73E0E);
  margin-top: 4px;
}

/* Add-on checkbox cards */
.booking-addon {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1.5px solid rgba(233, 78, 27, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.booking-addon input { position: absolute; opacity: 0; }
.booking-addon .addon-check {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(233, 78, 27, 0.4);
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.booking-addon .addon-check i {
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s;
}
.booking-addon:has(input:checked) {
  border-color: var(--saffron, #E94E1B);
  background: #FFF8F2;
}
.booking-addon:has(input:checked) .addon-check {
  background: var(--saffron, #E94E1B);
  border-color: var(--saffron, #E94E1B);
}
.booking-addon:has(input:checked) .addon-check i { opacity: 1; }
.booking-addon-body { flex: 1; }
.booking-addon-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink, #1f1410);
  display: block;
}
.booking-addon-sub {
  font-size: 12px;
  color: var(--ink-soft, #5a4b41);
  display: block;
  margin-top: 2px;
}
.booking-addon-price {
  font-family: var(--ff-rupee);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  color: var(--saffron-deep, #C73E0E);
  white-space: nowrap;
}

/* Payment method cards */
.booking-payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.booking-payment {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid rgba(233, 78, 27, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.booking-payment input { position: absolute; opacity: 0; }
.booking-payment .pay-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #FFE7A3, #FFB97A);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--saffron-deep, #C73E0E);
  flex-shrink: 0;
}
.booking-payment:has(input:checked) {
  border-color: var(--saffron, #E94E1B);
  background: #FFF8F2;
  box-shadow: 0 4px 14px rgba(233, 78, 27, 0.12);
}
.booking-payment-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink, #1f1410);
}

/* Booking actions (prev/next) */
.booking-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dashed rgba(233, 78, 27, 0.2);
}
.booking-actions .btn { min-width: 130px; }

/* Sidebar — booking summary */
.booking-summary {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(233, 78, 27, 0.12);
  position: sticky;
  top: 90px;
}
.booking-summary-head {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(233, 78, 27, 0.18);
  margin-bottom: 16px;
}
.booking-summary-thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FFB97A, #E94E1B);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
}
.booking-summary-title {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink, #1f1410);
  margin: 0 0 4px;
}
.booking-summary-route {
  font-size: 12px;
  color: var(--ink-soft, #5a4b41);
  margin: 0;
}
.booking-summary-route i { color: var(--saffron, #E94E1B); }
.booking-summary-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 13px;
}
.booking-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  color: var(--ink-soft, #5a4b41);
}
.booking-summary-list li strong { color: var(--ink, #1f1410); font-weight: 700; }
.booking-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 2px solid rgba(233, 78, 27, 0.2);
  margin-top: 8px;
}
.booking-summary-total-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink, #1f1410);
}
.booking-summary-total-amount {
  font-family: var(--ff-rupee);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  color: var(--saffron-deep, #C73E0E);
}
.booking-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 11px;
  color: var(--ink-soft, #5a4b41);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(233, 78, 27, 0.18);
}
.booking-trust-strip span { display: inline-flex; align-items: center; gap: 4px; }
.booking-trust-strip i { color: #1B8F4A; }

/* Success screen */
.booking-success {
  text-align: center;
  padding: 40px 20px;
}
.booking-success-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B8F4A, #117A3F);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 48px;
  box-shadow: 0 12px 28px rgba(27, 143, 74, 0.28);
  animation: bookSuccessPop 0.5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes bookSuccessPop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.booking-success h2 {
  font-family: var(--ff-display);
  color: var(--ink, #1f1410);
  margin: 0 0 10px;
}
.booking-success p { color: var(--ink-soft, #5a4b41); max-width: 480px; margin: 0 auto 22px; }
.booking-id-badge {
  display: inline-block;
  background: #FFF8F2;
  border: 1.5px dashed var(--saffron, #E94E1B);
  border-radius: 10px;
  padding: 10px 18px;
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--saffron-deep, #C73E0E);
  margin: 10px 0 22px;
}

@media (max-width: 991px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
}
@media (max-width: 560px) {
  .booking-form-card { padding: 20px 18px; }
  .booking-row { grid-template-columns: 1fr; }
  .booking-travellers { grid-template-columns: 1fr; }
  .booking-step-label { display: none; }
  .booking-actions { flex-direction: column-reverse; }
  .booking-actions .btn { width: 100%; }
}

/* ==================================================================
   PICKUP / DROPPING SEARCH FILTER
   ================================================================== */
.pdrop-search {
  position: relative;
  margin: 4px 0 16px;
}
.pdrop-search .pdrop-search-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--saffron, #E94E1B);
  font-size: 16px;
  pointer-events: none;
  z-index: 1;
}
.pdrop-search input {
  width: 100%;
  padding: 11px 42px;
  border: 1.5px solid rgba(233, 78, 27, 0.25);
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
  color: var(--ink, #1f1410);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.pdrop-search input::-webkit-search-cancel-button { -webkit-appearance: none; }
.pdrop-search input:focus {
  outline: none;
  border-color: var(--saffron, #E94E1B);
  box-shadow: 0 0 0 3px rgba(233, 78, 27, 0.15);
}
.pdrop-search input::placeholder { color: var(--ink-mute, #8a7a6e); }
.pdrop-search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--ink-mute, #8a7a6e);
  cursor: pointer;
  display: none;
  padding: 6px;
  font-size: 16px;
  line-height: 1;
}
.pdrop-search-clear:hover { color: var(--saffron, #E94E1B); }
.pdrop-search.has-text .pdrop-search-clear { display: block; }
.pdrop-search-count {
  font-size: 12px;
  color: var(--ink-mute, #8a7a6e);
  margin-top: 6px;
  padding-left: 4px;
  display: none;
}
.pdrop-search.has-text + .pdrop-search-count { display: block; }
.pdrop-no-results {
  padding: 24px 16px;
  text-align: center;
  color: var(--ink-soft, #5a4b41);
  background: #FFF8F2;
  border: 1.5px dashed rgba(233, 78, 27, 0.3);
  border-radius: 10px;
  font-size: 14px;
}
.pdrop-no-results i { color: var(--saffron-deep, #C73E0E); font-size: 20px; display: block; margin-bottom: 6px; }
.pdrop-card.is-hidden { display: none !important; }
.pdrop-card mark {
  background: rgba(255, 215, 0, 0.45);
  color: inherit;
  padding: 0 1px;
  border-radius: 2px;
  font-weight: 700;
}

/* ==================================================================
   PACKAGE BOOKING — 5-STEP WIZARD (bk-* prefix)
   ================================================================== */
.bk-page { background: #F4F5F7; }

/* ---- Head ---- */
.bk-head {
  background: linear-gradient(135deg, #FFF1DC 0%, #FFF8F2 100%);
  padding: 22px 0 18px;
  border-bottom: 1px solid var(--line-soft, #F8EFE0);
}
.bk-crumbs {
  font-size: 12px;
  color: var(--ink-mute, #7A7269);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.bk-crumbs a { color: var(--ink-soft, #4A433C); text-decoration: none; }
.bk-crumbs a:hover { color: var(--saffron-deep, #C73E0E); }
.bk-crumbs i { font-size: 10px; color: var(--ink-mute); }
.bk-crumbs-current { color: var(--saffron-deep, #C73E0E); font-weight: 600; }
.bk-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.bk-pkg-name {
  font-family: var(--ff-display);
  font-size: clamp(20px, 3.4vw, 28px);
  font-weight: 700;
  color: var(--ink, #1F1B16);
  margin: 0 0 6px;
  line-height: 1.2;
}
.bk-pkg-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft, #4A433C);
}
.bk-pkg-meta i { color: var(--saffron-deep, #C73E0E); }
.bk-pkg-code strong {
  font-family: var(--ff-sans);
  letter-spacing: 0.5px;
  color: var(--saffron-deep, #C73E0E);
}
.bk-pkg-dot { color: var(--ink-mute, #7A7269); opacity: 0.6; }
.bk-head-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-soft, #4A433C);
  font-weight: 600;
}
.bk-head-trust i { color: #1B8F4A; margin-right: 4px; }

/* ---- Stepper ---- */
.bk-stepper-wrap {
  background: #fff;
  border-bottom: 1px solid var(--line-soft, #F8EFE0);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.bk-stepper {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  counter-reset: bkstep;
}
.bk-stepper-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute, #7A7269);
  font-weight: 500;
}
.bk-stepper-item::after {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 2px;
  background: var(--line-soft, #F8EFE0);
  z-index: 0;
}
.bk-stepper-item:last-child::after { display: none; }
.bk-stepper-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line-soft, #F8EFE0);
  color: var(--ink-mute, #7A7269);
  display: grid;
  place-items: center;
  font-size: 15px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.bk-stepper-label {
  font-weight: 600;
  line-height: 1.2;
  transition: color 0.3s;
}
.bk-stepper-item.is-active .bk-stepper-num {
  background: linear-gradient(135deg, var(--saffron, #FF6B1A), var(--saffron-deep, #E94E1B));
  border-color: var(--saffron-deep, #E94E1B);
  color: #fff;
  box-shadow: 0 4px 12px rgba(233,78,27,0.3);
  transform: scale(1.08);
}
.bk-stepper-item.is-active .bk-stepper-label { color: var(--saffron-deep, #C73E0E); }
.bk-stepper-item.is-done .bk-stepper-num {
  background: #1B8F4A;
  border-color: #1B8F4A;
  color: #fff;
}
.bk-stepper-item.is-done::after { background: #1B8F4A; }
.bk-stepper-item.is-done .bk-stepper-label { color: #1B8F4A; }

/* ---- Section grid ---- */
.bk-section { padding: 24px 0 100px; }
.bk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: flex-start;
}
.bk-summary-col { display: none; }

/* ---- Accordion sections ---- */
.bk-wizard { display: flex; flex-direction: column; gap: 14px; }
.bk-acc {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line-soft, #F8EFE0);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.bk-acc.is-open { box-shadow: 0 8px 28px rgba(233,78,27,0.08); border-color: rgba(233,78,27,0.25); }
.bk-acc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s;
}
.bk-acc-head:hover { background: #FFFBF5; }
.bk-acc.is-open .bk-acc-head { background: linear-gradient(135deg, #FFF1DC 0%, #FFF8F2 100%); }
.bk-acc-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFE7CC;
  color: var(--saffron-deep, #C73E0E);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.bk-acc.is-open .bk-acc-num {
  background: linear-gradient(135deg, var(--saffron, #FF6B1A), var(--saffron-deep, #E94E1B));
  color: #fff;
}
.bk-acc.is-done .bk-acc-num {
  background: #1B8F4A;
  color: #fff;
}
.bk-acc.is-done .bk-acc-num::before { content: '\F26E'; font-family: 'bootstrap-icons'; }
.bk-acc.is-done .bk-acc-num > * { display: none; }
.bk-acc-title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink, #1F1B16);
  flex-shrink: 0;
}
.bk-acc-sum {
  margin-left: auto;
  font-size: 13px;
  color: var(--ink-mute, #7A7269);
  font-weight: 500;
  text-align: right;
  padding-right: 8px;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bk-acc.is-done .bk-acc-sum { color: #1B8F4A; font-weight: 600; }
.bk-acc-chev {
  color: var(--ink-mute, #7A7269);
  transition: transform 0.3s;
  font-size: 14px;
}
.bk-acc.is-open .bk-acc-chev { transform: rotate(180deg); color: var(--saffron-deep, #C73E0E); }
.bk-acc-body {
  display: none;
  padding: 22px;
  border-top: 1px solid var(--line-soft, #F8EFE0);
  animation: bkSlideIn 0.35s ease;
}
.bk-acc.is-open .bk-acc-body { display: block; }
@keyframes bkSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bk-acc-lead {
  font-size: 13.5px;
  color: var(--ink-soft, #4A433C);
  margin: 0 0 18px;
  line-height: 1.55;
}
.bk-acc-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(233,78,27,0.18);
}
.bk-acc-foot-back { justify-content: flex-start; border-top: 0; padding-top: 6px; margin-top: 14px; }

/* ---- Buttons ---- */
.bk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.bk-btn-primary {
  background: linear-gradient(135deg, var(--saffron, #FF6B1A), var(--saffron-deep, #E94E1B));
  color: #fff;
  box-shadow: 0 4px 14px rgba(233,78,27,0.3);
}
.bk-btn-primary:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(233,78,27,0.4); }
.bk-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }
.bk-btn-ghost {
  background: #fff;
  color: var(--ink-soft, #4A433C);
  border: 1.5px solid var(--line-soft, #F8EFE0);
}
.bk-btn-ghost:hover { background: #FFFBF5; border-color: var(--saffron, #FF6B1A); color: var(--saffron-deep, #C73E0E); }
.bk-btn-wa { background: #25D366; color: #fff; }
.bk-btn-wa:hover { background: #1FB955; color: #fff; transform: translateY(-2px); }
.bk-btn-pay {
  background: linear-gradient(135deg, #1B8F4A, #117A3F);
  color: #fff;
  font-size: 15px;
  padding: 13px 28px;
  box-shadow: 0 6px 18px rgba(27,143,74,0.35);
  flex: 1;
}
.bk-btn-pay:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(27,143,74,0.45); }

/* ---- Calendar ---- */
.bk-cal-wrap {
  background: #FFFBF5;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--line-soft, #F8EFE0);
  max-width: 460px; /* keep calendar compact on wide desktops */
  margin: 0 auto;
}
.bk-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.bk-cal-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line-soft, #F8EFE0);
  color: var(--ink-soft, #4A433C);
  cursor: pointer;
  display: grid; place-items: center;
  transition: all 0.2s;
}
.bk-cal-arrow:hover { background: var(--saffron, #FF6B1A); color: #fff; border-color: var(--saffron, #FF6B1A); }
.bk-cal-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink, #1F1B16);
}
.bk-cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  color: var(--ink-mute, #7A7269);
  font-weight: 600;
  margin-bottom: 6px;
}
.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bk-cal-day {
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid var(--line-soft, #F8EFE0);
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink, #1F1B16);
  cursor: pointer;
  transition: all 0.2s;
  display: grid;
  place-items: center;
  position: relative;
}
.bk-cal-day.is-blank { background: transparent; border-color: transparent; cursor: default; }
.bk-cal-day.is-avail { background: #E8F5EC; border-color: #C5E5CF; color: #117A3F; }
.bk-cal-day.is-avail:hover { background: #1B8F4A; color: #fff; border-color: #1B8F4A; transform: scale(1.05); }
.bk-cal-day.is-selected {
  background: linear-gradient(135deg, var(--saffron, #FF6B1A), var(--saffron-deep, #E94E1B)) !important;
  color: #fff !important;
  border-color: var(--saffron-deep, #E94E1B) !important;
  box-shadow: 0 4px 10px rgba(233,78,27,0.35);
  transform: scale(1.05);
}
.bk-cal-day.is-disabled { background: #F4F0EA; color: #C5BDB1; cursor: not-allowed; }
.bk-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  margin-top: 12px;
  color: var(--ink-soft, #4A433C);
}
.bk-cal-dot {
  display: inline-block;
  width: 11px; height: 11px;
  border-radius: 3px;
  margin-right: 4px;
  vertical-align: middle;
}
.bk-cal-dot.is-avail { background: #1B8F4A; }
.bk-cal-dot.is-selected { background: var(--saffron-deep, #E94E1B); }
.bk-cal-dot.is-disabled { background: #C5BDB1; }
.bk-selected-date {
  margin-top: 14px;
  background: #FFF1DC;
  border: 1px dashed var(--saffron, #FF6B1A);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink, #1F1B16);
}
.bk-selected-date i { color: var(--saffron-deep, #C73E0E); font-size: 18px; }
.bk-selected-date strong { color: var(--saffron-deep, #C73E0E); }

/* ---- Seats ---- */
.bk-seat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--ink-soft, #4A433C);
}
.bk-seat-key {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 4px;
  margin-right: 5px;
  vertical-align: middle;
  border: 1px solid transparent;
}
.bk-seat-key.is-avail { background: #fff; border-color: #C5E5CF; }
.bk-seat-key.is-booked { background: #D8D0C5; border-color: #C5BDB1; }
.bk-seat-key.is-female { background: #FFD5E5; border-color: #FFB1CC; }
.bk-seat-key.is-selected { background: var(--saffron-deep, #E94E1B); }
.bk-bus {
  background: #FFFBF5;
  border: 2px solid var(--line-soft, #F8EFE0);
  border-radius: 22px;
  padding: 18px 14px 22px;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
}
.bk-bus-driver {
  font-size: 11px;
  color: var(--ink-mute, #7A7269);
  text-align: right;
  padding-right: 6px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line-soft, #F8EFE0);
  margin-bottom: 14px;
  font-weight: 600;
}
.bk-bus-driver i { color: var(--saffron-deep, #C73E0E); }
.bk-bus-grid { display: flex; flex-direction: column; gap: 8px; }
.bk-bus-row {
  display: grid;
  grid-template-columns: 36px 36px 14px 36px 36px;
  gap: 8px;
  justify-content: center;
}
.bk-aisle { background: transparent; }
.bk-seat {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #fff;
  border: 1.5px solid #C5E5CF;
  color: var(--ink, #1F1B16);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  font-family: inherit;
}
.bk-seat:hover:not(:disabled):not(.is-selected) { transform: scale(1.1); border-color: var(--saffron, #FF6B1A); }
.bk-seat.is-booked {
  background: #D8D0C5;
  border-color: #C5BDB1;
  color: #8a7f70;
  cursor: not-allowed;
  text-decoration: line-through;
}
.bk-seat.is-female {
  background: #FFD5E5;
  border-color: #FFB1CC;
  color: #C73E5E;
}
.bk-seat.is-female:hover:not(.is-selected) { background: #FFC1D5; }
.bk-seat.is-selected {
  background: var(--saffron-deep, #E94E1B);
  border-color: var(--saffron-deep, #E94E1B);
  color: #fff;
  box-shadow: 0 4px 10px rgba(233,78,27,0.3);
}
.bk-seat-info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 14px 16px;
  background: #FFF1DC;
  border-radius: 10px;
}
.bk-seat-info-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink-mute, #7A7269);
  margin-bottom: 4px;
}
.bk-seat-info-val {
  display: block;
  font-weight: 700;
  color: var(--ink, #1F1B16);
  font-size: 14px;
}

/* ---- Boarding/Dropping ---- */
.bk-bp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.bk-bp-grid.bk-bp-grid--single { grid-template-columns: 1fr; }
.bk-bp-col-head h3 {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink, #1F1B16);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bk-bp-col-head h3 i { color: var(--saffron-deep, #C73E0E); }
.bk-bp-search {
  position: relative;
  margin-bottom: 12px;
}
.bk-bp-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-mute, #7A7269);
  font-size: 14px;
}
.bk-bp-search input {
  width: 100%;
  padding: 9px 12px 9px 34px;
  border: 1px solid var(--line-soft, #F8EFE0);
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  background: #fff;
}
.bk-bp-search input:focus {
  outline: 0;
  border-color: var(--saffron, #FF6B1A);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.12);
}
.bk-bp-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
}
.bk-bp-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: #fff;
  border: 1.5px solid var(--line-soft, #F8EFE0);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.bk-bp-card:hover { border-color: var(--saffron, #FF6B1A); background: #FFFBF5; }
.bk-bp-card input { position: absolute; opacity: 0; pointer-events: none; }
.bk-bp-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid #C5BDB1;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.bk-bp-radio::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--saffron-deep, #E94E1B);
  transform: scale(0);
  transition: transform 0.2s;
}
.bk-bp-card.is-selected {
  border-color: var(--saffron-deep, #E94E1B);
  background: #FFF1DC;
  box-shadow: 0 2px 10px rgba(233,78,27,0.12);
}
.bk-bp-card.is-selected .bk-bp-radio { border-color: var(--saffron-deep, #E94E1B); }
.bk-bp-card.is-selected .bk-bp-radio::after { transform: scale(1); }
.bk-bp-body { flex: 1; min-width: 0; }
.bk-bp-name {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink, #1F1B16);
  margin-bottom: 3px;
}
.bk-bp-meta {
  font-size: 11.5px;
  color: var(--ink-mute, #7A7269);
}
.bk-bp-meta i { margin-right: 2px; }

/* ---- Passenger form ---- */
.bk-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bk-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  grid-column: span 2;
}
.bk-field-half { grid-column: span 1; }
.bk-field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink, #1F1B16);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.bk-field label > i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(233, 78, 27, 0.1);
  color: var(--saffron-deep, #C73E0E);
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
}
.bk-req { color: var(--saffron-deep, #C73E0E); margin-left: 2px; }
/* Form stacks to single column on tablet too (was only 640px) */
@media (max-width: 768px) {
  .bk-form-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .bk-field,
  .bk-field-half { grid-column: auto !important; }
  .bk-field input, .bk-field select { font-size: 16px; padding: 12px 14px; } /* prevent iOS zoom */
  .bk-mobile-row { width: 100%; }
}
.bk-field input,
.bk-field select {
  padding: 11px 14px;
  border: 1.5px solid var(--line-soft, #F8EFE0);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  color: var(--ink, #1F1B16);
  transition: all 0.2s;
}
.bk-field input:focus,
.bk-field select:focus {
  outline: 0;
  border-color: var(--saffron, #FF6B1A);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.12);
}
.bk-field input.is-invalid,
.bk-field select.is-invalid {
  border-color: #E94E1B;
  box-shadow: 0 0 0 3px rgba(233,78,27,0.12);
}
.bk-field-err {
  font-size: 12px;
  color: #C73E0E;
  min-height: 14px;
}
.bk-field-hint {
  font-size: 11.5px;
  color: var(--ink-mute, #7A7269);
}
.bk-mobile-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1.5px solid var(--line-soft, #F8EFE0);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.bk-mobile-row:focus-within {
  border-color: var(--saffron, #FF6B1A);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.12);
}
.bk-mobile-prefix {
  padding: 11px 12px;
  background: #FFFBF5;
  color: var(--ink-soft, #4A433C);
  font-weight: 600;
  font-size: 14px;
  border-right: 1px solid var(--line-soft, #F8EFE0);
}
.bk-mobile-row input {
  flex: 1;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 11px 12px;
  font-size: 14px;
  min-width: 0;
}
.bk-otp-btn {
  background: var(--saffron-deep, #E94E1B);
  color: #fff;
  border: 0;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.bk-otp-btn:hover:not(:disabled) { background: #B33510; }
.bk-otp-btn:disabled { background: #1B8F4A; cursor: default; opacity: 0.85; }
.bk-otp-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}
.bk-otp-row input {
  flex: 0 0 140px;
  padding: 9px 12px;
  font-size: 13px;
  letter-spacing: 4px;
  text-align: center;
}
.bk-otp-verify {
  background: #1B8F4A;
  color: #fff;
  border: 0;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.bk-otp-verify:hover { background: #117A3F; }
.bk-otp-status { font-size: 11.5px; }
.bk-otp-status.is-info { color: var(--ink-soft, #4A433C); }
.bk-otp-status.is-ok { color: #1B8F4A; font-weight: 600; }
.bk-otp-status.is-err { color: #C73E0E; }

/* ---- Preview Card — tile grid (no hero; section heading + sticky bar already show package context) ---- */
.bk-preview-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line-soft, #F8EFE0);
  margin-bottom: 18px;
  box-shadow: 0 6px 20px -10px rgba(31, 27, 22, 0.08);
  padding: 14px;
}
.bk-preview-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bk-preview-tile {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #FFFBF5;
  border: 1px solid var(--line-soft, #F8EFE0);
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bk-preview-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -8px rgba(31, 27, 22, 0.12);
  border-color: rgba(233, 78, 27, 0.25);
}
.bk-preview-tile--wide { grid-column: span 3; }
.bk-preview-tile-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFB97A, #E94E1B);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -3px rgba(233, 78, 27, 0.4);
}
.bk-preview-tile-icon.tone-up {
  background: linear-gradient(135deg, #6FCF7F, #1B8F4A);
  box-shadow: 0 4px 10px -3px rgba(27, 143, 74, 0.4);
}
.bk-preview-tile-icon.tone-down {
  background: linear-gradient(135deg, #FCA5A5, #B91C1C);
  box-shadow: 0 4px 10px -3px rgba(185, 28, 28, 0.4);
}
.bk-preview-tile-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.bk-preview-tile-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute, #7A7269);
}
.bk-preview-tile-value {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink, #1F1B16);
  line-height: 1.35;
  word-break: break-word;
}
@media (max-width: 768px) {
  .bk-preview-card { padding: 12px; }
  .bk-preview-tiles { grid-template-columns: repeat(2, 1fr); }
  .bk-preview-tile--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .bk-preview-tiles { grid-template-columns: 1fr; }
  .bk-preview-tile--wide { grid-column: span 1; }
}
.bk-price-card {
  background: #fff;
  border: 2px solid var(--saffron, #FF6B1A);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.bk-price-head {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink, #1F1B16);
}
.bk-price-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 14px;
  color: var(--ink-soft, #4A433C);
}
.bk-price-total {
  border-top: 2px dashed rgba(233,78,27,0.25);
  margin-top: 6px;
  padding-top: 12px;
  font-family: var(--ff-rupee);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  color: var(--saffron-deep, #C73E0E);
}
/* CANCELLATION POLICY — innovative tiered cards */
.bk-policy {
  background: #fff;
  border: 1px solid var(--line-soft, #F8EFE0);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px -6px rgba(31, 27, 22, 0.08);
}
.bk-policy-head {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--ink, #1F1B16);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bk-policy-head i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(27, 143, 74, 0.15);
  color: #1B8F4A;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
}
/* Booking page now uses .cancel-tier-* classes (shared with details page) — just keep tip styling */
.bk-policy-tip {
  margin: 14px 0 0;
  padding: 10px 14px;
  background: #FFFBF5;
  border-radius: 8px;
  border-left: 3px solid var(--saffron, #FF6B1A);
  font-size: 12.5px;
  color: var(--ink-soft, #4A433C);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.bk-policy-tip i {
  color: var(--saffron-deep, #C73E0E);
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}
.bk-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft, #4A433C);
  padding: 10px 0 16px;
  cursor: pointer;
}
.bk-terms input { margin-top: 3px; accent-color: var(--saffron-deep, #E94E1B); }
.bk-terms a { color: var(--saffron-deep, #C73E0E); font-weight: 600; }
.bk-pay-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.bk-pay-actions .bk-btn-wa { flex: 0 0 auto; }
.bk-pay-actions .bk-btn-pay { flex: 1 1 200px; }

/* ---- Trust badges row ---- */
.bk-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.bk-trust-item {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line-soft, #F8EFE0);
}
.bk-trust-item i {
  font-size: 24px;
  color: var(--saffron-deep, #C73E0E);
  flex-shrink: 0;
}
.bk-trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink, #1F1B16);
}
.bk-trust-item span {
  display: block;
  font-size: 11.5px;
  color: var(--ink-mute, #7A7269);
}

/* ---- Right summary (desktop) ---- */
.bk-summary {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.06);
  border: 1px solid rgba(233,78,27,0.15);
  position: sticky;
  top: 90px;
}
.bk-summary-head {
  display: flex;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(233,78,27,0.18);
  margin-bottom: 14px;
}
.bk-summary-thumb {
  width: 56px; height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFB97A, #E94E1B);
  display: grid; place-items: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}
.bk-summary-title {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink, #1F1B16);
  margin: 0 0 4px;
  line-height: 1.3;
}
.bk-summary-route {
  font-size: 12px;
  color: var(--ink-soft, #4A433C);
  margin: 0;
}
.bk-summary-route i { color: var(--saffron-deep, #C73E0E); }
.bk-summary-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  font-size: 12.5px;
}
.bk-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  color: var(--ink-mute, #7A7269);
}
.bk-summary-list li strong { color: var(--ink, #1F1B16); font-weight: 600; text-align: right; }
.bk-summary-price {
  padding-top: 12px;
  border-top: 1px dashed rgba(233,78,27,0.18);
}
.bk-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-soft, #4A433C);
  padding: 4px 0;
}
.bk-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 10px;
  margin-top: 6px;
  border-top: 2px solid rgba(233,78,27,0.25);
  font-family: var(--ff-rupee);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum" 1, "lnum" 1;
  color: var(--saffron-deep, #C73E0E);
}
.bk-summary-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  color: var(--ink-soft, #4A433C);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(233,78,27,0.18);
}
.bk-summary-trust i { color: #1B8F4A; margin-right: 3px; }

/* ---- STICKY PAY STRIP (replaces old mob-bar; shows on all viewports) ---- */
.bk-pay-strip {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--line-soft, #F8EFE0);
  box-shadow: 0 -8px 28px -6px rgba(0,0,0,0.12);
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
}
.bk-pay-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}
.bk-pay-strip-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.bk-pay-strip-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute, #7A7269);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.bk-pay-strip-label i { font-size: 12px; color: var(--saffron-deep, #C73E0E); }
.bk-pay-strip-amt-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.bk-pay-strip-amount {
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: -0.02em;
  font-size: 24px;
  font-weight: 700;
  color: var(--saffron-deep, #C73E0E);
  line-height: 1;
}
.bk-pay-strip-breakup {
  background: #fff;
  border: 1.5px solid var(--saffron-deep, #C73E0E);
  color: var(--saffron-deep, #C73E0E);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s;
}
.bk-pay-strip-breakup:hover { background: rgba(233,78,27,0.08); }
.bk-pay-strip-breakup i { font-size: 11px; transition: transform 0.25s; }
.bk-pay-strip-breakup.is-open i { transform: rotate(180deg); }
.bk-pay-strip-sub {
  font-size: 11px;
  color: var(--ink-mute, #7A7269);
  margin-top: 2px;
}
.bk-pay-strip-cta {
  background: linear-gradient(135deg, #1B8F4A 0%, #0E6B36 100%);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 13px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 18px -4px rgba(14, 107, 54, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bk-pay-strip-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(14, 107, 54, 0.6);
}
.bk-pay-strip-cta i:first-child { font-size: 13px; }
.bk-pay-strip-cta i:last-child { font-size: 13px; opacity: 0.9; }

/* ---- TOAST notification (replaces native alert) ---- */
.bk-toast {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translate(-50%, -120%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: calc(100vw - 32px);
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(233, 78, 27, 0.25);
  border-left: 5px solid var(--saffron-deep, #C73E0E);
  border-radius: 12px;
  box-shadow: 0 20px 40px -8px rgba(31, 27, 22, 0.25), 0 4px 14px rgba(31, 27, 22, 0.1);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
  pointer-events: none;
}
.bk-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.bk-toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-saffron);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(233, 78, 27, 0.45);
  animation: bkToastPulse 1.4s ease-in-out infinite;
}
@keyframes bkToastPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.bk-toast-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}
.bk-toast-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--saffron-deep, #C73E0E);
}
.bk-toast-msg {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink, #1F1B16);
  line-height: 1.4;
}
.bk-toast-close {
  background: rgba(31, 27, 22, 0.06);
  border: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--ink-mute, #7A7269);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.bk-toast-close:hover {
  background: var(--ink, #1F1B16);
  color: #fff;
}

/* Shake animation for terms checkbox + invalid fields when toast fires */
.bk-terms.is-shake,
.bk-field input.is-shake,
.bk-field select.is-shake,
.bk-field textarea.is-shake {
  animation: bkTermsShake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes bkTermsShake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

@media (max-width: 480px) {
  .bk-toast { min-width: 0; left: 16px; right: 16px; transform: translate(0, -120%); padding: 10px 12px; }
  .bk-toast.is-visible { transform: translate(0, 0); }
  .bk-toast-icon { width: 32px; height: 32px; font-size: 14px; }
  .bk-toast-msg { font-size: 13px; }
}

/* ============================================================
   TERMS CONFIRMATION MODAL
   ============================================================ */
.bk-tc-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.bk-tc-modal.is-open { opacity: 1; }
.bk-tc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 20, 16, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.bk-tc-modal-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bk-tc-modal.is-open .bk-tc-modal-card { transform: scale(1) translateY(0); }
.bk-tc-modal-head {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 20px 24px;
  background: var(--grad-saffron);
  color: #fff;
  position: relative;
}
.bk-tc-modal-head::before {
  content: 'ॐ';
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-deva);
  font-size: 4.5rem;
  color: rgba(255,255,255,0.14);
  pointer-events: none;
  line-height: 1;
}
.bk-tc-modal-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: grid;
  place-items: center;
  font-size: 20px;
  z-index: 1;
}
.bk-tc-modal-titleblock { z-index: 1; }
.bk-tc-modal-titleblock h3 {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.bk-tc-modal-titleblock p {
  font-size: 12.5px;
  margin: 2px 0 0;
  color: rgba(255,255,255,0.92);
}
.bk-tc-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 13px;
  z-index: 1;
  transition: background 0.2s, transform 0.3s;
}
.bk-tc-modal-close:hover { background: #fff; color: var(--saffron-deep); transform: rotate(90deg); }
.bk-tc-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 24px;
  scrollbar-width: thin;
}
.bk-tc-list {
  list-style: none;
  counter-reset: tc-counter;
  padding: 0;
  margin: 0;
}
.bk-tc-list li {
  counter-increment: tc-counter;
  position: relative;
  padding: 10px 0 10px 38px;
  font-size: 13.5px;
  color: var(--ink-soft, #4A433C);
  line-height: 1.55;
  border-bottom: 1px dashed rgba(31,27,22,0.08);
}
.bk-tc-list li:last-child { border-bottom: 0; }
.bk-tc-list li::before {
  content: counter(tc-counter);
  position: absolute;
  left: 0;
  top: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(233, 78, 27, 0.1);
  color: var(--saffron-deep, #C73E0E);
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.bk-tc-list strong { color: var(--ink, #1F1B16); font-weight: 700; }
.bk-tc-modal-foot {
  padding: 16px 24px 20px;
  background: #FFFBF5;
  border-top: 1px solid var(--line-soft, #F8EFE0);
}
.bk-tc-confirm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 14px;
  user-select: none;
}
.bk-tc-confirm-check input { position: absolute; opacity: 0; pointer-events: none; }
.bk-tc-confirm-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(233, 78, 27, 0.4);
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.2s;
  margin-top: 1px;
}
.bk-tc-confirm-box i {
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.15s;
}
.bk-tc-confirm-check input:checked ~ .bk-tc-confirm-box {
  background: var(--grad-saffron);
  border-color: var(--saffron-deep, #C73E0E);
}
.bk-tc-confirm-check input:checked ~ .bk-tc-confirm-box i { opacity: 1; }
.bk-tc-confirm-text {
  font-size: 13.5px;
  color: var(--ink, #1F1B16);
  font-weight: 600;
  line-height: 1.4;
}
.bk-tc-confirm-btn {
  width: 100%;
  background: linear-gradient(135deg, #1B8F4A 0%, #0E6B36 100%);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 22px -6px rgba(14, 107, 54, 0.45);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.bk-tc-confirm-btn:not(:disabled):hover { transform: translateY(-2px); box-shadow: 0 14px 28px -6px rgba(14, 107, 54, 0.6); }
.bk-tc-confirm-btn:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; }

/* ============================================================
   PAYMENT PROCESSING OVERLAY
   ============================================================ */
.bk-processing {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(31, 20, 16, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.bk-processing.is-open { opacity: 1; }
.bk-processing-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 30px;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
}
.bk-processing-spinner {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}
.bk-processing-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad-saffron);
  animation: bkSpinDots 1.2s infinite ease-in-out;
}
.bk-processing-dot:nth-child(2) { animation-delay: 0.2s; }
.bk-processing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes bkSpinDots {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}
.bk-processing-card h3 {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink, #1F1B16);
}
.bk-processing-card p {
  font-size: 13px;
  color: var(--ink-soft, #4A433C);
  line-height: 1.5;
  margin: 0 0 18px;
}
.bk-processing-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1B8F4A;
  background: rgba(27, 143, 74, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ============================================================
   RESULT PAGE — Success / Failure (now standalone pages)
   ============================================================ */
body.page-package-result { background: #F4F5F7; padding-bottom: 110px; }
/* Hide the main site footer on booking flow + result pages (kept on home/listing pages) */
body.page-package-booking .footer,
body.page-package-result .footer { display: none; }

/* ============================================================
   QUOTE SUCCESS POPUP — confirmation after Get Free Quote submit
   ============================================================ */
.qs-overlay {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background: rgba(31, 20, 16, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.qs-overlay.is-open { opacity: 1; }
.qs-card {
  background: #fff;
  border-radius: 22px;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  transform: scale(0.92) translateY(24px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.qs-overlay.is-open .qs-card { transform: scale(1) translateY(0); }

.qs-header {
  position: relative;
  text-align: center;
  padding: 26px 24px 22px;
  background: linear-gradient(135deg, #1B8F4A 0%, #0E6B36 100%);
  color: #fff;
}
.qs-tick {
  width: 76px;
  height: 76px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px dashed rgba(255,255,255,0.5);
  display: grid;
  place-items: center;
  animation: qsPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes qsPop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.qs-tick svg { width: 50px; height: 50px; }
.qs-tick circle { stroke: #fff; stroke-width: 3; opacity: 0.5; }
.qs-tick path { stroke: #fff; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 60; stroke-dashoffset: 60; animation: qsDraw 0.5s 0.3s ease-out forwards; }
@keyframes qsDraw { to { stroke-dashoffset: 0; } }
.qs-header h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
}
.qs-header p {
  font-size: 13px;
  margin: 0;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
}
.qs-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 13px;
  transition: background 0.2s, transform 0.3s;
}
.qs-close:hover { background: #fff; color: #1B8F4A; transform: rotate(90deg); }

.qs-body { padding: 20px 22px; }
.qs-refrow {
  background: linear-gradient(135deg, #FFF7EC, #FFE7C2);
  border: 1.5px dashed rgba(233, 78, 27, 0.4);
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  margin-bottom: 16px;
}
.qs-reflabel {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron-deep, #C73E0E);
  margin-bottom: 1px;
}
.qs-refval {
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink, #1F1B16);
}
.qs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line-soft, #F8EFE0);
  border-radius: 12px;
  background: #FFFBF5;
  overflow: hidden;
}
.qs-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px dashed rgba(31,27,22,0.07);
}
.qs-list li:last-child { border-bottom: 0; }
.qs-li-msg {
  flex-direction: column;
  align-items: flex-start !important;
  gap: 4px;
}
.qs-li-msg span[data-qs] {
  font-size: 12.5px;
  color: var(--ink-soft, #4A433C);
  line-height: 1.45;
  font-weight: 500;
}
.qs-k {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-mute, #7A7269);
  font-weight: 600;
  font-size: 12px;
}
.qs-k i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(233, 78, 27, 0.1);
  color: var(--saffron-deep, #C73E0E);
  display: inline-grid;
  place-items: center;
  font-size: 11px;
}
.qs-list strong {
  font-weight: 700;
  color: var(--ink, #1F1B16);
  text-align: right;
  font-size: 13px;
  word-break: break-word;
}

.qs-promise {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(27, 143, 74, 0.08);
  border: 1px solid rgba(27, 143, 74, 0.2);
  border-radius: 12px;
}
.qs-promise i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6FCF7F, #1B8F4A);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}
.qs-promise strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #117A3F;
  margin-bottom: 2px;
}
.qs-promise span {
  display: block;
  font-size: 12px;
  color: var(--ink-soft, #4A433C);
  line-height: 1.45;
}

.qs-footer {
  display: flex;
  gap: 10px;
  padding: 0 22px 22px;
}
.qs-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.qs-btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 8px 18px -4px rgba(18, 140, 126, 0.45);
}
.qs-btn-wa:hover { transform: translateY(-2px); color: #fff; }
.qs-btn-done {
  background: #fff;
  color: var(--ink, #1F1B16);
  border: 1.5px solid var(--line-soft, #F8EFE0);
}
.qs-btn-done:hover { background: var(--cream, #FFF6E8); }

@media (max-width: 480px) {
  .qs-header { padding: 22px 20px 18px; }
  .qs-header h3 { font-size: 19px; }
  .qs-tick { width: 64px; height: 64px; }
  .qs-tick svg { width: 42px; height: 42px; }
  .qs-body { padding: 16px 18px; }
  .qs-footer { flex-direction: column; padding: 0 18px 18px; }
  .qs-list li { padding: 9px 12px; }
  .qs-list strong { font-size: 12.5px; }
}
.bk-result-page {
  padding: 36px 20px 30px;
}
.bk-result-demolink {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-soft, #F8EFE0);
  font-size: 12.5px;
  color: var(--ink-mute, #7A7269);
  text-align: center;
}
.bk-result-demolink a {
  color: var(--saffron-deep, #C73E0E);
  font-weight: 700;
  text-decoration: none;
  margin-left: 4px;
}
.bk-result-demolink a:hover { text-decoration: underline; }
.bk-result-card {
  background: #fff;
  border-radius: 20px;
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 32px 32px;
  box-shadow: 0 20px 60px -16px rgba(31, 27, 22, 0.18);
  text-align: center;
  animation: bkResultRise 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
@keyframes bkResultRise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.bk-result-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -6px;
}
.bk-result-icon svg { width: 92px; height: 92px; }
.bk-result-circle { stroke-width: 3; opacity: 0; animation: bkResultDraw 0.5s 0.1s ease-out forwards; }
.bk-result-check, .bk-result-x {
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: bkResultDrawStroke 0.5s 0.4s ease-out forwards;
}
@keyframes bkResultDraw { to { opacity: 1; } }
@keyframes bkResultDrawStroke { to { stroke-dashoffset: 0; } }

.bk-result-icon--success {
  background: linear-gradient(135deg, #6FCF7F 0%, #1B8F4A 100%);
  box-shadow-color: rgba(27, 143, 74, 0.4);
  box-shadow: 0 12px 28px -6px rgba(27, 143, 74, 0.4);
}
.bk-result-icon--success .bk-result-circle { stroke: #fff; }
.bk-result-icon--success .bk-result-check { stroke: #fff; }

.bk-result-icon--fail {
  background: linear-gradient(135deg, #FCA5A5 0%, #B91C1C 100%);
  box-shadow: 0 12px 28px -6px rgba(185, 28, 28, 0.4);
}
.bk-result-icon--fail .bk-result-circle { stroke: #fff; }
.bk-result-icon--fail .bk-result-x { stroke: #fff; }

.bk-result-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.bk-result-tag--success { background: rgba(27, 143, 74, 0.12); color: #117A3F; }
.bk-result-tag--fail { background: rgba(185, 28, 28, 0.12); color: #B91C1C; }

.bk-result-title {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink, #1F1B16);
  margin: 0 0 8px;
}
.bk-result-sub {
  font-size: 14px;
  color: var(--ink-soft, #4A433C);
  line-height: 1.55;
  margin: 0 0 22px;
}
.bk-result-sub strong { color: var(--saffron-deep, #C73E0E); font-weight: 700; }
.bk-result-bookid {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  background: linear-gradient(135deg, #FFF7EC, #FFE7C2);
  border: 1.5px dashed rgba(233, 78, 27, 0.4);
  padding: 10px 22px;
  border-radius: 12px;
  margin: 0 0 22px;
}
.bk-result-bookid-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron-deep, #C73E0E);
}
.bk-result-bookid-val {
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink, #1F1B16);
}
.bk-result-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 22px;
}
.bk-result-summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #FFFBF5;
  border: 1px solid var(--line-soft, #F8EFE0);
  border-radius: 12px;
  text-align: left;
}
.bk-result-summary-item i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-saffron);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -3px rgba(233, 78, 27, 0.4);
}
.bk-result-summary-item > div { min-width: 0; }
.bk-result-summary-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute, #7A7269);
}
.bk-result-summary-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink, #1F1B16);
  word-break: break-word;
  line-height: 1.3;
}
.bk-result-tip {
  margin: 0;
  padding: 12px 16px;
  background: #FFFBF5;
  border-left: 3px solid var(--saffron, #FF6B1A);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--ink-soft, #4A433C);
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.bk-result-tip i { color: var(--saffron-deep, #C73E0E); margin-top: 1px; flex-shrink: 0; }

/* Failure-specific */
.bk-result-failreason {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FEF2F2;
  border: 1px solid rgba(185, 28, 28, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  margin: 0 0 20px;
}
.bk-result-failreason i {
  font-size: 18px;
  color: #B91C1C;
  margin-top: 2px;
  flex-shrink: 0;
}
.bk-result-failreason strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #7F1D1D;
  margin-bottom: 6px;
}
.bk-result-failreason ul {
  margin: 0;
  padding-left: 18px;
  font-size: 12.5px;
  color: var(--ink-soft, #4A433C);
  line-height: 1.6;
}
.bk-result-failactions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.bk-result-retry,
.bk-result-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bk-result-retry {
  background: var(--grad-saffron);
  color: #fff;
  box-shadow: 0 8px 18px -4px rgba(233, 78, 27, 0.45);
}
.bk-result-retry:hover { transform: translateY(-2px); color: #fff; }
.bk-result-back {
  background: #fff;
  color: var(--ink-soft, #4A433C);
  border: 1.5px solid var(--line-soft, #F8EFE0);
}
.bk-result-back:hover { background: #FAF8F4; color: var(--ink, #1F1B16); }

/* Sticky 4-button bar on success */
.bk-result-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8810;
  background: #fff;
  border-top: 1px solid var(--line-soft, #F8EFE0);
  box-shadow: 0 -10px 28px -8px rgba(31, 27, 22, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 10px;
}
.bk-result-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  color: var(--ink, #1F1B16);
  transition: background 0.2s, transform 0.2s;
}
.bk-result-action:hover { background: rgba(31,27,22,0.04); transform: translateY(-1px); }
.bk-result-action-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 4px 10px -3px rgba(0,0,0,0.2);
}
.bk-result-action--wa .bk-result-action-icon { background: linear-gradient(135deg, #25D366, #128C7E); }
.bk-result-action--mail .bk-result-action-icon { background: linear-gradient(135deg, #FFB97A, #E94E1B); }
.bk-result-action--pdf .bk-result-action-icon { background: linear-gradient(135deg, #6B7280, #1F2937); }
.bk-result-action--cancel .bk-result-action-icon { background: linear-gradient(135deg, #FCA5A5, #DC2626); }
.bk-result-action-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink, #1F1B16);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .bk-result { padding: 24px 14px 110px; }
  .bk-result-card { padding: 30px 22px 24px; }
  .bk-result-icon { width: 72px; height: 72px; }
  .bk-result-icon svg { width: 72px; height: 72px; }
  .bk-result-title { font-size: 22px; }
  .bk-result-summary { grid-template-columns: 1fr; }
  .bk-result-action-label { font-size: 9.5px; }
  .bk-result-action-icon { width: 36px; height: 36px; font-size: 15px; }
}

/* Hide print elements on print */
@media print {
  .bk-result-bar, .pkg-context-bar, .bk-pay-strip, .bk-stepper-wrap, .footer, .mobile-app-nav { display: none !important; }
  .bk-result { position: static; background: #fff; padding: 0; }
}

/* ---- Break Up popover (slides up from strip top) ---- */
.bk-breakup-pop {
  position: absolute;
  left: 16px;
  bottom: calc(100% + 8px);
  width: min(380px, calc(100% - 32px));
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px -16px rgba(31, 27, 22, 0.35), 0 4px 14px rgba(31, 27, 22, 0.1);
  border: 1px solid rgba(31, 27, 22, 0.06);
  overflow: hidden;
  animation: bkBreakupRise 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes bkBreakupRise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bk-breakup-pop-head {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: var(--grad-saffron);
  color: #fff;
}
.bk-breakup-pop-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.bk-breakup-pop-text h4 {
  margin: 0;
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.bk-breakup-pop-text p {
  margin: 1px 0 0;
  font-size: 11.5px;
  opacity: 0.9;
}
.bk-breakup-pop-close {
  background: rgba(255,255,255,0.2);
  border: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 12px;
  transition: background 0.2s;
}
.bk-breakup-pop-close:hover { background: rgba(255,255,255,0.35); }
.bk-breakup-pop-body { padding: 12px 18px 16px; background: #FFFBF5; }
.bk-breakup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--ink-soft, #4A433C);
}
.bk-breakup-row span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.bk-breakup-row span:first-child i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(233, 78, 27, 0.1);
  color: var(--saffron-deep, #C73E0E);
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  flex-shrink: 0;
}
.bk-breakup-row span:last-child {
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-weight: 700;
  color: var(--ink, #1F1B16);
}
.bk-breakup-total span:first-child i {
  background: var(--grad-saffron);
  color: #fff;
  width: 30px;
  height: 30px;
  font-size: 14px;
  box-shadow: 0 4px 10px -2px rgba(233, 78, 27, 0.4);
}
.bk-breakup-total {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 2px dashed rgba(233, 78, 27, 0.25);
  font-size: 15px;
  font-weight: 700;
  color: var(--saffron-deep, #C73E0E);
}
.bk-breakup-total span:last-child {
  color: var(--saffron-deep, #C73E0E);
  font-size: 18px;
}

/* Mobile: compact strip */
@media (max-width: 768px) {
  .bk-pay-strip { padding: 10px 0 calc(10px + env(safe-area-inset-bottom)); }
  .bk-pay-strip-inner { gap: 10px; }
  .bk-pay-strip-amount { font-size: 20px; }
  .bk-pay-strip-cta { padding: 11px 16px; font-size: 13px; }
  .bk-pay-strip-cta i:last-child { display: none; } /* hide trailing arrow to save space */
  .bk-pay-strip-sub { display: none; }
  .bk-breakup-pop { left: 12px; width: calc(100% - 24px); }
}

/* ---- Success modal ---- */
.bk-modal {
  position: fixed;
  inset: 0;
  background: rgba(31,27,22,0.6);
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 20px;
}
.bk-modal-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 30px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  animation: bkSlideIn 0.4s ease;
}
.bk-modal-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B8F4A, #117A3F);
  color: #fff;
  font-size: 42px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 10px 28px rgba(27,143,74,0.3);
}
.bk-modal-card h2 {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink, #1F1B16);
}
.bk-modal-card p {
  color: var(--ink-soft, #4A433C);
  font-size: 14px;
  margin: 0 0 22px;
}
.bk-modal-card strong { color: var(--saffron-deep, #C73E0E); font-family: var(--ff-sans); letter-spacing: 1px; }
.bk-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .bk-section { padding-bottom: 110px; }
  .bk-bp-grid { grid-template-columns: 1fr; }
  body.bk-page .mobile-app-nav { display: none !important; }
}
@media (max-width: 640px) {
  .bk-stepper-label { display: none; }
  .bk-stepper-num { width: 32px; height: 32px; font-size: 13px; }
  .bk-stepper-item::after { top: 16px; }
  .bk-acc-head { padding: 14px 16px; gap: 10px; }
  .bk-acc-title { font-size: 15px; }
  .bk-acc-sum { font-size: 12px; max-width: 100px; }
  .bk-acc-body { padding: 18px 16px; }
  .bk-form-grid { grid-template-columns: 1fr; }
  .bk-field-half { grid-column: span 1; }
  .bk-trust-row { grid-template-columns: 1fr; }
  .bk-head-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .bk-pay-actions { flex-direction: column-reverse; }
  .bk-pay-actions .bk-btn-wa, .bk-pay-actions .bk-btn-pay { width: 100%; }
  .bk-acc-foot { flex-direction: column-reverse; }
  .bk-acc-foot .bk-btn { width: 100%; }
}

/* ============================================================
   HOTEL BOOKING — Step-specific components
   ============================================================ */
/* Nights callout (step 1) */
.hb-nights-callout {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #FFF7EC, #FFE7C2);
  border: 1.5px dashed rgba(233, 78, 27, 0.4);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink-soft, #4A433C);
}
.hb-nights-callout i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-saffron);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}
.hb-nights-callout strong {
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  color: var(--saffron-deep, #C73E0E);
  font-size: 16px;
  margin: 0 2px;
}

/* Room type cards (step 2) */
.hb-room-list { display: flex; flex-direction: column; gap: 12px; }
.hb-room-card {
  position: relative;
  display: grid;
  grid-template-columns: 24px 90px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--line-soft, #F8EFE0);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s;
}
.hb-room-card:hover { border-color: rgba(233, 78, 27, 0.4); transform: translateY(-2px); box-shadow: 0 10px 22px -10px rgba(31, 27, 22, 0.15); }
.hb-room-card input { position: absolute; opacity: 0; pointer-events: none; }
.hb-room-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(233, 78, 27, 0.35);
  display: grid;
  place-items: center;
  background: #fff;
  transition: all 0.2s;
}
.hb-room-radio i { color: #fff; font-size: 14px; opacity: 0; transition: opacity 0.15s; }
/* Card highlight when selected (does NOT touch the radio inner styling) */
.hb-room-card:has(input:checked) {
  border-color: var(--saffron-deep, #C73E0E);
  background: #FFFBF5;
  box-shadow: 0 10px 24px -10px rgba(233, 78, 27, 0.3);
}
/* Filled radio dot when selected */
.hb-room-card:has(input:checked) .hb-room-radio {
  background: var(--grad-saffron);
  border-color: var(--saffron-deep, #C73E0E);
  box-shadow: 0 4px 10px -2px rgba(233, 78, 27, 0.4);
}
.hb-room-card:has(input:checked) .hb-room-radio i { opacity: 1; }

.hb-room-thumb {
  width: 90px;
  height: 70px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 30px;
  color: #fff;
}
.hb-room-thumb--deluxe { background: linear-gradient(135deg, #5DADE2, #1B4F72); }
.hb-room-thumb--premier { background: linear-gradient(135deg, #BB8FCE, #6C3483); }
.hb-room-thumb--family { background: linear-gradient(135deg, #58D68D, #1E8449); }
.hb-room-body h3 { font-family: var(--ff-display); font-size: 18px; font-weight: 700; margin: 0 0 4px; color: var(--ink, #1F1B16); }
.hb-room-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12px; color: var(--ink-mute, #7A7269); margin: 0 0 6px; }
.hb-room-meta i { color: var(--saffron-deep, #C73E0E); margin-right: 3px; font-size: 11px; }
.hb-room-chips { display: flex; gap: 5px; flex-wrap: wrap; }
.hb-room-chips span { font-size: 11px; padding: 2px 8px; border-radius: 999px; background: var(--cream, #FFF6E8); color: var(--ink-soft, #4A433C); border: 1px solid var(--line-soft, #F8EFE0); }
.hb-room-price { text-align: right; flex-shrink: 0; }
.hb-room-price-amt {
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--saffron-deep, #C73E0E);
  display: block;
  line-height: 1.1;
}
.hb-room-price-sub { font-size: 11px; color: var(--ink-mute, #7A7269); }

/* Counter cards (step 3) */
.hb-counter-grid { display: flex; flex-direction: column; gap: 12px; }
.hb-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: #FFFBF5;
  border: 1px solid var(--line-soft, #F8EFE0);
  border-radius: 12px;
}
.hb-counter-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hb-counter-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink, #1F1B16);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hb-counter-label i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(233, 78, 27, 0.1);
  color: var(--saffron-deep, #C73E0E);
  display: inline-grid;
  place-items: center;
  font-size: 13px;
}
.hb-counter-hint { font-size: 12px; color: var(--ink-mute, #7A7269); margin-left: 34px; }
.hb-counter-hint strong { color: var(--saffron-deep, #C73E0E); }
.hb-counter-ctrl { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hb-counter-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line, #E8DECB);
  background: #fff;
  color: var(--saffron-deep, #C73E0E);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: all 0.2s;
}
.hb-counter-btn:hover { background: var(--saffron-deep, #C73E0E); color: #fff; border-color: var(--saffron-deep, #C73E0E); transform: scale(1.05); }
.hb-counter-val {
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink, #1F1B16);
  min-width: 28px;
  text-align: center;
}

@media (max-width: 768px) {
  .hb-room-card { grid-template-columns: 22px 1fr; grid-template-rows: auto auto; row-gap: 10px; padding: 12px; }
  .hb-room-thumb { display: none; }
  .hb-room-body { grid-column: 2; }
  .hb-room-price { grid-column: 1 / 3; text-align: left; display: flex; align-items: baseline; gap: 6px; }
  .hb-room-price-amt { font-size: 20px; }
}

/* ===================================================================
   AMUSEMENT PARKS — Banner, Park Cards, Entry Packages, Facilities
   (prefix .ap- to avoid overlap with existing classes)
   ================================================================== */

/* Full-width scrolling image banner (amusement-parks.html hero) */
.ap-banner-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0f0f10;
}
.ap-banner-track {
  display: flex;
  width: max-content;
  animation: apBannerScroll 45s linear infinite;
}
.ap-banner-track:hover { animation-play-state: paused; }
.ap-banner-slide {
  position: relative;
  flex: 0 0 auto;
  width: clamp(320px, 60vw, 720px);
  height: clamp(260px, 48vw, 480px);
  margin-right: 14px;
  overflow: hidden;
}
.ap-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.ap-banner-slide:hover img { transform: scale(1.05); }
.ap-banner-slide .ap-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 22px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.78) 100%);
  color: #fff;
}
.ap-banner-slide .ap-caption h3 {
  margin: 0 0 4px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #fff;
}
.ap-banner-slide .ap-caption span {
  font-size: 13px;
  color: #FFE7A3;
  font-weight: 500;
}
.ap-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  color: #fff;
  padding: 20px;
}
.ap-banner-overlay .breadcrumbs {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ap-banner-overlay .breadcrumbs a,
.ap-banner-overlay .breadcrumbs span { color: #fff; }
.ap-banner-overlay h1 {
  font-family: var(--ff-display, "Playfair Display", serif);
  font-size: clamp(32px, 5vw, 58px);
  margin: 0 0 12px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.ap-banner-overlay p {
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 720px;
  margin: 0 auto;
  color: #FFE7A3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
@keyframes apBannerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .ap-banner-slide { margin-right: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .ap-banner-track { animation: none; }
}

/* Section intro block (amusement parks listing) */
.ap-section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.ap-section-intro .ap-eyebrow {
  color: var(--saffron-deep, #E94E1B);
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 13px;
  text-transform: uppercase;
}
.ap-section-intro h2 {
  font-family: var(--ff-display, "Playfair Display", serif);
  font-size: clamp(28px, 4vw, 40px);
  margin: 10px 0 14px;
}
.ap-section-intro p {
  color: var(--ink-soft, #6b5d52);
  font-size: 16px;
  line-height: 1.7;
}

/* Park grid cards on amusement-parks.html */
.ap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}
.ap-card {
  background: #fff;
  border-radius: var(--radius, 16px);
  overflow: hidden;
  box-shadow: var(--sh-card, 0 8px 28px rgba(94,42,12,0.08));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.ap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(94,42,12,0.16);
}
.ap-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.ap-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ap-card:hover .ap-card-img img { transform: scale(1.08); }
.ap-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, #FF6B1A, #E94E1B);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(233,78,27,0.4);
}
.ap-card-price {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  color: var(--ink, #2a1810);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 30px;
  font-weight: 700;
}
.ap-card-price small {
  font-weight: 500;
  color: var(--ink-soft, #6b5d52);
  font-size: 11px;
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}
.ap-card-meta-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 14px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  color: #fff;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
}
.ap-card-meta-overlay span { display: inline-flex; align-items: center; gap: 5px; }
.ap-card-meta-overlay i { color: #FFE7A3; }
.ap-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ap-card-body h3 {
  font-size: 20px;
  margin: 0 0 8px;
  line-height: 1.3;
}
.ap-card-body h3 a { color: var(--ink, #2a1810); text-decoration: none; }
.ap-card-body h3 a:hover { color: var(--saffron-deep, #E94E1B); }
.ap-card-body p {
  color: var(--ink-soft, #6b5d52);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}
.ap-card-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.ap-card-features span {
  background: #FFF6E6;
  color: var(--saffron-deep, #E94E1B);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.ap-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed #f1e5d4;
}
.ap-card-foot .ap-rating {
  font-size: 13px;
  color: var(--ink-soft, #6b5d52);
}
.ap-card-foot .ap-rating strong {
  color: var(--saffron-deep, #E94E1B);
  font-size: 15px;
  margin-right: 4px;
}
.ap-card-foot .ap-rating i { color: var(--gold, #F5B800); margin: 0 4px 0 2px; }
.ap-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--saffron-deep, #E94E1B);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: gap 0.25s ease;
}
.ap-card-link:hover { gap: 10px; }

/* Bottom CTA block under the grid */
.ap-cta-block {
  text-align: center;
  margin-top: 50px;
}
.ap-cta-block > p {
  color: var(--ink-soft, #6b5d52);
  margin-bottom: 18px;
}
.ap-cta-block .btn-pair {
  justify-content: center;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Detail-page sections (amusement-park-detail.html content blocks) */
.ap-detail-section { background: #fff; }
.ap-detail-section.is-cream { background: linear-gradient(180deg, #fff8eb 0%, #ffffff 100%); }
.ap-detail-section h2 {
  font-family: var(--ff-display, "Playfair Display", serif);
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 14px;
  color: var(--ink, #2a1810);
}
.ap-detail-lede {
  color: var(--ink-soft, #6b5d52);
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 0;
}
.ap-detail-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 10px;
}
.ap-detail-head .ap-eyebrow {
  color: var(--saffron-deep, #E94E1B);
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 13px;
  text-transform: uppercase;
}
.ap-detail-head h2 { margin: 10px 0 14px; }
.ap-detail-head .ap-detail-lede { margin: 0 auto; }

/* Entry-package tiles on amusement-park-detail.html */
.ap-pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.ap-pkg-tile {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #f2e8d8;
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.ap-pkg-tile:hover {
  transform: translateY(-6px);
  border-color: #FF6B1A;
  box-shadow: 0 20px 40px rgba(233,78,27,0.18);
}
.ap-pkg-tile.is-popular {
  border-color: #FF6B1A;
  box-shadow: 0 16px 32px rgba(233,78,27,0.14);
}
.ap-pkg-tile-ribbon {
  position: absolute;
  top: 14px; right: -34px;
  background: linear-gradient(135deg, #E94E1B, #FF6B1A);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(35deg);
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.ap-pkg-tile-head {
  padding: 22px 22px 16px;
  text-align: center;
  background: linear-gradient(180deg, #fff8eb 0%, #ffffff 100%);
  border-bottom: 1px dashed #f1e5d4;
}
.ap-pkg-tile-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #FFE7A3, #FF6B1A);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 18px rgba(255,107,26,0.32);
}
.ap-pkg-tile-icon.is-blue   { background: linear-gradient(135deg, #C5E1FF, #4D9BFF); }
.ap-pkg-tile-icon.is-orange { background: linear-gradient(135deg, #FFB069, #E94E1B); }
.ap-pkg-tile-icon.is-gold   { background: linear-gradient(135deg, #FFD700, #B8860B); }
.ap-pkg-tile-icon.is-pink   { background: linear-gradient(135deg, #FF9FB5, #E94E76); }
.ap-pkg-tile-icon.is-green  { background: linear-gradient(135deg, #B5E7A0, #2D9C5A); }
.ap-pkg-tile-icon.is-sunset { background: linear-gradient(135deg, #FFAB6B, #D63E1E); }
.ap-pkg-tile-icon.is-purple { background: linear-gradient(135deg, #C39EE8, #6A1B9A); }
.ap-pkg-tile-name {
  font-family: var(--ff-display, "Playfair Display", serif);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--ink, #2a1810);
}
.ap-pkg-tile-tagline {
  font-size: 13px;
  color: var(--ink-soft, #6b5d52);
}
.ap-pkg-tile-price {
  text-align: center;
  padding: 18px 22px 14px;
}
.ap-pkg-tile-price .ap-strike {
  color: #a8998a;
  text-decoration: line-through;
  font-size: 14px;
  margin-right: 6px;
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: -0.01em;
}
.ap-pkg-tile-price .ap-amount {
  font-family: var(--ff-rupee);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--saffron-deep, #E94E1B);
}
.ap-pkg-tile-price .ap-per {
  display: block;
  font-size: 12px;
  color: var(--ink-soft, #6b5d52);
  margin-top: 2px;
}
.ap-pkg-tile-features {
  padding: 0 22px 18px;
  margin: 0;
  list-style: none;
  flex: 1;
}
.ap-pkg-tile-features li {
  padding: 7px 0 7px 26px;
  font-size: 14px;
  color: var(--ink, #2a1810);
  position: relative;
  line-height: 1.5;
}
.ap-pkg-tile-features li::before {
  content: "\F26B"; /* bi-check-circle-fill */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 8px;
  color: #2da44e;
  font-size: 14px;
}
.ap-pkg-tile-features li.is-muted { color: var(--ink-soft, #6b5d52); }
.ap-pkg-tile-features li.is-muted::before {
  content: "\F62A"; /* bi-x-circle */
  color: #c2b5a5;
}
.ap-pkg-tile-cta {
  margin: 0 22px 22px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #FF6B1A, #E94E1B);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ap-pkg-tile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(233,78,27,0.32);
  color: #fff;
}
.ap-pkg-tile.is-popular .ap-pkg-tile-cta {
  background: linear-gradient(135deg, #E94E1B, #5A1F2C);
}
.ap-pkg-note {
  text-align: center;
  margin-top: 30px;
  color: var(--ink-soft, #6b5d52);
  font-size: 14px;
}
.ap-pkg-note i { color: var(--saffron-deep, #E94E1B); }

/* Facilities grid */
.ap-facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.ap-facility-item {
  background: #fff8eb;
  padding: 18px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.ap-facility-item:hover {
  background: #FFEDD0;
  transform: translateX(4px);
}
.ap-facility-item i {
  font-size: 24px;
  color: var(--saffron-deep, #E94E1B);
  flex-shrink: 0;
}
.ap-facility-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink, #2a1810);
}

/* Combo CTA card (Shirdi + Park) */
.ap-combo-card {
  background: linear-gradient(135deg, #5A1F2C 0%, #E94E1B 100%);
  color: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.ap-combo-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,231,163,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.ap-combo-text {
  flex: 1;
  min-width: 280px;
  position: relative;
  z-index: 1;
}
.ap-combo-text h3 {
  font-family: var(--ff-display, "Playfair Display", serif);
  font-size: 28px;
  margin: 0 0 8px;
  color: #fff;
}
.ap-combo-text p {
  color: rgba(255,255,255,0.92);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.ap-combo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--saffron-deep, #E94E1B);
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}
.ap-combo-cta:hover {
  transform: translateY(-2px);
  color: var(--saffron-deep, #E94E1B);
}

@media (max-width: 640px) {
  .ap-combo-card { padding: 28px 22px; }
}

/* Small spacing utilities used on amusement-park pages */
.ap-mt-sm { margin-top: 14px; }
.ap-mb-md { margin-bottom: 24px; }
.ap-faq-container { max-width: 880px; }
