/* --- CUSTOM PROPERTIES (DESIGN SYSTEM) --- */
:root {
  /* Core Color System */
  --primary-deep-blue: #0B1A3A;
  --secondary-dark-blue: #071126;
  --primary-deep-blue-trans: rgba(11, 26, 58, 0.88);
  --secondary-dark-blue-trans: rgba(7, 17, 38, 0.88);
  --accent-gold: #D4A24C;
  --accent-saffron: #C44800;
  --accent-temple-red: #B23A2A;
  --bg-ivory: #FFF8EC;
  --bg-snow: #F4F6FA;

  /* Typography Scale */
  --font-display: 'Tiro Devanagari Hindi', 'Playfair Display', serif;
  --font-body: 'Noto Sans Devanagari', 'Inter', sans-serif;

  /* State/Animation Variables */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --box-shadow-gold: 0 8px 30px rgba(212, 162, 76, 0.18);
  --box-shadow-saffron: 0 8px 30px rgba(255, 122, 26, 0.35);
  
  /* Text Constants */
  --text-light: #F4F6FA;
  --text-dark: #1A253C;
  --text-muted: #8A9BB8;
}

/* --- BASE STYLING & GENERAL RESET --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--primary-deep-blue); /* Solid base background */
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: transparent; /* Transparent body to let background elements layer correctly */
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--primary-deep-blue);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 5px;
  border: 2px solid var(--primary-deep-blue);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-saffron);
}

/* --- COMMON UTILITIES & TYPOGRAPHY --- */
section {
  padding: 60px 5% 50px;
  position: relative;
}

.section-dark {
  background-color: transparent;
}

.section-light {
  background-color: var(--bg-snow);
  color: var(--text-dark);
}

.section-ivory {
  background-color: var(--bg-ivory);
  color: var(--text-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #FFF 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-gradient-title {
  background: linear-gradient(135deg, #C59B27 0%, #F5D380 50%, #C59B27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-header {
  text-align: center;
  margin-bottom: 35px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  position: relative;
}

.section-header p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Divider Mandala */
.mandala-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  opacity: 0.6;
}

.mandala-divider svg {
  width: 60px;
  height: 60px;
  fill: var(--accent-gold);
}

/* --- BUTTON STYLES --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  border: none;
  font-size: 1rem;
}

.btn-saffron {
  background-color: var(--accent-saffron);
  color: var(--text-light);
  padding: 0 32px;
  box-shadow: var(--box-shadow-saffron);
}

.btn-saffron:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 12px 35px rgba(255, 122, 26, 0.5);
}

.btn-orange {
  background: linear-gradient(135deg, #ff6600 0%, #ff4500 100%);
  color: var(--text-light);
  padding: 0 32px;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.btn-orange:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 12px 35px rgba(255, 69, 0, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, #F5D380 0%, #D4A24C 100%);
  color: var(--secondary-dark-blue);
  padding: 0 32px;
  box-shadow: var(--box-shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 12px 35px rgba(212, 162, 76, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  padding: 0 30px;
}

.btn-ghost:hover {
  background-color: var(--accent-gold);
  color: var(--secondary-dark-blue);
}

.btn-whatsapp {
  background-color: #0E6B61;
  color: white;
  padding: 0 32px;
  box-shadow: 0 8px 30px rgba(14, 107, 97, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(14, 107, 97, 0.5);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* --- S1: PRE-LOADER --- */
.skip-preloader #preloader {
  display: none !important;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--primary-deep-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.trishul-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 200px;
  height: 200px;
}

.trishul-svg {
  width: 130px;
  height: 130px;
  stroke: var(--accent-gold);
  stroke-width: 1.5;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  fill: none;
  animation: drawTrishul 1.6s forwards ease-in-out;
}

.om-symbol {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent-gold);
  position: absolute;
  top: 30%;
  opacity: 0;
  animation: fadeInOm 0.8s 1.2s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.loader-skip {
  position: absolute;
  bottom: 40px;
  right: 50px;
  color: var(--accent-gold);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--accent-gold);
  transition: var(--transition-smooth);
}

.loader-skip:hover {
  color: var(--accent-saffron);
  border-color: var(--accent-saffron);
}

/* --- S2: STICKY TOP NAV --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 8%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background-color: rgba(7, 17, 38, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 12px 8%;
  border-bottom: 1px solid rgba(212, 162, 76, 0.25);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

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

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

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-cta .btn {
  height: 42px;
  padding: 0 24px;
  font-size: 0.95rem;
}

/* Mobile Hamburger Menu */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-light);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

/* --- MOBILE BOTTOM STICKY BAR --- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: var(--secondary-dark-blue);
  z-index: 1000;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(212, 162, 76, 0.2);
}

.bottom-bar-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  height: 100%;
}

.bottom-call-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-deep-blue);
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-right: 1px solid rgba(212, 162, 76, 0.2);
}

.bottom-book-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-saffron);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

/* --- S3: HERO SECTION --- */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  animation: kenBurns 6s forwards ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 26, 58, 0.92) 35%, rgba(11, 26, 58, 0.5) 70%, rgba(11, 26, 58, 0.2) 100%),
              radial-gradient(circle at center, transparent 30%, rgba(11, 26, 58, 0.7) 100%);
  z-index: 2;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 10;
  margin-top: 60px;
}

.hero-content {
  color: var(--text-light);
}

.pre-heading-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(178, 58, 42, 0.2);
  border: 1px solid var(--accent-temple-red);
  color: #FFA595;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 15px rgba(178, 58, 42, 0.3);
}

.hero-content h1 {
  font-size: 4.8rem;
  line-height: 1.1;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.hero-content .sub-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.hero-meta-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.15rem;
  margin-bottom: 35px;
  opacity: 0.9;
}

.hero-meta-strip span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
}

.hero-trust-strip {
  display: flex;
  gap: 25px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
}

/* Floating Form Card */
.lead-card {
  background: rgba(7, 17, 38, 0.85);
  border: 1px solid rgba(212, 162, 76, 0.25);
  padding: 35px;
  border-radius: 16px;
  box-shadow: var(--box-shadow-gold);
  backdrop-filter: blur(8px);
}

.lead-card h2 {
  font-size: 1.6rem;
  color: var(--accent-gold);
  margin-bottom: 8px;
  text-align: center;
}

.lead-card p {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 25px;
}

.form-disclaimer {
  font-size: 0.72rem;
  opacity: 0.65;
  margin-top: 15px;
  text-align: center;
  line-height: 1.4;
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
}

.form-group {
  margin-bottom: 18px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.form-group input, .form-group select {
  width: 100%;
  background-color: rgba(11, 26, 58, 0.8);
  border: 1px solid rgba(212, 162, 76, 0.3);
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent-saffron);
  box-shadow: 0 0 10px rgba(255, 122, 26, 0.3);
}

.lead-card .btn {
  width: 100%;
  margin-top: 10px;
}

/* --- S4: WHY-AUGUST BANNER --- */
.why-august {
  padding: 60px 8%;
  background: linear-gradient(135deg, var(--secondary-dark-blue-trans) 0%, var(--primary-deep-blue-trans) 100%);
  border-top: 1px solid rgba(212, 162, 76, 0.2);
  border-bottom: 1px solid rgba(212, 162, 76, 0.2);
}

.why-august-banner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-august-banner h2 {
  font-size: 2.2rem;
  text-align: center;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.why-august-banner p.banner-punchline {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--text-light);
}

.why-august-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-august-card {
  background-color: rgba(7, 17, 38, 0.65);
  border: 1px solid rgba(212, 162, 76, 0.15);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease,
              background-color 0.4s ease;
  will-change: transform, box-shadow;
}

.why-august-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-gold);
  background-color: rgba(7, 17, 38, 0.85);
  box-shadow: 0 15px 35px rgba(212, 162, 76, 0.25);
}

.why-card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.why-august-card h3 {
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.why-august-card p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* --- S5: ITINERARY TIMELINE --- */
.itinerary-timeline {
  background-color: var(--secondary-dark-blue-trans);
}

.timeline-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.timeline-svg {
  position: absolute;
  width: 200px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.timeline-road-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 12px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-road-progress {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 12px;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(212, 162, 76, 0.6));
  stroke-dasharray: 10000;
  stroke-dashoffset: 10000;
}

.timeline-road-dashes {
  fill: none;
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 1.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 6, 6;
}

.timeline-tracker {
  position: absolute;
  width: 38px;
  height: 38px;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 0;
  z-index: 100;
  font-size: 1.4rem;
  background: var(--primary-deep-blue);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(212, 162, 76, 0.4);
}

.timeline-milestone {
  position: absolute;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  background-color: var(--primary-deep-blue);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 0 8px rgba(212, 162, 76, 0.3);
  pointer-events: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-milestone.active {
  background-color: var(--accent-gold);
  color: var(--primary-deep-blue);
  box-shadow: 0 0 12px rgba(212, 162, 76, 0.6);
  border-color: #ffffff;
}

.day-card {
  width: 50%;
  padding: 20px 40px;
  position: relative;
  transition: var(--transition-smooth);
}

.day-card::after {
  display: none;
}

.left-card {
  left: 0;
}

.right-card {
  left: 50%;
}

.right-card::after {
  left: -14px;
}

.day-card-content {
  background-color: rgba(11, 26, 58, 0.7);
  border: 1px solid rgba(212, 162, 76, 0.15);
  border-radius: 12px;
  padding: 25px;
  transition: var(--transition-smooth);
}

.day-card:hover .day-card-content {
  border-color: var(--accent-gold);
  box-shadow: var(--box-shadow-gold);
  transform: scale(1.02);
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 162, 76, 0.2);
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.day-badge {
  background-color: var(--accent-saffron);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 0.85rem;
}

.day-route {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 500;
}

.day-card-content h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.day-desc {
  font-size: 0.95rem;
  opacity: 0.85;
}

.day-toggle-trigger {
  display: inline-block;
  margin-top: 15px;
  color: var(--accent-gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.day-toggle-trigger:hover {
  color: var(--accent-saffron);
}

/* Expanded Itinerary Detail Drawer */
.day-details-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  border-top: 1px dashed rgba(212, 162, 76, 0.2);
  margin-top: 15px;
}

.day-details-expand.open {
  max-height: 500px;
  padding-top: 15px;
}

.detail-row {
  display: flex;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.detail-label {
  width: 100px;
  font-weight: 600;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.detail-val {
  opacity: 0.85;
}

/* Itinerary Persistent PDF request bar */
.pdf-request-bar {
  text-align: center;
  margin-top: 60px;
  background: rgba(7, 17, 38, 0.6);
  border: 1px solid rgba(212, 162, 76, 0.25);
  padding: 20px 40px;
  border-radius: 12px;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.pdf-request-bar p {
  display: inline-block;
  font-size: 1.1rem;
  margin-right: 20px;
  font-weight: 500;
}

/* --- S6: DESTINATION SHOWCASE --- */
.destinations-showcase {
  background-color: var(--primary-deep-blue-trans);
}

.destinations-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each tile */
.bento-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 162, 76, 0.15);
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.45s ease,
              box-shadow 0.45s ease;
  will-change: transform, box-shadow;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Dark gradient overlay so text is readable */
.bento-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 30px;
  background: linear-gradient(
    to top,
    rgba(7, 17, 38, 0.95) 0%,
    rgba(7, 17, 38, 0.3) 60%,
    transparent 100%
  );
  z-index: 2;
}

.bento-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent-gold);
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.bento-overlay p {
  font-size: 0.92rem;
  opacity: 0.9;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Small badge (e.g. ज्योतिर्लिंग, वैकुंठ धाम) */
.bento-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-saffron);
  border: 1px solid rgba(255, 122, 26, 0.4);
  background-color: rgba(255, 122, 26, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* CTA link */
.destination-link {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
  transition: var(--transition-smooth);
}

.destination-link:hover {
  border-bottom-color: var(--accent-saffron);
}

/* ===== TILE POSITIONS (the bento magic) ===== */
.bento-kedarnath {
  grid-column: 1 / 3;   /* spans 2 columns */
  grid-row: 1 / 3;     /* spans 2 rows */
  min-height: 500px;
}

.bento-yamunotri {
  grid-column: 3;
  grid-row: 1;
}

.bento-gangotri {
  grid-column: 3;
  grid-row: 2;
}

.bento-badrinath {
  grid-column: 1 / 4;   /* full width bottom */
  min-height: 240px;
  margin-top: 10px;
}

/* ===== HOVER EFFECTS ===== */
.bento-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(212, 162, 76, 0.25);
}

.bento-card:hover img {
  transform: scale(1.05);
}

.bento-card:hover .destination-link {
  color: var(--accent-saffron);
  border-bottom-color: var(--accent-saffron);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  .bento-card,
  .bento-card img {
    transition: none;
  }
  .bento-card:hover {
    transform: none;
  }
  .bento-card:hover img {
    transform: none;
  }
}

/* --- S7: WHAT'S INCLUDED GRID --- */
.what-included {
  background-color: var(--primary-deep-blue);
  color: var(--text-light);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.included-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 162, 76, 0.12);
  padding: 40px 30px;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  will-change: transform, box-shadow;
}

.included-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(212, 162, 76, 0.15);
}

.included-icon-box {
  font-size: 3rem;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(212, 162, 76, 0.15), rgba(230, 92, 0, 0.1));
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 162, 76, 0.25);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.included-card:hover .included-icon-box {
  transform: rotateY(360deg);
}

.included-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--accent-gold);
  font-weight: 700;
}

.included-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  opacity: 0.9;
}

.included-bottom-note {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-saffron);
}

/* --- S8: PHOTO GALLERY --- */
.darshan-gallery {
  background-color: var(--secondary-dark-blue-trans);
}

.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 8px 20px;
  background-color: rgba(11, 26, 58, 0.8);
  border: 1px solid rgba(212, 162, 76, 0.3);
  border-radius: 20px;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.filter-tab.active, .filter-tab:hover {
  background-color: var(--accent-gold);
  color: var(--secondary-dark-blue);
  border-color: var(--accent-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  border: 1px solid rgba(212, 162, 76, 0.1);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 17, 38, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 20px;
  text-align: center;
}

.gallery-overlay h3 {
  font-size: 1.25rem;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.gallery-overlay p {
  font-size: 0.85rem;
  opacity: 0.8;
}

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

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

/* Lightbox Modal CSS */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 17, 38, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border: 2px solid var(--accent-gold);
  border-radius: 8px;
}

.lightbox-caption {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-top: 15px;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
}

/* --- S9: TESTIMONIALS CAROUSEL --- */
.testimonials {
  background-color: var(--primary-deep-blue-trans);
}

.slider-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 15px 0;
  min-height: 280px;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slide.hybrid-slide {
  flex: 0 0 90%;
  min-width: 280px;
  scroll-snap-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: rgba(11, 26, 58, 0.6);
  border: 1px solid rgba(212, 162, 76, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.slide.hybrid-slide:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 40px rgba(212, 162, 76, 0.15);
}

.hybrid-video-column {
  width: 100%;
  flex-shrink: 0;
}

.hybrid-video-aspect {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 — YouTube thumbnail native ratio */
  background-color: #000;
  overflow: hidden;
}

.hybrid-video-aspect iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Click-to-play thumbnail styles */
.yt-thumb-wrap {
  cursor: pointer;
}

.yt-thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.yt-thumb-wrap:hover .yt-thumb-img {
  opacity: 0.85;
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.yt-thumb-wrap:hover .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.6));
}

.yt-play-btn .yt-play-bg {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.yt-thumb-wrap:hover .yt-play-btn .yt-play-bg {
  opacity: 1;
}

.hybrid-text-side {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  flex: 1;
}

.testimonial-rating {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.95;
  margin-bottom: 20px;
  color: #ffffff;
}

.yatri-info {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-top: auto;
}

.yatri-info span {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: block;
  margin-top: 4px;
}

/* Slider Arrow Navigation Buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 26, 58, 0.85);
  border: 1.5px solid rgba(212, 162, 76, 0.4);
  color: var(--accent-gold);
  font-size: 1.8rem;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.slider-arrow:hover {
  background: var(--accent-gold);
  color: var(--primary-deep-blue);
  border-color: #ffffff;
  box-shadow: 0 0 15px rgba(212, 162, 76, 0.5);
}

.arrow-left {
  left: 0;
}

.arrow-right {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(212, 162, 76, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--accent-gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--accent-gold);
}



@media (min-width: 768px) {
  .slide.hybrid-slide {
    flex: 0 0 75%;
    flex-direction: row;
    align-items: stretch;
    min-height: 320px;
  }
  
  .hybrid-video-column {
    width: 40%;
    flex-shrink: 0;
  }

  .hybrid-video-aspect {
    padding-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hybrid-video-column {
    position: relative;
  }
  
  .hybrid-text-side {
    width: 60%;
    padding: 30px;
  }
}

/* --- S10: PRICING & BOOKING BLOCK --- */
.pricing-booking {
  background-color: var(--secondary-dark-blue-trans);
}

.pricing-card-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.pricing-card {
  background: linear-gradient(135deg, var(--primary-deep-blue) 0%, rgba(11, 26, 58, 0.8) 100%);
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(212, 162, 76, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.corner-ribbon {
  position: absolute;
  top: 40px;
  right: -55px;
  background-color: var(--accent-temple-red);
  color: white;
  width: 200px;
  padding: 8px 0;
  font-weight: 700;
  font-size: 0.9rem;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.pricing-card h3 {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 25px;
}

.price-box {
  margin-bottom: 30px;
}

.price-main {
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-display);
}

.price-main span {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-tagline {
  font-size: 1.1rem;
  opacity: 0.95;
  color: #FFA595;
}

.deposit-note {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-light);
  border-top: 1px dashed rgba(212, 162, 76, 0.2);
  border-bottom: 1px dashed rgba(212, 162, 76, 0.2);
  padding: 15px 0;
}

.batch-info-note {
  background-color: rgba(212, 162, 76, 0.1);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 35px;
}

.countdown-item {
  background-color: var(--secondary-dark-blue);
  border: 1px solid rgba(212, 162, 76, 0.25);
  border-radius: 10px;
  padding: 15px;
  min-width: 80px;
}

.countdown-num {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--accent-gold);
  display: block;
}

.countdown-label {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* --- S11: FAQ ACCORDION --- */
.faq-accordion {
  background-color: var(--primary-deep-blue-trans);
}

.accordion-container {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid rgba(212, 162, 76, 0.2);
  background-color: var(--secondary-dark-blue);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-header {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.accordion-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
  font-family: var(--font-body);
}

.accordion-icon {
  font-size: 1.4rem;
  color: var(--accent-gold);
  transition: transform 0.4s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--accent-saffron);
}

.accordion-header.active {
  background-color: rgba(11, 26, 58, 0.5);
  border-bottom: 1px solid rgba(212, 162, 76, 0.15);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.accordion-body {
  padding: 20px 25px;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* --- S12: FOUNDER TRUST BLOCK --- */
.founder-trust {
  background-color: var(--secondary-dark-blue-trans);
}

.founder-card {
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--primary-deep-blue);
  border: 1px solid rgba(212, 162, 76, 0.25);
  border-radius: 16px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.founder-portrait {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--box-shadow-gold);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-info h3 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.founder-title {
  color: var(--accent-gold);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 25px;
}

.founder-promise {
  font-size: 1.05rem;
  opacity: 0.9;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 30px;
}

.certifications-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(212, 162, 76, 0.1);
  border: 1px solid rgba(212, 162, 76, 0.25);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* --- S13: FINAL CTA --- */
.final-cta {
  padding: 70px 8% 50px;
  background: linear-gradient(rgba(11, 26, 58, 0.55), rgba(11, 26, 58, 0.7)),
              url('../assets/images/hero_cta_bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  border-top: 1px solid rgba(212, 162, 76, 0.2);
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* --- S14: PREMIUM FOOTER --- */
.site-footer {
  background-color: var(--secondary-dark-blue);
  border-top: 2px solid var(--accent-gold);
  padding: 50px 8% 30px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-col h3 {
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 25px;
}

.footer-col p {
  color: #e5e7eb;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.qr-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--primary-deep-blue);
  border: 1px solid rgba(212, 162, 76, 0.2);
  padding: 15px;
  border-radius: 8px;
  max-width: 250px;
}

.qr-code {
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 4px;
}

.qr-text {
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #d1d5db;
}

.footer-tagline {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-gold);
}

/* --- FLOATING CALL FAB --- */
.call-fab {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-saffron);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 900;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: 2px solid var(--accent-gold);
}

.call-fab:hover {
  transform: scale(1.1);
  background-color: #d45d1b;
}

.call-fab svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.call-fab::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--accent-saffron);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
  animation: callPulse 2s infinite;
}

@keyframes callPulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* --- FLOATING WHATSAPP FAB --- */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 900;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* --- ANIMATIONS KEYFRAMES --- */
@keyframes drawTrishul {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeInOm {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes kenBurns {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.15);
  }
}

@keyframes blinkRed {
  0% {
    box-shadow: 0 0 10px rgba(178, 58, 42, 0.3);
  }
  100% {
    box-shadow: 0 0 25px rgba(178, 58, 42, 0.8);
    background-color: rgba(178, 58, 42, 0.3);
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* --- RESPONSIVE LAYOUT STYLING --- */
@media screen and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.8rem;
  }
  .hero-content .sub-heading {
    font-size: 1.8rem;
  }
  .destinations-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-kedarnath { grid-column: 1 / 3; grid-row: auto; min-height: 320px; }
  .bento-yamunotri { grid-column: 1; grid-row: auto; min-height: 200px; }
  .bento-gangotri { grid-column: 2; grid-row: auto; min-height: 200px; }
  .bento-badrinath { grid-column: 1 / 3; grid-row: auto; min-height: 200px; }
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .founder-card {
    grid-template-columns: 1fr;
    padding: 35px;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  section {
    padding: 45px 5% 35px;
  }
  .section-header h2 {
    font-size: 2.2rem;
  }
  .navbar {
    padding: 15px 5%;
  }
  .nav-links {
    display: none; /* In production, toggled via JS */
  }
  .hamburger-toggle {
    display: flex;
  }
  .hero {
    height: auto;
    padding: 120px 5% 80px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-meta-strip {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 35px;
  }
  .hero-ctas .btn {
    width: 100%;
    padding: 0 20px;
  }
  .hero-trust-strip {
    justify-content: center;
    flex-wrap: wrap;
  }
  .why-august-grid {
    grid-template-columns: 1fr;
  }
  .timeline-svg {
    left: 31px !important;
    margin-left: 0 !important;
  }
  .timeline-tracker {
    transform: translate(-50%, -50%) !important;
  }

  .day-card {
    width: 100%;
    padding-left: 60px;
    padding-right: 15px;
  }
  .day-card::after {
    left: 17px;
    right: auto;
  }
  .right-card {
    left: 0%;
  }
  .pdf-request-bar {
    width: 100%;
    padding: 20px;
  }
  .pdf-request-bar p {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .gallery-filter-tabs {
    flex-wrap: wrap;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-main {
    font-size: 3.2rem;
  }
  .countdown-clock {
    gap: 10px;
  }
  .countdown-item {
    min-width: 65px;
    padding: 10px;
  }
  .countdown-num {
    font-size: 1.6rem;
  }
  .final-cta h2 {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .call-fab {
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    z-index: 1005;
    display: flex !important;
  }
  .call-fab svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    z-index: 1005;
    display: flex !important;
  }
  .whatsapp-fab svg {
    width: 28px;
    height: 28px;
  }
  .mobile-bottom-bar {
    display: block;
  }

  .nav-links a {
    padding: 12px 0;
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content .sub-heading {
    font-size: 1.4rem;
  }
  .destinations-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-kedarnath,
  .bento-yamunotri,
  .bento-gangotri,
  .bento-badrinath {
    grid-column: 1;
    grid-row: auto;
    min-height: 220px;
  }
  .included-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= TOP BAR & LANGUAGE SWITCHER ================= */
.top-bar {
  background-color: #050c1b;
  border-bottom: 1px solid rgba(212, 162, 76, 0.25);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 5%;
  position: sticky;
  top: 0;
  z-index: 1001; /* Above navbar */
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-contact {
  display: flex;
  gap: 15px;
}

.trust-contact span {
  display: inline-flex;
  align-items: center;
}

.language-switcher {
  display: flex;
  gap: 8px;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(212, 162, 76, 0.4);
  color: var(--text-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.lang-btn.active {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary-deep-blue);
  font-weight: 600;
}

/* Adjust Navbar position because of sticky top-bar */
.navbar {
  top: 36px; /* Shift down by top-bar height */
}
.navbar.scrolled {
  top: 0;
}

/* ================= TRUST BADGES BAR ================= */
.trust-bar {
  background-color: var(--secondary-dark-blue);
  border-bottom: 2px solid rgba(212, 162, 76, 0.2);
  padding: 40px 5%;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .trust-badges-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

.trust-badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(212, 162, 76, 0.12);
  padding: 24px 20px;
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
  will-change: transform, box-shadow;
}

.trust-badge-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(212, 162, 76, 0.2);
}

.trust-badge-icon {
  font-size: 2.6rem;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.trust-badge-info .trust-badge-title {
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
  font-weight: 700;
}

.trust-badge-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ================= WHY US COMPARISON TABLE ================= */
.why-us-comparison {
  background-color: transparent;
  padding: 50px 5% 40px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  max-width: 1000px;
  margin: 40px auto 0;
  border-radius: 12px;
  border: 1px solid rgba(212, 162, 76, 0.2);
  box-shadow: var(--box-shadow-gold);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, 
.comparison-table td {
  padding: 18px 24px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(212, 162, 76, 0.1);
}

.comparison-table th {
  background-color: var(--secondary-dark-blue);
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.compare-feature {
  font-weight: 600;
  color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.01);
}

.compare-mahadev {
  color: #cceebb;
  background-color: rgba(37, 211, 102, 0.03);
  font-weight: 500;
}

.compare-generic {
  color: #ffcccc;
  background-color: rgba(178, 58, 42, 0.03);
}

/* ================= SENIOR CITIZEN CARE ================= */
.senior-care {
  padding: 60px 5% 50px;
  background-color: var(--bg-ivory);
  position: relative;
}

.senior-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .senior-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.senior-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  padding: 0 5%;
}

.senior-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.senior-header .sub-title {
  color: var(--accent-temple-red);
  font-weight: 600;
  font-size: 1.15rem;
}

.senior-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.senior-card {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(212, 162, 76, 0.25);
  padding: 22px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(11, 26, 58, 0.03);
  transition: var(--transition-smooth);
  align-items: flex-start;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.senior-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--accent-saffron);
  box-shadow: 0 12px 30px rgba(255, 122, 26, 0.12);
}

.senior-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.12) 0%, rgba(212, 162, 76, 0.12) 100%);
  border: 1.5px solid rgba(212, 162, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.5);
}

.senior-card:hover .senior-icon {
  transform: rotate(15deg) scale(1.1);
  background: linear-gradient(135deg, var(--accent-saffron) 0%, var(--accent-gold) 100%);
  border-color: transparent;
  box-shadow: var(--box-shadow-saffron);
}

.senior-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--primary-deep-blue);
  font-weight: 600;
  transition: color 0.3s ease;
}

.senior-card:hover .senior-info h3 {
  color: var(--accent-temple-red);
}

.senior-info p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
}

.senior-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(11, 26, 58, 0.15), var(--box-shadow-gold);
  border: 3px solid rgba(212, 162, 76, 0.3);
  transition: var(--transition-smooth);
}

.senior-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 21px;
  pointer-events: none;
  z-index: 2;
}

.senior-image::after {
  content: '🚩 सुरक्षा व सहायता';
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(11, 26, 58, 0.85);
  border: 1px solid var(--accent-gold);
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
  z-index: 3;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.senior-image img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.senior-image:hover img {
  transform: scale(1.06);
}

/* ================= FOOD & COMFORT SHOWCASE ================= */
.food-comfort {
  background-color: var(--secondary-dark-blue-trans);
  padding: 80px 5%;
}

.food-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.food-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.food-content .sub-title {
  color: var(--accent-gold);
  margin-bottom: 25px;
  font-weight: 500;
}

.food-badge {
  display: inline-block;
  background-color: rgba(255, 122, 26, 0.15);
  border: 1px solid var(--accent-saffron);
  color: var(--accent-saffron);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.food-desc {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.food-menu-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 162, 76, 0.15);
  padding: 25px;
  border-radius: 12px;
  margin-top: 30px;
}

.food-menu-box h3 {
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(212, 162, 76, 0.15);
  padding-bottom: 8px;
}

.food-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.food-menu-list li {
  font-size: 0.95rem;
}

.food-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.food-gallery-item {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(212, 162, 76, 0.2);
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

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

.food-gallery-item.tall {
  grid-row: span 2;
  height: 380px;
}

/* ================= TRANSPARENT PRICING & FLYER DOWNLOAD ================= */
.pricing-transparency {
  max-width: 1000px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}

.pricing-table-card, .pricing-policy-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 162, 76, 0.15);
  border-radius: 12px;
  padding: 30px;
}

.pricing-table-card h4, .pricing-policy-card h4 {
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(212, 162, 76, 0.15);
  padding-bottom: 10px;
}

.in-out-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.in-out-col h5 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.in-out-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.in-out-col li {
  font-size: 0.85rem;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.policy-list p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Flyer download block */
.flyer-download-section {
  max-width: 800px;
  margin: 50px auto 0;
  background: radial-gradient(circle at center, rgba(212, 162, 76, 0.1) 0%, transparent 70%);
  border: 1px dashed rgba(212, 162, 76, 0.3);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
}

.flyer-download-section h4 {
  font-size: 1.3rem;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.flyer-download-section p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.flyer-preview-container {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.flyer-preview {
  max-width: 280px;
  border-radius: 8px;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform 0.4s ease;
}

.flyer-preview:hover {
  transform: scale(1.03);
}

/* ================= MOBILE BOTTOM NAV OFFSET & OVERRIDES ================= */
@media screen and (max-width: 991px) {
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .senior-container, .food-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .senior-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .pricing-transparency {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .trust-contact {
    display: none;
  }
  .top-bar-container {
    justify-content: center;
  }
  .top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 32px;
    z-index: 1001; /* Above navbar */
    padding: 4px 5%;
  }
  .lang-btn {
    padding: 2px 8px;
    font-size: 0.7rem;
    border-radius: 3px;
  }
  .language-switcher {
    gap: 5px;
  }
  .navbar {
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 5%;
  }
  .navbar.scrolled {
    top: 0;
  }
  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .in-out-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .comparison-table th, 
  .comparison-table td {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}

/* ================= PREMIUM SCROLL SNAP & SECTION SNAPPING ================= */
html {
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
}

section {
  scroll-snap-align: start;
  scroll-margin-top: 100px; /* Leave space for sticky header & top utility bar */
}

@media screen and (max-width: 768px) {
  section {
    scroll-margin-top: 70px; /* Smaller header height on mobile */
  }
}

/* ================= DIVINE SHIVA PARALLAX BACKGROUND ================= */
.divine-shiva-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('../assets/images/shiva_background.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  opacity: 0.05; /* Faint watermark always visible */
  pointer-events: none; /* Let clicks pass through it */
  z-index: -1; /* Layered behind all transparent sections */
  transition: transform 0.08s ease-out;
  animation: divineBreath 10s ease-in-out infinite;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

#cosmic-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999; /* Floats over everything as a subtle atmospheric stardust layer */
  display: block;
  mix-blend-mode: screen;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

@keyframes divineBreath {
  0% { opacity: 0.045; }
  50% { opacity: 0.075; }
  100% { opacity: 0.045; }
}

@media screen and (max-width: 991px) {
  .divine-shiva-bg {
    background-position: center; /* Center on tablets/mobiles */
    opacity: 0.035;
    animation: divineBreathMobile 10s ease-in-out infinite;
  }
  @keyframes divineBreathMobile {
    0% { opacity: 0.03; }
    50% { opacity: 0.05; }
    100% { opacity: 0.03; }
  }
}

/* ================= REVEAL ANIMATIONS ON SCROLL ================= */
.reveal-item {
  opacity: 1;
  transform: translateY(0);
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform, opacity;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ================= DIVINE ATMOSPHERIC GLOW AURAS ================= */
.lead-card, .pricing-card, .founder-card {
  position: relative;
  z-index: 1;
}

.lead-card::before, .pricing-card::before, .founder-card::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.08) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.8;
  animation: divineGlowPulse 8s ease-in-out infinite alternate;
}

@keyframes divineGlowPulse {
  0% { transform: scale(0.96); opacity: 0.6; }
  100% { transform: scale(1.04); opacity: 0.9; }
}

/* ================= MAHADEVA ANIMATED ART SECTION ================= */
.mahadeva-art-section {
  background: linear-gradient(rgba(5, 11, 24, 0.6), rgba(5, 11, 24, 0.7)),
              url('../assets/images/shiva_divine_bg.webp');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(212, 162, 76, 0.25);
  border-bottom: 1px solid rgba(212, 162, 76, 0.25);
  overflow: hidden;
  position: relative;
}

.mahadeva-container {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  padding: 40px 20px;
  background: radial-gradient(circle at center, rgba(212, 162, 76, 0.15) 0%, rgba(11, 26, 58, 0) 70%);
}

.shiva-static-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 24px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 15%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0) 90%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 15%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0) 90%);
  opacity: 0.4;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 25px rgba(212, 162, 76, 0.25)) brightness(1.05);
  display: block;
  margin: 0 auto;
  animation: floatShiva 6s ease-in-out infinite;
}

@keyframes floatShiva {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
  100% { transform: translateY(0px) scale(1); }
}

.mahadeva-title {
  font-family: 'Cinzel', 'Noto Sans Devanagari', serif;
  color: var(--accent-gold);
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 25px;
  letter-spacing: 2px;
  text-shadow: 0 2px 15px rgba(212, 162, 76, 0.5);
}


/* --- ULTRA-PREMIUM 3D & ANIMATION UPGRADES --- */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 162, 76, 0.4); }
  70% { transform: scale(1.03); box-shadow: 0 0 0 12px rgba(212, 162, 76, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 162, 76, 0); }
}

@keyframes floatMascot {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.pkg-card {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.pkg-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-1deg);
  border-color: var(--accent-gold) !important;
  box-shadow: 0 14px 40px rgba(212, 162, 76, 0.3) !important;
}

.pkg-card picture img, .dest-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s ease;
}

.pkg-card:hover picture img, .dest-card:hover img {
  transform: scale(1.05);
}

.btn-gold {
  background: linear-gradient(135deg, #D4A24C, #C44800) !important;
  color: #FFF !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(212, 162, 76, 0.3) !important;
  transition: var(--transition-smooth) !important;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FFF, var(--accent-gold)) !important;
  color: #071126 !important;
  box-shadow: 0 6px 22px rgba(212, 162, 76, 0.5) !important;
  transform: translateY(-2px);
}

/* Mobile Responsive Navbar & Floating Buttons */
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  header {
    padding: 10px 15px !important;
  }
  .hero-search-card {
    padding: 16px !important;
  }
  #nandiWidget {
    bottom: 20px !important;
    right: 15px !important;
  }
}



/* ═══════════════════════════════════════════════════════════════════
   FLOATING ACTION BUTTONS — Clean, Non-Overlapping Layout
   Call (bottom-left), WhatsApp (bottom-right), Nandi Ai (above WhatsApp)
   ═══════════════════════════════════════════════════════════════════ */

/* --- Call Button: Icon + "Call" text, bottom-left --- */
.float-call-btn {
  position: fixed !important;
  bottom: 24px !important;
  left: 20px !important;
  z-index: 99999 !important;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
  color: #FFFFFF !important;
  padding: 10px 18px 10px 14px !important;
  border-radius: 28px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  box-shadow: 0 6px 20px rgba(16,185,129,0.45) !important;
  border: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  animation: floatBtnPulse 2.5s infinite !important;
}
.float-call-btn:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 10px 30px rgba(16,185,129,0.6) !important;
}
.float-call-btn svg {
  flex-shrink: 0;
}

/* --- WhatsApp Button: Icon only (circular), bottom-right --- */
.float-whatsapp-btn {
  position: fixed !important;
  bottom: 24px !important;
  right: 20px !important;
  z-index: 99999 !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #FFFFFF !important;
  width: 52px !important;
  height: 52px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45) !important;
  border: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  animation: floatBtnPulse 2.5s infinite !important;
}
.float-whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 10px 30px rgba(37,211,102,0.6) !important;
}
.float-whatsapp-btn svg {
  flex-shrink: 0;
}

/* --- Nandi Ai Trigger: Positioned cleanly above WhatsApp --- */
#nandiTrigger {
  position: fixed !important;
  bottom: 88px !important;
  right: 20px !important;
  z-index: 99990 !important;
}
#nandiAiApp {
  /* Prevent app container from interfering with page flow */
}

/* --- Pulse Animation for both buttons --- */
@keyframes floatBtnPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* --- HIDE OLD FABs & Widgets to eliminate overlaps --- */
.call-fab, .whatsapp-fab, .nandi-top-btn, #nandiWidget {
  display: none !important;
}

/* --- Mobile: Slightly smaller & tighter spacing --- */
@media (max-width: 480px) {
  .float-call-btn {
    bottom: 16px !important;
    left: 14px !important;
    padding: 8px 14px 8px 10px !important;
    font-size: 0.78rem !important;
    border-radius: 24px !important;
  }
  .float-whatsapp-btn {
    bottom: 16px !important;
    right: 14px !important;
    width: 48px !important;
    height: 48px !important;
  }
  #nandiTrigger {
    bottom: 76px !important;
    right: 14px !important;
  }
}

/* --- CONTINUOUS NANDI AI DIVINE AURA ANIMATION --- */
.nandi-top-btn {
  background: linear-gradient(135deg, #C44800, #D4A24C) !important;
  color: #FFFFFF !important;
  border: 2px solid #FCD34D !important;
  box-shadow: 0 0 20px rgba(212, 162, 76, 0.6) !important;
  animation: nandiDivineAura 2s infinite alternate !important;
  position: relative;
  overflow: hidden;
}

@keyframes nandiDivineAura {
  0% { box-shadow: 0 0 12px rgba(212, 162, 76, 0.4), 0 0 25px rgba(196, 72, 0, 0.3); transform: scale(1); }
  100% { box-shadow: 0 0 22px rgba(252, 211, 77, 0.8), 0 0 35px rgba(255, 122, 26, 0.6); transform: scale(1.04); }
}

/* --- CLASSY BUTTON SHIMMER & GRADIENT SYSTEM --- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap !important;
  letter-spacing: 0.02em;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: all 0.6s ease;
}

.btn:hover::after {
  left: 120%;
}


/* --- APPLE SIRI STYLE GLOWING NEON NANDI AI BUTTON --- */
.siri-nandi-btn {
  background: linear-gradient(135deg, #FF2D55, #AF52DE, #007AFF, #34C759, #FF9500) !important;
  background-size: 300% 300% !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 0 15px rgba(175, 82, 222, 0.6), 0 0 25px rgba(0, 122, 255, 0.4) !important;
  animation: siriGradientFlow 4s ease infinite, siriPulse 2s infinite alternate !important;
  font-weight: 700 !important;
  border-radius: 25px !important;
}

@keyframes siriGradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes siriPulse {
  0% { box-shadow: 0 0 12px rgba(255, 45, 85, 0.6), 0 0 20px rgba(175, 82, 222, 0.4); transform: scale(1); }
  100% { box-shadow: 0 0 22px rgba(0, 122, 255, 0.8), 0 0 35px rgba(52, 199, 89, 0.6); transform: scale(1.04); }
}

/* --- HERO BADGE SHIMMER ANIMATION --- */
.hero-badge-shimmer {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, rgba(196, 72, 0, 0.4), rgba(212, 162, 76, 0.3));
  border: 1px solid var(--accent-gold);
  border-radius: 20px;
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  box-shadow: 0 0 15px rgba(212, 162, 76, 0.2);
  animation: badgeShimmerPulse 3s infinite alternate;
}

@keyframes badgeShimmerPulse {
  0% { border-color: rgba(212, 162, 76, 0.4); box-shadow: 0 0 10px rgba(212, 162, 76, 0.2); }
  100% { border-color: rgba(252, 211, 77, 1); box-shadow: 0 0 25px rgba(252, 211, 77, 0.6); }
}

/* --- TYPEWRITER CURSOR --- */
.typewriter-cursor {
  display: inline-block;
  margin-left: 4px;
  color: var(--accent-gold);
  animation: blinkCursor 0.8s infinite;
  font-weight: 400;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


/* --- ULTRA-LUXURY APPLE SIRI GLOWING NANDI AI BADGE --- */
.siri-nandi-btn {
  background: rgba(7, 17, 38, 0.95) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(212, 162, 76, 0.6) !important;
  box-shadow: 0 0 15px rgba(212, 162, 76, 0.35), 0 0 30px rgba(56, 189, 248, 0.25) !important;
  font-weight: 700 !important;
  border-radius: 25px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  backdrop-filter: blur(10px) !important;
}

.siri-nandi-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(
    from 0deg,
    #D4A24C,
    #C44800,
    #38BDF8,
    #A855F7,
    #EC4899,
    #D4A24C
  );
  border-radius: 25px;
  z-index: -1;
  animation: conicSiriRotate 4s linear infinite;
  opacity: 0.85;
}

.siri-nandi-btn:hover {
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 0 25px rgba(212, 162, 76, 0.6), 0 0 45px rgba(56, 189, 248, 0.5) !important;
}

@keyframes conicSiriRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hindi Center Reveal Box */
#typewriterHindiBox {
  display: inline-block;
  transform-origin: center center;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease, filter 0.5s ease;
}


/* --- RIGHT TO LEFT HINDI NEWS TICKER ANIMATION --- */
@keyframes tickerRightToLeft {
  0% { transform: translateX(50%); }
  100% { transform: translateX(-50%); }
}

#hindiTickerBox {
  display: inline-block;
  white-space: nowrap;
  animation: tickerRightToLeft 28s linear infinite;
}

#hindiTickerBox:hover {
  animation-play-state: paused;
}


/* --- ULTRA-CREATIVE DIVINE NANDI AI BADGE --- */
.creative-nandi-btn {
  background: rgba(7, 17, 38, 0.96) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(252, 211, 77, 0.8) !important;
  box-shadow: 0 0 20px rgba(252, 211, 77, 0.4), 0 0 40px rgba(196, 72, 0, 0.3) !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  position: relative !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  backdrop-filter: blur(12px) !important;
  letter-spacing: 0.5px !important;
}

.creative-nandi-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: conic-gradient(
    from 0deg,
    #FCD34D,
    #C44800,
    #38BDF8,
    #EC4899,
    #FCD34D
  );
  border-radius: 30px;
  z-index: -1;
  animation: divineConicRotate 3.5s linear infinite;
  opacity: 0.9;
}

.creative-nandi-btn:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 0 30px rgba(252, 211, 77, 0.7), 0 0 50px rgba(56, 189, 248, 0.6) !important;
}

@keyframes divineConicRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.mascot-bounce {
  display: inline-block;
  font-size: 1.25rem;
  animation: mascotFloatBounce 2s ease-in-out infinite alternate;
}

@keyframes mascotFloatBounce {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-4px) scale(1.1); }
}

/* Hindi Slide Box */
#typewriterHindiBox {
  display: inline-block;
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease, filter 0.4s ease;
}


/* --- SINGLE LINE HINDI NEWS TICKER GLIDE ANIMATION --- */
.hindi-line-ticker-anim {
  display: inline-block;
  white-space: nowrap;
  animation: singleLineGlide 3.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes singleLineGlide {
  0% {
    transform: translateX(100%);
    opacity: 0;
    filter: blur(4px);
  }
  15% {
    transform: translateX(0%);
    opacity: 1;
    filter: blur(0px);
  }
  85% {
    transform: translateX(0%);
    opacity: 1;
    filter: blur(0px);
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
    filter: blur(4px);
  }
}


/* --- CLEAN & CLASSY ASK NANDI AI BADGE (NO BACKGROUND ANIMATION) --- */
.creative-nandi-btn, .siri-nandi-btn, .nandi-top-btn {
  background: #0B1A3A !important;
  color: #FFFFFF !important;
  border: 1px solid var(--accent-gold) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 12px rgba(212, 162, 76, 0.25) !important;
  font-weight: 600 !important;
  border-radius: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 20px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  animation: none !important;
}

.creative-nandi-btn::before, .siri-nandi-btn::before {
  display: none !important;
}

.creative-nandi-btn:hover, .siri-nandi-btn:hover {
  background: #142850 !important;
  border-color: #FCD34D !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 6px 22px rgba(212, 162, 76, 0.45) !important;
}

/* Smooth Readable Single Line Hindi Glide (6.5s Duration) */
.hindi-line-ticker-anim {
  display: inline-block;
  white-space: nowrap;
  animation: singleLineGlide 6.5s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
}

@keyframes singleLineGlide {
  0% {
    transform: translateX(60%);
    opacity: 0;
    filter: blur(3px);
  }
  18% {
    transform: translateX(0%);
    opacity: 1;
    filter: blur(0px);
  }
  82% {
    transform: translateX(0%);
    opacity: 1;
    filter: blur(0px);
  }
  100% {
    transform: translateX(-60%);
    opacity: 0;
    filter: blur(3px);
  }
}


/* --- CONTINUOUS WORD-BY-WORD RIGHT-TO-LEFT HINDI TICKER --- */
#typewriterHindiBox {
  display: inline-block !important;
  white-space: nowrap !important;
  animation: continuousWordTicker 32s linear infinite !important;
}

#typewriterHindiBox:hover {
  animation-play-state: paused !important;
}

@keyframes continuousWordTicker {
  0% {
    transform: translateX(40%);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* --- BOUNDED HINDI TICKER (SLIDE WITHIN 850px HERO WIDTH) --- */
#typewriterHindiBox {
  display: inline-block !important;
  white-space: nowrap !important;
  animation: boundedWordTicker 45s linear infinite !important;
}

#typewriterHindiBox:hover {
  animation-play-state: paused !important;
}

@keyframes boundedWordTicker {
  0% {
    transform: translateX(60%);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* --- INSTANT SEAMLESS CONTINUOUS HINDI TICKER (ZERO DELAY, ZERO PAUSE) --- */
#typewriterHindiBox {
  display: inline-block !important;
  white-space: nowrap !important;
  animation: instantSeamlessTicker 50s linear infinite !important;
}

#typewriterHindiBox:hover {
  animation-play-state: paused !important;
}

@keyframes instantSeamlessTicker {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}





/* ═══ RESPONSIVE MOBILE NAVIGATION DRAWER SYSTEM ═══ */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block !important;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(7, 17, 38, 0.98);
    border-bottom: 2px solid var(--accent-gold, #D4A24C);
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  }
  .main-nav.active {
    display: block !important;
  }
  .main-nav ul {
    flex-direction: column !important;
    gap: 15px !important;
    text-align: center;
  }
  .main-nav ul li a {
    font-size: 1.05rem !important;
    padding: 8px 0;
    display: block;
  }
}

/* --- PACKAGE DETAILS MOBILE RESPONSIVE STYLING --- */
@media (max-width: 768px) {
  .details-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin: 20px auto !important;
    padding: 0 4% !important;
  }
  .details-layout > div:nth-child(2) {
    order: -1; /* Move price box & booking form ABOVE itinerary on mobile */
  }
  .sticky-booking-box {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 20px !important;
  }
  #pkgTitle {
    font-size: 1.45rem !important;
    line-height: 1.3 !important;
  }
  #pkgSubtitle {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }
}
