/* Kanha Bus Yatra Seva - Stylesheet */

/* Color Variables & Design Tokens */
:root {
  --color-saffron: #E87516;
  --color-saffron-dark: #cc620d;
  --color-saffron-light: #fff2e6;
  --color-teal: #087F8C;
  --color-teal-dark: #066570;
  --color-teal-light: #e6f6f7;
  --color-navy: #102A43;
  --color-cream: #FFF9F1;
  --color-white: #FFFFFF;
  --color-gold: #D9A441;
  --color-text: #475569;
  --color-text-light: #64748B;
  --color-border: #E2E8F0;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-card: 18px;
  --radius-button: 12px;
  
  --shadow-soft: 0 10px 30px rgba(16, 42, 67, 0.06);
  --shadow-hover: 0 15px 35px rgba(16, 42, 67, 0.12);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

ul {
  list-style: none;
}

/* Accessibility Focus States */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 2px;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Helper / Utility Classes */
.text-center { text-align: center; }
.section-padding {
  padding: 80px 0;
}
.bg-cream {
  background-color: var(--color-cream);
}
.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-saffron);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 50px auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-button);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-size: 0.95rem;
  text-align: center;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 10px;
}

.btn-primary {
  background-color: var(--color-saffron);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-saffron-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 117, 22, 0.25);
}

.btn-teal {
  background-color: var(--color-teal);
  color: var(--color-white);
}

.btn-teal:hover {
  background-color: var(--color-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(8, 127, 140, 0.25);
}

.btn-teal-outline {
  border-color: var(--color-teal);
  color: var(--color-teal);
  background-color: transparent;
}

.btn-teal-outline:hover {
  background-color: var(--color-teal-light);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-navy);
}

.btn-white:hover {
  background-color: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* 1. Header & Sticky Navbar */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  backdrop-filter: none;
}

.header-scrolled {
  padding: 4px 0;
  box-shadow: 0 6px 25px rgba(16, 42, 67, 0.08);
  background-color: rgba(255, 255, 255, 0.96) ;
  border-bottom: 1px solid rgba(16, 42, 67, 0.05);
  backdrop-filter: blur(12px);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 82px;
  transition: var(--transition);
}

.header-scrolled .navbar-container {
  height: 72px;
}

/* Logo Dimensions & Aspect Ratio */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-link svg,
.brand-logo-link .logo-img {
  height: 70px;
  width: auto;
  transition: var(--transition);
  flex-shrink: 0;
  object-fit: contain;
}

.header-scrolled .brand-logo-link svg,
.header-scrolled .brand-logo-link .logo-img {
  height: 60px;
}

.logo-icon-svg {
  color: var(--color-saffron);
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  transition: var(--transition);
}

.header-scrolled .brand-name {
  color: var(--color-navy);
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.header-scrolled .brand-tagline {
  color: var(--color-teal);
}

.nav-links-list {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  color: var(--color-white);
  font-size: 0.9rem;
  position: relative;
  padding: 8px 0;
  font-family: var(--font-heading);
  transition: var(--transition);
}

.header-scrolled .nav-link {
  color: var(--color-navy);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-saffron) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-saffron);
  transition: var(--transition);
}

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

.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Phone Info Element */
.navbar-phone-info {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-right: 8px;
  font-family: var(--font-heading);
  transition: var(--transition);
}

.header-scrolled .navbar-phone-info {
  color: var(--color-navy);
}

@media (max-width: 1200px) {
  .navbar-phone-info {
    display: none;
  }
}

/* CTA buttons design */
.btn-nav-cta {
  height: 44px;
  border-radius: 10px;
  padding: 0 20px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-nav-cta.btn-primary {
  background-color: var(--color-saffron);
  color: var(--color-white);
  border: none;
}

.btn-nav-cta.btn-primary:hover {
  background-color: var(--color-saffron-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232, 117, 22, 0.25);
}

.btn-whatsapp {
  background-color: #25D366 !important;
  color: var(--color-white) !important;
  border: none !important;
}

.btn-whatsapp:hover {
  background-color: #22c35e !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

/* Hamburger button */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1010;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger-icon {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hamburger-bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--color-white);
  border-radius: 4px;
  transition: var(--transition);
}

.header-scrolled .hamburger-bar {
  background-color: var(--color-navy);
}

/* Mobile Drawer CTAs */
.mobile-menu-ctas {
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 24px;
}

.btn-full-width {
  width: 100%;
  height: 46px !important;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* 2. Hero Section */
.hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 100px;
  min-height: 100vh;
  background-color: var(--color-navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(16, 42, 67, 0.85), rgba(16, 42, 67, 0.95)), url('../images/hero-640.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

@media (min-width: 641px) {
  .hero-image-overlay {
    background-image: linear-gradient(135deg, rgba(16, 42, 67, 0.85), rgba(16, 42, 67, 0.95)), url('../images/hero-1024.webp');
  }
}

@media (min-width: 1025px) {
  .hero-image-overlay {
    background-image: linear-gradient(135deg, rgba(16, 42, 67, 0.85), rgba(16, 42, 67, 0.95)), url('../images/hero-1440.webp');
  }
}

@media (min-width: 1441px) {
  .hero-image-overlay {
    background-image: linear-gradient(135deg, rgba(16, 42, 67, 0.85), rgba(16, 42, 67, 0.95)), url('../images/hero-1920.webp');
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-content {
  color: var(--color-white);
  animation: heroFadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@media (min-width: 1024px) {
  .hero-content {
    margin-top: -30px;
  }
}

.hero-eyebrow-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-eyebrow {
  color: var(--color-saffron);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow-accent-line {
  width: 32px;
  height: 2px;
  background-color: var(--color-saffron);
  display: inline-block;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.highlight-text {
  color: var(--color-saffron);
  font-weight: 800;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.6;
}

.hero-trust-indicators {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.trust-check-icon {
  color: var(--color-saffron);
  flex-shrink: 0;
}

.hero-actions-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-cta {
  height: 52px;
  border-radius: 12px;
  padding: 0 24px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-hero-cta.btn-primary {
  background-color: var(--color-saffron);
  color: var(--color-white);
}

.btn-hero-cta.btn-primary:hover {
  background-color: var(--color-saffron-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 117, 22, 0.3);
}

.btn-hero-cta.btn-teal {
  background-color: var(--color-teal);
  color: var(--color-white);
}

.btn-hero-cta.btn-teal:hover {
  background-color: var(--color-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(8, 127, 140, 0.3);
}

.hero-actions-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* Floating Enquiry Form Card */
.form-card-wrapper {
  animation: heroFadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
  opacity: 0;
}

.form-card {
  background-color: var(--color-white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(16, 42, 67, 0.06);
  color: var(--color-navy);
}

.form-header {
  margin-bottom: 20px;
  text-align: center;
}

.form-header h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-navy);
}

.form-input-wrapper {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
  pointer-events: none;
}

.form-control {
  width: 100%;
  height: 50px;
  padding: 12px 14px 12px 42px;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  font-size: 0.95rem;
  background-color: #F8FAFC;
  transition: var(--transition);
  color: var(--color-navy);
}

.form-control:focus {
  border-color: var(--color-saffron);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px var(--color-saffron-light);
}

.input-error {
  border-color: #EF4444 !important;
}

.error-text {
  font-size: 0.75rem;
  color: #EF4444;
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

.btn-form-submit {
  width: 100%;
  height: 50px !important;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 10px;
}

.form-whatsapp-helper {
  margin-top: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

.form-whatsapp-link {
  font-weight: 700;
  color: #25D366;
  text-decoration: none;
  font-size: 0.9rem;
}

.form-whatsapp-link:hover {
  text-decoration: underline;
}

.form-trust-microbar {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-align: center;
  opacity: 0.8;
}

/* Animations */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
}

/* Success box inside Form Card */
.success-message-box {
  text-align: center;
  padding: 40px 10px;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: var(--color-teal-light);
  color: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.success-message-box h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--color-navy);
}

.success-message-box p {
  color: var(--color-text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* About Kanha Bus Yatra Seva Section */
.about-section-wrapper {
  background-color: var(--color-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.about-curved-road {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 110%;
  height: 120%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.about-image-main-wrapper {
  width: 82%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  z-index: 2;
  aspect-ratio: 4/3;
}

.about-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-visual:hover .about-img-main {
  transform: scale(1.03);
}

.about-image-sub-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 44%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 6px solid var(--color-white);
  z-index: 3;
  aspect-ratio: 4/3;
  transition: var(--transition);
}

.about-visual:hover .about-image-sub-wrapper {
  transform: translateY(-5px);
}

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

.about-floating-card {
  position: absolute;
  top: 5%;
  left: 0;
  background-color: var(--color-white);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(16, 42, 67, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  border: 1.5px solid rgba(16, 42, 67, 0.04);
}

.about-floating-card-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-saffron-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-floating-card-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 2px;
}

.about-floating-card-text p {
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-weight: 600;
  white-space: nowrap;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-saffron);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.about-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.15;
  margin-bottom: 24px;
}

.highlight-text-saffron {
  color: var(--color-saffron);
  font-weight: 800;
}

.about-paragraph {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 18px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.about-value-card {
  background-color: var(--color-cream);
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition);
}

.about-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  background-color: var(--color-white);
  border-color: var(--color-saffron);
}

.about-value-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.about-value-card:hover .about-value-icon-circle {
  transform: scale(1.05);
}

.about-value-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.about-value-info p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

.about-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.btn-about-cta {
  height: 50px;
  border-radius: 12px;
  font-weight: 700;
  padding: 0 24px;
  font-size: 0.95rem;
}

.about-contact-micro-info {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.about-contact-micro-info a {
  color: var(--color-saffron);
  font-weight: 700;
  text-decoration: underline;
}

/* 3. Trust Strip */
.trust-strip-section {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 24px 0;
  border-bottom: 4px solid var(--color-saffron);
}

.trust-strip-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-strip-icon-circle {
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-saffron);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* 4. Popular Yatra Packages */
.packages-section-wrapper {
  background-color: var(--color-cream);
  padding: 100px 0;
  position: relative;
}

.packages-header {
  margin-bottom: 50px;
}

.packages-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-saffron);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.packages-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.packages-section-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.package-card {
  background-color: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(16, 42, 67, 0.06);
  border: 1px solid rgba(16, 42, 67, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(16, 42, 67, 0.12);
}

.card-featured {
  border: 2px solid var(--color-saffron);
  position: relative;
}

.package-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}

.package-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.package-card:hover .package-image {
  transform: scale(1.04);
}

.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: rgba(232, 117, 22, 0.95);
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
}

.package-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-meta-row {
  margin-bottom: 12px;
}

.package-duration-pill {
  background-color: #FFF4E8;
  color: var(--color-saffron);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  display: inline-block;
}

.package-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.4rem;
}

.package-destination {
  font-size: 0.9rem;
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.package-route-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 14px;
}

.route-icon {
  color: #64748B;
  margin-top: 3px;
  flex-shrink: 0;
}

.package-route {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.4;
  font-weight: 500;
}

.package-short-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7rem;
}

.package-inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(16, 42, 67, 0.06);
  padding-top: 14px;
  list-style: none;
}

.package-inclusions-grid li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 500;
}

.inclusion-check-svg {
  color: var(--color-teal);
  flex-shrink: 0;
}

.package-price-box {
  background-color: var(--color-cream);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.price-lbl {
  font-size: 11px;
  color: var(--color-text-light);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.price-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy);
}

.card-road-separator {
  width: 100%;
  margin: 8px 0;
  height: 12px;
}

.card-action-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.card-action-btn {
  height: 42px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.action-call {
  background-color: transparent;
  color: var(--color-navy);
  border: 1px solid rgba(16, 42, 67, 0.15);
}

.action-call:hover {
  background-color: rgba(16, 42, 67, 0.05);
}

.action-book {
  background-color: var(--color-saffron);
  color: var(--color-white);
  border: none;
}

.action-book:hover {
  background-color: var(--color-saffron-dark);
  transform: translateY(-1px);
}

.action-whatsapp {
  background-color: #EAFDF3;
  color: #087F8C;
  border: 1px solid rgba(8, 127, 140, 0.15);
}

.action-whatsapp:hover {
  background-color: #25D366;
  color: var(--color-white);
  border-color: #25D366;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
  transform: translateY(-1px);
}

/* Bottom CTA Style */
.packages-bottom-cta {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 50px auto 0 auto;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.04);
  border: 1px solid rgba(16, 42, 67, 0.06);
}

.packages-bottom-cta-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.packages-bottom-cta-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.packages-bottom-cta-buttons {
  display: flex;
  gap: 16px;
}

.btn-cta-call, .btn-cta-whatsapp {
  height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 5. Why Choose Us */
.why-us-section-wrapper {
  background-color: var(--color-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 60px auto;
}

.why-us-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

.why-us-image-wrapper {
  width: 85%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(16, 42, 67, 0.1);
  z-index: 2;
}

.why-us-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-us-visual:hover .why-us-img {
  transform: scale(1.03);
}

.why-us-floating-card {
  position: absolute;
  bottom: 0;
  left: -20px;
  background-color: var(--color-white);
  padding: 16px 24px;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(16, 42, 67, 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 4;
  border: 1px solid rgba(16, 42, 67, 0.05);
  max-width: 280px;
}

.floating-card-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-saffron-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 2px;
}

.floating-card-details p {
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-weight: 600;
  white-space: nowrap;
}

.why-us-path-svg {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 110%;
  height: 120%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.why-us-content {
  display: flex;
  flex-direction: column;
}

.why-us-eyebrow-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.why-us-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-saffron);
  font-weight: 700;
}

.why-us-eyebrow-line {
  width: 40px;
  height: 2px;
  background-color: var(--color-saffron);
  display: inline-block;
}

.why-us-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.why-us-introduction {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 30px;
}

.why-us-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  background-color: transparent;
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: default;
}

.benefit-item:hover {
  background-color: var(--color-cream);
  box-shadow: 0 10px 25px rgba(16, 42, 67, 0.04);
  border-bottom-color: transparent;
}

.benefit-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(232, 117, 22, 0.2);
  font-family: var(--font-heading);
  transition: color 0.25s ease;
  line-height: 1;
}

.benefit-item:hover .benefit-number {
  color: var(--color-saffron);
}

.benefit-icon-container {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-teal-light);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.benefit-item:hover .benefit-icon-container {
  background-color: var(--color-saffron-light);
  color: var(--color-saffron);
}

.benefit-text {
  flex-grow: 1;
}

.benefit-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.4;
  transition: color 0.25s ease;
}

.benefit-item:hover .benefit-text p {
  color: var(--color-text);
}

.benefit-arrow {
  font-size: 1.2rem;
  color: var(--color-teal);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.25s ease;
  font-weight: 700;
}

.benefit-item:hover .benefit-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--color-saffron);
}

/* Trust Bar */
.trust-bar-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 24px 0;
  background-color: var(--color-cream);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(16, 42, 67, 0.03);
  border: 1px solid rgba(16, 42, 67, 0.05);
  margin: 40px auto;
  max-width: 1280px;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.9rem;
}

.trust-bar-icon {
  color: var(--color-teal);
}

/* Bottom CTA styling */
.why-us-bottom-cta {
  background-color: var(--color-cream);
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 30px auto 0 auto;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.04);
  border: 1px solid rgba(16, 42, 67, 0.06);
}

.why-us-bottom-cta-text h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.why-us-bottom-cta-text p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.why-us-bottom-cta-buttons {
  display: flex;
  gap: 16px;
}

/* 6. How It Works */
.process-section-wrapper {
  background-color: var(--color-cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.process-header {
  margin-bottom: 60px;
}

.process-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-saffron);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.process-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.process-section-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Timeline Container */
.journey-timeline-container {
  position: relative;
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px 0 160px 0;
}

.journey-road-path-svg {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 280px;
  z-index: 1;
  pointer-events: none;
}

.timeline-steps-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1.15fr) 0.4fr;
  align-items: start;
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0;
}

.step-card-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  cursor: default;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Background numbers */
.step-bg-number {
  position: absolute;
  font-size: 6.5rem;
  font-weight: 800;
  color: rgba(232, 117, 22, 0.06);
  font-family: var(--font-heading);
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  transition: color 0.25s ease, transform 0.25s ease;
}

.step-card-above .step-bg-number {
  top: -45px;
}

.step-card-below .step-bg-number {
  bottom: -45px;
}

.step-card-item:hover .step-bg-number {
  color: rgba(232, 117, 22, 0.12);
  transform: scale(1.05);
}

/* Icon circle styling */
.step-icon-container {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid;
  transition: all 0.25s ease;
  z-index: 2;
  position: relative;
  cursor: pointer;
}

.circle-icon-saffron {
  background-color: var(--color-cream);
  border-color: rgba(232, 117, 22, 0.2);
  color: var(--color-saffron);
}

.circle-icon-teal {
  background-color: var(--color-teal-light);
  border-color: rgba(8, 127, 140, 0.2);
  color: var(--color-teal);
}

.step-card-item:hover .step-icon-container {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.1);
}

.step-card-item:hover .circle-icon-saffron {
  background-color: var(--color-saffron);
  color: var(--color-white);
}

.step-card-item:hover .circle-icon-teal {
  background-color: var(--color-teal);
  color: var(--color-white);
}

.step-content-box {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.step-real-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-saffron);
  font-family: var(--font-heading);
}

.step-content-box h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0;
}

.step-content-box p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
  max-width: 190px;
}

/* Alternating Heights to mimic wavy road */
.step-card-above {
  transform: translateY(-20px);
}

.step-card-below {
  transform: translateY(110px);
}

.step-card-above:hover {
  transform: translateY(-25px);
}

.step-card-below:hover {
  transform: translateY(105px);
}

/* Destination end point styling */
.timeline-destination-endpoint {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  transform: translateY(45px);
}

.destination-marker-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-gold);
  box-shadow: 0 5px 15px rgba(16, 42, 67, 0.15);
  margin-bottom: 8px;
}

.destination-marker-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

/* Process CTA Card */
.process-cta-card {
  background-color: var(--color-navy);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 40px auto 0 auto;
  box-shadow: 0 15px 35px rgba(16, 42, 67, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.process-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.process-cta-path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.process-cta-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 6px;
}

.process-cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.process-cta-buttons {
  display: flex;
  gap: 16px;
}

/* 7. Gallery Section */
.gallery-section-wrapper {
  background-color: var(--color-white);
  padding: 100px 0;
  position: relative;
}

.gallery-header {
  margin-bottom: 50px;
}

.gallery-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-saffron);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.gallery-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.gallery-section-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.gallery-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.05);
  cursor: pointer;
  background-color: var(--color-cream);
  height: 280px;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.04);
}

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(16, 42, 67, 0.85) 0%, rgba(16, 42, 67, 0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  z-index: 3;
}

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

.gallery-card-info {
  transform: translateY(10px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.gallery-card:hover .gallery-card-info {
  transform: translateY(0);
}

.gallery-card-info h3 {
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.gallery-card-info .gallery-card-tag {
  color: var(--color-saffron);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.gallery-moment-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--color-saffron);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 700;
  z-index: 5;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Quote Card Specifics */
.brand-quote-card {
  background-color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: var(--color-white);
  cursor: default;
}

.quote-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-road-svg {
  width: 80px;
  height: 16px;
  margin-bottom: 20px;
}

.brand-quote-card blockquote {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-white);
  margin-bottom: 12px;
  max-width: 240px;
}

.brand-quote-card .quote-author {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-saffron);
  letter-spacing: 1.5px;
  font-weight: 700;
}

/* Grid Slots Configuration for Asymmetric Editorial Look */
.slot-hero {
  grid-column: span 6;
  grid-row: span 2;
  height: 580px;
}

.slot-medium-1 {
  grid-column: span 3;
}

.slot-medium-2 {
  grid-column: span 3;
}

.slot-quote {
  grid-column: span 3;
}

.slot-medium-3 {
  grid-column: span 3;
}

.slot-medium-4 {
  grid-column: span 4;
}

.slot-featured {
  grid-column: span 8;
}

/* Status Label */
.gallery-more-status {
  margin-top: 40px;
}

.gallery-status-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  font-weight: 600;
  font-style: italic;
}

/* Emotional Gallery CTA */
.gallery-bottom-cta {
  margin-top: 60px;
  background-color: var(--color-cream);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(16,42,67,0.03);
  border: 1px solid rgba(16,42,67,0.06);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-bottom-cta h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.gallery-cta-desc {
  color: var(--color-text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.gallery-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Premium Lightbox Modal Styling */
.lightbox-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 42, 67, 0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal-container.lightbox-active {
  display: flex;
  opacity: 1;
}

.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 3rem;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 2010;
  line-height: 1;
}

.lightbox-close-btn:hover {
  color: var(--color-saffron);
  transform: scale(1.1);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 2010;
}

.lightbox-nav-btn:hover {
  color: var(--color-saffron);
}

.lightbox-prev-btn {
  left: 24px;
}

.lightbox-next-btn {
  right: 24px;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 85vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-active-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption-box {
  color: var(--color-white);
  font-size: 1rem;
  margin-top: 16px;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-heading);
}

/* 8. Customer Reviews & 9. FAQ Section Combined */
.reviews-faq-wrapper {
  background-color: var(--color-cream);
  padding: 100px 0;
  position: relative;
}

.section-intro-header {
  margin-bottom: 60px;
}

.intro-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-saffron);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.intro-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.intro-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Part 1: Reviews Grid */
.reviews-asymmetric-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 30px auto;
  align-items: stretch;
}

/* Featured Card */
.review-card-featured {
  background-color: var(--color-navy);
  padding: 40px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(16, 42, 67, 0.15);
  transition: all 0.25s ease;
  min-height: 320px;
}

.review-card-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(16, 42, 67, 0.2);
}

.featured-review-path-svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: 1;
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  z-index: 2;
}

.rating-stars-gold {
  color: var(--color-gold);
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.quote-mark-saffron {
  font-size: 5rem;
  font-family: var(--font-heading);
  color: rgba(232, 117, 22, 0.35);
  line-height: 0.1;
  margin-top: 30px;
}

.review-text-large {
  font-size: 1.15rem;
  color: var(--color-white);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 30px;
  z-index: 2;
  font-weight: 500;
}

.reviewer-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.reviewer-meta-details {
  display: flex;
  flex-direction: column;
}

.reviewer-name-white {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
}

.reviewer-yatra-saffron {
  font-size: 0.8rem;
  color: var(--color-saffron);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Supporting Stack */
.reviews-supporting-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.review-card-supporting {
  background-color: var(--color-white);
  border: 1px solid rgba(16, 42, 67, 0.07);
  padding: 28px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(16, 42, 67, 0.03);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
}

.review-card-supporting:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.06);
}

.review-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.rating-stars-teal {
  color: var(--color-teal);
  font-size: 1.05rem;
  letter-spacing: 1.5px;
}

.quote-mark-teal {
  font-size: 3rem;
  font-family: var(--font-heading);
  color: rgba(8, 127, 140, 0.15);
  line-height: 0.1;
  margin-top: 15px;
}

.review-text-supporting {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: 16px;
  font-style: italic;
}

.reviewer-name-navy {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
}

.reviewer-yatra-teal {
  font-size: 0.75rem;
  color: var(--color-teal);
  font-weight: 600;
}

.reviews-dev-note {
  margin-top: 24px;
}

.reviews-dev-note span {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* Separation Divider */
.reviews-faq-separator-line {
  max-width: 1280px;
  margin: 70px auto;
  height: 10px;
}

.reviews-faq-separator-line svg {
  width: 100%;
  height: 10px;
}

/* Part 2: FAQ Editorial Grid */
.faq-editorial-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

/* FAQ Reassurance Contact Card */
.faq-reassurance-card {
  background-color: var(--color-navy);
  padding: 40px 32px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  box-shadow: 0 15px 35px rgba(16, 42, 67, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-card-path-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  pointer-events: none;
}

.faq-card-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-saffron-light);
  color: var(--color-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.faq-reassurance-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
  z-index: 2;
  position: relative;
}

.faq-reassurance-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  z-index: 2;
  position: relative;
}

.faq-reassurance-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
  position: relative;
}

.faq-reassurance-buttons .btn {
  height: 48px;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-reassurance-call {
  background-color: var(--color-saffron);
  color: var(--color-white);
  border: none;
}

.btn-reassurance-call:hover {
  background-color: #d1650f;
}

.btn-reassurance-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  border: none;
}

.btn-reassurance-whatsapp:hover {
  background-color: #20ba59;
}

/* FAQ Accordion Side */
.faq-accordion-header-block {
  margin-bottom: 30px;
}

.faq-eyebrow-accent {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-teal);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.faq-title-navy {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.faq-subtitle-light {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  min-height: 64px;
}

.faq-question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  transition: color 0.25s ease;
  font-family: var(--font-heading);
}

.faq-icon-circle-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-saffron-light);
  color: var(--color-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.faq-icon-sign {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

/* Accordion Active States */
.faq-item-active {
  background-color: var(--color-cream-light);
  border-left: 4px solid var(--color-saffron);
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.03);
}

.faq-item-active .faq-question {
  color: var(--color-saffron);
}

.faq-item-active .faq-icon-circle-indicator {
  background-color: var(--color-saffron);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 24px 20px 24px;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
}

/* Part 3: Connected Final CTA block after FAQ */
.reviews-faq-bottom-cta {
  margin-top: 70px;
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(16,42,67,0.03);
  border: 1px solid rgba(16,42,67,0.05);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-faq-bottom-cta h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.reviews-faq-bottom-cta p {
  color: var(--color-text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.reviews-faq-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* 10. Final CTA Section */
.final-cta-section {
  padding: 100px 0;
  background-color: var(--color-white);
  position: relative;
}

.final-cta-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(16, 42, 67, 0.2);
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta-path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.final-cta-content-panel {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.eyebrow-accent-line {
  width: 40px;
  height: 2px;
  background-color: var(--color-saffron);
  display: inline-block;
}

.final-cta-heading {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.final-cta-desc-block {
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-desc-p1 {
  font-size: 1.05rem;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 8px;
}

.final-cta-desc-p2 {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}

/* Trust Micro-points */
.final-cta-trust-points {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-point-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.trust-point-item .check-icon {
  flex-shrink: 0;
}

/* Triple Action Buttons Grid */
.final-cta-buttons-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-call-now-white {
  background-color: var(--color-white);
  color: var(--color-navy);
  font-weight: 700;
  border-radius: 12px;
  height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-call-now-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-book-your-yatra {
  background-color: var(--color-saffron);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 12px;
  height: 52px;
  padding: 0 32px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(232, 117, 22, 0.2);
}

.btn-book-your-yatra:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 117, 22, 0.35);
  background-color: #d1650f;
}

.btn-whatsapp-teal {
  background-color: var(--color-teal);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 12px;
  height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(8, 127, 140, 0.15);
}

.btn-whatsapp-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(8, 127, 140, 0.25);
  background-color: #066772;
}

.final-cta-secondary-contact {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.final-cta-secondary-contact a {
  color: var(--color-saffron);
  font-weight: 700;
  transition: color 0.2s ease;
}

.final-cta-secondary-contact a:hover {
  color: var(--color-gold);
}

.final-cta-brand-statement {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
}

/* 11. Footer Section */
.footer-main-wrapper {
  background: linear-gradient(to top, #0c1c2b 0%, var(--color-navy) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.footer-cta-container {
  position: relative;
  z-index: 10;
  margin-bottom: -50px;
}

.footer-cta-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(16, 42, 67, 0.25);
  min-height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.footer-cta-inner {
  position: relative;
  z-index: 2;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-cta-left {
  max-width: 600px;
}

.footer-cta-left h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.25;
}

.footer-cta-left p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}

.footer-cta-right {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.footer-cta-right .btn {
  height: 48px;
  font-weight: 700;
  border-radius: 12px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-middle-content {
  padding: 60px 0 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.footer-accent-road-svg {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  opacity: 0.45;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.72fr 1.36fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-logo-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.25s ease;
  background: transparent;
}

.social-facebook:hover {
  background-color: #3b5998;
  border-color: #3b5998;
  transform: translateY(-3px);
}

.social-instagram:hover {
  background-color: #e1306c;
  border-color: #e1306c;
  transform: translateY(-3px);
}

.social-whatsapp:hover {
  background-color: #25D366;
  border-color: #25D366;
  transform: translateY(-3px);
}

/* Footer menu columns */
.footer-col-title-always, .footer-mobile-toggle h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 20px 0;
}

.footer-mobile-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
  cursor: default;
}

.footer-toggle-icon {
  display: none;
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-menu-list a:hover {
  color: var(--color-saffron);
  transform: translateX(3px);
}

.footer-menu-list a::after {
  content: ' →';
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.footer-menu-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Column details */
.footer-contact-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-items-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.footer-column .contact-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-column .circle-icon-saffron {
  background-color: var(--color-saffron-light);
  color: var(--color-saffron);
}

.footer-column .circle-icon-teal {
  background-color: var(--color-teal-light);
  color: var(--color-teal);
}

.contact-details-box {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.contact-details-box a {
  color: inherit;
  transition: color 0.2s ease;
}

.contact-details-box a:hover {
  color: var(--color-saffron);
}

.footer-email-link {
  word-break: break-all;
}

/* Layer 3: Trust Strip */
.footer-trust-strip {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.trust-strip-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.trust-pill-icon {
  font-size: 1.1rem;
}

/* Layer 4: Copyright Bar */
.footer-bottom-copyright {
  padding: 24px 0;
  background-color: rgba(12, 28, 43, 0.5);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.footer-bottom-inner p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--color-saffron);
}

/* Back to Top button styling */
.back-to-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-saffron) 0%, #d3640e 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.2s ease;
  z-index: 980;
  box-shadow: 0 4px 16px rgba(232, 117, 22, 0.35);
}

.back-to-top-btn.btn-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
  background: linear-gradient(135deg, #d3640e 0%, #b85408 100%);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 6px 22px rgba(232, 117, 22, 0.45);
}

.back-to-top-btn:active {
  transform: translateY(0) scale(0.95);
}

/* 12. Mobile Sticky CTA Bar */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 -4px 20px rgba(16, 42, 67, 0.12);
  z-index: 990;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

.mobile-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  align-items: center;
}

.mobile-cta-btn {
  height: 44px;
  min-height: 44px;
  padding: 0 6px !important;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-sizing: border-box;
  min-width: 0;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-cta-btn span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-cta-btn:active {
  transform: scale(0.97);
}

.mobile-cta-btn svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  display: block;
}

.mobile-cta-call {
  background: linear-gradient(135deg, #102a43 0%, #1e3a5f 100%);
  color: #ffffff !important;
}
.mobile-cta-call:hover,
.mobile-cta-call:focus {
  background: linear-gradient(135deg, #0c2135 0%, #152d4b 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(16, 42, 67, 0.25);
}

.mobile-cta-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
  color: #ffffff !important;
}
.mobile-cta-whatsapp:hover,
.mobile-cta-whatsapp:focus {
  background: linear-gradient(135deg, #20ba59 0%, #17a04e 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.mobile-cta-book {
  background: linear-gradient(135deg, var(--color-saffron) 0%, #d3640e 100%);
  color: #ffffff !important;
}
.mobile-cta-book:hover,
.mobile-cta-book:focus {
  background: linear-gradient(135deg, #d3640e 0%, #b85408 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(232, 117, 22, 0.3);
}

/* Base style for spacing out content above sticky bottom navbar */
body {
  padding-bottom: 0;
}


/* Media Queries */

/* Tablet Viewport (768px - 1023px) */
@media (max-width: 1023px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-title {
    font-size: 2.25rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-trust-indicators {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .slot-hero, .slot-medium-1, .slot-medium-2, .slot-quote, .slot-medium-3, .slot-medium-4, .slot-featured {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 240px !important;
  }
  .slot-hero {
    grid-column: span 2 !important;
    height: 360px !important;
  }
  .slot-featured {
    grid-column: span 2 !important;
    height: 320px !important;
  }
  .brand-quote-card {
    aspect-ratio: auto;
  }
  
  .reviews-asymmetric-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .journey-timeline-container {
    padding-bottom: 100px;
    margin: 40px auto;
  }
  .journey-road-path-svg {
    height: 220px;
    top: 20px;
  }
  .timeline-steps-list {
    grid-template-columns: repeat(4, 1fr) 60px;
  }
  .step-content-box p {
    font-size: 0.8rem;
    max-width: 150px;
  }
  .step-card-below {
    transform: translateY(80px);
  }
  .step-card-below:hover {
    transform: translateY(75px);
  }
  .timeline-destination-endpoint {
    transform: translateY(30px);
  }
  .step-bg-number {
    font-size: 5rem;
  }

  .footer-cta-inner {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-grid > :last-child {
    grid-column: span 2;
  }
}

/* Mobile Viewport (320px - 768px) */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); /* Pad bottom so content isn't hidden by sticky CTA */
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .about-section-wrapper {
    padding: 60px 0;
  }
  
  .about-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }
  
  .about-visual {
    padding: 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
  }

  .about-curved-road {
    display: none;
  }

  .about-image-main-wrapper {
    width: 100%;
    max-width: 480px;
    border-radius: 18px;
    aspect-ratio: 16/9;
  }
  
  .about-image-sub-wrapper {
    display: none;
  }
  
  .about-floating-card {
    position: absolute;
    bottom: -20px;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    width: 90%;
    max-width: 270px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 0;
  }
  
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .about-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .about-ctas .btn {
    width: 100%;
  }
  
  .section-title {
    font-size: 1.85rem;
  }
  
  .navbar-container {
    height: 70px;
  }
  
  .navbar-right .btn-nav-cta,
  .navbar-right .navbar-phone-info {
    display: none; /* Hide top CTAs on mobile, bottom sticky handles it */
  }
  
  .hamburger-btn {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-white);
    z-index: 999;
    flex-direction: column;
    padding: 40px 24px;
    align-items: center;
    gap: 20px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: flex;
    overflow-y: auto;
  }
  
  .nav-menu-active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-links-list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
  }
  
  .nav-link {
    font-size: 1.15rem;
    color: var(--color-navy) !important;
  }
  
  .mobile-menu-ctas {
    display: flex;
  }
  
  /* Mobile menu active toggle animation */
  .toggle-active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .toggle-active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .toggle-active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .hero-title {
    font-size: 2.25rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }
  
  .hero-actions-container {
    align-items: stretch;
    width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .form-card {
    padding: 20px;
  }
  
  /* Trust strip horizontally scrollable */
  .trust-strip-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  
  .trust-strip-item {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: 30px;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .packages-bottom-cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px 20px;
    margin-top: 30px;
  }
  
  .packages-bottom-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .packages-bottom-cta-buttons .btn {
    width: 100%;
  }
  
  .why-us-section-wrapper {
    padding: 60px 0;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .why-us-visual {
    padding: 0;
    margin-bottom: 30px;
    width: 100%;
  }

  .why-us-image-wrapper {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16/9;
    border-radius: 18px;
  }

  .why-us-floating-card {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 270px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .why-us-path-svg {
    display: none;
  }

  .why-us-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .trust-bar-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    margin: 30px auto;
  }

  .why-us-bottom-cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px 20px;
    margin-top: 30px;
  }

  .why-us-bottom-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .why-us-bottom-cta-buttons .btn {
    width: 100%;
  }
  
  /* How it works vertical */
  .process-section-wrapper {
    padding: 60px 0;
  }
  
  .process-section-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .journey-timeline-container {
    padding: 20px 0 40px 0;
    margin: 30px auto;
  }

  .journey-road-path-svg {
    display: none;
  }

  .timeline-steps-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
    padding-left: 45px;
    grid-template-columns: 1fr; /* Reset grid */
  }

  /* Vertical dashed road path simulation */
  .timeline-steps-list::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 40px;
    left: 20px;
    width: 3px;
    background-color: var(--color-teal);
    background-image: linear-gradient(to bottom, var(--color-teal) 60%, transparent 60%);
    background-size: 3px 12px;
    z-index: 1;
  }

  .step-card-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    transform: none !important;
    width: 100%;
    gap: 16px;
  }

  .step-bg-number {
    display: none;
  }

  .step-icon-container {
    width: 44px;
    height: 44px;
    margin-bottom: 0;
    flex-shrink: 0;
    z-index: 2;
  }

  .step-content-box {
    align-items: flex-start;
  }

  .step-content-box p {
    max-width: 100%;
    margin: 4px 0 0 0;
  }

  .timeline-destination-endpoint {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    transform: none !important;
    padding-left: 0;
    margin-left: -3px;
  }

  .destination-marker-circle {
    width: 46px;
    height: 46px;
    margin-bottom: 0;
    z-index: 2;
  }

  .process-cta-card {
    padding: 24px 20px;
    margin-top: 30px;
  }

  .process-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .process-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .process-cta-buttons .btn {
    width: 100%;
  }
  
  .gallery-section-wrapper {
    padding: 60px 0;
  }
  
  .gallery-section-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }
  
  .gallery-masonry-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .slot-hero, .slot-medium-1, .slot-medium-2, .slot-quote, .slot-medium-3, .slot-medium-4, .slot-featured {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 220px !important;
  }
  
  .slot-hero {
    height: 280px !important;
  }
  
  .slot-quote {
    height: auto !important;
    aspect-ratio: 16/10;
  }
  
  .gallery-bottom-cta {
    padding: 24px 20px;
    margin-top: 30px;
  }
  
  .gallery-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .gallery-cta-buttons .btn {
    width: 100%;
  }
  
  .lightbox-nav-btn {
    font-size: 2rem;
    padding: 8px;
  }
  
  .lightbox-close-btn {
    font-size: 2.5rem;
    top: 16px;
    right: 16px;
  }
  
  .lightbox-content-wrapper {
    max-width: 95vw;
  }
  
  .lightbox-active-img {
    max-height: 60vh;
  }
  
  .reviews-faq-wrapper {
    padding: 60px 0;
  }

  .reviews-asymmetric-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 16px 24px 16px;
    margin: 0 -16px 20px -16px;
    -webkit-overflow-scrolling: touch;
  }

  .review-card-featured, .review-card-supporting {
    flex: 0 0 85vw;
    scroll-snap-align: center;
    min-height: auto !important;
  }

  .reviews-supporting-stack {
    display: contents;
  }

  .faq-editorial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-reassurance-card {
    padding: 30px 20px;
    border-radius: 18px;
  }

  .faq-reassurance-buttons {
    width: 100%;
  }

  .faq-reassurance-buttons .btn {
    width: 100%;
  }

  .faq-header {
    padding: 18px 20px;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .reviews-faq-bottom-cta {
    padding: 24px 20px;
    margin-top: 30px;
  }

  .reviews-faq-bottom-cta h3 {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .reviews-faq-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .reviews-faq-cta-buttons .btn {
    width: 100%;
  }
  
  .final-cta-wrapper {
    padding: 50px 20px;
    border-radius: 20px;
  }

  .final-cta-heading {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .final-cta-desc-p1 {
    font-size: 0.95rem;
  }

  .final-cta-trust-points {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
  }

  .final-cta-buttons-grid {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .final-cta-buttons-grid .btn,
  .final-cta-buttons-grid .btn-call-now-white,
  .final-cta-buttons-grid .btn-whatsapp-teal {
    width: 100%;
  }
  
  .footer-cta-card {
    border-radius: 18px;
    min-height: auto;
  }

  .footer-cta-inner {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
    gap: 24px;
  }

  .footer-cta-left h3 {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .footer-cta-left p {
    font-size: 0.85rem;
  }

  .footer-cta-right {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .footer-cta-right .btn {
    width: 100%;
  }

  .footer-middle-content {
    padding: 80px 0 20px 0;
  }

  .footer-accent-road-svg {
    display: none;
  }

  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
  }

  .footer-column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 16px 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .footer-col-brand {
    text-align: left !important;
    align-items: flex-start !important;
    padding-bottom: 20px !important;
  }

  .footer-col-contact {
    border-bottom: none !important;
    padding-top: 16px !important;
  }

  /* Accordion styling on mobile */
  .footer-mobile-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .footer-mobile-toggle h4 {
    margin: 0;
  }

  .footer-toggle-icon {
    display: block;
    font-size: 1.3rem;
    color: var(--color-saffron);
    font-weight: 700;
  }

  .footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .footer-menu-list {
    padding: 16px 4px 4px 4px;
  }

  .footer-trust-strip {
    padding: 20px 0;
  }

  .footer-trust-inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-bottom-copyright {
    padding: 20px 0;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-links {
    justify-content: center;
    width: 100%;
  }

  .back-to-top-btn {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    right: 14px;
    width: 40px;
    height: 40px;
    box-shadow: 0 3px 12px rgba(16, 42, 67, 0.22);
  }
  
  .mobile-sticky-cta {
    display: block;
  }

  .side-sticky-contacts {
    display: none !important;
  }
}


/* Very Small Mobile Screens (320px - 360px) */
@media (max-width: 360px) {
  .mobile-sticky-cta {
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0px));
  }
  
  .mobile-cta-grid {
    gap: 4px;
  }
  
  .mobile-cta-btn {
    height: 40px;
    min-height: 40px;
    font-size: 0.7rem;
    gap: 3px;
    padding: 0 3px !important;
  }
  
  .mobile-cta-btn svg {
    width: 13px;
    height: 13px;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }
}

/* Reduced Motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .package-card:hover, .why-card:hover, .btn:hover {
    transform: none !important;
  }
  
  .package-card:hover .package-image, .gallery-item:hover .gallery-img {
    transform: none !important;
  }
}

/* Modal Popup Form */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 42, 67, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.modal-active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card-wrapper {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: modalScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 10px;
}

@keyframes modalScaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: var(--color-text-light);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--color-saffron);
}

.input-error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
}

/* Side Sticky Contacts (Desktop & Large screens) */
.side-sticky-contacts {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 998;
}

.sticky-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(16, 42, 67, 0.15);
  transition: var(--transition);
}

.sticky-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 42, 67, 0.25);
}

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

.btn-call {
  background-color: #007bff;
}

.btn-enquire {
  background-color: #ff9800;
}

/* Hide on mobile and tablet because mobile-sticky-cta handles bottom actions */
@media (max-width: 768px) {
  .side-sticky-contacts {
    display: none !important;
  }
}

/* FAQ Left Column Layout */
.faq-left-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-theme-illustration {
  background-color: var(--color-navy);
  border-radius: var(--radius-card);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--transition);
}

.faq-theme-illustration:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.faq-theme-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Animations for FAQ illustration */
@keyframes sunGlow {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.15); opacity: 0.25; }
}

.svg-sun-glow {
  transform-origin: 200px 110px;
  animation: sunGlow 4s ease-in-out infinite;
}

@keyframes cloudFloat {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(12px); }
}
.bg-clouds {
  animation: cloudFloat 10s ease-in-out infinite;
}

@keyframes starFlicker {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.sky-stars circle {
  animation: starFlicker 2.5s ease-in-out infinite;
}
.sky-stars circle:nth-child(2n) {
  animation-delay: 0.8s;
}

@keyframes flagFlutter {
  0%, 100% { transform: skewY(0deg) scaleX(1); }
  50% { transform: skewY(-5deg) scaleX(0.92); }
}
.temple-flag {
  transform-origin: 30px -25px;
  animation: flagFlutter 1.2s ease-in-out infinite;
}

@keyframes busRouteTravel {
  0% { transform: translate(-20px, 240px) scale(0.6) rotate(-10deg); opacity: 0; }
  5% { opacity: 1; }
  45% { transform: translate(180px, 160px) scale(0.95) rotate(-3deg); }
  55% { transform: translate(220px, 163px) scale(1) rotate(5deg); }
  95% { opacity: 1; }
  100% { transform: translate(410px, 185px) scale(0.7) rotate(-2deg); opacity: 0; }
}
.animated-yatra-bus {
  animation: busRouteTravel 10s linear infinite;
}

@keyframes lightPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.35; }
}
.headlight-beam {
  animation: lightPulse 0.2s ease-in-out infinite;
}
