/* ==========================================================================
   PREMIUM LUXURY CARRIER BOOKING LANDING PAGE (2026) - STYLE SYSTEM
   ========================================================================== */

/* --- Typography Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens & CSS Variables --- */
:root {
  /* Premium UK Travel Theme Variables */
  --primary: #002147;       /* Luxury Deep Navy */
  --primary-dark: #001229;
  --primary-light: rgba(0, 33, 71, 0.06);
  --accent: #25D366;        /* High-converting WhatsApp Green */
  --accent-light: rgba(37, 211, 102, 0.08);
  --accent-hover: #1ebd58;
  --gold: #D4AF37;          /* Premium Luxury Gold */
  --gold-hover: #B89222;
  --gold-light: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.3);
  --white: #FFFFFF;
  --bg-light: #F8FAFC;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  
  /* Fonts */
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  
  /* Premium Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 20px 50px rgba(0, 33, 71, 0.15);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   GLOBAL RESETS
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

/* ==========================================================================
   CUSTOM GRID SYSTEM (Vanilla CSS Grid & Flex)
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

/* Responsive grid rules */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 {
    grid-template-columns: 1fr;
  }
}

/* Helper Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.w-full { width: 100%; }
.bg-light { background-color: var(--bg-light); }
.bg-primary { background-color: var(--primary); }
.text-white { color: var(--white); }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 24px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 24px; }

/* ==========================================================================
   PREMIUM STYLING SYSTEMS & COMMONS
   ========================================================================== */

/* Glassmorphism Card Base */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 174, 239, 0.25);
}

/* Section Header styling */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}

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

@media (max-width: 768px) {
  .section-title { font-size: 1.85rem; }
  .section-desc { font-size: 0.95rem; }
  .section-header { margin-bottom: 40px; }
}

/* Custom Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

/* Primary gold button (changed to green) */
.btn-gold {
  background-color: var(--accent) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

.btn-gold:hover {
  background-color: var(--accent-hover) !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

/* Secondary outline / search button */
.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 174, 239, 0.25);
}

/* WhatsApp button */
.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #1ebd58;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Full width buttons on mobile */
@media (max-width: 576px) {
  .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

/* SVG icon wrappers */
.btn svg, .badge svg, .item-icon svg {
  width: 1.2em;
  height: 1.2em;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  vertical-align: middle;
}

.top-bar svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  vertical-align: middle;
}

.input-wrapper svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  vertical-align: middle;
}

/* Keyframe for subtle animations */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-gold-pulse {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlowGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-green {
  background-color: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-green:hover {
  background-color: #1ebd58;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-green-pulse {
  animation: pulseGlowGreen 2.5s infinite;
}

/* ==========================================================================
   TOP BARS & STICKY HEADER
   ========================================================================== */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
}

.top-bar a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .top-bar { display: none; }
}

/* Header Wrapper & Sticky styling */
.header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.top-bar {
  transition: var(--transition-smooth);
}

.header-wrapper.scrolled .top-bar {
  margin-top: -37px; /* Slide the top bar away smoothly */
  opacity: 0;
  pointer-events: none;
}

.header {
  position: relative;
  width: 100%;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 59, 115, 0.08);
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.95);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--primary);
}

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

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--accent);
  background-color: var(--primary-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-tel {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-tel-icon {
  background-color: var(--accent-light);
  color: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-tel-details {
  display: flex;
  flex-direction: column;
}

.header-tel-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.header-tel-number {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

/* Mobile Navigation Trigger */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary);
  background: transparent;
  border: none;
}

.mobile-call-btn {
  display: none;
}

@media (max-width: 1180px) {
  .header { top: 0; }
  .header-tel { display: none !important; }
  .nav {
    display: none; /* Hide on mobile/tablet */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav-link {
    width: 100%;
    padding: 12px 16px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 50px;
    background-color: #22C55E;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    animation: pulseBtnSmall 2s infinite;
    font-size: 0.85rem;
    font-weight: 700;
    gap: 6px;
    text-decoration: none;
  }
  
  .mobile-call-btn:hover {
    background-color: #059669;
    transform: scale(1.05);
  }
  
  .header-actions .btn {
    display: none; /* Hide desktop button, rely on mobile sticky */
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: 190px;
  padding-bottom: 120px;
  position: relative;
  background-image: radial-gradient(circle at 100% 0%, var(--accent-light) 0%, rgba(255,255,255,0) 50%), 
                    radial-gradient(circle at 0% 100%, var(--primary-light) 0%, rgba(255,255,255,0) 50%);
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

.hero-badge {
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(0, 59, 115, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

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

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .hero-ctas {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 1024px) {
  .hero-trust-badges {
    justify-content: center;
  }
}

.hero-badge-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
}

.hero-badge-card svg {
  color: var(--accent);
}

.hero-badge-card.atol {
  border-color: #ffd699;
  background-color: #fffaf2;
  color: #b35900;
}

.hero-badge-card.iata {
  border-color: #99c2ff;
  background-color: #f2f7ff;
  color: #003366;
}

/* ==========================================================================
   HERO SEARCH ENGINE WIDGET
   ========================================================================== */
.search-widget {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 59, 115, 0.08);
  box-shadow: 0 30px 60px rgba(0, 59, 115, 0.12);
  padding: 30px;
  width: 100%;
}

.trip-type-tabs {
  display: flex;
  background-color: var(--bg-light);
  padding: 4px;
  border-radius: 50px;
  margin-bottom: 24px;
  width: fit-content;
}

.trip-tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.trip-tab.active {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-row-passengers {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .form-grid, .form-row-dates, .form-row-passengers {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.input-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

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

.input-wrapper svg {
  position: absolute;
  left: 16px;
  color: var(--accent);
  pointer-events: none;
}

.input-field {
  width: 100%;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 14px 16px 14px 44px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.input-field:focus {
  border-color: var(--accent);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.1);
}

.input-field[type="date"] {
  cursor: pointer;
}

/* Autocomplete Suggestion Dropdowns */
.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  display: none;
  overflow: hidden;
  margin-top: 6px;
}

.virtual-viewport::-webkit-scrollbar {
  width: 6px;
}
.virtual-viewport::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}
.virtual-viewport::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.virtual-viewport::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Suggestion Row Styles */
.suggestion-item {
  box-sizing: border-box;
  transition: var(--transition-smooth);
}

.suggestion-item:hover, .suggestion-item.selected {
  background-color: var(--bg-light);
  border-left: 3px solid var(--accent);
}

.suggest-left {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 75%;
}

.suggest-flag {
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.05);
}

.suggest-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.suggest-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.suggest-city-country {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.suggest-badges {
  display: flex;
  gap: 6px;
}

.suggest-code {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.suggest-code.iata {
  background-color: var(--accent-light);
  color: var(--accent);
}

.suggest-code.icao {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* Popular list styling */
.popular-suggestions-list {
  padding: 12px;
}

.popular-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  padding-left: 4px;
}

.popular-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.popular-tag {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.popular-tag:hover {
  background-color: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

/* Search Submit Button */
.search-btn {
  width: 100%;
  background-color: var(--gold);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.search-btn:hover {
  background-color: var(--gold-hover);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   FLIGHT SEARCH RESULTS SECTION
   ========================================================================== */
.results-section {
  padding: 50px 0 100px 0;
  display: none;
  scroll-margin-top: 80px;
}

.results-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
}

@media (max-width: 1024px) {
  .results-layout {
    grid-template-columns: 1fr;
  }
}

/* Loading skeleton design */
.skeleton-sidebar {
  height: 400px;
}

.skeleton-card {
  height: 220px;
  margin-bottom: 20px;
}

.skeleton-anim {
  background: linear-gradient(90deg, var(--bg-light) 25%, var(--border-color) 50%, var(--bg-light) 75%);
  background-size: 200% 100%;
  animation: skeletonPulse 1.5s infinite;
  border-radius: var(--radius-md);
}

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

/* Filtering Sidebar */
.filters-sidebar {
  padding: 24px;
  height: fit-content;
}

.filter-heading {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 10px;
  cursor: pointer;
}

.filter-checkbox input {
  margin-right: 8px;
  accent-color: var(--accent);
}

.filter-price-val {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 600;
}

/* Custom styled timeline or duration inputs */
.filter-range {
  width: 100%;
  height: 4px;
  background-color: var(--border-color);
  border-radius: 4px;
  accent-color: var(--accent);
}

.filter-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.filter-time-btn {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  transition: var(--transition-smooth);
}

.filter-time-btn.active, .filter-time-btn:hover {
  background-color: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

/* Sort tabs */
.results-sort-bar {
  display: flex;
  background-color: var(--bg-light);
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.sort-tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.sort-tab.active {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Flight Cards list */
.flight-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.flight-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.flight-card-badges {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
}

.flight-badge-left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

.flight-badge-right {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

.flight-card-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 24px;
  align-items: center;
}

@media (max-width: 900px) {
  .flight-card-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.segments-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.segment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 576px) {
  .segment-row {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.carrier-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 160px;
  flex-shrink: 0;
}

.carrier-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.partner-logo-img {
  height: 50px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.95;
  transition: var(--transition-smooth);
}

.marquee-item:hover .partner-logo-img {
  opacity: 1;
  transform: scale(1.08);
}

.carrier-meta {
  display: flex;
  flex-direction: column;
}

.carrier-meta-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.carrier-meta-code {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.time-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.time-main {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.time-airport {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.visual-path {
  flex-grow: 1;
  max-width: 180px;
  text-align: center;
  padding: 0 10px;
}

.path-duration {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.path-line {
  height: 2px;
  background-color: var(--border-color);
  margin: 6px 0;
  position: relative;
}

.path-line::before, .path-line::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
}

.path-line::before { left: 0; }
.path-line::after { right: 0; }

.path-stops {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

.path-stops.direct {
  color: #28c76f;
}

/* Ticket Price Box styling */
.price-details {
  border-left: 1px solid var(--border-color);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .price-details {
    border-left: none;
    border-top: 1px dashed var(--border-color);
    padding-left: 0;
    padding-top: 20px;
  }
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.price-val {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.price-val span {
  font-size: 0.9rem;
  font-weight: 600;
}

.flight-card-footer {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-meta {
  display: flex;
  gap: 15px;
}

.footer-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.seats-badge {
  background-color: #fee2e2;
  color: #dc2626;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

/* Results exclusive phone offer strip */
.results-exclusive-strip {
  background-color: var(--accent-light);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.strip-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.strip-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .results-exclusive-strip {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */
.stats {
  background: radial-gradient(circle at 0% 0%, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-number {
    font-size: 2.75rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .stat-number {
    font-size: 3rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* Custom interactive trust items style */
.stats-grid .stat-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-grid .stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: var(--gold-border) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   WHY CHOOSE US & SPECIALS
   ========================================================================== */
.why-item {
  padding: 30px;
  text-align: left;
}

.why-icon {
  background-color: var(--primary-light);
  color: var(--primary);
  width: 54px;
  height: 54px;
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Infinite logos slider marquee */
.partners {
  padding: 40px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.marquee-container {
  display: flex;
  width: max-content;
}

.marquee-track {
  display: flex;
  gap: 50px;
  animation: marqueeRun 35s linear infinite;
  align-items: center;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
}

.marquee-item svg {
  max-width: 100%;
  height: auto;
  fill: #94a3b8;
  transition: var(--transition-smooth);
}

.marquee-item:hover svg {
  fill: var(--primary);
}

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

/* Popular routes list style */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.route-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.route-img-box {
  height: 180px;
  overflow: hidden;
  position: relative;
}

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

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

.route-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--white);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.route-discount {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--gold);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
}

.route-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.route-cities {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.route-time {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.route-time svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  vertical-align: middle;
  flex-shrink: 0;
}

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

.route-price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}

.route-price-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.route-btn {
  background-color: var(--accent-light);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.route-card:hover .route-btn {
  background-color: var(--accent);
  color: var(--white);
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */
.testimonials {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.testimonials-slider-box {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: var(--transition-smooth);
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
}

.testimonial-card-inner {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
}

@media (max-width: 768px) {
  .testimonial-card-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
    gap: 20px;
  }
}

.testimonial-user {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-light);
  margin-bottom: 12px;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.testimonial-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ==========================================================================
   CONVERSION BANNER
   ========================================================================== */
.conversion-banner {
  background: radial-gradient(circle at 100% 100%, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px;
  box-shadow: var(--shadow-xl);
}

.conversion-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.conversion-text h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.conversion-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

.conversion-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  flex-shrink: 0;
}

.conversion-tel {
  font-size: clamp(1.6rem, 7vw, 2.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .conversion-banner {
    padding: 30px;
  }
  .conversion-layout {
    flex-direction: column;
    text-align: center;
  }
  .conversion-actions {
    align-items: center;
    width: 100%;
  }
}

/* ==========================================================================
   FAQ ACCORDION & PROCESS
   ========================================================================== */
.faq-search {
  max-width: 520px;
  margin: 0 auto 40px auto;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  background-color: var(--white);
}

.faq-search input:focus {
  border-color: var(--accent);
}

.faq-search svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  pointer-events: none;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-card.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question svg {
  transition: var(--transition-smooth);
  color: var(--accent);
}

.faq-card.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

/* Timeline/Process styling */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid::before {
    display: none;
  }
}

.process-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-step {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  border: 4px solid var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 auto 20px auto;
  box-shadow: var(--shadow-sm);
}

.process-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   DESTINATION EXPLORER
   ========================================================================== */
.dest-explorer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.explorer-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

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

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

/* No-image variant */
.explorer-card.no-img {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
}

.explorer-overlay.active {
  position: relative;
  background: none;
  height: 100%;
  justify-content: flex-end;
}

.explorer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 59, 115, 0.9) 0%, rgba(0, 59, 115, 0.2) 60%, rgba(0, 59, 115, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}

.explorer-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.explorer-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.explorer-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   EXIT INTENT GLASS MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color: rgba(0, 24, 85, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.modal-box {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: var(--transition-bounce);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-coupon {
  border: 2px dashed var(--accent);
  background-color: var(--accent-light);
  color: var(--primary);
  padding: 12px;
  border-radius: 12px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

/* ==========================================================================
   FLOATING MOBILE ACTION SYSTEM
   ========================================================================== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  font-size: 1.45rem;
  transition: var(--transition-smooth);
}

.float-btn:hover {
  transform: scale(1.08) rotate(4deg);
}

.float-btn.call {
  background-color: var(--gold);
}

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

/* Scroll-to-top button */
.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition-smooth);
}

.back-to-top:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

.back-to-top.active {
  display: flex;
}

@media (max-width: 768px) {
  /* On mobile we use the sticky bottom bar and hide the individual side floating items */
  .floating-cta {
    display: none;
  }
}

.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  padding: 10px 16px;
  display: none;
  justify-content: space-between;
  gap: 12px;
  z-index: 998;
}

.sticky-bottom-btn {
  flex: 1;
  height: 48px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  gap: 8px;
}

.sticky-bottom-btn.call {
  background-color: var(--gold);
  box-shadow: 0 4px 10px rgba(201, 162, 39, 0.3);
}

.sticky-bottom-btn.whatsapp {
  background-color: #25D366;
}

@media (max-width: 768px) {
  .sticky-bottom-bar {
    display: flex;
  }
  body {
    padding-bottom: 68px; /* Offset for mobile bar */
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding-top: 80px;
}

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

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

.footer-col h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-logo {
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo svg {
  color: var(--accent);
}

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
}

.social-link:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-input {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--white);
  width: 100%;
}

.footer-newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.footer-newsletter-btn {
  background-color: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-newsletter-btn:hover {
  background-color: #009ad4;
}

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

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.footer-atol-text {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 30px;
}

.offer-timer-container {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}

.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 16px;
  min-width: 70px;
  text-align: center;
}

.timer-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}

.timer-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

@media (max-width: 480px) {
  .offer-timer-container {
    gap: 8px;
    justify-content: center;
  }
  .timer-box {
    padding: 8px 12px;
    min-width: 60px;
  }
  .timer-num {
    font-size: 1.25rem;
  }
  .timer-lbl {
    font-size: 0.6rem;
  }
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .offer-grid > div:last-child {
    align-items: center !important;
    text-align: center !important;
  }
}

.legal-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background-color: var(--white);
}

@media (max-width: 576px) {
  .legal-card {
    padding: 20px;
    border-radius: var(--radius-md);
  }
}

/* ==========================================================================
   PREMIUM OVERRIDES & CONVERSION ARCHITECTURE (ALL PHASES)
   ========================================================================== */

/* --- Scroll Progress Indicator --- */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 9999;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--accent) 50%, var(--gold) 100%);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
  transition: width 0.1s ease-out;
}

/* --- Premium Luxury Hero --- */
.hero {
  padding-top: 195px;
  padding-bottom: 125px;
  position: relative;
  background-image: linear-gradient(135deg, rgba(0, 33, 71, 0.96) 0%, rgba(0, 18, 41, 0.85) 50%, rgba(0, 10, 20, 0.96) 100%),
                    url('../images/luxury_cabin.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}

.hero-title {
  color: var(--white);
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 800;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.hero-title span {
  color: var(--gold);
}
.hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  max-width: 580px;
}

.hero-badge {
  background-color: rgba(16, 185, 129, 0.15) !important;
  color: var(--accent) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.hero-badge.seats-left {
  background-color: rgba(239, 68, 68, 0.15) !important;
  color: #EF4444 !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  animation: pulseTiny 2s infinite;
}

.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}
.hero-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-info-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-info-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}



/* --- Glassmorphism Search Box Override --- */
.search-widget {
  background: rgba(10, 31, 64, 0.45) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: var(--glass-shadow) !important;
  color: var(--white);
}

.search-widget .input-label {
  color: var(--gold) !important;
}

.search-widget .input-field {
  background-color: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: var(--white) !important;
}

.search-widget .input-field::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.search-widget .input-field:focus {
  border-color: var(--gold) !important;
  background-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15) !important;
}

.search-widget select.input-field {
  color-scheme: dark;
}
.search-widget select.input-field option {
  background-color: #0d2347 !important;
  color: #ffffff !important;
}

.search-widget .trip-tab {
  color: rgba(255, 255, 255, 0.7);
}
.search-widget .trip-tab.active {
  background-color: var(--gold);
  color: var(--primary-dark);
}
.search-widget .trip-type-tabs {
  background-color: rgba(255, 255, 255, 0.08);
}

/* Search Box conversion aids */
.search-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.cheapest-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
}
.ai-prediction-banner {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.78rem;
  color: #ffe699;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  line-height: 1.4;
}
.date-flex-suggestion {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
  display: block;
}
.date-flex-link {
  color: var(--gold);
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
}


/* --- Phase 3 Redesigned Flight Cards --- */
.flight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}
.flight-card.recommended {
  border: 2px solid var(--gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}
.flight-card.best-seller {
  border: 2px solid var(--accent);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.flight-card-badges {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.flight-card.recommended .flight-card-badges {
  background-color: var(--gold-light);
  border-bottom: 1px solid var(--gold-border);
}
.flight-card.best-seller .flight-card-badges {
  background-color: var(--accent-light);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.card-label-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.card-label-badge.gold {
  background-color: var(--gold);
  color: var(--primary-dark);
}
.card-label-badge.green {
  background-color: var(--accent);
  color: var(--white);
}
.card-label-badge.blue {
  background-color: var(--primary);
  color: var(--white);
}

.card-urgency-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  background-color: #FEF2F2;
  border-bottom: 1px solid #FEE2E2;
  color: #991B1B;
  font-size: 0.78rem;
  font-weight: 700;
}
.card-timer-display {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #FEE2E2;
  padding: 2px 8px;
  border-radius: 4px;
  color: #DC2626;
  font-family: monospace;
  font-size: 0.85rem;
}

.price-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.price-strike-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.price-strike {
  font-size: 0.95rem;
  text-decoration: line-through;
  color: var(--text-muted);
}
.price-save-badge {
  font-size: 0.7rem;
  font-weight: 800;
  background-color: rgba(239, 68, 68, 0.1);
  color: #DC2626;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-green-pulse {
  background-color: #25D366 !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}
.btn-green-pulse:hover {
  background-color: #1ebd58 !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
  transform: translateY(-2px);
}

/* --- Animated Pulses --- */
.pulse-btn, .btn-gold-pulse, .btn-green-pulse {
  animation: buttonPulse 2s infinite;
}
@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
.btn-gold-pulse {
  animation: goldPulse 2s infinite;
}
@keyframes goldPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@keyframes pulseTiny {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.95;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}





/* --- Phase 6 Trust Section Grid & Hover Effects --- */
.trust-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .trust-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .trust-grid-container {
    grid-template-columns: 1fr;
  }
}
.trust-card-premium {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.trust-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.3);
}
.trust-icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: var(--transition-smooth);
}
.trust-card-premium:hover .trust-icon-box {
  background-color: var(--gold-light);
  color: var(--gold);
}
.trust-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}
.trust-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Phase 7 Trust & Financial Protection Section --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  padding: 35px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.trust-icon {
  background-color: var(--primary-light);
  color: var(--primary);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.trust-card:hover .trust-icon {
  background-color: var(--gold-light);
  color: var(--gold);
  transform: scale(1.1) rotate(5deg);
}

.trust-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.trust-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.trust-badge-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  background-color: var(--gold-light);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
}

.trust-rating-stars {
  font-size: 0.8rem;
  font-weight: 700;
  color: #00B67A;
  background-color: rgba(0, 182, 122, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 182, 122, 0.2);
}

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

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

/* --- Phase 8 Destination Section --- */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .routes-grid {
    grid-template-columns: 1fr;
  }
}
.route-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}
.route-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.route-img-box {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.route-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.route-card:hover .route-img-box img {
  transform: scale(1.08);
}
.route-discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #EF4444;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.route-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.route-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.route-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.route-card-save {
  color: #DC2626;
  font-weight: 700;
}
.route-card-btn {
  width: 100%;
  background-color: var(--accent);
  color: var(--white);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  transition: var(--transition-smooth);
}
.route-card-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

/* --- Phase 9 Why Call Us Table --- */
.why-call-wrapper {
  overflow-x: auto;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  text-align: left;
}
.comparison-table th {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--border-color);
  background-color: var(--bg-light);
}
.comparison-table th.highlight-header {
  background-color: var(--primary);
  color: var(--white);
  border-bottom: 2px solid var(--gold);
}
.comparison-table td {
  padding: 18px 24px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table td.highlight-col {
  background-color: rgba(0, 33, 71, 0.02);
  font-weight: 600;
  border-left: 1px solid rgba(212, 175, 55, 0.15);
  border-right: 1px solid rgba(212, 175, 55, 0.15);
}
.comparison-table tr:hover td.highlight-col {
  background-color: rgba(0, 33, 71, 0.04);
}
.comp-feature-title {
  font-weight: 700;
  color: var(--primary);
}
.comp-check-icon {
  color: var(--accent);
  margin-right: 8px;
  display: inline-flex;
  vertical-align: middle;
}
.comp-cross-icon {
  color: #EF4444;
  margin-right: 8px;
  display: inline-flex;
  vertical-align: middle;
}

/* --- Floating Widgets Override --- */
.floating-cta {
  bottom: 80px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-bounce);
  position: relative;
}
.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
}
.float-btn.call {
  background-color: #10B981;
  animation: pulseBtnSmall 2s infinite;
}
.float-btn.whatsapp {
  background-color: #25D366;
}
.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
  margin-left: 5px;
}
@keyframes pulseBtnSmall {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Mobile responsive bottom conversions button overrides */
.sticky-bottom-bar {
  background-color: var(--primary-dark);
  border-top: 2px solid var(--gold);
}
.sticky-bottom-btn.call {
  background-color: #22C55E;
  font-weight: 800;
  letter-spacing: 0.02em;
  animation: pulseStickyBtn 2s infinite;
}
@keyframes pulseStickyBtn {
  0% {
    background-color: #22C55E;
  }
  50% {
    background-color: #15803D;
  }
  100% {
    background-color: #22C55E;
  }
}

/* --- Exit Popup Refinement --- */
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
  box-shadow: 0 25px 60px rgba(0, 33, 71, 0.25);
}
.modal-coupon {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  border: 2px dashed var(--gold);
  background: var(--gold-light);
  color: var(--primary-dark);
  font-weight: 800;
}

/* ==========================================================================
   11. COMPREHENSIVE RESPONSIVENESS ARCHITECTURE (MOBILE, TABLET, DESKTOP)
   ========================================================================== */

/* Tablet & Smaller Screens (< 1024px) */
@media (max-width: 1024px) {
  .hero .container {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 40px !important;
    padding-top: 20px;
  }
  .hero-left, .hero-right {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center;
  }
  .hero-title {
    font-size: 2.8rem !important;
  }
  .hero-desc {
    margin: 0 auto 20px auto;
  }
  .hero-info-grid {
    justify-content: center;
    max-width: 600px;
    margin: 30px auto 0 auto;
  }

  
  /* Sidebar widget result list layout */
  .results-layout {
    grid-template-columns: 1fr !important;
  }
  .filters-sidebar {
    position: static !important;
    width: 100% !important;
    margin-bottom: 20px;
  }
}

/* Mobile & Smaller Screens (< 768px) */
@media (max-width: 768px) {
  /* Header navigation overrides */
  .header .container {
    padding: 10px 16px;
  }
  .nav-menu {
    display: none !important; /* Hide standard links to prioritize phone action */
  }
  .header-actions {
    margin-left: auto;
  }
  
  /* Hero sizes */
  .hero {
    padding-top: 130px !important;
    padding-bottom: 80px !important;
  }
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  .hero-desc {
    font-size: 1rem !important;
  }
  .hero-info-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }
  
  /* Why Call Us comparison table layout wrapper */
  .why-call-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .comparison-table {
    min-width: 600px; /* Force scrolling instead of squeezing text */
  }
  
  /* Flight card stacking and wrapping */
  .flight-card-body {
    flex-direction: column !important;
    padding: 16px !important;
  }
  .price-details {
    width: 100% !important;
    border-left: none !important;
    border-top: 1px dashed var(--border-color);
    padding-top: 16px !important;
    margin-top: 16px;
    align-items: center !important;
  }
  .price-val {
    font-size: 2.5rem !important;
  }
  .btn-green-pulse {
    max-width: 320px;
    margin: 0 auto;
  }
  
  /* Segment flight rows layout on narrow viewport */
  .segment-row {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px;
  }
  .carrier-detail {
    width: auto !important;
    flex-direction: column !important;
    gap: 6px !important;
  }
  .time-box {
    text-align: center !important;
  }
  .visual-path {
    margin: 8px 0;
  }
  
  /* CTA widget views toggle */
  .floating-cta {
    display: none !important; /* Hide desktop float cta icons on mobile to prevent overlay */
  }
  .sticky-bottom-bar {
    display: flex !important; /* Force show mobile bottom bar */
  }
  

}

/* Extra Small Mobile Devices (< 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem !important;
  }
  .card-urgency-banner {
    flex-direction: column !important;
    gap: 6px;
    text-align: center;
    padding: 8px 12px !important;
  }
  .flight-card-badges {
    padding: 8px 12px !important;
  }
  .modal-box {
    padding: 24px 16px !important;
    width: 95% !important;
  }
  .modal-coupon {
    font-size: 1.3rem !important;
  }
}

/* Desktop Styles Force rules */
@media (min-width: 769px) {
  .sticky-bottom-bar {
    display: none !important; /* Hide mobile bar on desktop views */
  }
  .floating-cta {
    display: flex !important; /* Show floating cta side button groups */
  }
}

/* Force Hero call button to stay in a single line on mobile */
.hero-ctas .btn-green-pulse {
  white-space: nowrap !important;
}

@media (max-width: 576px) {
  .hero-ctas .btn-green-pulse {
    font-size: 1.05rem !important;
    padding: 12px 20px !important;
    gap: 8px !important;
  }
  .hero-ctas .btn-green-pulse svg {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 375px) {
  .hero-ctas .btn-green-pulse {
    font-size: 0.92rem !important;
    padding: 10px 14px !important;
  }
}


