/* =========================================================
   RAJPUTANA TRIP - STYLESHEET
   Modern Luxury Travel Experience Design
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  --primary-brand: #f5a328;
  --primary-brand-dark: #ea9619;
  --primary-red: #f44236;
  --primary-red-hover: #e53935;
  --primary-red-dark: #d32f2f;
  --brand-navy: #1c2d53;
  --brand-navy-light: #283e6b;
  --brand-gold: #f5a328;
  --brand-gold-light: #ffb84d;
  --brand-gradient: linear-gradient(135deg, #f5a328 0%, #ea9619 100%);
  --brand-hover: linear-gradient(135deg, #ea9619 0%, #d88710 100%);
  --gold-gradient: linear-gradient(135deg, #ffb84d 0%, #f5a328 100%);
  --gold-hover: linear-gradient(135deg, #ffc56e 0%, #f39b1a 100%);
  --red-gradient: linear-gradient(135deg, #f44236 0%, #d32f2f 100%);
  --accent-green: #25D366;
  --whatsapp-color: #25D366;
  --whatsapp-hover: #1eb954;
  --dark-royal: #1c2d53;
  --text-dark: #1c2d53;
  --text-muted: #64748b;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
.site-header {
  position: relative;
  z-index: 100;
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  height: 85px;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideDownHeader 0.4s ease forwards;
}

@keyframes slideDownHeader {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header-container {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
  order: 1;
}

.brand-logo-img {
  height: 64px;
  max-height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

/* Navigation Menu */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  order: 2;
  margin-left: auto;
  margin-right: 28px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #1c2d53;
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-link.active {
  color: #f5a328;
  font-weight: 700;
}

.nav-link:hover {
  color: #f5a328;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: #f5a328;
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

.nav-dropdown-icon {
  font-size: 11px;
  transition: transform var(--transition-fast);
}

.nav-item-dropdown:hover .nav-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #1c2d53;
  cursor: pointer;
  order: 4;
}

/* Header Call CTA (Desktop & Mobile) */
.header-mobile-call,
.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f5a328 0%, #ea9619 100%);
  border: 1.5px solid #e08e16;
  color: #1c2d53;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(245, 163, 40, 0.32);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  order: 3;
}

.header-mobile-call i,
.header-call-btn i {
  color: #1c2d53;
  font-size: 14px;
  transition: color 0.25s ease;
}

.header-mobile-call:hover,
.header-mobile-call:active,
.header-call-btn:hover,
.header-call-btn:active {
  background: #1c2d53;
  color: #ffffff;
  border-color: #1c2d53;
  box-shadow: 0 4px 16px rgba(28, 45, 83, 0.38);
  transform: translateY(-2px);
}

.header-mobile-call:hover i,
.header-mobile-call:active i,
.header-call-btn:hover i,
.header-call-btn:active i {
  color: #f5a328;
}

/* =========================================================
   HERO SLIDER SECTION
   ========================================================= */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: calc(88vh - 40px);
  min-height: 560px;
  max-height: 780px;
  overflow: hidden;
  background-color: #0b1118;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual Slide */
.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.slide-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Slide Image & Background Layer */
.slide-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #070d18;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.68;
  filter: brightness(0.8) contrast(1.08);
  transform: scale(1);
  transition: transform 7s ease-out, opacity 1s ease;
}

.slide-item.active .slide-image {
  opacity: 0.72;
  transform: scale(1.09);
  animation: kenBurnsZoom 10s infinite alternate ease-in-out;
}

@keyframes kenBurnsZoom {
  0% {
    transform: scale(1.0);
  }

  50% {
    transform: scale(1.08) translate(-0.5%, -0.5%);
  }

  100% {
    transform: scale(1.04) translate(0.5%, 0.5%);
  }
}

/* Overlay gradient for readability */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(7, 13, 24, 0.62) 0%,
      rgba(7, 13, 24, 0.42) 38%,
      rgba(7, 13, 24, 0.70) 75%,
      rgba(7, 13, 24, 0.92) 100%);
  z-index: 1;
}

/* Slide Content */
.slide-content-container {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  padding: 0 24px;
  text-align: center;
  margin-top: 0;
}

/* Badge / Sub-tag */
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(-25px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.slide-badge i {
  color: var(--primary-brand);
}

.slide-item.active .slide-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Main Heading Animation */
.slide-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.9);
  opacity: 0;
  transform: translateY(35px) scale(0.97);
  transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

@media (min-width: 768px) {
  .slide-title {
    white-space: nowrap;
  }
}

.slide-title .highlight {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ffffff;
  display: inline-block;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.9);
  filter: none;
}

.slide-item.active .slide-title {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Subtitle Animation */
.slide-subtitle {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  max-width: 780px;
  margin: 0 auto 28px auto;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
}

.slide-item.active .slide-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   CALL TO ACTION BUTTONS (Book Now & WhatsApp)
   ========================================================= */
.slide-buttons-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.slide-item.active .slide-buttons-group {
  opacity: 1;
  transform: translateY(0);
}

/* Base CTA Button */
.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.3px;
  z-index: 1;
}

/* 1. BOOK NOW BUTTON (Left Button - #f44236 Red Theme) */
.btn-book-now {
  background: #f44236;
  background: linear-gradient(135deg, #f44236 0%, #d32f2f 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(244, 66, 54, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.btn-book-now::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
  animation: lightShine 3.5s infinite;
}

@keyframes lightShine {
  0% {
    left: -120%;
  }

  25% {
    left: 160%;
  }

  100% {
    left: 160%;
  }
}

.btn-book-now:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 32px rgba(244, 66, 54, 0.65), inset 0 1px 2px rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  color: #ffffff;
}

.btn-book-now .btn-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.btn-book-now:hover .btn-icon-box {
  transform: translateX(3px) rotate(-10deg);
}

/* 2. WHATSAPP BUTTON (Right Button - Vibrant WhatsApp Green / Pulse) */
.btn-whatsapp {
  background: var(--whatsapp-color);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  position: relative;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.whatsapp-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: relative;
  transition: transform 0.3s ease;
}

.btn-whatsapp:hover .whatsapp-icon-wrap {
  transform: scale(1.15) rotate(8deg);
}

/* Online Pulse Dot */
.online-indicator {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 8px;
  height: 8px;
  background-color: #a3ff12;
  border-radius: 50%;
  border: 1.5px solid #25D366;
  animation: pulseIndicator 1.8s infinite;
}

@keyframes pulseIndicator {
  0% {
    box-shadow: 0 0 0 0 rgba(163, 255, 18, 0.7);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(163, 255, 18, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(163, 255, 18, 0);
  }
}

/* Button Subtle Ambient Glow Animation */
@keyframes ambientPulse {

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

  50% {
    transform: translateY(-2px);
  }
}

/* =========================================================
   SLIDER CONTROLS (Arrows & Indicators)
   ========================================================= */
.slider-arrow-btn {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  outline: none;
}

.slider-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-royal);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.slider-arrow-prev {
  left: 28px;
}

.slider-arrow-next {
  right: 28px;
}

/* Slider Pagination Dots / Bars */
.slider-pagination {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-dot {
  position: relative;
  width: 38px;
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.slider-dot.active {
  width: 56px;
  background: rgba(255, 255, 255, 0.4);
}

.slider-dot-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  border-radius: 4px;
}

.slider-dot.active .slider-dot-progress {
  width: 100%;
  transition: width 5s linear;
}

/* =========================================================
   FLOATING CAB SEARCH BAR (Half on Slider, Half on Section)
   ========================================================= */
.floating-search-wrapper {
  position: relative;
  max-width: 1260px;
  margin: -50px auto 45px auto;
  padding: 0 20px;
  z-index: 35;
}

.search-bar-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12), 0 4px 14px rgba(15, 23, 42, 0.05);
  border: 1px solid #e5e7eb;
  padding: 18px 24px;
  transition: box-shadow 0.3s ease;
}

.search-bar-card:hover {
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16), 0 6px 18px rgba(15, 23, 42, 0.08);
}

.cab-search-form {
  display: grid;
  grid-template-columns: 1.18fr 1.18fr 1.02fr 1.08fr auto;
  gap: 16px;
  align-items: flex-end;
  width: 100%;
}

.search-field-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.search-field-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
  user-select: none;
}

.search-field-label i {
  color: #64748b;
  font-size: 12.5px;
}

.search-input-wrap {
  position: relative;
  width: 100%;
}

.search-input-control,
.search-select-control {
  width: 100%;
  height: 46px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 9px;
  padding: 0 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: #1e293b;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.search-input-control::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.search-input-control:focus,
.search-select-control:focus {
  border-color: #fe8f19;
  box-shadow: 0 0 0 3px rgba(254, 143, 25, 0.15);
}

/* Vehicle dropdown highlighted border as shown in screenshot */
.vehicle-field .search-select-control {
  border-color: #fe8f19;
  font-weight: 600;
  color: #1e293b;
}

.select-wrap {
  position: relative;
  width: 100%;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 32px;
  cursor: pointer;
}

.select-arrow-icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #64748b;
  font-size: 11px;
}

/* Date Input custom styling */
.date-input-wrap input[type="date"] {
  cursor: pointer;
  color: #1e293b;
}

/* Search Submit Button */
.search-action-item {
  display: flex;
  align-items: flex-end;
}

.btn-cab-search {
  height: 46px;
  padding: 0 24px;
  background: linear-gradient(135deg, #f5a328 0%, #ea9619 100%);
  border: none;
  border-radius: 9px;
  color: #1c2d53;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(245, 163, 40, 0.35);
}

.btn-cab-search i {
  font-size: 14px;
  color: #1c2d53;
}

.btn-cab-search:hover {
  background: #1c2d53;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(28, 45, 83, 0.45);
  color: #ffffff;
}

.btn-cab-search:hover i {
  color: #f5a328;
}

.btn-cab-search:active {
  transform: translateY(0);
}

/* =========================================================
   POPULAR RAJASTHAN TOURIST ROUTES (CARDS WITH ANIMATION)
   ========================================================= */
.popular-routes-section {
  max-width: 1280px;
  margin: 55px auto 40px auto;
  padding: 0 24px;
}

.routes-header-wrap {
  text-align: center;
  margin-bottom: 36px;
}

.routes-badge {
  color: var(--primary-brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.routes-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 10px;
}

.routes-desc {
  color: #718096;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 22px;
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }
}

@media (max-width: 600px) {
  .routes-grid {
    grid-template-columns: 1fr;
    gap: 36px 16px;
  }
}

/* Route Card (Logo Dark Navy Theme with Destination Image Background) */
.route-card {
  position: relative;
  background-color: #0f172a;
  border-radius: 18px;
  border: 1px solid rgba(254, 143, 25, 0.28);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 195px;
}

.route-card:hover {
  transform: translateY(-7px);
  border-color: rgba(254, 143, 25, 0.65);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.5), 0 0 20px rgba(254, 143, 25, 0.22);
}

/* Route Background Image & Overlay */
.route-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.route-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.route-card:hover .route-bg-img {
  transform: scale(1.1);
}

.route-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.90) 55%, rgba(15, 23, 42, 0.97) 100%);
  transition: background 0.35s ease;
}

.route-card:hover .route-card-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.62) 0%, rgba(15, 23, 42, 0.85) 55%, rgba(15, 23, 42, 0.95) 100%);
}

/* Card Inner Content */
.route-card-inner {
  position: relative;
  z-index: 2;
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex: 1;
}

/* Card Upper Content */
.route-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.route-cities-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.route-cities {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.route-city-from {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fe8f19;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.route-city-to {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.15;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.route-card:hover .route-city-to {
  transform: translateX(3px);
}

/* Big Pin on Right */
.route-pin-end {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(254, 143, 25, 0.15);
  border: 1px solid rgba(254, 143, 25, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fe8f19;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.route-card:hover .route-pin-end {
  background: #fe8f19;
  color: #ffffff;
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 4px 14px rgba(254, 143, 25, 0.4);
}

/* Track Line (Dashed Road) */
.route-track-line {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 14px;
  width: 100%;
}

.track-pin-start {
  color: #fe8f19;
  font-size: 16px;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.route-card:hover .track-pin-start {
  transform: scale(1.2);
}

.track-dashed-road {
  flex: 1;
  height: 0;
  border-top: 2px dashed rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: visible;
}

/* Small Animated Car on Route */
.track-car-icon {
  position: absolute;
  top: -10px;
  left: 10%;
  color: #ffffff;
  font-size: 12px;
  background: #fe8f19;
  padding: 1px 5px;
  border-radius: 4px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.route-card:hover .track-car-icon {
  left: 75%;
  transform: scale(1.15);
}

/* Button Inside the Box */
.route-card-btn-wrap {
  margin-top: auto;
  width: 100%;
}

.btn-route-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 16px;
  background: #f44236;
  background: linear-gradient(135deg, #f44236 0%, #d32f2f 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(244, 66, 54, 0.35);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  outline: none;
}

.btn-route-book:hover {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 66, 54, 0.55);
}

/* Route Card Actions (Inside box for dual buttons) */
.route-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  width: 100%;
}

.btn-route-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  outline: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-route-action.btn-route-book {
  background: #f44236;
  background: linear-gradient(135deg, #f44236 0%, #d32f2f 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(244, 66, 54, 0.35);
}

.btn-route-action.btn-route-book:hover {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(244, 66, 54, 0.55);
}

.btn-route-action.btn-route-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-route-action.btn-route-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.5);
}

/* =========================================================
/* =========================================================
   POPULAR JAIPUR PILGRIMAGE DAY TOURS (BRAND LOGO COLOR PALETTE)
   Navy Blue (#1b2a47) & Taxi Golden Amber (#f9a825)
   ========================================================= */
.pilgrimage-tours-section {
  width: 100%;
  padding: 75px 0 85px 0;
  background-color: #f8fafc;
  position: relative;
  border-top: 1px solid #eef2f6;
}

.pilgrimage-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.pilgrim-header-wrap {
  text-align: center;
  margin-bottom: 45px;
}

.pilgrim-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1b2a47;
  background: rgba(249, 168, 37, 0.15);
  border: 1px solid rgba(249, 168, 37, 0.35);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.pilgrim-badge i {
  color: #f9a825;
}

.pilgrim-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: #1b2a47;
  line-height: 1.25;
  margin-bottom: 10px;
}

.pilgrim-title-bar {
  width: 65px;
  height: 4px;
  background: linear-gradient(90deg, #1b2a47 0%, #f9a825 100%);
  margin: 0 auto 14px auto;
  border-radius: 4px;
}

.pilgrim-section-desc {
  font-size: 15.5px;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.pilgrim-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.pilgrim-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(27, 42, 71, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.pilgrim-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1b2a47 0%, #f9a825 100%);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pilgrim-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(27, 42, 71, 0.14), 0 6px 16px rgba(249, 168, 37, 0.12);
  border-color: #f9a825;
}

.pilgrim-card:hover::before {
  opacity: 1;
}

/* Image Wrap */
.pilgrim-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #1b2a47;
}

.pilgrim-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pilgrim-card:hover .pilgrim-card-img {
  transform: scale(1.08);
}

/* Floating Image Badges */
.pilgrim-img-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  pointer-events: none;
}

.pilgrim-theme-badge {
  background: rgba(27, 42, 71, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(249, 168, 37, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pilgrim-theme-badge i {
  color: #f9a825;
}

.pilgrim-time-badge {
  background: linear-gradient(135deg, #f9a825 0%, #e67e22 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Route Strip at Image Base */
.pilgrim-route-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 12px 8px 12px;
  background: linear-gradient(to top, rgba(27, 42, 71, 0.95) 0%, rgba(27, 42, 71, 0.5) 60%, transparent 100%);
  color: #f8fafc;
  font-size: 11.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.pilgrim-route-strip span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pilgrim-route-strip i {
  color: #f9a825;
}

/* Body */
.pilgrim-card-body {
  padding: 18px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pilgrim-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18.5px;
  font-weight: 800;
  color: #1b2a47;
  margin-bottom: 6px;
  line-height: 1.3;
  text-align: center;
}

.pilgrim-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
  margin-bottom: 14px;
  text-align: center;
  flex-grow: 1;
}

/* Fare Box */
.pilgrim-fare-box {
  background: #f1f5f9;
  border-radius: 12px;
  border: 1px dashed #cbd5e1;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.fare-caption {
  font-size: 11px;
  font-weight: 700;
  color: #1b2a47;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.fare-amount-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.fare-curr {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #f9a825;
}

.fare-val {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #1b2a47;
  line-height: 1;
}

.fare-unit {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  margin-left: 2px;
}

/* Button Group */
.pilgrim-btn-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}

.btn-pilgrim-book {
  background: linear-gradient(135deg, #1b2a47 0%, #111d33 100%);
  color: #ffffff;
  border: 1.5px solid #1b2a47;
  border-radius: 30px;
  padding: 9px 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  outline: none;
  box-shadow: 0 4px 10px rgba(27, 42, 71, 0.25);
  white-space: nowrap;
}

.btn-pilgrim-book i {
  color: #f9a825;
  font-size: 12px;
}

.btn-pilgrim-book:hover {
  background: linear-gradient(135deg, #f9a825 0%, #e67e22 100%);
  border-color: #f9a825;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(249, 168, 37, 0.4);
}

.btn-pilgrim-book:hover i {
  color: #ffffff;
}

.btn-pilgrim-whatsapp {
  background: #ffffff;
  color: #1b2a47;
  border: 1.5px solid #1b2a47;
  border-radius: 30px;
  padding: 9px 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-pilgrim-whatsapp i {
  color: #25D366;
  font-size: 14px;
}

.btn-pilgrim-whatsapp:hover {
  background: #1b2a47;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 42, 71, 0.3);
}

@media (max-width: 1100px) {
  .pilgrim-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .pilgrim-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pilgrim-img-wrap {
    height: 210px;
  }
}

/* =========================================================
   ALL RAJASTHAN TOUR PACKAGES AVAILABLE - MARQUEE TICKER
   ========================================================= */
.tour-marquee-section {
  width: 100%;
  background: linear-gradient(90deg, #ff9800 0%, #fe8f19 35%, #ffa726 65%, #fe8f19 100%);
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #e67e00;
  box-shadow: 0 4px 18px rgba(254, 143, 25, 0.35);
  position: relative;
  z-index: 15;
  overflow: hidden;
}

.tour-marquee-wrapper {
  display: flex;
  align-items: center;
  height: 48px;
  width: 100%;
}

.tour-marquee-badge {
  background: #0f172a;
  color: #ffffff;
  padding: 0 20px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-shadow: 4px 0 14px rgba(0, 0, 0, 0.25);
  z-index: 2;
  flex-shrink: 0;
  border-right: 2px solid #fe8f19;
}

.tour-marquee-badge i {
  color: #fe8f19;
  font-size: 14px;
}

.tour-marquee-track-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
}

.tour-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeLoop 28s linear infinite;
  will-change: transform;
}

.tour-marquee-track:hover {
  animation-play-state: paused;
  cursor: pointer;
}

.tour-marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.tour-marquee-content .city-tag {
  color: #0f172a;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.tour-marquee-content .city-tag:hover {
  color: #ffffff;
  transform: scale(1.05);
}

.tour-marquee-content .city-tag i {
  color: #f44236;
  font-size: 12px;
}

.tour-marquee-content .city-divider {
  color: #0f172a;
  margin: 0 12px;
  font-size: 12px;
  opacity: 0.65;
}

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

@media (max-width: 768px) {
  .tour-marquee-wrapper {
    height: 44px;
  }
  .tour-marquee-badge {
    padding: 0 12px;
    font-size: 12px;
    gap: 5px;
  }
  .tour-marquee-badge span {
    font-size: 11.5px;
  }
  .tour-marquee-content .city-tag {
    font-size: 13.5px;
  }
  .tour-marquee-track {
    animation-duration: 22s;
  }
}

/* =========================================================
   FLEET & TAXI VEHICLES SHOWCASE (4x4 GRID WITH SCENIC BG)
   ========================================================= */
.fleet-showcase-section {
  position: relative;
  width: 100%;
  padding: 85px 0 95px 0;
  overflow: hidden;
  background-color: #0f172a;
}

/* Scenic Rajasthan Background Image Layer */
.fleet-showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/about-rajasthan.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
  opacity: 0.9;
}

/* Premium Dark Gradient Overlay for Contrast & Readability */
.fleet-showcase-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(15, 23, 42, 0.85) 0%,
      rgba(15, 23, 42, 0.70) 50%,
      rgba(15, 23, 42, 0.90) 100%);
  z-index: 2;
}

@media (max-width: 768px) {
  .fleet-showcase-section::before {
    background-attachment: scroll;
  }
}

.fleet-container {
  position: relative;
  z-index: 5;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.fleet-header-wrap {
  text-align: center;
  margin-bottom: 44px;
}

.fleet-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(253, 143, 25, 0.22);
  border: 1px solid rgba(253, 143, 25, 0.55);
  color: #ffa834;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.fleet-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.5px;
}

.fleet-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

/* 4-column Grid */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

@media (max-width: 1120px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* Fleet Card */
.fleet-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
  border-color: #ffd8a8;
}

/* Vehicle Image Frame (Full Width Edge-to-Edge) */
.fleet-image-wrap {
  width: 100%;
  aspect-ratio: 960 / 679;
  max-height: 210px;
  background: #ffffff;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}

.fleet-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-card:hover .fleet-car-img {
  transform: scale(1.06);
}

/* Fleet Info Wrap */
.fleet-info-wrap {
  padding: 18px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

/* Upper Card Header (Title & Category on Left, Rate on Right) */
.fleet-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.fleet-card-title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fleet-card-name {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 4px;
}

.fleet-category-badge {
  display: inline-block;
  background: #fff4e5;
  color: #e67e22;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: var(--radius-full);
  align-self: flex-start;
  letter-spacing: 0.3px;
}

/* Upper Rate / Price Tag */
.fleet-price-tag {
  display: inline-flex;
  align-items: baseline;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  padding: 5px 11px;
  border-radius: 12px;
  color: #ea580c;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.08);
  white-space: nowrap;
}

.fleet-price-tag .fleet-price-symbol {
  font-size: 13px;
  font-weight: 700;
  margin-right: 1px;
}

.fleet-price-tag .fleet-price-val {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.fleet-price-tag .fleet-price-unit {
  font-size: 12px;
  font-weight: 600;
  color: #9a3412;
  margin-left: 2px;
}

/* Specs Row */
.fleet-specs-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4b5563;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.fleet-spec-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.fleet-spec-item i {
  color: #e67e22;
  font-size: 13px;
}

/* Bottom Row with Left & Right Action Buttons */
.fleet-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  margin-top: auto;
}

/* Left Button: WhatsApp */
.btn-fleet-whatsapp {
  flex: 1;
  background: #25D366;
  color: #ffffff;
  border: 1.5px solid #20bd5a;
  border-radius: var(--radius-full);
  padding: 9px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}

.btn-fleet-whatsapp i {
  font-size: 15px;
}

.btn-fleet-whatsapp:hover {
  background: #1eb954;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* Right Button: Book Now */
.btn-fleet-book {
  flex: 1;
  background: #f44236;
  background: linear-gradient(135deg, #f44236 0%, #d32f2f 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  padding: 9px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(244, 66, 54, 0.35);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  outline: none;
  white-space: nowrap;
}

.btn-fleet-book:hover {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 66, 54, 0.5);
  color: #ffffff;
}

/* Fleet Extra Cards Always Visible */
.fleet-card-extra {
  display: flex;
  opacity: 1;
  transform: none;
}

/* Show More Fleet Button */
.fleet-more-btn-wrap {
  text-align: center;
  margin-top: 42px;
  position: relative;
  z-index: 10;
}

.btn-fleet-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f44236 0%, #d32f2f 100%);
  color: #ffffff;
  padding: 14px 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 28px rgba(254, 143, 25, 0.45), 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.btn-fleet-more:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 36px rgba(254, 143, 25, 0.65), 0 6px 14px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffb347 0%, #fd9a28 50%, #e25816 100%);
}

.btn-more-icon {
  font-size: 14px;
  transition: transform 0.35s ease;
}

.fleet-grid.expanded~.fleet-more-btn-wrap .btn-more-icon {
  transform: rotate(180deg);
}

/* =========================================================
   ABOUT RAJASTHAN TOUR - LUCKY CAB SERVICE SECTION
   ========================================================= */
.about-tour-section {
  width: 100%;
  padding: 90px 0 100px 0;
  background-color: #ffffff;
  position: relative;
}

.about-tour-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-tour-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

/* Left Content Column */
.about-tour-content {
  display: flex;
  flex-direction: column;
}

.about-tour-badge {
  color: #fe8f19;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-tour-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 3.8vw, 42px);
  font-weight: 800;
  color: #f44236;
  line-height: 1.18;
  letter-spacing: -0.5px;
}

.about-title-bar {
  width: 65px;
  height: 4px;
  background: #fe8f19;
  border-radius: 4px;
  margin: 14px 0 24px 0;
}

.about-tour-text {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
}

.about-tour-text strong {
  color: #1f2937;
  font-weight: 700;
}

.about-tour-text em {
  color: #f44236;
  font-style: italic;
  font-weight: 600;
}

/* Features Grid */
.about-features-row {
  display: flex;
  gap: 20px;
  margin: 15px 0 32px 0;
  flex-wrap: wrap;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fdfaf6;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid #f8eedf;
  flex: 1;
  min-width: 150px;
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(254, 143, 25, 0.15);
  border-color: #ffd8a8;
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff0db;
  color: #fe8f19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.about-feature-info h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.2;
}

.about-feature-info span {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.about-btn-wrap {
  margin-top: 5px;
}

/* Right Image Column */
.about-tour-image-wrap {
  position: relative;
}

.about-image-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(0, 0, 0, 0.06);
  border: 5px solid #ffffff;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.2);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Floating Image Badge */
.about-img-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(17, 24, 39, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-img-badge i {
  color: #ffd700;
  font-size: 16px;
}

/* =========================================================
   RAJASTHAN HOLIDAY PACKAGES (3-COLUMN SECTION)
   ========================================================= */
.packages-section {
  width: 100%;
  padding: 60px 0 100px 0;
  background: #fdfbf7;
  position: relative;
  border-top: 1px solid #f4ece1;
}

.packages-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.packages-header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.packages-badge {
  color: #fe8f19;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.packages-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-align: center;
}

.packages-title-bar {
  width: 70px;
  height: 4.5px;
  background: linear-gradient(90deg, #fe8f19, #f44236);
  border-radius: 4px;
  margin: 14px auto 18px auto;
}

.packages-subtitle {
  font-size: 15.5px;
  color: #64748b;
  max-width: 720px;
  line-height: 1.65;
  text-align: center;
  margin: 0 auto;
}

/* 3-Column Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Category Filter Chips */
.packages-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

/* Modern Card */
.package-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #eef2f6;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.package-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 48px rgba(201, 147, 38, 0.18), 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: #dfa938;
}

/* Image Wrap */
.package-img-wrap {
  position: relative;
  width: 100%;
  height: 235px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.package-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card:hover .package-img {
  transform: scale(1.08);
}

/* Top Badges */
.pkg-top-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  pointer-events: none;
}

.pkg-category-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge-wildlife {
  background: rgba(16, 185, 129, 0.92);
  color: #ffffff;
}

.badge-desert {
  background: rgba(234, 88, 12, 0.92);
  color: #ffffff;
}

.badge-bestseller {
  background: linear-gradient(135deg, #dfa938, #c99326);
  color: #ffffff;
}

.badge-pilgrim {
  background: rgba(139, 92, 246, 0.92);
  color: #ffffff;
}

.badge-heritage {
  background: rgba(14, 116, 144, 0.92);
  color: #ffffff;
}

.badge-culture {
  background: rgba(225, 29, 72, 0.92);
  color: #ffffff;
}

.package-duration-pill {
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(223, 169, 56, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.3px;
}

.package-duration-pill i {
  color: #dfa938;
  font-size: 11px;
}

/* Route Overlay at Image Bottom */
.pkg-img-route-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 14px 10px 14px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.5) 60%, transparent 100%);
  color: #f8fafc;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pkg-img-route-overlay i {
  color: #dfa938;
  font-size: 11px;
  flex-shrink: 0;
}

.pkg-img-route-overlay span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Card Body */
.package-body {
  padding: 20px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Meta Row (Rating & Verified) */
.pkg-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12.5px;
}

.pkg-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #1e293b;
  font-weight: 700;
}

.pkg-rating i {
  color: #f59e0b;
  font-size: 12px;
}

.pkg-rating span {
  color: #64748b;
  font-weight: 500;
  font-size: 12px;
}

.pkg-verified-badge {
  color: #059669;
  font-weight: 700;
  font-size: 11.5px;
  background: #ecfdf5;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Package Title */
.package-name {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.35;
  margin-bottom: 12px;
}

.package-name a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.package-name a:hover {
  color: #dfa938;
}

/* Feature Chips Grid */
.pkg-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 8px;
  margin-bottom: 14px;
  background: #f8fafc;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
}

.pkg-feat-chip {
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pkg-feat-chip i {
  color: #dfa938;
  font-size: 11px;
  flex-shrink: 0;
}

/* Description */
.package-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* Footer Section */
.package-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  margin-top: auto;
  gap: 12px;
}

.pkg-price-col {
  display: flex;
  flex-direction: column;
}

.pkg-price-caption {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.pkg-currency {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #c99326;
}

.pkg-price-val {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}

.pkg-unit {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-left: 2px;
}

/* CTA Actions */
.pkg-cta-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-pkg-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  color: #c99326;
  border: 1.5px solid #dfa938;
  border-radius: 30px;
  padding: 8px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-pkg-outline i {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.btn-pkg-outline:hover {
  background: #dfa938;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 147, 38, 0.3);
}

.btn-pkg-outline:hover i {
  transform: translateX(3px);
}

.package-btn-book {
  background: linear-gradient(135deg, #dfa938 0%, #c99326 100%);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
  box-shadow: 0 4px 12px rgba(201, 147, 38, 0.35);
  white-space: nowrap;
}

.package-btn-book:hover {
  background: linear-gradient(135deg, #e5b247 0%, #b88219 100%);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(201, 147, 38, 0.5);
  transform: translateY(-2px);
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .package-img-wrap {
    height: 210px;
  }

  .package-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .pkg-cta-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .btn-pkg-outline,
  .package-btn-book {
    width: 100%;
    text-align: center;
    padding: 10px 12px;
  }
}

/* =========================================================
   WHY CHOOSE US - LUCKY CAB SERVICE SECTION (2x2 GRID)
   ========================================================= */
.why-choose-section {
  width: 100%;
  padding: 85px 0 95px 0;
  background: #ffffff;
  position: relative;
  border-top: 1px solid #f1f5f9;
}

.why-choose-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.22fr 0.98fr;
  gap: 48px;
  align-items: center;
}

/* Left Content Column */
.why-choose-left {
  display: flex;
  flex-direction: column;
}

.why-choose-content {
  width: 100%;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff4e5;
  color: #fe8f19;
  border: 1px solid #ffd8a8;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  align-self: flex-start;
}

.why-badge i {
  color: #fe8f19;
  font-size: 12px;
}

.why-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.why-highlight {
  color: #fe8f19;
  background: linear-gradient(135deg, #ffa834 0%, #fe8f19 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-title sup {
  font-size: 16px;
  color: #fe8f19;
  font-weight: 600;
}

.why-title-bar {
  width: 65px;
  height: 4.5px;
  background: linear-gradient(90deg, #fe8f19, #f44236);
  border-radius: 4px;
  margin-bottom: 28px;
}

/* 2x2 Feature Cards Grid */
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.why-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fdfaf6;
  border: 1px solid #f8eedf;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-feature-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: #ffd8a8;
  box-shadow: 0 14px 30px rgba(254, 143, 25, 0.16), 0 4px 10px rgba(0, 0, 0, 0.04);
}

.why-icon-box {
  min-width: 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff0db;
  border: 1px solid #fed7aa;
  color: #fe8f19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.why-feature-card:hover .why-icon-box {
  background: linear-gradient(135deg, #fe8f19, #f44236);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 6px 16px rgba(254, 143, 25, 0.45);
}

.why-feature-info {
  display: flex;
  flex-direction: column;
}

.why-feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #1e293b;
  margin-bottom: 4px;
  line-height: 1.3;
}

.why-feature-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.why-cta-wrap {
  margin-top: 4px;
}

/* Right Image Column */
.why-choose-right {
  position: relative;
}

.why-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(0, 0, 0, 0.06);
  border: 5px solid #ffffff;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.why-hero-img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-image-card:hover .why-hero-img {
  transform: scale(1.05);
}

/* Floating Badge */
.why-floating-badge {
  position: absolute;
  bottom: 22px;
  left: 20px;
  right: 20px;
  background: rgba(17, 24, 39, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  animation: whyBadgeFloat 4s ease-in-out infinite;
}

@keyframes whyBadgeFloat {

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

  50% {
    transform: translateY(-8px);
  }
}

.why-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fe8f19, #f44236);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(254, 143, 25, 0.4);
  flex-shrink: 0;
}

.why-badge-text {
  display: flex;
  flex-direction: column;
}

.why-badge-text strong {
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.why-badge-text span {
  font-size: 11.5px;
  color: #cbd5e1;
  font-weight: 500;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .why-hero-img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .why-features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-hero-img {
    height: 340px;
  }

  .why-feature-card {
    padding: 14px;
  }
}

/* =========================================================
   FAQ & TESTIMONIALS SECTION (SPLIT 2-COLUMN SECTION)
   ========================================================= */
.faq-testimonial-section {
  width: 100%;
  padding: 85px 0 95px 0;
  background: #fdfbf7;
  position: relative;
  border-top: 1px solid #f2e9dc;
}

.faq-testimonial-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 55px;
  align-items: flex-start;
}

/* Common Column Headers */
.column-header {
  margin-bottom: 26px;
}

.section-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff4e5;
  color: #fe8f19;
  border: 1px solid #ffd8a8;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-title,
.testimonial-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.faq-title-bar,
.testimonial-title-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #fe8f19, #f44236);
  border-radius: 4px;
  margin-bottom: 14px;
}

.faq-intro,
.testimonial-intro {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Accordion List */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 24px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: #ffd8a8;
  box-shadow: 0 8px 22px rgba(254, 143, 25, 0.1);
}

.faq-item.active {
  border-color: #ffd8a8;
  box-shadow: 0 8px 24px rgba(254, 143, 25, 0.12);
  background: #ffffff;
}

.faq-question-btn {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-question-text {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.faq-item.active .faq-question-text {
  color: #f44236;
}

.faq-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8fafc;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon-wrap {
  background: #fe8f19;
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-answer-pane {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer-pane {
  max-height: 250px;
  padding: 0 20px 18px 20px;
}

.faq-answer-pane p {
  font-size: 13.5px;
  color: #52525b;
  line-height: 1.65;
  margin: 0;
}

/* Contact Info Column (Dark Luxury Theme) */
.contact-info-column {
  width: 100%;
}

.contact-info-card {
  background: #000000;
  border: 1px solid #1e293b;
  border-radius: 24px;
  padding: 34px 30px 24px 30px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(254, 143, 25, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 20px rgba(254, 143, 25, 0.15);
  border-color: rgba(254, 143, 25, 0.35);
}

.contact-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.contact-title-bar {
  width: 55px;
  height: 4px;
  background: #fe8f19;
  border-radius: 4px;
  margin-bottom: 24px;
}

.contact-items-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}

.contact-row-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  font-size: 20px;
  color: #fe8f19;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.contact-row-item:hover .contact-item-icon {
  transform: scale(1.15);
  color: #ffaa42;
}

.contact-item-text {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.45;
}

.contact-item-text a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
  display: inline-block;
}

.contact-item-text a:hover {
  color: #fe8f19;
}

.contact-map-frame {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  line-height: 0;
  margin-top: 8px;
}

.contact-map-frame iframe {
  width: 100%;
  height: 230px;
  border: 0;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-testimonial-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

/* =========================================================
   HOME FAQ SECTION (PURE WHITE BACKGROUND & 6 ACCORDIONS GRID)
   ========================================================= */
.home-faq-section {
  width: 100%;
  padding: 85px 0 45px 0;
  background: #ffffff;
  position: relative;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.home-faq-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-faq-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px auto;
}

.home-faq-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin: 10px 0 12px 0;
}

.home-faq-title-bar {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #fe8f19, #f44236);
  border-radius: 4px;
  margin: 0 auto 16px auto;
}

.home-faq-subtitle {
  font-size: 15px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: flex-start;
}

.home-faq-grid .faq-item {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-faq-grid .faq-item:hover {
  background: #ffffff;
  border-color: #ffd8a8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(254, 143, 25, 0.12);
}

.home-faq-grid .faq-item.active {
  background: #ffffff;
  border-color: #ffd8a8;
  box-shadow: 0 12px 28px rgba(254, 143, 25, 0.15);
}

@media (max-width: 992px) {
  .home-faq-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-faq-section {
    padding: 60px 0 35px 0;
  }
}

/* =========================================================
   CUSTOMER REVIEWS & RATINGS BREAKDOWN CARD
   ========================================================= */
.review-summary-section {
  width: 100%;
  padding: 40px 0 95px 0;
  background: #fdfbf7;
  position: relative;
}

.review-summary-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.review-score-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 24px;
  padding: 38px 46px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
}

.review-score-card:hover {
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.07);
  border-color: #ffd8a8;
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
  gap: 20px;
}

.google-business-profile-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.g-profile-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #4285F4;
  flex-shrink: 0;
}

.g-profile-info {
  display: flex;
  flex-direction: column;
}

.g-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #1a73e8;
  background: #e8f0fe;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
  width: fit-content;
}

.g-business-name {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 2px 0;
  letter-spacing: -0.4px;
  line-height: 1.25;
}

.g-business-hindi {
  font-size: 15.5px;
  color: #475569;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.g-rating-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.g-score-num {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
}

.g-stars {
  color: #fbbc04;
  font-size: 16px;
  display: flex;
  gap: 2px;
}

.g-review-count {
  font-size: 14.5px;
  color: #5f6368;
  font-weight: 600;
}

.g-category-meta {
  font-size: 13.5px;
  color: #5f6368;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.g-category-meta .g-dot {
  color: #9aa0a6;
}

.g-category-meta .g-accessibility {
  color: #1a73e8;
  font-size: 14px;
}

.btn-write-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f44236 0%, #d32f2f 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(244, 66, 54, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-write-review:hover {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 66, 54, 0.55);
  color: #ffffff;
}

.btn-write-review i {
  font-size: 14px;
}

.review-card-body {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Left Score Block */
.review-overall-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 220px;
}

.review-score-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 6px;
}

.review-big-rating {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.score-main {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.score-max {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #64748b;
}

.review-stars-row {
  display: flex;
  gap: 4px;
  color: #ffb703;
  font-size: 20px;
  margin-bottom: 8px;
}

.review-total-count {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
}

/* Divider */
.review-divider {
  width: 1px;
  height: 150px;
  background: #e2e8f0;
}

/* Right Breakdown Bars */
.review-bars-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.bar-star-label {
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  min-width: 110px;
}

.bar-track {
  flex: 1;
  height: 9px;
  background: #f1f5f9;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #ffb703;
  border-radius: var(--radius-full);
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-count-val {
  font-size: 13.5px;
  font-weight: 700;
  color: #475569;
  min-width: 36px;
  text-align: right;
}

/* Responsive */
@media (max-width: 868px) {
  .review-summary-section {
    padding: 40px 0 65px 0;
  }

  .review-score-card {
    padding: 28px 22px;
  }

  .review-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .google-business-profile-header {
    width: 100%;
    gap: 12px;
  }

  .g-business-name {
    font-size: 21px;
  }

  .btn-write-review {
    width: 100%;
    justify-content: center;
  }

  .review-card-body {
    flex-direction: column;
    gap: 30px;
  }

  .review-divider {
    display: none;
  }

  .rating-bar-row {
    gap: 12px;
  }

  .bar-star-label {
    min-width: 95px;
    font-size: 12.5px;
  }
}

/* =========================================================
   BOOKING MODAL / POPUP
   ========================================================= */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-card {
  background: var(--white);
  width: 90%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 32px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.active .booking-modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  background: #f1f5f9;
  border-radius: 50%;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-header p {
  font-size: 14px;
  color: #64748b;
  margin-top: 4px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: #1e293b;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.form-group select optgroup {
  font-weight: 700;
  font-size: 13px;
  color: #c25e00;
  background-color: #fff7ed;
  padding: 8px 4px 4px 4px;
}

.form-group select option {
  font-weight: 500;
  font-size: 13.5px;
  color: #1e293b;
  background-color: #ffffff;
  padding: 6px 10px;
}

.btn-submit-booking {
  background: linear-gradient(135deg, #f44236 0%, #d32f2f 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 13px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(244, 66, 54, 0.35);
}

.btn-submit-booking:hover {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  box-shadow: 0 6px 18px rgba(244, 66, 54, 0.55);
  color: #ffffff;
}

@media (max-width: 600px) {
  .booking-modal-overlay {
    padding: 16px 12px;
  }

  .booking-modal-card {
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px 18px;
    border-radius: 18px;
  }

  .modal-close-btn {
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
  }

  .modal-header {
    margin-bottom: 18px;
  }

  .modal-header h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .modal-header p {
    font-size: 13px;
  }

  .modal-form {
    gap: 12px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents auto zoom on iOS */
    padding: 10px 12px;
  }

  .btn-submit-booking {
    padding: 12px;
    font-size: 14.5px;
  }
}

/* =========================================================
   RESPONSIVE DESIGN / MEDIA QUERIES
   ========================================================= */
@media (max-width: 1024px) {
  .hero-slider-section {
    height: 75vh;
    min-height: 520px;
  }

  .cab-search-form {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .search-action-item {
    grid-column: 1 / -1;
  }

  .btn-cab-search {
    width: 100%;
  }

  .main-nav {
    gap: 18px;
    margin-left: auto;
    margin-right: 18px;
  }
}

@media (max-width: 868px) {
  .site-header {
    height: 74px;
  }

  .brand-logo-img {
    height: 56px;
    max-height: 60px;
  }

  .main-nav {
    display: none;
    margin: 0;
  }

  .main-nav.mobile-active,
  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 20px 24px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    border-top: 1px solid #f1f5f9;
    z-index: 999;
    gap: 16px;
    margin: 0;
  }

  .main-nav.mobile-active .nav-link,
  .main-nav.active .nav-link {
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid #f8fafc;
    width: 100%;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-mobile-call {
    display: inline-flex !important;
    font-size: 14.5px !important;
    font-weight: 800 !important;
    padding: 7px 15px !important;
    gap: 7px !important;
  }

  .header-mobile-call i {
    font-size: 14px !important;
  }

  .hero-slider-section {
    height: 55vh;
    min-height: 400px;
    max-height: 480px;
  }

  .slide-content-container {
    margin-top: 0;
    padding: 15px 20px;
  }

  .slide-badge {
    display: none !important;
  }

  .slide-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .slide-subtitle {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .slide-buttons-group {
    gap: 10px;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .slider-arrow-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .slider-arrow-prev {
    left: 10px;
  }

  .slider-arrow-next {
    right: 10px;
  }

  /* Floating search bar becomes stacked on mobile */
  .floating-search-wrapper {
    margin: -30px auto 25px auto;
    padding: 0 16px;
  }

  .search-bar-card {
    padding: 16px;
    border-radius: 12px;
  }

  .cab-search-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .search-action-item {
    grid-column: 1 / -1;
    margin-top: 4px;
  }

  .btn-cab-search {
    width: 100%;
    height: 46px;
  }

  .slider-pagination {
    bottom: 45px;
  }
}

@media (max-width: 480px) {
  .hero-slider-section {
    height: 48vh;
    min-height: 330px;
    max-height: 390px;
  }

  .slide-content-container {
    margin-top: 0;
    padding: 10px 16px;
  }

  .slide-badge {
    display: none !important;
  }

  .slide-title {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .slide-subtitle {
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .slide-buttons-group {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .cta-btn {
    padding: 8px 16px;
    font-size: 12.5px;
    width: auto;
  }

  .slider-pagination {
    bottom: 8px;
  }
}

/* =========================================================
   DEDICATED PAGE: RAJASTHAN TOUR PACKAGES STYLES
   ========================================================= */
.page-hero-banner {
  position: relative;
  width: 100%;
  padding: 85px 24px 75px 24px;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.88) 0%, rgba(20, 16, 12, 0.82) 100%),
    url('../images/slider-1.jpg') center/cover no-repeat;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(254, 143, 25, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Breadcrumb Navigation */
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
}

.page-breadcrumb a {
  color: #ffd8a8;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.page-breadcrumb a:hover {
  color: #ffffff;
}

.page-breadcrumb .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.page-breadcrumb .breadcrumb-current {
  color: #ffffff;
  font-weight: 600;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fe8f19;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.page-hero-title .highlight {
  background: linear-gradient(135deg, #ffa834 0%, #fe8f19 50%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.page-hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: #e2e8f0;
  max-width: 820px;
  margin: 0 auto 32px auto;
  line-height: 1.65;
}

/* Hero Trust Badges Row */
.page-hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-trust-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.hero-trust-chip i {
  color: #fe8f19;
  font-size: 14px;
}

/* =========================================================
   PACKAGE CATEGORY FILTER BAR
   ========================================================= */
.package-filter-bar {
  background: #ffffff;
  padding: 24px 0;
  border-bottom: 1px solid #eef2f6;
  position: sticky;
  top: 72px;
  z-index: 40;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.package-filter-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip-btn {
  background: #f8fafc;
  color: #475569;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-full);
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.filter-chip-btn i {
  font-size: 13px;
  color: #94a3b8;
  transition: color 0.25s ease;
}

.filter-chip-btn:hover {
  background: #fff4e5;
  color: #f44236;
  border-color: #fed7aa;
}

.filter-chip-btn:hover i {
  color: #fe8f19;
}

.filter-chip-btn.active {
  background: linear-gradient(135deg, #f44236 0%, #d32f2f 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(254, 143, 25, 0.35);
}

.filter-chip-btn.active i {
  color: #ffffff;
}

/* Package Route Highlights & Pills */
.package-route-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  color: #334155;
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.package-route-tag i {
  color: #fe8f19;
}

.package-highlights-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.pkg-highlight-badge {
  font-size: 11.5px;
  font-weight: 600;
  background: #fdf6ec;
  color: #f44236;
  border: 1px solid #fae1c3;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* =========================================================
   DAY-WISE ITINERARY ACCORDION / EXPLORER SECTION
   ========================================================= */
.itinerary-section {
  width: 100%;
  padding: 80px 0 100px 0;
  background: #ffffff;
}

.itinerary-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.itinerary-header {
  text-align: center;
  margin-bottom: 48px;
}

.itinerary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 960px) {
  .itinerary-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.itinerary-tour-card {
  background: #ffffff;
  border: 1.5px solid #f2e9dc;
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.itinerary-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(254, 143, 25, 0.12);
  border-color: #f7d5b2;
}

.itinerary-tour-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.tour-title-text {
  color: #1e293b;
  font-size: 22px;
  font-weight: 800;
}

.tour-meta-badges {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tour-badge {
  font-size: 13px;
  font-weight: 700;
  background: #fff4e5;
  color: #f44236;
  border: 1.5px solid #fed7aa;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.3px;
}

.tour-price-badge {
  font-size: 13px;
  font-weight: 700;
  background: #ecfdf5;
  color: #047857;
  border: 1.5px solid #a7f3d0;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.itinerary-tour-divider {
  height: 2.5px;
  background: #ea580c;
  border-radius: 2px;
  margin-bottom: 24px;
}

.day-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
  position: relative;
}

.day-item:last-child {
  margin-bottom: 0;
}

.day-badge {
  min-width: 68px;
  padding: 6px 12px;
  background: #e96711;
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(233, 103, 17, 0.25);
}

.day-content {
  flex-grow: 1;
}

.day-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
  line-height: 1.4;
}

.day-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
}

.itinerary-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
  gap: 12px;
}

.itinerary-btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: 1.5px solid #20bd5a;
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  cursor: pointer;
}

.itinerary-btn-whatsapp i {
  font-size: 16px;
}

.itinerary-btn-whatsapp:hover {
  background: #1eb954;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.itinerary-price-text {
  font-size: 13.5px;
  color: #475569;
}

.itinerary-price-text strong {
  font-size: 18px;
  color: #f44236;
  font-weight: 800;
}

@media (max-width: 600px) {
  .itinerary-tour-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .tour-title-text {
    font-size: 18px;
  }
  .day-item {
    flex-direction: column;
    gap: 8px;
  }
  .day-badge {
    align-self: flex-start;
  }
  .itinerary-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    text-align: center;
  }
  .itinerary-btn-whatsapp {
    justify-content: center;
  }
}

/* Package Price Pill & Price Row in Cards */
.package-price-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(17, 24, 39, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fe8f19;
  font-size: 12.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(254, 143, 25, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.3px;
}

.package-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fdfaf6;
  border: 1px solid #fae8d4;
  padding: 8px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.package-price-row .price-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.package-price-row .price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #f44236;
}

.package-price-row .price-unit {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}

/* =========================================================
   INCLUSIONS & EXCLUSIONS SECTION
   ========================================================= */
.inclusions-section {
  width: 100%;
  padding: 80px 0;
  background: #f8fafc;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}

.inclusions-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

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

.inclusions-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.inclusions-card.included {
  border-top: 4px solid #10b981;
}

.inclusions-card.excluded {
  border-top: 4px solid #ef4444;
}

.inclusions-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inclusions-card.included .inclusions-card-title i {
  color: #10b981;
}

.inclusions-card.excluded .inclusions-card-title i {
  color: #ef4444;
}

.inclusions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inclusions-list li {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.inclusions-list li i {
  margin-top: 4px;
  font-size: 14px;
  flex-shrink: 0;
}

.inclusions-card.included .inclusions-list li i {
  color: #10b981;
}

.inclusions-card.excluded .inclusions-list li i {
  color: #ef4444;
}

/* =========================================================
   CUSTOM TOUR CTA BANNER
   ========================================================= */
.custom-cta-section {
  width: 100%;
  padding: 70px 0;
  background: #ffffff;
}

.custom-cta-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(135deg, #111827 0%, #1e1b18 100%);
  border-radius: 24px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(254, 143, 25, 0.3);
  position: relative;
  overflow: hidden;
}

.custom-cta-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(254, 143, 25, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

@media (max-width: 900px) {
  .custom-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }
}

.custom-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fe8f19;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.custom-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.custom-cta-desc {
  font-size: 15.5px;
  color: #cbd5e1;
  max-width: 600px;
  line-height: 1.6;
}

.custom-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .custom-cta-actions {
    flex-direction: column;
    width: 100%;
  }

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

/* =========================================================
   STICKY FLOATING ACTION BUTTONS (CALL & WHATSAPP)
   ========================================================= */
.floating-actions-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.floating-action-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
}

.floating-action-btn:hover {
  transform: translateY(-4px) scale(1.08);
}

.floating-btn-whatsapp {
  background: #25D366;
}

.floating-btn-whatsapp:hover {
  background: #1eb954;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.floating-btn-call {
  background: linear-gradient(135deg, #f44236 0%, #d32f2f 100%);
  box-shadow: 0 8px 24px rgba(244, 66, 54, 0.45);
}

.floating-btn-call:hover {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  box-shadow: 0 12px 30px rgba(244, 66, 54, 0.65);
}

.floating-action-tooltip {
  position: absolute;
  right: 64px;
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(6px);
}

.floating-action-btn:hover .floating-action-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .floating-actions-bar {
    bottom: 20px;
    right: 18px;
    gap: 10px;
  }

  .floating-action-btn {
    width: 48px;
    height: 48px;
    font-size: 21px;
  }

  .floating-action-tooltip {
    display: none;
  }
}


/* =========================================================
   TAXI SERVICE PAGE SPECIFIC STYLES
   ========================================================= */

/* Fleet Grid All (Show all cards on dedicated taxi page) */
.fleet-grid.fleet-grid-all .fleet-card-extra {
  display: flex !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Fleet Filter Bar */
.fleet-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  position: relative;
  z-index: 5;
}

.fleet-filter-btn {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #475569;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fleet-filter-btn:hover {
  border-color: var(--primary-brand);
  color: var(--primary-brand);
  transform: translateY(-2px);
}

.fleet-filter-btn.active {
  background: linear-gradient(135deg, #f44236 0%, #d32f2f 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(254, 143, 25, 0.35);
}

/* Fleet Card Action Buttons Group */
.fleet-actions-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-fleet-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  padding: 8px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}

.btn-fleet-whatsapp i {
  font-size: 14px;
}

.btn-fleet-whatsapp:hover {
  background: #1eb954;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Taxi Services Types Grid */
.taxi-services-section {
  padding: 70px 24px;
  background: #ffffff;
}

.taxi-services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.taxi-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

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

@media (max-width: 640px) {
  .taxi-types-grid {
    grid-template-columns: 1fr;
  }
}

.taxi-type-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.taxi-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: #fe8f19;
  background: #ffffff;
}

.taxi-type-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(254, 143, 25, 0.12) 0%, rgba(212, 80, 20, 0.18) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fe8f19;
  margin-bottom: 20px;
}

.taxi-type-title {
  font-size: 19px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.taxi-type-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.taxi-type-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.taxi-type-list li {
  font-size: 13px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

.taxi-type-list li i {
  color: #25D366;
  font-size: 12px;
}

/* Trust / Feature Bar on Hero */
.taxi-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.taxi-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
}

.taxi-trust-item i {
  color: #fe8f19;
}

/* =========================================================
   TAXI-SERVICE.HTML DEDICATED CLEAN LIGHT FLEET STYLES
   ========================================================= */
.fleet-showcase-section.taxi-page-fleet {
  background: #ffffff;
  padding: 70px 0 85px 0;
}

.fleet-showcase-section.taxi-page-fleet::before,
.fleet-showcase-section.taxi-page-fleet::after {
  display: none;
  content: none;
}

.fleet-showcase-section.taxi-page-fleet .fleet-badge {
  background: rgba(254, 143, 25, 0.12);
  border: 1px solid rgba(254, 143, 25, 0.35);
  color: #d97706;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.fleet-showcase-section.taxi-page-fleet .fleet-title {
  color: #0f172a;
  text-shadow: none;
}

.fleet-showcase-section.taxi-page-fleet .fleet-desc {
  color: #64748b;
  text-shadow: none;
}

.fleet-showcase-section.taxi-page-fleet .fleet-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-radius: 18px;
}

.fleet-showcase-section.taxi-page-fleet .fleet-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #fe8f19;
  box-shadow: 0 12px 30px rgba(254, 143, 25, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.fleet-showcase-section.taxi-page-fleet .fleet-image-wrap {
  border-bottom: 1.5px solid #f1f5f9;
}

/* =========================================================
   TOUR PLACES ROUTE CARDS (TOP IMAGE + ORANGE ROUTE CARD BODY)
   Used specifically on tour-place.html
   ========================================================= */
.route-card.route-place-card {
  padding: 0;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(254, 143, 25, 0.28);
  box-shadow: 0 10px 26px rgba(254, 143, 25, 0.22), 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: auto;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.route-card.route-place-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(254, 143, 25, 0.42), 0 8px 18px rgba(0, 0, 0, 0.1);
  border-color: #ffd8a8;
}

.route-card.route-place-card .route-card-img-wrap {
  width: 100%;
  height: 175px;
  border-radius: 17px 17px 0 0;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
}

.route-card.route-place-card .route-top-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.route-card.route-place-card:hover .route-top-img {
  transform: scale(1.08);
}

.route-card.route-place-card .route-card-orange-body {
  position: relative;
  background: #0f172a;
  border-radius: 0 0 17px 17px;
  padding: 18px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 140px;
  border-top: 1px solid rgba(254, 143, 25, 0.25);
}

.route-card.route-place-card .route-card-orange-body .route-card-actions {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  z-index: 5;
}

/* =========================================================
   ABOUT US PAGE - STATS COUNTER STRIP
   ========================================================= */
.about-stats-strip {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(254, 143, 25, 0.25);
  border-bottom: 1px solid rgba(254, 143, 25, 0.25);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.25);
}

.about-stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(254, 143, 25, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.about-stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.about-stat-item {
  text-align: center;
  color: #ffffff;
  padding: 20px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
}

.about-stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffd8a8;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-stat-icon {
  font-size: 32px;
  color: #ffd8a8;
  margin-bottom: 10px;
}

.about-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

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

/* =========================================================
   MISSION, VISION & OUR VALUES SECTION
   ========================================================= */
.mission-vision-section {
  padding: 85px 0 95px 0;
  background: #fdfaf6;
  position: relative;
}

.mission-vision-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.mission-vision-header {
  text-align: center;
  margin-bottom: 50px;
}

.mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff0db;
  color: #f44236;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid #ffd8a8;
}

.mission-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #1f2937;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.mission-desc {
  font-size: 16px;
  color: #6b7280;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

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

@media (max-width: 992px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.mv-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 38px 28px 34px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.02);
  border: 1.5px solid #f1e6d8;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #fe8f19, #f44236);
  opacity: 0.8;
  transition: height 0.35s ease, opacity 0.35s ease;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(254, 143, 25, 0.18), 0 6px 16px rgba(0, 0, 0, 0.06);
  border-color: #ffd8a8;
}

.mv-card:hover::before {
  height: 7px;
  opacity: 1;
}

.mv-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff0db 0%, #fee1be 100%);
  color: #f44236;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  border: 1px solid #ffd8a8;
  box-shadow: 0 6px 16px rgba(254, 143, 25, 0.15);
  transition: all 0.35s ease;
}

.mv-card:hover .mv-icon-box {
  background: linear-gradient(135deg, #fe8f19 0%, #f44236 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(-4deg);
}

.mv-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 14px;
  line-height: 1.2;
}

.mv-card-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}

.mv-pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.mv-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fdfaf6;
  color: #d32f2f;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid #f8eedf;
}

.mv-tag i {
  color: #fe8f19;
  font-size: 11px;
}

/* =========================================================
   WHY CHOOSE US & COMMITMENTS GRID
   ========================================================= */
.about-commitments-section {
  padding: 85px 0 95px 0;
  background: #ffffff;
}

.commitments-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 45px;
}

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

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

.commitment-card {
  background: #fafaf9;
  border: 1.5px solid #e7e5e4;
  border-radius: 18px;
  padding: 26px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.35s ease;
}

.commitment-card:hover {
  background: #ffffff;
  border-color: #fe8f19;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(254, 143, 25, 0.12);
}

.commitment-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff0db;
  color: #f44236;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.commitment-card:hover .commitment-icon {
  background: #fe8f19;
  color: #ffffff;
}

.commitment-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 6px;
}

.commitment-info p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* =========================================================
   TESTIMONIALS CARDS GRID (UNDER REVIEWS SUMMARY)
   ========================================================= */
.testimonials-grid-section {
  padding: 0 0 85px 0;
  background: #f8fafc;
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 35px;
}

@media (max-width: 992px) {
  .testimonials-cards-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.testimonial-card-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
}

.testimonial-card-item:hover {
  transform: translateY(-6px);
  border-color: #ffd8a8;
  box-shadow: 0 16px 36px rgba(254, 143, 25, 0.14);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}

.testimonial-quote {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-user-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
}

.testimonial-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fe8f19, #f44236);
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-user-meta h5 {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 2px;
}

.testimonial-user-meta span {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* =========================================================
   CONTACT US PAGE - INTERACTIVE CARDS & FORM STYLES
   ========================================================= */
.contact-cards-section {
  padding: 60px 0 30px 0;
  background: #fdfaf6;
}

.contact-cards-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Contact Cards Section Header (Centered) */
.contact-cards-header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-badge {
  color: #fe8f19;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.contact-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.25;
  letter-spacing: -0.5px;
  text-align: center;
  margin: 0;
}

.contact-title-bar {
  width: 70px;
  height: 4.5px;
  background: linear-gradient(90deg, #fe8f19, #f44236);
  border-radius: 4px;
  margin: 14px auto 16px auto;
}

.contact-subtitle {
  font-size: 15.5px;
  color: #64748b;
  max-width: 720px;
  line-height: 1.65;
  text-align: center;
  margin: 0 auto;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

@media (max-width: 600px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.contact-card-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px 28px 24px;
  border: 1.5px solid #f1e6d8;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fe8f19, #f44236);
  opacity: 0;
  transition: opacity 0.35s ease, height 0.35s ease;
}

.contact-card-box:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #ffd8a8;
  box-shadow: 0 20px 42px rgba(254, 143, 25, 0.18), 0 6px 14px rgba(0, 0, 0, 0.06);
}

.contact-card-box:hover::before {
  opacity: 1;
  height: 6px;
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff0db 0%, #fee1be 100%);
  color: #f44236;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  border: 1px solid #ffd8a8;
  box-shadow: 0 6px 16px rgba(254, 143, 25, 0.14);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card-box:hover .contact-card-icon {
  background: linear-gradient(135deg, #fe8f19 0%, #f44236 100%);
  color: #ffffff;
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 10px 22px rgba(163, 61, 20, 0.3);
}

.contact-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 10px;
}

.contact-card-text {
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.contact-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #f44236;
  background: #fdfaf6;
  border: 1.5px solid #ffd8a8;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.contact-card-box:hover .contact-card-btn {
  background: #f44236;
  color: #ffffff;
  border-color: #f44236;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(163, 61, 20, 0.35);
}

.contact-card-box.whatsapp-box:hover .contact-card-btn {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
}

/* =========================================================
   CONTACT MAIN SECTION (FORM + MAP)
   ========================================================= */
.contact-main-section {
  padding: 60px 0 90px 0;
  background: #ffffff;
}

.contact-main-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 45px;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-main-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Form Container Card */
.contact-form-panel {
  background: #ffffff;
  border-radius: 22px;
  padding: 38px 34px;
  border: 1.5px solid #f1e6d8;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05), 0 3px 8px rgba(0, 0, 0, 0.02);
}

@media (max-width: 600px) {
  .contact-form-panel {
    padding: 28px 20px;
  }
}

.contact-form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 8px;
}

.contact-form-desc {
  font-size: 14.5px;
  color: #6b7280;
  margin-bottom: 26px;
  line-height: 1.5;
}

.contact-page-form .form-group {
  margin-bottom: 18px;
}

.contact-page-form label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  font-family: inherit;
  font-size: 14.5px;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  transition: all 0.3s ease;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  border-color: #fe8f19;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(254, 143, 25, 0.15);
}

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

@media (max-width: 600px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

.btn-send-message {
  width: 100%;
  padding: 15px 28px;
  background: linear-gradient(135deg, #f44236 0%, #d32f2f 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(254, 143, 25, 0.38);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 10px;
}

.btn-send-message:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px rgba(254, 143, 25, 0.55);
}

/* Map & Office Info Panel */
.contact-map-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-map-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid #f1e6d8;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.contact-map-frame-large iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: 0;
}

.contact-quick-info-box {
  background: #fafaf9;
  border-radius: 20px;
  padding: 26px 24px;
  border: 1.5px solid #e7e5e4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quick-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff0db;
  color: #f44236;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.quick-info-item:hover .quick-info-icon {
  background: #fe8f19;
  color: #ffffff;
}

.quick-info-text h5 {
  font-size: 14px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 2px;
}

.quick-info-text p,
.quick-info-text a {
  font-size: 13.5px;
  color: #6b7280;
  text-decoration: none;
  line-height: 1.4;
}

.quick-info-text a:hover {
  color: #fe8f19;
}

/* =========================================================
   PRE-FOOTER RAJASTHAN TOURIST PLACES SEO STRIP
   ========================================================= */
.prefooter-seo-strip {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
  position: relative;
  z-index: 10;
}

.prefooter-seo-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.prefooter-seo-block:not(:first-child) {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
}

.prefooter-seo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #1e293b;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prefooter-seo-title i {
  color: #fe8f19;
  font-size: 14px;
}

.prefooter-seo-links {
  font-size: 12.5px;
  line-height: 1.85;
  color: #64748b;
  margin: 0;
}

.prefooter-seo-links a {
  color: #475569;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 400;
}

.prefooter-seo-links a:hover {
  color: #f44236;
  text-decoration: underline;
}

.prefooter-seo-links .seo-sep {
  color: #94a3b8;
  margin: 0 3px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .prefooter-seo-strip {
    padding: 20px 0;
  }
  .prefooter-seo-container {
    padding: 0 16px;
  }
  .prefooter-seo-title {
    font-size: 12.5px;
  }
  .prefooter-seo-links {
    font-size: 11.5px;
    line-height: 1.75;
  }
}

/* =========================================================
   PRE-FOOTER TOP CTA & TRUST SECTION (ELEGANT LIGHT ROYAL THEME)
   ========================================================= */
.prefooter-booking-cta {
  background: linear-gradient(180deg, #fdf8f0 0%, #f5ebd9 100%);
  border-top: 3.5px solid #fe8f19;
  border-bottom: 2px solid #fed7aa;
  padding: 42px 0 38px 0;
  position: relative;
  overflow: hidden;
  z-index: 5;
  font-family: 'Inter', sans-serif;
}

.prefooter-booking-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(254, 143, 25, 0.08), transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(244, 66, 54, 0.06), transparent 45%);
  pointer-events: none;
}

.prefooter-cta-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* --- Top Booking CTA Banner --- */
.footer-cta-banner {
  background: linear-gradient(135deg, #1b2a47 0%, #0e172a 100%);
  border: 2px solid rgba(254, 143, 25, 0.6);
  border-radius: 20px;
  padding: 28px 36px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 16px 40px rgba(27, 42, 71, 0.22), 0 0 30px rgba(254, 143, 25, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.footer-cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(254, 143, 25, 0.25), transparent 70%);
  pointer-events: none;
}

.footer-cta-content {
  flex: 1;
}

.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(254, 143, 25, 0.2);
  border: 1px solid rgba(254, 143, 25, 0.55);
  color: #fe8f19;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.footer-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: -0.3px;
}

.footer-cta-subtitle {
  font-size: 13.5px;
  color: #cbd5e1;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.footer-btn-call,
.footer-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.footer-btn-call {
  background: linear-gradient(135deg, #fe8f19 0%, #f44236 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(254, 143, 25, 0.4);
}

.footer-btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(254, 143, 25, 0.55);
  color: #ffffff;
}

.footer-btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.footer-btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* --- Trust Features Strip (Light Crisp White Cards) --- */
.footer-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1.5px solid #fed7aa;
  border-radius: 14px;
  padding: 14px 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.footer-trust-item:hover {
  background: #ffffff;
  border-color: #fe8f19;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(254, 143, 25, 0.2);
}

.footer-trust-item .trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff4e5;
  color: #fe8f19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid #ffedd5;
  transition: all 0.3s ease;
}

.footer-trust-item:hover .trust-icon {
  background: linear-gradient(135deg, #fe8f19 0%, #f44236 100%);
  color: #ffffff;
  border-color: #fe8f19;
}

.footer-trust-item .trust-text h6 {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px 0;
  letter-spacing: -0.2px;
}

.footer-trust-item .trust-text span {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

/* =========================================================
   SITE FOOTER (4-COLUMN ROYAL MODERN FOOTER)
   ========================================================= */
.site-footer {
  background: #090e1a;
  color: #f1f5f9;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 15% 20%, rgba(254, 143, 25, 0.05), transparent 45%),
              radial-gradient(circle at 85% 70%, rgba(244, 66, 54, 0.04), transparent 50%),
              radial-gradient(circle at 50% 100%, rgba(27, 42, 71, 0.4), transparent 60%);
  pointer-events: none;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 45px 24px 28px 24px;
  position: relative;
  z-index: 1;
}

/* --- 4-Column Main Grid --- */
.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1.05fr 1.3fr;
  gap: 40px;
}

/* Column 1: Brand */
.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-wrap {
  margin-bottom: 14px;
}

.footer-logo-wrap a {
  display: inline-block;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-logo-wrap a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 143, 25, 0.25);
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 143, 25, 0.1);
  border: 1px solid rgba(254, 143, 25, 0.25);
  border-radius: 20px;
  padding: 5px 12px;
  margin-bottom: 14px;
  width: fit-content;
}

.footer-rating-badge .stars {
  color: #fe8f19;
  font-size: 11.5px;
  letter-spacing: 1px;
}

.footer-rating-badge .rating-text {
  font-size: 12px;
  font-weight: 700;
  color: #f1f5f9;
}

.footer-about-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-btn:hover {
  background: linear-gradient(135deg, #fe8f19 0%, #f44236 100%);
  color: #ffffff;
  border-color: #fe8f19;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(254, 143, 25, 0.35);
}

.footer-social-btn.whatsapp-social:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.4);
}

/* Common Column Titles */
.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 17.5px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.2px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, #fe8f19, #f44236);
  border-radius: 2px;
}

/* Links Lists */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-nav-list li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  line-height: 1.4;
}

.footer-nav-list li a i {
  color: #fe8f19;
  font-size: 10.5px;
  transition: transform 0.25s ease;
}

.footer-nav-list li a .pill-badge {
  background: linear-gradient(135deg, #fe8f19, #f44236);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 4px;
}

.footer-nav-list li a:hover {
  color: #fe8f19;
  transform: translateX(4px);
}

.footer-nav-list li a:hover i {
  transform: translateX(2px);
}

/* Column 4: Contact Interactive Cards */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 11px 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-card:hover {
  background: rgba(254, 143, 25, 0.06);
  border-color: rgba(254, 143, 25, 0.3);
  transform: translateX(3px);
}

.footer-contact-card .card-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(254, 143, 25, 0.12);
  border: 1px solid rgba(254, 143, 25, 0.25);
  color: #fe8f19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-card:hover .card-icon {
  background: #fe8f19;
  color: #ffffff;
  transform: scale(1.06);
}

.footer-contact-card.whatsapp-card:hover .card-icon {
  background: #25D366;
  border-color: #25D366;
}

.footer-contact-card .card-body {
  flex: 1;
}

.footer-contact-card .card-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fe8f19;
  margin-bottom: 2px;
}

.footer-contact-card .card-value {
  font-size: 13px;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.45;
  margin: 0;
}

.footer-contact-card .card-value a {
  color: #f1f5f9;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-card .card-value a:hover {
  color: #fe8f19;
}

/* Bottom Bar */
.footer-bottom-bar {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

.footer-copyright strong {
  color: #e2e8f0;
}

.footer-copyright a {
  color: #fe8f19;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-copyright a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-payments-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #94a3b8;
}

.footer-payments-row .pay-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #fe8f19;
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
  .footer-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .footer-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }
  .footer-cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .footer-btn-call,
  .footer-btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
  .footer-trust-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer-grid-4 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* =========================================================
   ARTICLE GUIDE & DETAIL PAGE STYLES (JAIPUR TO UDAIPUR TAXI)
   ========================================================= */
.guide-hero-banner {
  background: linear-gradient(rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.92)),
              url('../images/about-rajasthan.jpg') center/cover no-repeat;
  padding: 80px 20px 60px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .guide-hero-banner {
    padding: 38px 12px 28px 12px;
  }
}

.guide-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}

.guide-tag-badge {
  background: #fe8f19;
  color: #1e293b;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11.5px;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  max-width: 100%;
  text-align: center;
}

@media (max-width: 600px) {
  .guide-tag-badge {
    font-size: 10.5px;
    padding: 4px 12px;
    letter-spacing: 0.6px;
    line-height: 1.35;
    margin-bottom: 12px;
  }
}

.guide-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 4.2vw, 40px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
  word-break: break-word;
}

@media (max-width: 600px) {
  .guide-hero-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 12px;
  }
}

.guide-hero-subtitle {
  color: #cbd5e1;
  font-size: clamp(14.5px, 2vw, 17px);
  line-height: 1.6;
  max-width: 820px;
  margin-bottom: 22px;
}

.guide-meta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: #94a3b8;
}

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

.guide-meta-strip i {
  color: #fe8f19;
}

@media (max-width: 600px) {
  .guide-meta-strip {
    gap: 8px 10px;
    font-size: 12px;
  }
  .guide-meta-strip span {
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
  }
}

/* 2-Column Main Section */
.guide-page-section {
  padding: 50px 0 80px 0;
  background: #f8fafc;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .guide-page-section {
    padding: 24px 0 45px 0;
  }
}

.guide-layout-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .guide-layout-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 18px;
  }
}

@media (max-width: 600px) {
  .guide-layout-container {
    padding: 0 12px;
    gap: 22px;
  }
}

@media (max-width: 380px) {
  .guide-layout-container {
    padding: 0 8px;
    gap: 18px;
  }
}

/* Left Column: Article Content Card */
.guide-content-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 38px;
  border: 1.5px solid #f1e6d8;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .guide-content-card {
    padding: 22px 16px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .guide-content-card {
    padding: 16px 12px;
    border-radius: 14px;
  }
}

.guide-featured-img-wrap {
  width: 100%;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #fed7aa;
  box-shadow: 0 10px 30px rgba(27, 42, 71, 0.08);
  background-color: #1b2a47;
  position: relative;
}

.guide-featured-img {
  width: 100%;
  max-width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  display: block;
  margin: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.guide-featured-img-wrap:hover .guide-featured-img {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .guide-featured-img {
    height: 340px;
  }
}

@media (max-width: 600px) {
  .guide-featured-img-wrap {
    padding: 0;
    border-radius: 14px;
    margin-bottom: 16px;
  }
  .guide-featured-img {
    height: 230px;
  }
}

.guide-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.guide-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.guide-post-meta i {
  color: #fe8f19;
}

@media (max-width: 600px) {
  .guide-post-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: #f8fafc;
    padding: 14px 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 12px;
    margin-bottom: 20px;
  }
}

@media (max-width: 380px) {
  .guide-post-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Typography & Content */
.guide-body-text {
  font-size: 15.5px;
  color: #334155;
  line-height: 1.75;
}

.guide-body-text p {
  margin-bottom: 18px;
}

.guide-body-text strong {
  color: #0f172a;
}

.guide-body-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 23px;
  font-weight: 800;
  color: #0f172a;
  margin: 36px 0 16px 0;
  position: relative;
  padding-left: 14px;
  border-left: 4px solid #fe8f19;
  letter-spacing: -0.2px;
}

.guide-body-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #1e293b;
  margin: 26px 0 12px 0;
}

@media (max-width: 600px) {
  .guide-body-text {
    font-size: 14.5px;
    line-height: 1.65;
  }
  .guide-body-text h2 {
    font-size: 19px;
    margin: 28px 0 14px 0;
    padding-left: 10px;
    line-height: 1.3;
  }
  .guide-body-text h3 {
    font-size: 17px;
    margin: 22px 0 10px 0;
  }
}

.guide-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-bullet-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: #334155;
  line-height: 1.65;
}

.guide-bullet-list li::before {
  content: '•';
  position: absolute;
  left: 6px;
  top: -2px;
  color: #fe8f19;
  font-size: 22px;
  font-weight: bold;
}

@media (max-width: 600px) {
  .guide-bullet-list li {
    font-size: 14px;
    line-height: 1.55;
    padding-left: 20px;
  }
}

/* Highlight Quote Callout */
.guide-callout-box {
  background: #fff8eb;
  border-left: 4px solid #fe8f19;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 26px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #7c2d12;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
}

.guide-callout-box i {
  font-size: 20px;
  color: #fe8f19;
  flex-shrink: 0;
}

.guide-callout-box a {
  color: #c2410c;
  text-decoration: underline;
  font-weight: 700;
}

@media (max-width: 600px) {
  .guide-callout-box {
    padding: 14px 16px;
    font-size: 13.5px;
    margin: 20px 0;
  }
}

/* Structured Package Options */
.guide-packages-container {
  background: #fdfaf6;
  border: 1.5px solid #fee1be;
  border-radius: 18px;
  padding: 24px;
  margin: 28px 0;
}

.guide-packages-header {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guide-packages-header i {
  color: #fe8f19;
}

.guide-pkg-option {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 14px;
  border: 1px solid #ffd8a8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.guide-pkg-option:last-child {
  margin-bottom: 0;
}

.guide-pkg-badge-num {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fe8f19;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: block;
}

.guide-pkg-title {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #9a3412;
  margin-bottom: 6px;
}

.guide-pkg-detail {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Sightseeing Route Timeline */
.guide-itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.guide-timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fafaf9;
  border-radius: 12px;
  padding: 14px 18px;
  border: 1px solid #e7e5e4;
}

.guide-timeline-time {
  background: #fe8f19;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.guide-timeline-desc {
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}

/* 2-Column Attractions Grid */
.guide-attractions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

@media (max-width: 768px) {
  .guide-attractions-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 18px 0;
  }
}

.guide-attraction-card {
  background: #f8fafc;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid #e2e8f0;
}

.guide-attraction-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guide-attraction-card h4 i {
  color: #fe8f19;
  font-size: 14px;
}

.guide-attraction-card p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Inclusions & Exclusions Grid */
.guide-inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.guide-included-box {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 12px;
  padding: 18px;
}

.guide-excluded-box {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  border-radius: 12px;
  padding: 18px;
}

.guide-included-box h4 {
  color: #166534;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guide-excluded-box h4 {
  color: #991b1b;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guide-inclusions-grid ul {
  font-size: 14px;
  color: #1e293b;
  padding-left: 18px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .guide-inclusions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 20px 0;
  }

  .guide-included-box,
  .guide-excluded-box {
    padding: 16px 14px;
  }

  .guide-inclusions-grid ul {
    font-size: 13.5px;
    line-height: 1.6;
  }
}

/* Fleet Price Table */
.guide-fleet-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.guide-fleet-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.guide-fleet-table th {
  background: #f1f5f9;
  padding: 12px 16px;
  font-weight: 800;
  color: #1e293b;
  border-bottom: 2px solid #cbd5e1;
  white-space: nowrap;
}

.guide-fleet-table td {
  padding: 12px 16px;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

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

.guide-fleet-table tr:hover td {
  background: #fdfaf6;
}

@media (max-width: 600px) {
  .guide-fleet-table-wrap {
    margin: 18px 0;
  }
  .guide-fleet-table th,
  .guide-fleet-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
  .guide-fleet-table td strong {
    font-size: 13.5px;
  }
}

/* FAQ Cards */
.guide-faq-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 14px;
}

.guide-faq-q {
  font-size: 15.5px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.guide-faq-a {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .guide-faq-card {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .guide-faq-q {
    font-size: 14.5px;
    line-height: 1.4;
  }
  .guide-faq-a {
    font-size: 13.5px;
    line-height: 1.55;
  }
}

/* Bottom Callout & Share */
.guide-bottom-book-box {
  background: #fff8eb;
  border-radius: 16px;
  padding: 24px 22px;
  margin-top: 32px;
  border: 1.5px solid #ffd8a8;
}

.guide-bottom-book-box h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #9a3412;
  margin-bottom: 8px;
}

.guide-bottom-book-box p {
  font-size: 14.5px;
  color: #7c2d12;
  margin-bottom: 14px;
  line-height: 1.5;
}

.guide-bottom-call-link {
  font-size: 16px;
  font-weight: 800;
  color: #f44236;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.guide-bottom-call-link:hover {
  color: #f44236;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .guide-bottom-book-box {
    padding: 18px 16px;
    border-radius: 14px;
    margin-top: 24px;
  }
  .guide-bottom-book-box h3 {
    font-size: 18px;
  }
  .guide-bottom-book-box p {
    font-size: 13.5px;
  }
  .guide-bottom-call-link {
    font-size: 14.5px;
  }
}

.guide-share-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.guide-share-label {
  font-size: 14px;
  font-weight: 700;
  color: #475569;
}

.guide-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.guide-share-btn:hover {
  opacity: 0.88;
}

.guide-share-btn.fb-btn { background: #3b5998; }
.guide-share-btn.tw-btn { background: #1da1f2; }
.guide-share-btn.wa-btn { background: #25d366; }

@media (max-width: 480px) {
  .guide-share-bar {
    gap: 8px;
  }
  .guide-share-label {
    width: 100%;
    margin-bottom: 2px;
  }
  .guide-share-btn {
    flex: 1 1 calc(33.333% - 8px);
    justify-content: center;
    padding: 7px 10px;
    font-size: 12px;
  }
}

/* =========================================================
   RIGHT SIDEBAR WIDGETS (PRICE, ENQUIRY FORM & HELPLINE)
   ========================================================= */
.guide-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .guide-sidebar {
    gap: 20px;
  }
}

/* ---------------------------------------------------------
   1. PACKAGE PRICE CARD (Brand Logo Colors & 1-Line Typography)
   --------------------------------------------------------- */
.sidebar-price-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 20px;
  border: 1.5px solid #fde2c2;
  text-align: center;
  box-shadow: 0 6px 20px rgba(254, 143, 25, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-price-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(254, 143, 25, 0.12);
  border-color: #fd8f19;
}

.sidebar-price-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
  font-family: 'Outfit', sans-serif;
}

.sidebar-price-val {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #f44236;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  white-space: nowrap;
  display: block;
}

.sidebar-price-sub {
  display: block;
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 600px) {
  .sidebar-price-box {
    padding: 18px 16px;
    border-radius: 16px;
  }
  .sidebar-price-val {
    font-size: 22px;
  }
  .sidebar-price-label {
    font-size: 14px;
  }
  .sidebar-price-sub {
    font-size: 12.5px;
  }
}

/* ---------------------------------------------------------
   2. SEND BOOKING ENQUIRY FORM CARD (Brand Logo Styling)
   --------------------------------------------------------- */
.sidebar-enquiry-box {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #fde2c2;
  box-shadow: 0 10px 30px rgba(254, 143, 25, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-enquiry-box:hover {
  box-shadow: 0 14px 36px rgba(254, 143, 25, 0.14);
}

.sidebar-enquiry-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-top: 3px solid #fe8f19;
  padding: 18px 20px;
  color: #ffffff;
}

.enquiry-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.enquiry-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
}

.enquiry-header-title i {
  font-size: 16px;
  transform: rotate(-10deg);
}

.enquiry-expand-btn {
  background: rgba(255, 255, 255, 0.25);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.enquiry-expand-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
}

.enquiry-header-subtitle {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.sidebar-enquiry-form {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enquiry-form-field {
  position: relative;
  width: 100%;
}

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

@media (max-width: 600px) {
  .enquiry-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.enquiry-input,
.enquiry-textarea {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  color: #1e293b;
  background: #ffffff;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.enquiry-input:focus,
.enquiry-textarea:focus {
  border-color: #fe8f19;
  box-shadow: 0 0 0 3px rgba(254, 143, 25, 0.15);
}

.floating-date-label,
.floating-number-label {
  position: absolute;
  top: -8px;
  left: 12px;
  background: #ffffff;
  padding: 0 6px;
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.enquiry-date-input {
  color: #334155;
}

.enquiry-textarea {
  resize: vertical;
  min-height: 75px;
  line-height: 1.45;
}

.btn-side-send-enquiry {
  width: 100%;
  background: linear-gradient(135deg, #f44236 0%, #d32f2f 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 13px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(244, 66, 54, 0.35);
  text-align: center;
}

.btn-side-send-enquiry:hover {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(244, 66, 54, 0.55);
}

.btn-side-whatsapp-enquiry {
  width: 100%;
  background: #ffffff;
  color: #25D366;
  border: 1.5px solid #25D366;
  border-radius: 12px;
  padding: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-side-whatsapp-enquiry i {
  font-size: 18px;
}

.btn-side-whatsapp-enquiry:hover {
  background: #f0fdf4;
  border-color: #1eb954;
  color: #1eb954;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.enquiry-footer-notice {
  font-size: 12px;
  color: #64748b;
  text-align: center;
  line-height: 1.45;
  margin: 2px 0 0 0;
}

@media (max-width: 600px) {
  .sidebar-enquiry-box {
    border-radius: 16px;
  }
  .sidebar-enquiry-header {
    padding: 14px 16px;
  }
  .sidebar-enquiry-form {
    padding: 16px 14px;
    gap: 12px;
  }
  .enquiry-input,
  .enquiry-textarea {
    font-size: 16px; /* Prevents auto-zoom on iOS */
    padding: 11px 12px;
  }
  .btn-side-send-enquiry,
  .btn-side-whatsapp-enquiry {
    padding: 12px;
    font-size: 14.5px;
  }
}

/* ---------------------------------------------------------
   3. BOOKING HELPLINE CARD (Brand Logo Styling)
   --------------------------------------------------------- */
.sidebar-helpline-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 20px;
  border: 1.5px solid #fde2c2;
  box-shadow: 0 6px 20px rgba(254, 143, 25, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-helpline-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(254, 143, 25, 0.12);
  border-color: #fd8f19;
}

.sidebar-helpline-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.helpline-avatar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fe8f19 0%, #f44236 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(244, 66, 54, 0.35);
}

.helpline-header-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 2px 0;
  line-height: 1.25;
}

.helpline-header-text p {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
}

.helpline-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.helpline-pill-card {
  background: #fffdfa;
  border: 1.5px solid #fde2c2;
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.helpline-pill-card:hover {
  border-color: #fe8f19;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(254, 143, 25, 0.12);
  background: #ffffff;
}

.helpline-pill-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-icon-bg {
  background: #fff4e5;
  color: #f44236;
  font-size: 15px;
}

.whatsapp-icon-bg {
  background: #e8f9ee;
  color: #25D366;
  font-size: 18px;
}

.email-icon-bg {
  background: #fff4e5;
  color: #f44236;
  font-size: 15px;
}

.helpline-pill-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.helpline-pill-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.helpline-pill-val {
  font-size: 14.5px;
  font-weight: 700;
  color: #1e293b;
  word-break: break-all;
}

@media (max-width: 600px) {
  .sidebar-helpline-box {
    padding: 18px 16px;
    border-radius: 16px;
  }
  .sidebar-helpline-top {
    gap: 12px;
    margin-bottom: 14px;
  }
  .helpline-avatar-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .helpline-header-text h4 {
    font-size: 14.5px;
  }
  .helpline-pill-card {
    padding: 10px 12px;
    border-radius: 14px;
    gap: 10px;
  }
  .helpline-pill-icon {
    width: 36px;
    height: 36px;
  }
  .helpline-pill-val {
    font-size: 13px;
  }
}

.guide-breadcrumb-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
  font-size: 13.5px;
}

.guide-breadcrumb-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  flex-wrap: wrap;
}

.guide-breadcrumb-container a {
  color: #475569;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.guide-breadcrumb-container a:hover {
  color: #fe8f19;
}

.guide-breadcrumb-sep {
  font-size: 10px;
  color: #94a3b8;
}

.guide-breadcrumb-current {
  color: #fe8f19;
  font-weight: 700;
}

.guide-table-btn {
  display: inline-block;
  padding: 6px 14px;
  background: #f44236;
  color: #ffffff;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.guide-table-btn:hover {
  background: #d32f2f;
  transform: translateY(-1px);
}

/* =========================================================
   UNIVERSAL MOBILE RESPONSIVE OVERHAUL (ALL NON-HOME PAGES)
   Ensures zero horizontal overflow, balanced left/right padding,
   and flawless touch rendering across all mobile screens.
   ========================================================= */
@media (max-width: 768px) {
  /* All Hero & Banner Sections */
  .page-hero-banner,
  .guide-hero-banner,
  .contact-hero-banner {
    padding: 36px 14px 28px 14px !important;
    overflow-x: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-hero-container,
  .guide-hero-container {
    width: 100% !important;
    padding: 0 4px !important;
    box-sizing: border-box !important;
  }

  /* All Page Main Sections & Containers */
  .page-main-section,
  .guide-page-section,
  .about-tour-section,
  .packages-section,
  .fleet-showcase-section,
  .popular-routes-section,
  .contact-main-section,
  .contact-cards-section,
  .review-summary-section,
  .custom-cta-section,
  .inclusions-section,
  .itinerary-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .guide-layout-container,
  .packages-container,
  .fleet-container,
  .routes-grid,
  .contact-main-container,
  .contact-cards-container,
  .about-tour-container,
  .review-summary-container,
  .inclusions-container,
  .itinerary-container,
  .custom-cta-card,
  .prefooter-seo-container,
  .footer-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Article Content Card & Panel */
  .guide-content-card,
  .contact-form-panel,
  .contact-map-card,
  .review-score-card,
  .inclusions-card {
    padding: 20px 14px !important;
    border-radius: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  /* Fleet & Tour Grids */
  .fleet-grid,
  .packages-grid,
  .guide-attractions-grid,
  .guide-inclusions-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Table Containers - Full Mobile Responsive Card Transformation */
  .guide-fleet-table-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    margin: 18px 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .guide-fleet-table {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    border: none !important;
    background: transparent !important;
    border-collapse: separate !important;
  }

  .guide-fleet-table thead {
    display: none !important;
  }

  .guide-fleet-table tbody {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .guide-fleet-table tr {
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    border: 1.5px solid #fed7aa !important;
    border-radius: 16px !important;
    padding: 16px 14px !important;
    box-shadow: 0 4px 14px rgba(254, 143, 25, 0.08) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }

  .guide-fleet-table tr:hover {
    border-color: #fe8f19 !important;
    box-shadow: 0 8px 20px rgba(254, 143, 25, 0.16) !important;
  }

  .guide-fleet-table td {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 9px 0 !important;
    border-bottom: 1px dashed #f1e6d8 !important;
    font-size: 13.5px !important;
    color: #334155 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    background: transparent !important;
    text-align: right !important;
  }

  .guide-fleet-table td:first-child {
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    border-bottom: 2px solid #fed7aa !important;
    padding: 0 0 10px 0 !important;
    margin-bottom: 4px !important;
    text-align: left !important;
    display: block !important;
  }

  .guide-fleet-table td:first-child strong {
    font-size: 16px !important;
    color: #0f172a !important;
  }

  .guide-fleet-table td:not(:first-child):not(:last-child)::before {
    content: attr(data-label);
    font-weight: 600;
    color: #64748b;
    font-size: 13px;
    margin-right: 12px;
    flex-shrink: 0;
    text-align: left !important;
  }

  .guide-fleet-table td:last-child {
    border-bottom: none !important;
    padding: 12px 0 0 0 !important;
    margin-top: 2px !important;
    display: block !important;
    width: 100% !important;
  }

  .guide-fleet-table td:last-child .guide-table-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 11px 16px !important;
    font-size: 14.5px !important;
    font-weight: 800 !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #f44236 0%, #d32f2f 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(244, 66, 54, 0.35) !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
  }

  .guide-fleet-table td:last-child .guide-table-btn:hover {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 18px rgba(244, 66, 54, 0.55) !important;
  }
}

@media (max-width: 480px) {
  .guide-layout-container,
  .packages-container,
  .fleet-container,
  .contact-main-container,
  .contact-cards-container,
  .about-tour-container,
  .review-summary-container,
  .inclusions-container,
  .itinerary-container,
  .custom-cta-card,
  .prefooter-seo-container,
  .footer-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .guide-content-card,
  .contact-form-panel,
  .contact-map-card,
  .review-score-card,
  .inclusions-card {
    padding: 16px 12px !important;
    border-radius: 14px !important;
  }

  .guide-body-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .guide-body-text h2 {
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin: 22px 0 12px 0 !important;
  }

  .guide-body-text h3 {
    font-size: 16px !important;
    margin: 18px 0 10px 0 !important;
  }

  .guide-hero-title {
    font-size: 22px !important;
  }

  .page-hero-title {
    font-size: 26px !important;
  }

  .site-header {
    height: 70px !important;
  }

  .header-container {
    padding: 0 14px !important;
  }

  .brand-logo-img {
    height: 52px !important;
    max-height: 56px !important;
  }

  .header-mobile-call {
    font-size: 13.5px !important;
    font-weight: 800 !important;
    padding: 6px 13px !important;
    gap: 6px !important;
  }

  .header-mobile-call i {
    font-size: 13px !important;
  }

  .mobile-menu-btn {
    font-size: 24px !important;
  }
}

@media (max-width: 360px) {
  .site-header {
    height: 66px !important;
  }

  .header-container {
    padding: 0 8px !important;
  }

  .brand-logo-img {
    height: 46px !important;
    max-height: 50px !important;
  }

  .header-mobile-call {
    font-size: 12px !important;
    font-weight: 800 !important;
    padding: 5px 9px !important;
    gap: 4px !important;
  }

  .header-mobile-call i {
    font-size: 11.5px !important;
  }

  .mobile-menu-btn {
    font-size: 22px !important;
  }
}