/* =========================================================================
   TRAVILLA — DESIGN SYSTEM & STYLESHEET
   Based on theme.jpeg visual specification & Chatgpt.txt design tokens
   ========================================================================= */

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

:root {
  /* Core Color Tokens */
  --primary: #08736F;              /* Teal — main brand color */
  --primary-dark: #055451;
  --primary-light: #0d8e89;
  --primary-foreground: #FFFFFF;

  --secondary: #F3B21B;            /* Warm Orange/Gold — secondary brand color */
  --secondary-dark: #d89b0e;
  --secondary-foreground: #234342;

  --background: #FFFFFF;
  --foreground: #234342;           /* Text color */

  --card: #F3FBFA;                 /* Subtle mint/teal tinted surface */
  --card-foreground: #234342;
  --card-white: #FFFFFF;

  --popover: #FFFFFF;
  --popover-foreground: #234342;

  --muted: #F3FBFA;
  --muted-foreground: #718080;     /* Muted Text */

  --border: #DCE9E7;
  --input: #DCE9E7;
  --ring: #08736F;

  /* Button-only accent (CTA buttons ONLY per design rule) */
  --button-accent: #8BCF19;        /* Vivid Lime */
  --button-accent-hover: #7dbf13;
  --button-accent-foreground: #17330A;

  /* Typography */
  --font-sans: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-script: 'Caveat', cursive;

  --text-h1: clamp(40px, 6vw, 68px);
  --text-h2: clamp(28px, 4vw, 42px);
  --text-h3: clamp(20px, 2.5vw, 26px);
  --text-body: 16px;
  --text-small: 13px;

  /* Spacing */
  --spacing-section: 64px;
  --spacing-card: 28px;
  --spacing-component: 16px;
  --spacing-input: 14px;
  --container-max: 1240px;

  /* Radii */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-card: 20px;
  --radius-arch: 100px 100px 20px 20px;
  --radius-button: 999px;          /* Pill */

  /* Elevation */
  --shadow-sm: 0 4px 12px rgba(31, 67, 66, 0.06);
  --shadow-card: 0 12px 32px rgba(31, 67, 66, 0.08);
  --shadow-card-hover: 0 20px 40px rgba(31, 67, 66, 0.15);
  --shadow-modal: 0 25px 60px rgba(31, 67, 66, 0.22);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

input, button, select, textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Typography Helpers */
.font-script {
  font-family: var(--font-script);
}

.font-display {
  font-family: var(--font-display);
}

.section-tagline {
  font-family: var(--font-script);
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
  display: inline-block;
  margin-bottom: 4px;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--muted-foreground);
  font-size: 15px;
  max-width: 620px;
  line-height: 1.65;
}

.text-center {
  text-align: center;
}

.center-block {
  margin-inline: auto;
}

/* =========================================================================
   BUTTONS (Lime is exclusively for CTAs per design guidelines)
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-button);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(139, 207, 25, 0.25);
  text-decoration: none;
}

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

/* Primary Lime CTA */
.btn-primary {
  background-color: var(--button-accent);
  color: var(--button-accent-foreground);
}

.btn-primary:hover {
  background-color: var(--button-accent-hover);
  color: var(--button-accent-foreground);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 207, 25, 0.35);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: 0 4px 14px rgba(243, 178, 27, 0.25);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--secondary-foreground);
  transform: translateY(-2px);
}

.btn-teal {
  background-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(8, 115, 111, 0.25);
}

.btn-teal:hover {
  background-color: var(--primary-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--primary);
  border-color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-icon-circle {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================================
   HEADER & NAVBAR
   ========================================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(31, 67, 66, 0.08);
  border-bottom: 1px solid rgba(8, 115, 111, 0.08);
  padding-block: 12px;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(31, 67, 66, 0.12);
  padding-block: 10px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  text-decoration: none;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--primary);
  line-height: 1.1;
  transition: color 0.2s ease;
}

.brand-tagline {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--secondary-dark);
  line-height: 1;
  margin-top: 2px;
  transition: color 0.2s ease;
}

.brand-logo-img {
  width: 46px;
  height: 46px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(8, 115, 111, 0.15);
  border: 2px solid rgba(8, 115, 111, 0.22);
  display: block;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.nav-brand:hover .brand-logo-img {
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(8, 115, 111, 0.25);
}

.brand-icon {
  width: 32px;
  height: 32px;
  fill: var(--secondary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--foreground);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-link:hover, 
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--secondary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover::after, 
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-icon-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 24px;
  cursor: pointer;
}

/* =========================================================================
   HERO SECTION
   Matches top hero with torn paper aesthetic and curved gold highlight
   ========================================================================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: 
    linear-gradient(90deg, rgba(6, 68, 65, 0.72) 0%, rgba(8, 115, 111, 0.38) 36%, transparent 64%),
    url('../assets/images/hero-bg.jpg') center right / cover no-repeat;
  color: #FFFFFF;
  padding-top: 90px;
  padding-bottom: 40px;
  overflow: hidden;
}

/* Background Road route trail SVG overlay */
.hero-road-trail,
.hero-airplane-trail {
  position: absolute;
  top: 16%;
  left: 36%;
  width: 280px;
  height: 120px;
  pointer-events: none;
  opacity: 0.75;
}

.hero-grid {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 580px;
  padding-right: 20px;
}

.hero-script-tag {
  font-family: var(--font-script);
  font-size: 44px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: -8px;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 800;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 22px;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-description {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 500px;
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-cta-group .btn {
  padding: 14px 28px;
  font-size: 15px;
}

@media (max-width: 580px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
  }
}



/* =========================================================================
   FLOATING SEARCH BOOKING WIDGET (CABS: OUTSTATION, LOCAL RIDE, AIRPORT)
   ========================================================================= */

.search-bar-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -65px;
  margin-bottom: 70px;
}

.cab-booking-widget {
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(8, 115, 111, 0.14);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.cab-booking-widget:hover {
  box-shadow: 0 25px 60px rgba(8, 115, 111, 0.18);
}

/* Tab Navigation Bar */
.cab-tabs-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #F3FBFA;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.cab-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-button);
  border: none;
  background: transparent;
  color: var(--muted-foreground);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.cab-tab-btn:hover {
  color: var(--primary);
  background: rgba(8, 115, 111, 0.08);
}

.cab-tab-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(8, 115, 111, 0.25);
}

.cab-tab-btn svg {
  flex-shrink: 0;
}

/* Cab Search Form */
.cab-search-form {
  padding: 14px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
  transition: background 0.2s ease;
}

.search-field:last-of-type {
  border-right: none;
}

.search-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.search-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.search-select, .search-input {
  border: none;
  outline: none;
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  color: var(--foreground);
  cursor: pointer;
  padding: 2px 0;
  width: 100%;
}

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

.search-input:focus {
  color: var(--primary);
}

.cab-search-form .btn-primary {
  padding: 14px 28px;
  white-space: nowrap;
  font-size: 15px;
}

/* =========================================================================
   SECTION 2: EASY STEPS FOR BOOKINGS
   ========================================================================= */

.steps-section {
  padding-block: var(--spacing-section);
  position: relative;
  background: #FFFFFF;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 26px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(8, 115, 111, 0.12);
  border-color: var(--primary);
}

.step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 22px;
}

.step-number-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #064E4B 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(8, 115, 111, 0.22);
  border: 2px solid #E3FAF7;
}

.step-icon-corner {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #FFF9E6;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon-corner {
  background: var(--primary);
  color: #FFFFFF;
  transform: rotate(6deg) scale(1.05);
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--foreground);
  margin-bottom: 12px;
  line-height: 1.35;
  text-align: left;
}

.step-desc {
  font-size: 14.5px;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 22px;
  text-align: left;
  flex-grow: 1;
}

.step-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(8, 115, 111, 0.15);
  width: 100%;
}

.step-action-link:hover {
  color: #064E4B;
  gap: 12px;
}

.step-action-link svg {
  transition: transform 0.25s ease;
}

.step-action-link:hover svg {
  transform: translateX(4px);
}

/* Golden banner bar */
.promo-strip-banner {
  background: linear-gradient(90deg, #F3B21B 0%, #F8C33A 100%);
  border-radius: var(--radius-button);
  padding: 16px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(243, 178, 27, 0.28);
}

.promo-strip-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.promo-big-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}

.promo-strip-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #234342;
  letter-spacing: -0.2px;
}

.promo-strip-banner .btn {
  background: #FFFFFF;
  color: #234342;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.promo-strip-banner .btn:hover {
  background: #234342;
  color: #FFFFFF;
}

/* =========================================================================
   TRAVEL SERVICES & TRIP TYPES SECTION
   ========================================================================= */

.services-section {
  padding-block: var(--spacing-section);
  background: linear-gradient(180deg, #FFFFFF 0%, #F5FBFB 100%);
  position: relative;
}

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

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(8, 115, 111, 0.12);
  border-color: var(--primary);
}

.service-card-highlight {
  border-color: rgba(243, 178, 27, 0.6);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF7 100%);
}

.service-card-highlight:hover {
  border-color: var(--secondary);
}

.service-badge-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--secondary);
  background: #FFF9E6;
  padding: 4px 12px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 12px;
  border: 1px solid rgba(243, 178, 27, 0.3);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #E3FAF7;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  color: var(--secondary);
  transform: scale(1.08) rotate(4deg);
}

.service-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-desc {
  font-size: 13.5px;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(8, 115, 111, 0.2);
  width: 100%;
}

.service-action-link:hover {
  color: #064E4B;
  gap: 12px;
}

.service-action-link svg {
  transition: transform 0.25s ease;
}

.service-action-link:hover svg {
  transform: translateX(4px);
}

.service-card-highlight .service-action-link {
  border-top: 1px dashed rgba(243, 178, 27, 0.4);
}

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

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

/* =========================================================================
   SECTION 3: POPULAR DESTINATIONS (Gujarat & Rajasthan Showcase)
   ========================================================================= */

.destinations-section {
  padding-block: var(--spacing-section);
  position: relative;
  background: #FFFFFF;
}

.destinations-header {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 24px;
}

.destinations-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--foreground);
  letter-spacing: -0.5px;
  margin-top: 4px;
  margin-bottom: 12px;
}

.destinations-subtitle {
  font-size: 15px;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-inline: auto;
}

/* Link above cards leading to destinations page */
.dest-top-action-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}

.dest-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--button-accent-foreground);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--radius-button);
  background-color: var(--button-accent);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(139, 207, 25, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-view-all-link:hover {
  background-color: var(--button-accent-hover);
  color: var(--button-accent-foreground);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 207, 25, 0.35);
}

.dest-view-all-link:active {
  transform: scale(0.97);
}

.dest-view-all-link svg {
  transition: transform 0.2s ease;
}

.dest-view-all-link:hover svg {
  transform: translateX(3px);
}

/* Filter Bar: Category Pills + State Filter */
.dest-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
  padding-bottom: 8px;
}

.dest-category-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.dest-pill {
  padding: 9px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-button);
  border: 1.5px solid var(--border);
  background: #FFFFFF;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(31, 67, 66, 0.04);
}

.dest-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.dest-pill.active {
  background-color: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(8, 115, 111, 0.25);
}

/* State Filter Control */
.dest-state-filter {
  display: inline-flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-button);
  padding: 4px 6px;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(31, 67, 66, 0.04);
}

.dest-state-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-foreground);
  padding-inline: 8px 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dest-state-btn {
  padding: 6px 15px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-button);
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dest-state-btn:hover {
  color: var(--primary);
}

.dest-state-btn.active {
  background: #234342;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(35, 67, 66, 0.2);
}

/* Cards Grid */
.dest-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dest-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(31, 67, 66, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(31, 67, 66, 0.13);
  border-color: rgba(8, 115, 111, 0.3);
}

/* Card Media Header */
.dest-card-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #EAF3F2;
}

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

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

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

.dest-badge-state {
  background: rgba(255, 255, 255, 0.94);
  color: #234342;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--radius-button);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dest-badge-cat {
  background: rgba(35, 67, 66, 0.88);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: var(--radius-button);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Gradient Overlay on Image */
.dest-media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 68, 65, 0.94) 0%, rgba(6, 68, 65, 0.45) 45%, transparent 75%);
  z-index: 1;
  pointer-events: none;
}

/* Subtitle & Title over Image */
.dest-media-info {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 2;
  pointer-events: none;
}

.dest-tag-sub {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 2px;
}

.dest-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
}

/* Card Body Content */
.dest-card-content {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dest-desc-text {
  font-size: 13.5px;
  color: var(--muted-foreground);
  line-height: 1.55;
  margin-bottom: 16px;
  min-height: 42px;
}

/* Key Highlights */
.dest-highlights-wrap {
  background: var(--card);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(8, 115, 111, 0.08);
}

.dest-hl-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dest-hl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dest-hl-item {
  font-size: 12.5px;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.dest-hl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--secondary);
  flex-shrink: 0;
}

/* Card Action Button */
.dest-card-cta {
  margin-top: auto;
}

.btn-inquire-place {
  width: 100%;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--radius-button);
  background-color: var(--button-accent);
  color: var(--button-accent-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(139, 207, 25, 0.25);
}

.btn-inquire-place:hover {
  background-color: var(--button-accent-hover);
  color: var(--button-accent-foreground);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 207, 25, 0.35);
}

.btn-inquire-place:active {
  transform: scale(0.97);
}

.btn-inquire-place svg {
  transition: transform 0.2s ease;
}

.btn-inquire-place:hover svg {
  transform: translateX(3px);
}

/* Empty State Message */
.dest-empty-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-card);
  color: var(--muted-foreground);
}

.dest-empty-msg h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--foreground);
  margin-bottom: 8px;
}

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

@media (max-width: 768px) {
  .dest-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .dest-state-filter {
    justify-content: center;
  }

  .dest-top-action-bar {
    justify-content: center;
  }
}

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

  .dest-category-pills {
    justify-content: center;
  }
}

/* =========================================================================
   SECTION 4: PRICING / TOUR PACKAGES
   Scenic Mountain & Hot Air Balloon Backdrop with Arch Cards
   ========================================================================= */

.pricing-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 110px;
  background: linear-gradient(180deg, #F3FBFA 0%, #FFFFFF 60%);
  overflow: hidden;
}

.pricing-bg-mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 380px;
  opacity: 0.18;
  pointer-events: none;
  object-fit: cover;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 54px;
  position: relative;
  z-index: 3;
}

.price-card {
  background: #FFFFFF;
  border-radius: 40px 40px 24px 24px;
  border: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(8, 115, 111, 0.18);
  border-color: var(--primary);
}

.price-card.featured {
  border: 2px solid var(--secondary);
  transform: scale(1.03);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-10px);
}

.featured-pill-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: #234342;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: var(--radius-button);
}

/* Arch capsule preview image at top of card */
.price-image-arch {
  width: 100%;
  height: 180px;
  border-radius: 32px 32px 14px 14px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.price-card:hover .price-image-arch img {
  transform: scale(1.08);
}

.price-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}

.price-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--foreground);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.price-features-list {
  text-align: left;
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 12px;
}

.feature-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--card);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =========================================================================
   SECTION 5: BEAUTIFUL DESTINATIONS COLLAGE & STATS
   ========================================================================= */

.destinations-recommend-section {
  padding-block: var(--spacing-section);
  background: #FFFFFF;
}

.recommend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Oval / pill image collage with flight graphic */
.collage-container {
  position: relative;
  min-height: 440px;
}

.collage-img-main {
  width: 260px;
  height: 380px;
  border-radius: 130px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  position: absolute;
  top: 0;
  left: 60px;
}

.collage-img-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  bottom: 20px;
  left: 0;
  border: 6px solid #FFFFFF;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  z-index: 2;
}

.collage-img-secondary {
  width: 190px;
  height: 280px;
  border-radius: 95px;
  overflow: hidden;
  position: absolute;
  top: 60px;
  right: 30px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.collage-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-route,
.collage-airplane {
  position: absolute;
  top: -20px;
  right: 120px;
  width: 130px;
  z-index: 3;
}

/* Content & Trust Features */
.recommend-features-list {
  margin-top: 32px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recommend-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rec-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--card);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rec-feature-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--foreground);
}

.rec-feature-sub {
  font-size: 13px;
  color: var(--muted-foreground);
}

.recommend-bottom-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.customer-avatars-stack {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-left: -10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.avatar-item:first-child {
  margin-left: 0;
}

.avatar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customers-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
}

.customers-count span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted-foreground);
}

.exp-badge-vertical {
  display: flex;
  align-items: center;
  gap: 8px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--secondary);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
}

/* =========================================================================
   SECTION 6: SUMMER PROMO & 3 EASY STEPS
   ========================================================================= */

.summer-promo-section {
  padding-block: 70px;
  background: #FCFDFD;
}

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

.summer-step-pills {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.summer-step-pill {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-button);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}

.pill-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.summer-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.summer-script-word {
  position: absolute;
  right: -20px;
  top: 30%;
  font-family: var(--font-script);
  font-size: 72px;
  font-weight: 700;
  color: #F87171;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.85;
}

/* =========================================================================
   SECTION 7: WHY CHOOSE SAARTHI TOURISM & MOBILITY (4 CARDS GRID & TRAVEL DESK)
   ========================================================================= */

.why-choose-section {
  padding-block: var(--spacing-section);
  background: #FFFFFF;
  position: relative;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 34px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(8, 115, 111, 0.12);
  border-color: var(--primary);
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 22px;
}

.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #E3FAF7;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon-box {
  background: var(--primary);
  color: #FFFFFF;
  transform: scale(1.08) rotate(4deg);
}

.why-card-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: rgba(8, 115, 111, 0.18);
  line-height: 1;
  transition: color 0.3s ease;
}

.why-card:hover .why-card-num {
  color: var(--secondary);
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 12px;
  line-height: 1.35;
}

.why-card-desc {
  font-size: 14.5px;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Bottom assistance bar */
.why-cta-bar {
  margin-top: 44px;
  background: linear-gradient(90deg, #08736F 0%, #064E4B 100%);
  border-radius: var(--radius-card);
  padding: 24px 36px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 32px rgba(8, 115, 111, 0.22);
  flex-wrap: wrap;
  gap: 20px;
}

.why-cta-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(243, 178, 27, 0.2);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-cta-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.why-cta-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
}

.why-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

  .why-cta-bar {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .why-cta-bar-left {
    flex-direction: column;
  }
}

/* =========================================================================
   SECTION 8: CLIENT TESTIMONIALS
   ========================================================================= */

.testimonials-section {
  padding-block: var(--spacing-section);
  background: #FFFFFF;
  position: relative;
}

.testimonial-box {
  max-width: 820px;
  margin-inline: auto;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 48px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.testimonial-client-img {
  width: 180px;
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.testimonial-client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote-body {
  position: relative;
}

.quote-stars {
  color: var(--secondary);
  font-size: 18px;
  margin-bottom: 14px;
}

.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--foreground);
  margin-bottom: 20px;
}

.client-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  color: var(--primary);
}

.client-role {
  font-size: 13px;
  color: var(--muted-foreground);
}

/* =========================================================================
   SECTION 9: REACH & GET IN TOUCH (Contact Section)
   ========================================================================= */

.contact-section {
  padding-block: var(--spacing-section);
  background: #FAFDFC;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.contact-visual-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-card);
}

.contact-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 115, 111, 0.9) 100%);
  color: #FFFFFF;
}

.contact-visual-overlay h3 {
  font-family: var(--font-script);
  font-size: 32px;
  line-height: 1.2;
}

.contact-form-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

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

.form-full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--input);
  background: var(--card);
  color: var(--foreground);
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(8, 115, 111, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* =========================================================================
   SECTION 10: 24/7 MOUNTAINEER STRIP
   ========================================================================= */

.guide-support-strip {
  margin-block: 40px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.guide-badge-box {
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 20px;
  padding: 18px 24px;
  text-align: center;
}

.guide-badge-box span {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
}

/* =========================================================================
   SECTION 11: EXPLORE LATEST NEWS (Blog)
   ========================================================================= */

.news-section {
  padding-block: var(--spacing-section);
  background: #FFFFFF;
}

.news-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary);
}

.news-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.news-date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #FFFFFF;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-sm);
}

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

.news-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.news-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.35;
  margin-bottom: 12px;
}

.news-excerpt {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 18px;
}

.news-read-more {
  margin-top: auto;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-read-more:hover {
  color: var(--secondary);
}

/* =========================================================================
   SECTION 12: INSTAGRAM STRIP & GALLERY
   ========================================================================= */

.instagram-section {
  padding-block: 40px;
  text-align: center;
  background: #FAFDFC;
}

.insta-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.insta-item {
  border-radius: 16px;
  overflow: hidden;
  height: 140px;
  position: relative;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* =========================================================================
   SECTION 13: READY TO TRAVEL BANNER (Gujarat & Rajasthan Direct Assistance)
   ========================================================================= */

.ready-travel-banner {
  background: linear-gradient(90deg, #F3B21B 0%, #F5BA2A 100%);
  padding: 26px 0;
  position: relative;
}

.ready-travel-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ready-travel-content {
  max-width: 720px;
}

.ready-travel-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #234342;
  margin-bottom: 4px;
  line-height: 1.25;
}

.ready-travel-desc {
  font-size: 13.5px;
  color: rgba(35, 67, 66, 0.88);
  line-height: 1.5;
  margin-bottom: 6px;
}

.ready-travel-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #234342;
}

.ready-badge-text {
  color: #234342;
  opacity: 0.85;
}

.ready-badge-dot {
  color: rgba(35, 67, 66, 0.4);
  font-size: 12px;
}

.ready-travel-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-call-direct {
  background: #08736F;
  color: #FFFFFF;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-button);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(8, 115, 111, 0.25);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-call-direct:hover {
  background: #055451;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(8, 115, 111, 0.35);
}

@media (max-width: 768px) {
  .ready-travel-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .btn-call-direct {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================================
   SECTION 14: FOOTER
   Dark teal background with logo, sitemap, contact and social links
   ========================================================================= */

.site-footer {
  background: #064E4B;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
  padding-bottom: 30px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-title .brand-logo-img {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(243, 178, 27, 0.5);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.footer-brand-title .brand-title {
  color: #FFFFFF;
}

.footer-brand-title .brand-tagline {
  color: var(--secondary);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.footer-social-btn:hover {
  background: var(--secondary);
  color: #234342;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact-info p {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-bar {
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
  gap: 16px;
}

/* =========================================================================
   TOAST NOTIFICATION MODAL
   ========================================================================= */

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #FFFFFF;
  border-left: 5px solid var(--button-accent);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--foreground);
  animation: slideInRight 0.3s ease;
  min-width: 280px;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* =========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================= */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-description {
    margin-inline: auto;
  }

  .trending-top-grid, .recommend-grid, .summer-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid, .pricing-cards-grid, .news-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .cab-search-form .btn-primary {
    grid-column: span 2;
    width: 100%;
    padding: 15px;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
  }

  .banner-content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .banner-left-features {
    justify-content: center;
  }

  .testimonial-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-client-img {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-section: 46px;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #08736F;
    padding: 24px;
    gap: 18px;
    box-shadow: var(--shadow-modal);
  }

  .nav-menu.open .nav-link {
    color: #FFFFFF;
    width: fit-content;
  }

  .nav-menu.open .nav-link:hover,
  .nav-menu.open .nav-link.active {
    color: var(--secondary);
  }

  .mobile-toggle {
    display: block;
  }

  .insta-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .promo-strip-banner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    border-radius: var(--radius-card);
  }

  .guide-support-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .cab-search-form .btn-primary {
    grid-column: span 1;
  }
}

/* =========================================================================
   CONTACT US PAGE STYLES
   ========================================================================= */

.contact-hero-section,
.dest-hero {
  position: relative;
  min-height: 420px;
  background: 
    linear-gradient(90deg, rgba(6, 68, 65, 0.90) 0%, rgba(8, 115, 111, 0.78) 50%, rgba(6, 78, 75, 0.88) 100%),
    url('../assets/images/hero-bg.jpg') center / cover no-repeat;
  color: #FFFFFF;
  padding-top: 145px;
  padding-bottom: 85px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 780px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.contact-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 178, 27, 0.18);
  color: var(--secondary);
  border: 1px solid rgba(243, 178, 27, 0.4);
  padding: 6px 18px;
  border-radius: var(--radius-button);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.contact-hero-title span {
  color: var(--secondary);
}

.contact-hero-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  max-width: 660px;
  margin-inline: auto;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 18px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.breadcrumb-nav a {
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-nav a:hover {
  color: var(--secondary);
}

.breadcrumb-separator {
  opacity: 0.6;
}

/* Quick Contact Channels Bar */
.quick-channels-section {
  margin-top: -50px;
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}

.quick-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-channel-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: var(--foreground);
}

.quick-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
}

.quick-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--card);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.quick-channel-card:hover .quick-channel-icon {
  background: var(--primary);
  color: #FFFFFF;
}

.quick-channel-card.whatsapp:hover .quick-channel-icon {
  background: #25D366;
  color: #FFFFFF;
}

.quick-channel-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted-foreground);
  font-weight: 600;
  margin-bottom: 4px;
}

.quick-channel-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.3;
}

.quick-channel-sub {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-top: 2px;
}

/* Main Contact Content Layout */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: start;
}

.inquiry-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  scroll-margin-top: 95px;
}

.inquiry-form-card .form-head {
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.inquiry-form-card .form-tagline {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1;
}

.inquiry-form-card .form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 4px;
}

.inquiry-form-card .form-desc {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-top: 6px;
}

.inquiry-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-full-col {
  grid-column: span 2;
}

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

.inquiry-field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 4px;
}

.inquiry-field-label .required-star {
  color: #E53E3E;
  font-weight: bold;
}

.inquiry-field-label .optional-tag {
  font-size: 11px;
  color: var(--muted-foreground);
  font-weight: normal;
  margin-left: auto;
}

.inquiry-input-box {
  position: relative;
  display: flex;
  align-items: center;
}

.inquiry-input-icon {
  position: absolute;
  left: 14px;
  color: var(--primary);
  opacity: 0.8;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.inquiry-input, .inquiry-select, .inquiry-textarea {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 14px;
  color: var(--foreground);
  font-family: var(--font-sans);
  transition: all 0.2s ease;
  outline: none;
}

.inquiry-input:focus, .inquiry-select:focus, .inquiry-textarea:focus {
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8, 115, 111, 0.12);
}

.inquiry-textarea {
  padding-left: 14px;
  resize: vertical;
  min-height: 95px;
}

/* Dynamic Add Destination Component */
.destinations-manager {
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 4px;
}

.destinations-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.destination-row {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInDown 0.25s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.destination-row input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  font-size: 13px;
  outline: none;
}

.destination-row input:focus {
  border-color: var(--primary);
}

.remove-dest-btn {
  background: #FFEAEA;
  color: #D32F2F;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.remove-dest-btn:hover {
  background: #FFD4D4;
}

.add-dest-btn {
  background: #FFFFFF;
  color: var(--primary);
  border: 1.5px dashed var(--primary);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.add-dest-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-style: solid;
}

/* Submit & Notice Box */
.whatsapp-cta-btn {
  width: 100%;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  cursor: pointer;
  background-color: var(--button-accent);
  color: var(--button-accent-foreground);
  border: none;
  border-radius: var(--radius-button);
  box-shadow: 0 4px 16px rgba(139, 207, 25, 0.35);
  transition: all 0.25s ease;
}

.whatsapp-cta-btn:hover {
  background-color: var(--button-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 207, 25, 0.45);
}

.inquiry-notice-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.inquiry-notice-icon {
  color: var(--secondary-dark);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Contact Sidebar Cards */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.sidebar-card.highlight-teal {
  background: linear-gradient(135deg, #08736F 0%, #055451 100%);
  color: #FFFFFF;
  border: none;
}

.sidebar-card.highlight-teal h3, 
.sidebar-card.highlight-teal h4 {
  color: #FFFFFF;
}

.sidebar-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sidebar-card-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  line-height: 1.5;
}

.coverage-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.coverage-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: var(--radius-button);
  font-size: 12px;
  font-weight: 500;
}

.sidebar-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
}

.sidebar-feature-row .icon-bubble {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(243, 178, 27, 0.25);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-feature-row p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Info List */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-item .item-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--card);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
}

.contact-info-item .item-detail {
  font-size: 13px;
  color: var(--muted-foreground);
  margin-top: 2px;
}

.contact-info-item a.item-detail {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-info-item a.item-detail:hover {
  color: var(--secondary-dark);
}

/* FAQ Accordion Section */
.contact-faq-section {
  padding-block: 70px;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.faq-accordion-grid {
  max-width: 840px;
  margin-inline: auto;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question-btn {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
}

.faq-question-btn:hover {
  color: var(--primary);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

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

.faq-answer-inner {
  padding: 0 22px 20px 22px;
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* Responsive Rules for Contact Page */
@media (max-width: 1024px) {
  .quick-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding-top: 115px;
    padding-bottom: 65px;
    min-height: auto;
  }

  .quick-channels-section {
    margin-top: -30px;
    margin-bottom: 40px;
  }
}

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

  .inquiry-fields-grid {
    grid-template-columns: 1fr;
  }

  .form-full-col {
    grid-column: span 1;
  }

  .inquiry-form-card {
    padding: 24px 18px;
  }
}

/* =========================================================================
   OUR VEHICLE FLEET SECTION & CARDS
   ========================================================================= */

.vehicle-fleet-section {
  padding-block: var(--spacing-section);
  background: #FFFFFF;
  position: relative;
}

.vehicle-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.fleet-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

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

.vehicle-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(31, 67, 66, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(31, 67, 66, 0.13);
  border-color: rgba(8, 115, 111, 0.3);
}

.vehicle-card-media {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #F1F6F5;
}

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

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

.vehicle-media-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  z-index: 2;
  pointer-events: none;
}

.vehicle-badge-cap {
  background: rgba(8, 115, 111, 0.92);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
}

.vehicle-badge-cat {
  background: rgba(255, 255, 255, 0.94);
  color: var(--foreground);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vehicle-media-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 110px;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 68, 65, 0.88) 100%);
  pointer-events: none;
}

.vehicle-media-info {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 2;
  color: #FFFFFF;
  pointer-events: none;
}

.vehicle-tag-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.vehicle-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0;
}

.vehicle-card-content {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  gap: 16px;
  background: #FFFFFF;
}

.vehicle-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vehicle-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-foreground);
}

.vehicle-feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.vehicle-feature-item strong {
  color: var(--foreground);
  font-weight: 600;
}

.vehicle-card-cta {
  margin-top: auto;
}

/* Fleet Bottom Banner */
.fleet-bottom-bar {
  margin-top: 36px;
  background: linear-gradient(90deg, #F3FBFA 0%, #E8F7F5 100%);
  border: 1px solid rgba(8, 115, 111, 0.2);
  border-radius: var(--radius-card);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.fleet-bottom-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fleet-bottom-text strong {
  font-size: 15px;
  color: var(--primary-dark);
}

.fleet-bottom-text span {
  font-size: 13.5px;
  color: var(--muted-foreground);
}

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

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

  .vehicle-header-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .fleet-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .about-grid-responsive {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
}

/* =========================================================================
   CATALOGUE SEARCH BAR (Destinations & Vehicles)
   ========================================================================= */
.dest-search-bar-wrap,
.vehicle-search-bar-wrap {
  width: 100%;
  max-width: 620px;
  margin: 28px auto 0;
  position: relative;
}

.dest-search-input,
.vehicle-search-input {
  width: 100%;
  padding: 16px 24px 16px 52px;
  border-radius: var(--radius-button);
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  color: var(--foreground);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  outline: none;
  transition: all 0.25s ease;
}

.dest-search-input:focus,
.vehicle-search-input:focus {
  border-color: var(--secondary);
  background: #FFFFFF;
  box-shadow: 0 12px 35px rgba(243, 178, 27, 0.3);
}

.dest-search-icon,
.vehicle-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  pointer-events: none;
}

/* =========================================================================
   VEHICLE FILTER BAR (Centered 2-Tier Alignment)
   ========================================================================= */
.vehicle-filter-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 38px;
  padding-bottom: 6px;
}

.vehicle-filter-bar .dest-category-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.vehicle-filter-bar .dest-state-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .vehicle-filter-bar {
    align-items: center !important;
    gap: 14px;
  }
  .vehicle-filter-bar .dest-category-pills,
  .vehicle-filter-bar .dest-state-filter {
    justify-content: center;
  }
}


