/* ==========================================================================
   SMARTGO TRAVELLING PARTNER - EXPEDIA-INSPIRED MODERN CLEAN STYLESHEET
   Reference: Expedia (clean white, deep blue, photography cards, floating inputs)
   ========================================================================== */

:root {
  /* Expedia-Inspired Palette */
  --expedia-blue: #006ce4;
  --expedia-blue-hover: #0057b8;
  --expedia-blue-dark: #004ba0;
  --brand-cyan: #00b4d8;
  --brand-cyan-hover: #0096c7;
  --brand-cyan-light: #e0f7fa;

  --navy-900: #002244;
  --navy-800: #0b1f3a;
  --navy-700: #192a48;
  
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebd5a;

  --text-main: #192024;
  --text-muted: #596b79;
  --text-light: #8092a0;

  --bg-page: #f7f9fa;
  --bg-white: #ffffff;
  --border-light: #d1d7dc;
  --border-subtle: #e5e9ec;

  --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-malayalam: 'Noto Sans Malayalam', 'Inter', sans-serif;

  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-search: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

/* Malayalam Script Support */
body.lang-ml,
body.lang-ml h1,
body.lang-ml h2,
body.lang-ml h3,
body.lang-ml h4,
body.lang-ml p,
body.lang-ml button,
body.lang-ml span,
body.lang-ml a {
  font-family: var(--font-malayalam), var(--font-body);
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.top-nav-bar {
  background: var(--navy-900);
  color: #cbd5e1;
  font-size: 0.8125rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-promo {
  font-weight: 600;
  color: #e2e8f0;
}

.top-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-util-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
  font-weight: 500;
}

.top-util-link:hover {
  color: var(--brand-cyan);
}

.top-phone {
  color: var(--bg-white);
  font-weight: 700;
}

/* ==========================================================================
   MAIN EXPEDIA-STYLE HEADER
   ========================================================================== */
.expedia-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.expedia-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 42px;
  width: auto;
}

.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
}

.nav-item {
  font-size: clamp(0.82rem, 0.95vw, 0.9375rem);
  font-weight: 600;
  color: var(--text-main);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}

.nav-item:hover, .nav-item.active {
  color: var(--expedia-blue);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--expedia-blue);
  border-radius: 2px;
}

.nav-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #e1306c !important;
  font-weight: 700 !important;
  transition: all 0.2s ease;
}

.nav-instagram-link .insta-icon {
  stroke: #e1306c;
  transition: transform 0.2s ease;
}

.nav-instagram-link:hover {
  color: #c13584 !important;
  opacity: 0.9;
}

.nav-instagram-link:hover .insta-icon {
  transform: scale(1.15) rotate(-6deg);
}

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

.header-connect-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-page);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--expedia-blue);
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition-fast);
}

.header-connect-pill:hover {
  background: var(--expedia-blue);
  color: #ffffff;
  border-color: var(--expedia-blue);
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  transition: var(--transition-fast);
}

.lang-pill:hover {
  background: var(--brand-cyan-light);
  border-color: var(--brand-cyan);
  color: var(--navy-900);
}

.btn-expedia-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--bg-white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
  transition: var(--transition-fast);
}

.btn-expedia-wa:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* Mobile Hamburger Button */
.mobile-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 38px;
  padding: 10px 8px;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
}

.mobile-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-main);
  border-radius: 2px;
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.mobile-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(84%, 340px);
  height: 100%;
  background: var(--bg-white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-drawer.active .drawer-panel {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted);
}

.drawer-nav {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-item {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-bottom {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-block {
  width: 100%;
}

.btn-lang-drawer {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--navy-900);
}

.btn-phone-drawer {
  background: var(--navy-900);
  color: var(--bg-white);
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-align: center;
}

.btn-wa-drawer {
  background: var(--whatsapp);
  color: var(--bg-white);
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-align: center;
}

/* ==========================================================================
   PROMOTIONAL AUTO-SLIDE CAROUSEL (SECTION 1) - GRAPHICAL BANNERS
   ========================================================================== */
.promo-slider-section {
  padding: 20px 0 24px;
  background: transparent;
  position: relative;
  z-index: 10;
}

.promo-carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
  background: #001a33;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.promo-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

/* Luxury Shimmer Skeleton for 0-flicker loading */
.promo-skeleton-shimmer {
  width: 100%;
  height: clamp(170px, 25vw, 360px);
  background: linear-gradient(90deg, #001f3f 0%, #0a3d62 50%, #001f3f 100%);
  background-size: 200% 100%;
  animation: promoShimmerWave 1.8s infinite ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}

@keyframes promoShimmerWave {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.promo-skeleton-shimmer::after {
  content: "✈️ Loading latest offers...";
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Smooth Dissolve / Fade-In Transition */
.promo-fade-in {
  animation: promoFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes promoFadeIn {
  from {
    opacity: 0.2;
    transform: scale(0.995);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.promo-slide {
  min-width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* Full Graphical Banner Link (Flipkart style) */
.promo-banner-link {
  display: block;
  width: 100%;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}

.promo-banner-img {
  display: block;
  width: 100%;
  height: clamp(170px, 25vw, 360px);
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.promo-banner-link:hover .promo-banner-img {
  transform: scale(1.02);
}

/* Action button badge in bottom corner of banner - Premium Theme Styling */
.promo-banner-badge {
  position: absolute;
  bottom: 18px;
  right: 20px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, filter 0.25s ease;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-banner-link:hover .promo-banner-badge {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  filter: brightness(1.1);
}

/* Distinct Premium Button Themes */
.promo-banner-badge.badge-theme-flight {
  background: linear-gradient(135deg, #003366 0%, #006ce4 100%);
  border-color: rgba(147, 197, 253, 0.6);
  box-shadow: 0 6px 20px rgba(0, 108, 228, 0.45);
}

.promo-banner-badge.badge-theme-bus {
  background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
  border-color: rgba(110, 231, 183, 0.6);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
}

.promo-banner-badge.badge-theme-train {
  background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 100%);
  border-color: rgba(252, 165, 165, 0.6);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
}

.promo-banner-badge.badge-theme-holiday {
  background: linear-gradient(135deg, #7c2d12 0%, #ea580c 100%);
  border-color: rgba(253, 186, 116, 0.6);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
}

.promo-banner-badge.badge-theme-special {
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
  border-color: rgba(216, 180, 254, 0.6);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}

@media (max-width: 768px) {
  .promo-banner-img {
    height: clamp(150px, 36vw, 220px);
  }
  .promo-banner-badge {
    bottom: 12px;
    right: 12px;
    font-size: 0.75rem;
    padding: 6px 14px;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .promo-banner-img {
    height: clamp(140px, 48vw, 190px);
  }
  .promo-banner-badge {
    bottom: 10px;
    right: 10px;
    font-size: 0.72rem;
    padding: 5px 12px;
  }
}

/* Carousel Prev/Next Buttons */
.promo-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-900);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.promo-arrow-btn:hover {
  background: #ffffff;
  color: var(--expedia-blue);
  transform: translateY(-50%) scale(1.08);
}

.promo-arrow-prev {
  left: 14px;
}

.promo-arrow-next {
  right: 14px;
}

/* Dots Indicators */
.promo-dots-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
}

.promo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-dot.active {
  width: 28px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   HERO SECTION & UNIFIED TRAVEL BACKGROUND PHOTO (STARTS FROM TOP)
   ========================================================================== */
.expedia-hero {
  position: relative;
  padding: 10px 0 60px;
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 720px;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 24, 48, 0.78) 0%, rgba(0, 34, 68, 0.58) 55%, var(--bg-page) 100%);
}

.hero-content-box {
  position: relative;
  z-index: 10;
}

.hero-titles {
  color: var(--bg-white);
  margin-bottom: 28px;
}

.hero-badge-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-subtext {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: #e2e8f0;
  max-width: 620px;
}

/* ==========================================================================
   EXPEDIA SEARCH WIDGET CARD
   ========================================================================== */
.expedia-search-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-search);
  border: 1px solid var(--border-light);
  overflow: visible; /* Fix: Allows autocomplete dropdown to float over page without being clipped */
  position: relative;
  z-index: 40;
}

/* Mode Tabs Row (Flights, Trains, Buses) */
.mode-tabs-row {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  background: #f8fafc;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.mode-tab:first-child {
  border-top-left-radius: var(--radius-lg);
}

.mode-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: var(--transition-fast);
}

.mode-tab:hover {
  color: var(--expedia-blue);
  background: var(--bg-white);
}

.mode-tab.active {
  color: var(--expedia-blue);
  background: var(--bg-white);
  border-bottom-color: var(--expedia-blue);
}

.mode-icon {
  font-size: 1.2rem;
}

/* Sub-Row: Trip Type Options (Round-trip vs One-way vs Multi-city) */
.trip-options-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-white);
}

.trip-type-radios {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
}

.radio-label input[type="radio"] {
  display: none;
}

.custom-radio {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: var(--transition-fast);
}

.radio-label input[type="radio"]:checked + .custom-radio {
  border-color: var(--expedia-blue);
}

.radio-label input[type="radio"]:checked + .custom-radio::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: var(--expedia-blue);
  border-radius: 50%;
}

.cabin-select-wrap select {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 6px 12px;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
}

/* Expedia Floating Inputs Grid */
.expedia-fields-form {
  padding: 24px;
}

.search-inputs-grid {
  display: grid;
  grid-template-columns: 1.2fr auto 1.2fr 1fr 1fr 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.search-box-field {
  position: relative;
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-box-field:focus-within,
.search-box-field.has-open-dropdown {
  border-color: var(--expedia-blue);
  box-shadow: 0 0 0 3px rgba(0, 108, 228, 0.15);
  z-index: 100;
}

/* Expedia-Style Searchable Places Dropdown */
.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  min-width: 320px;
  max-width: min(440px, 92vw);
  max-height: 340px;
  overflow-y: auto;
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  z-index: 1000;
  display: none;
}

.autocomplete-dropdown.open {
  display: block;
}

.dropdown-header-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  padding: 8px 14px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-subtle);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: background-color var(--transition-fast);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover, .dropdown-item.focused {
  background-color: #f0f7ff;
}

.item-icon {
  font-size: 1.15rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-item:hover .item-icon {
  background: #e0f2fe;
}

.item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.item-city-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-900);
}

.item-sub-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.item-code-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--expedia-blue);
  background: #e0f2fe;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.no-results-msg {
  padding: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.field-label-small {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.field-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.box-icon {
  font-size: 1rem;
  opacity: 0.8;
}

.field-inner input,
.field-inner select {
  width: 100%;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
  background: transparent;
}

/* Swap Button */
.swap-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color var(--transition-fast);
}

.swap-circle-btn:hover {
  background: var(--expedia-blue);
  border-color: var(--expedia-blue);
  color: var(--bg-white);
  transform: rotate(180deg);
}

/* Dynamic Hidden Return Date for One-way */
.search-box-field.field-hidden {
  display: none;
}

/* Multi-City & Multi-Transport Combo Trip Styling */
.multi-city-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.multi-city-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0f7ff;
  border-left: 4px solid var(--expedia-blue);
  padding: 10px 16px;
  border-radius: 4px var(--radius-sm) var(--radius-sm) 4px;
}

.mc-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--expedia-blue);
  background: #e0f2fe;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.mc-hint {
  font-size: 0.85rem;
  color: var(--navy-900);
  font-weight: 600;
}

.multi-city-legs-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.multi-city-leg-card {
  background: #f8fafc;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  position: relative;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.multi-city-leg-card:hover {
  border-color: var(--expedia-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.multi-city-leg-card:focus-within,
.multi-city-leg-card:has(.autocomplete-dropdown.open) {
  z-index: 50;
  border-color: var(--expedia-blue);
}

.mc-leg-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.mc-leg-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mc-mode-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-white);
  padding: 3px 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.mc-mode-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  padding-left: 4px;
}

.mc-mode-btn {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.mc-mode-btn.active {
  background: var(--expedia-blue);
  color: var(--bg-white);
}

.mc-leg-inputs-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr auto;
  align-items: center;
  gap: 10px;
}

.btn-remove-leg {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #fecaca;
  background: #fee2e2;
  color: #b91c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-remove-leg:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

.multi-city-actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 8px 0;
}

.btn-add-connection {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--bg-white);
  border: 1.5px dashed var(--expedia-blue);
  color: var(--expedia-blue);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-add-connection:hover {
  background: #e0f2fe;
  border-style: solid;
}

.mc-travelers-cell {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 6px 14px;
  min-width: 220px;
}

.mc-select {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .mc-leg-inputs-grid {
    grid-template-columns: 1fr;
  }
  .btn-remove-leg {
    margin-top: 6px;
    width: 100%;
    border-radius: var(--radius-sm);
    height: 38px;
  }
  .multi-city-actions-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .mc-travelers-cell {
    width: 100%;
  }
}

/* Bottom Action Bar */
.search-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.instant-quote-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.green-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-expedia-search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--expedia-blue);
  color: var(--bg-white);
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 108, 228, 0.3);
  transition: var(--transition-fast);
}

.btn-expedia-search:hover {
  background: var(--expedia-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 108, 228, 0.4);
}

/* ==========================================================================
   POPULAR FLIGHT DESTINATIONS (EXPEDIA-STYLE IMAGE CARDS)
   ========================================================================== */
.popular-destinations-section {
  padding: clamp(48px, 6vw, 76px) 0;
}

.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.section-subheading {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.trip-quick-tags {
  display: flex;
  gap: 8px;
}

.quick-pill {
  padding: 6px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
}

.quick-pill.active {
  background: var(--navy-900);
  color: var(--bg-white);
  border-color: var(--navy-900);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}

.destination-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--expedia-blue);
}

.dest-image-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

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

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

.dest-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 34, 68, 0.8);
  color: var(--bg-white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.dest-details {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dest-city-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.dest-city {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-900);
}

.dest-code {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--expedia-blue);
  background: #e0f2fe;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.dest-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.dest-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.dest-type-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
}

.btn-check-fare {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--expedia-blue);
}

/* ==========================================================================
   TRENDING ROUTES SECTION (SECTION 3: FLIGHTS, TRAINS & BUSES)
   ========================================================================== */
.trending-routes-section {
  padding: 48px 0 64px;
  background: var(--bg-page);
}

.trending-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.trending-tabs-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trending-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.trending-tab-btn:hover {
  border-color: var(--expedia-blue);
  color: var(--expedia-blue);
  background: #f0f7ff;
}

.trending-tab-btn.active {
  background: var(--expedia-blue);
  color: #ffffff;
  border-color: var(--expedia-blue);
  box-shadow: 0 4px 14px rgba(0, 108, 228, 0.28);
}

.trending-category-panel {
  display: none;
}

.trending-category-panel.active {
  display: block;
}

.trending-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 18px;
}

.trending-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.trending-card:hover {
  transform: translateY(-3px);
  border-color: var(--expedia-blue);
  box-shadow: var(--shadow-card);
}

.trending-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trending-mode-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  background: #e0f2fe;
  color: var(--expedia-blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.trending-mode-tag.tag-train {
  background: #fef3c7;
  color: #b45309;
}

.trending-mode-tag.tag-bus {
  background: #d1fae5;
  color: #047857;
}

.trending-freq-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
}

.trending-cities-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.trending-city-origin,
.trending-city-dest {
  display: flex;
  flex-direction: column;
}

.trending-city-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-900);
}

.trending-code-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

.trending-route-arrow {
  color: var(--expedia-blue);
  font-size: 1.3rem;
  font-weight: 800;
  padding: 0 4px;
}

.trending-card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.btn-enquire-route {
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--expedia-blue);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 108, 228, 0.25);
  transition: all var(--transition-fast);
}

.trending-card:hover .btn-enquire-route,
.btn-enquire-route:hover {
  background: #004ba0 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 75, 160, 0.45);
  transform: translateX(2px);
}

/* Backward compatibility for old route-tiles */
.route-tiles-section {
  padding: 20px 0 60px;
}

.route-tiles-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 20px;
}

.route-tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 16px;
}

.route-tile {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.route-tile:hover {
  transform: translateY(-2px);
  border-color: var(--expedia-blue);
  box-shadow: var(--shadow-card);
}

.tile-icon {
  font-size: 1.4rem;
}

.tile-content {
  flex: 1;
}

.tile-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-900);
}

.tile-content span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tile-arrow {
  font-size: 1.1rem;
  color: var(--expedia-blue);
  font-weight: 800;
}

/* ==========================================================================
   WHY BOOK WITH SMARTGO
   ========================================================================== */
.why-smartgo-section {
  padding: clamp(50px, 7vw, 84px) 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.section-badge-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--expedia-blue);
  text-transform: uppercase;
  background: #e0f2fe;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.features-columns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: 40px;
}

.feature-col {
  padding: 24px;
  background: var(--bg-page);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-fast);
}

.feature-col:hover {
  transform: translateY(-4px);
  background: var(--bg-white);
  border-color: var(--expedia-blue);
  box-shadow: var(--shadow-card);
}

.f-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}

.feature-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.feature-col p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   DEDICATED LOCATION & MAP SECTION
   ========================================================================== */
.location-map-section {
  padding: clamp(48px, 7vw, 84px) 0 30px;
  background: var(--bg-page);
}

.location-grid-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-top: 36px;
}

.location-info-panel {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loc-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--expedia-blue);
  background: rgba(0, 108, 228, 0.08);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.loc-agency-name {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.loc-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.loc-details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.loc-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.loc-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.loc-text {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  line-height: 1.45;
}

.loc-text strong {
  color: var(--navy-900);
  font-weight: 700;
  margin-bottom: 2px;
}

.loc-text span, .loc-text a {
  color: var(--text-main);
  text-decoration: none;
}

.loc-text a:hover {
  color: var(--expedia-blue);
  text-decoration: underline;
}

.loc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--expedia-blue);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 108, 228, 0.25);
  transition: var(--transition-fast);
}

.btn-directions:hover {
  background: var(--expedia-blue-dark);
  transform: translateY(-2px);
}

.btn-office-wa {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: var(--transition-fast);
}

.btn-office-wa:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.location-map-wrapper {
  position: relative;
  min-height: 380px;
  background: #e2e8f0;
}

.map-floating-overlay-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  text-decoration: none;
  transition: all 0.2s;
  z-index: 5;
}

.map-floating-overlay-btn:hover {
  background: var(--navy-900);
  color: #ffffff;
}

@media (max-width: 900px) {
  .location-grid-card {
    grid-template-columns: 1fr;
  }
  .location-map-wrapper {
    height: 320px;
  }
}

/* ==========================================================================
   SUPPORT & CONTACT BANNER
   ========================================================================== */
.support-banner-section {
  padding: clamp(40px, 6vw, 70px) 0;
}

.support-banner-card {
  background: linear-gradient(135deg, var(--navy-900) 0%, #003580 100%);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  color: var(--bg-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  box-shadow: var(--shadow-search);
}

.support-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #7dd3fc;
  background: rgba(125, 211, 252, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.support-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.support-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: #e2e8f0;
  max-width: 560px;
}

.support-banner-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-call-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--bg-white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.btn-call-outline:hover {
  background: var(--bg-white);
  color: var(--navy-900);
}

.btn-map-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border: 1.5px solid #38bdf8;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.btn-map-outline:hover {
  background: #38bdf8;
  color: var(--navy-900);
}

.btn-insta-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #ffffff !important;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-insta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(225, 48, 108, 0.5);
  filter: brightness(1.08);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.expedia-footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 0;
  color: var(--text-muted);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 48px;
}

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

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 12px;
}

.footer-quote {
  font-weight: 700;
  color: var(--expedia-blue);
  font-size: 0.925rem;
}

.footer-col-links h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.footer-col-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-col-links a:hover {
  color: var(--expedia-blue);
}

.footer-legal-bar {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  font-size: 0.8125rem;
  background: var(--bg-page);
}

.legal-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-notice {
  font-size: 0.75rem;
  color: var(--text-light);
  max-width: 600px;
}

/* ==========================================================================
   MOBILE STICKY ACTION BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  z-index: 90;
  border-top: 1px solid var(--border-light);
  gap: 10px;
}

.mobile-btn-call, .mobile-btn-wa {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--bg-white);
}

.mobile-btn-call {
  background: var(--navy-900);
}

.mobile-btn-wa {
  background: var(--whatsapp);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Large Tablets & Small Laptops (< 1120px) */
@media (max-width: 1120px) {
  .search-inputs-grid {
    grid-template-columns: 1fr auto 1fr;
    row-gap: 14px;
  }
  .search-inputs-grid .field-depart,
  .search-inputs-grid .field-return,
  .search-inputs-grid .field-travelers {
    grid-column: span 1;
  }
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col-brand {
    grid-column: 1 / -1;
  }
}

/* Laptops, Tablets & Responsive Nav (< 1180px) */
@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }
  .btn-expedia-wa {
    display: none;
  }
  .mobile-hamburger {
    display: flex;
  }
  .mobile-sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 74px; /* Offset for sticky bottom bar */
  }
  .top-nav-bar {
    display: none;
  }
  .route-tiles-grid {
    grid-template-columns: 1fr;
  }
}

/* Phablets & Mobile (< 768px) */
@media (max-width: 768px) {
  .hero-image-wrap {
    height: 400px;
  }
  .mode-tabs-row {
    overflow-x: auto;
  }
  .mode-tab {
    padding: 12px 18px;
    font-size: 0.875rem;
  }
  .trip-options-bar {
    padding: 12px 16px;
  }
  .expedia-fields-form {
    padding: 16px;
  }
  .search-inputs-grid {
    grid-template-columns: 1fr;
  }
  .swap-circle-btn {
    transform: rotate(90deg);
    margin: -4px auto;
  }
  .swap-circle-btn:hover {
    transform: rotate(270deg);
  }
  .search-action-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-expedia-search {
    width: 100%;
    justify-content: center;
  }
  .support-banner-card {
    flex-direction: column;
    align-items: stretch;
  }
  .support-banner-ctas {
    flex-direction: column;
    width: 100%;
  }
  .support-banner-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Promo Carousel Mobile */
  .promo-card {
    flex-direction: column-reverse;
    min-height: auto;
  }
  .promo-card-visual {
    position: relative;
    width: 100%;
    height: 180px;
  }
  .promo-card-visual::before {
    display: none;
  }
  .promo-card-content {
    padding: 22px 20px 24px;
  }
  .promo-arrow-btn {
    display: none;
  }
  .trending-cards-grid {
    grid-template-columns: 1fr;
  }
  .trending-header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Small Smartphone (< 480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero-headline {
    font-size: 1.85rem;
  }
  .trip-type-radios {
    gap: 12px;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HIGH-CONVERTING MOBILE STICKY ACTION BAR (< 768px)
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* Ensure content is never blocked by sticky bar */
  }

  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 10px 14px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    gap: 10px;
  }

  .mobile-btn-call,
  .mobile-btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: transform 0.15s ease, filter 0.15s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .mobile-btn-call:active,
  .mobile-btn-wa:active {
    transform: scale(0.97);
  }

  .mobile-btn-call {
    flex: 1;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: #ffffff !important;
  }

  .mobile-btn-call svg {
    stroke: #60a5fa;
  }

  .mobile-btn-wa {
    flex: 1.25;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
  }

  .mobile-btn-wa svg {
    fill: #ffffff;
  }
}

