/* ===== CSS VARIABLES ===== */
:root {
  --brand: #8a194f;
  --brand-dark: #6b1340;
  --brand-light: #a8205f;
  --white: #ffffff;
  --black: #111111;
  --gray: #f5f5f5;
  --gray2: #e8e8e8;
  --text: #333333;
  --text-light: #666666;
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 14px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(138, 25, 79, 0.97);
  backdrop-filter: blur(8px);
  padding: 0 20px;
  height: 64px;
  display: flex; align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.nav-container {
  width: 100%; max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
}
.logo-text {
  font-family: var(--font-main);
  font-size: 20px; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px; white-space: nowrap;
}
.nav-links {
  display: flex; list-style: none; gap: 4px; margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 13px; font-weight: 500;
  padding: 7px 12px; border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-main);
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.15); color: var(--white);
}
.nav-links .arrow { font-size: 10px; opacity: 0.7; }
.nav-links .dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 180px; padding: 6px 0;
  list-style: none;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { color: var(--text); padding: 9px 18px; display: block; font-size: 13px; }
.dropdown-menu li a:hover { background: var(--gray); color: var(--brand); }

.nav-phone {
  color: var(--white); font-family: var(--font-main);
  font-weight: 700; font-size: 13px; white-space: nowrap;
  background: rgba(255,255,255,0.15); padding: 8px 14px; border-radius: 6px;
  transition: background 0.2s;
}
.nav-phone:hover { background: rgba(255,255,255,0.25); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--brand-dark); z-index: 999; padding: 16px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a {
  display: block; padding: 14px 28px;
  color: var(--white); font-family: var(--font-main); font-size: 15px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .mobile-phone { background: rgba(255,255,255,0.1); font-weight: 700; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 64px; overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(138,25,79,0.78) 0%, rgba(30,10,20,0.68) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding: 32px 16px 48px; width: 100%; max-width: 900px;
  text-align: center;
}

.hero-tagline { margin-bottom: 16px; }
.think {
  display: block; color: rgba(255,255,255,0.75);
  font-size: 11px; letter-spacing: 4px; font-family: var(--font-main);
  font-weight: 600; text-transform: uppercase; margin-bottom: 8px;
}
.hero-tagline h1 {
  font-family: var(--font-main); color: var(--white);
  font-size: clamp(28px, 6vw, 68px); font-weight: 400; line-height: 1.1;
}
.hero-tagline h1 strong { font-weight: 800; display: block; }

/* Cabin Tabs */
.cabin-tabs {
  display: flex; gap: 4px; margin-bottom: 14px;
  background: rgba(255,255,255,0.1); border-radius: 40px; padding: 4px;
  width: 100%; max-width: 360px;
}
.cabin-tab {
  flex: 1; padding: 8px 12px; border-radius: 40px;
  color: rgba(255,255,255,0.8); font-family: var(--font-main);
  font-size: 12px; font-weight: 500; text-align: center;
  transition: all 0.25s; white-space: nowrap;
}
.cabin-tab.active, .cabin-tab:hover { background: var(--white); color: var(--brand); font-weight: 700; }

/* Airline logos */
.airline-logos-hero {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 22px;
}
.airline-logos-hero img { height: 30px; filter: brightness(0) invert(1); opacity: 0.9; }
.and-others { color: rgba(255,255,255,0.7); font-size: 13px; font-family: var(--font-main); font-weight: 500; }

/* ===== SEARCH WIDGET ===== */
.search-widget {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); width: 100%; max-width: 900px;
  overflow: visible; padding: 18px 18px 20px;
}
.trip-type-tabs {
  display: flex; gap: 16px; margin-bottom: 14px;
  border-bottom: 1px solid var(--gray2); padding-bottom: 12px;
  overflow-x: auto; scrollbar-width: none;
}
.trip-type-tabs::-webkit-scrollbar { display: none; }
.trip-tab {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-main); font-size: 13px; font-weight: 500;
  color: var(--text-light); cursor: pointer; transition: color 0.2s;
  white-space: nowrap; flex-shrink: 0;
}
.trip-tab input[type=radio] { accent-color: var(--brand); width: 15px; height: 15px; }
.trip-tab:has(input:checked) { color: var(--brand); font-weight: 600; }

/* Search fields */
.search-fields { display: flex; align-items: flex-end; gap: 8px; flex-wrap: wrap; }
.field-group {
  display: flex; flex-direction: column; gap: 4px;
  position: relative; flex: 1; min-width: 140px;
}
.field-from, .field-to { flex: 1.6; }
.field-date { flex: 1.1; }
.field-passengers { flex: 1.2; }

.field-group label {
  font-size: 10px; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.8px; font-family: var(--font-main);
}
.field-group input[type=text],
.field-group input[type=date] {
  border: 1.5px solid var(--gray2); border-radius: var(--radius);
  padding: 11px 12px; font-size: 14px; color: var(--text);
  background: var(--white); outline: none; width: 100%;
  transition: border-color 0.2s;
}
.field-group input:focus { border-color: var(--brand); }

/* Field input row with icon */
.field-input-row {
  display: flex; align-items: center; gap: 8px;
}
.field-icon {
  font-size: 14px; opacity: 0.5; flex-shrink: 0;
  display: none; /* hidden on desktop, shown on mobile */
}

/* Dates row — transparent wrapper on desktop */
.dates-row { display: contents; }

.swap-btn {
  background: var(--brand); color: var(--white);
  width: 32px; height: 32px; border-radius: 50%; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s, transform 0.2s;
  align-self: flex-end; margin-bottom: 4px;
}
.swap-btn:hover { background: var(--brand-dark); transform: rotate(180deg); }

#returnField { position: relative; }
.add-return {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  height: 44px; background: var(--gray); border: 1.5px dashed var(--gray2);
  border-radius: var(--radius); color: var(--brand); font-size: 12px;
  font-weight: 600; cursor: pointer;
}
#returnField.has-return .add-return { display: none; }
#returnField input[type=date] { display: none; }
#returnField.has-return input[type=date] { display: block; }

.passengers-trigger {
  border: 1.5px solid var(--gray2); border-radius: var(--radius);
  padding: 11px 12px; font-size: 14px; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  background: var(--white); transition: border-color 0.2s; user-select: none;
}
.passengers-trigger:hover { border-color: var(--brand); }
.arrow-down { color: var(--text-light); font-size: 11px; }

.passengers-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--white); border: 1.5px solid var(--gray2); border-radius: var(--radius);
  box-shadow: var(--shadow); z-index: 100; padding: 12px 14px;
}
.passengers-dropdown.open { display: block; }
.pax-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--gray); font-size: 13px;
}
.pax-row:last-of-type { border-bottom: none; }
.pax-row small { color: var(--text-light); font-size: 11px; }
.pax-controls { display: flex; align-items: center; gap: 10px; }
.pax-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--gray2); font-size: 16px; line-height: 1;
  color: var(--brand); transition: all 0.2s; display: flex; align-items: center; justify-content: center;
}
.pax-btn:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }
.pax-count { font-weight: 700; font-size: 14px; min-width: 20px; text-align: center; }
.pax-done {
  width: 100%; margin-top: 10px; padding: 9px;
  background: var(--brand); color: var(--white); border-radius: var(--radius);
  font-family: var(--font-main); font-weight: 600; font-size: 13px;
}
.pax-done:hover { background: var(--brand-dark); }

.airport-suggestions {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border: 1.5px solid var(--gray2); border-radius: var(--radius);
  box-shadow: var(--shadow); z-index: 200; max-height: 200px; overflow-y: auto;
}
.airport-suggestions.open { display: block; }
.suggestion-item {
  padding: 9px 12px; cursor: pointer; font-size: 13px;
  display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--gray);
  transition: background 0.15s;
}
.suggestion-item:hover { background: var(--gray); }
.suggestion-item:last-child { border-bottom: none; }
.sug-code { font-family: var(--font-main); font-weight: 700; color: var(--brand); font-size: 12px; min-width: 32px; }
.sug-name { color: var(--text); font-size: 12px; }
.sug-country { color: var(--text-light); font-size: 11px; margin-left: auto; }

.search-btn {
  background: var(--brand); color: var(--white);
  padding: 0 28px; border-radius: var(--radius);
  font-family: var(--font-main); font-size: 15px; font-weight: 700;
  transition: background 0.2s, transform 0.15s; white-space: nowrap;
  align-self: flex-end; height: 46px; flex-shrink: 0;
}
.search-btn:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-top: 20px; width: 100%;
}
.badge {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); padding: 9px 13px; color: var(--white);
  transition: background 0.2s; cursor: pointer; flex: 1; min-width: 180px; max-width: 220px;
}
.badge:hover { background: rgba(255,255,255,0.2); }
.badge-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main); font-weight: 800; font-size: 12px; color: var(--white);
}
.tp-icon { background: #00b67a; }
.badge strong { display: block; font-size: 11.5px; font-family: var(--font-main); font-weight: 700; }
.badge small { font-size: 10px; opacity: 0.8; }

/* ===== FARES SECTION ===== */
.fares-section { padding: 64px 0; background: var(--white); }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--brand); font-family: var(--font-main); margin-bottom: 8px;
}
.fares-section h2, .methodology-section h2 {
  font-family: var(--font-main); font-size: clamp(22px, 4vw, 36px); font-weight: 800;
  color: var(--black); margin-bottom: 10px;
}
.section-sub {
  color: var(--text-light); font-size: 14px; line-height: 1.7;
  max-width: 640px; margin-bottom: 36px;
}

.fares-carousel-wrap { position: relative; padding: 0 4px; }
.fares-carousel {
  display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth;
  padding: 8px 4px 16px; scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.fares-carousel::-webkit-scrollbar { display: none; }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand); color: var(--white);
  font-size: 20px; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); z-index: 10; transition: background 0.2s;
}
.carousel-arrow:hover { background: var(--brand-dark); }
.carousel-arrow.left { left: -20px; }
.carousel-arrow.right { right: -20px; }

.fare-card {
  flex: 0 0 240px; background: var(--white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
  scroll-snap-align: start; border: 1px solid var(--gray2);
}
.fare-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fare-img-wrap { position: relative; height: 140px; overflow: hidden; }
.fare-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.save-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--brand); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 20px;
  font-family: var(--font-main);
}
.fare-body { padding: 14px; }
.fare-route { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.fare-point { display: flex; flex-direction: column; }
.fare-label { font-size: 9px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.fare-city { font-weight: 700; font-family: var(--font-main); font-size: 12px; }
.fare-code { font-size: 17px; font-weight: 800; color: var(--brand); font-family: var(--font-main); }
.fare-arrow { font-size: 16px; color: var(--text-light); flex-shrink: 0; }

.fare-details { font-size: 12px; border-top: 1px solid var(--gray2); padding-top: 8px; }
.fare-detail-row { display: flex; justify-content: space-between; padding: 3px 0; color: var(--text-light); }
.published-row .strike { text-decoration: line-through; color: var(--text-light); }
.tbc-row { font-weight: 700; }
.tbc-price { color: var(--brand); font-family: var(--font-main); font-size: 14px; font-weight: 800; }
.fare-note { font-size: 10px; color: var(--text-light); margin-top: 6px; }

.fares-disclaimer { font-size: 11px; color: var(--text-light); margin-top: 20px; line-height: 1.6; max-width: 800px; }
.view-all-btn {
  display: inline-block; margin-top: 20px;
  background: var(--brand); color: var(--white);
  padding: 12px 32px; border-radius: var(--radius);
  font-family: var(--font-main); font-weight: 700; font-size: 14px;
  transition: background 0.2s;
}
.view-all-btn:hover { background: var(--brand-dark); }

/* ===== METHODOLOGY ===== */
.methodology-section { padding: 64px 0; background: var(--gray); }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.method-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px 20px; box-shadow: var(--shadow); text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.method-icon {
  width: 60px; height: 60px; background: rgba(138,25,79,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.method-icon img { width: 28px; height: 28px; object-fit: contain; }
.method-card h3 { font-family: var(--font-main); font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.method-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== FOOTER ===== */
.footer { background: var(--brand-dark); color: var(--white); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 36px 20px; }
.footer-brand p { font-size: 13px; opacity: 0.75; margin-top: 8px; max-width: 280px; }
.footer-contact p { margin-bottom: 8px; font-size: 14px; }
.footer-contact a { color: var(--white); opacity: 0.9; }
.footer-contact a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom { background: rgba(0,0,0,0.25); padding: 14px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; opacity: 0.8; }
.footer-badges { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer-badges img { height: 24px; filter: brightness(0) invert(1); opacity: 0.7; }

/* ===== TABLET (max 900px) ===== */
@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .search-fields { flex-direction: column; gap: 10px; }
  .field-group { min-width: 100%; flex: none; width: 100%; }
  .swap-btn { display: none; }
  .search-btn { width: 100%; justify-content: center; height: 50px; font-size: 16px; }
  .footer-inner { flex-direction: column; }
  .carousel-arrow { display: none; }
}

/* ===== MOBILE (max 600px) ===== */
@media (max-width: 600px) {
  /* Hero */
  .hero { min-height: 100svh; align-items: flex-start; }
  .hero-content { padding: 20px 12px 36px; gap: 0; }
  .hero-tagline { margin-bottom: 12px; }
  .hero-tagline h1 { font-size: 26px; }
  .think { font-size: 10px; letter-spacing: 3px; margin-bottom: 6px; }

  /* Cabin tabs — pill style, horizontal, no background wrap */
  .cabin-tabs {
    flex-direction: row; max-width: 100%; width: 100%;
    background: rgba(255,255,255,0.12);
    border-radius: 40px; padding: 4px; gap: 2px;
    margin-bottom: 10px;
  }
  .cabin-tab { flex: 1; font-size: 11px; padding: 8px 6px; white-space: nowrap; }

  /* Airline logos — bigger on mobile too */
  .airline-logos-hero {
    gap: 12px; margin-bottom: 14px;
    justify-content: center;
  }
  .airline-logos-hero img { height: 22px; opacity: 0.9; }
  .and-others { font-size: 12px; }

  /* ===== SEARCH WIDGET — matches reference exactly ===== */
  .search-widget {
    padding: 0; background: transparent; box-shadow: none; width: 100%;
  }

  /* Trip type — white radio buttons above card */
  .trip-type-tabs {
    background: transparent; border-bottom: none;
    padding-bottom: 0; margin-bottom: 12px;
    justify-content: flex-start; gap: 20px;
  }
  .trip-tab { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; gap: 6px; }
  .trip-tab input[type=radio] { accent-color: var(--white); width: 16px; height: 16px; }
  .trip-tab:has(input:checked) { color: var(--white); font-weight: 700; }

  /* Show airplane + person icons on mobile */
  .field-icon { display: inline-block; font-size: 16px; opacity: 0.45; }
  .pax-icon { font-size: 15px; }

  /* Main white card — needs relative for swap btn */
  .search-fields {
    background: var(--white); border-radius: 16px;
    padding: 0; gap: 0; flex-direction: column;
    overflow: visible; box-shadow: 0 12px 40px rgba(0,0,0,0.28);
    position: relative;
  }

  /* FROM + TO combined rounded card (first two fields) */
  .field-from, .field-to {
    width: 100%; border-bottom: 1px solid #ececec;
    padding: 14px 56px 14px 16px; /* right padding for swap btn */
    border-radius: 0; min-width: unset; background: var(--white);
    position: relative;
  }
  .field-from { border-radius: 16px 16px 0 0; }
  .field-to  { border-bottom: 1px solid #ececec; }

  /* Swap button — circular, right side of FROM/TO */
  .swap-btn {
    display: flex !important; /* override tablet hide */
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(calc(-50% + 24px)); /* center between FROM and TO */
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--brand); color: var(--white);
    font-size: 15px; z-index: 10;
    box-shadow: 0 2px 8px rgba(138,25,79,0.35);
    align-self: unset; margin: 0;
  }

  /* All field groups */
  .field-group {
    width: 100%; min-width: unset;
    background: var(--white); border-radius: 0;
  }
  .field-group label {
    font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--text-light);
    display: block; margin-bottom: 3px;
  }
  .field-group input[type=text],
  .field-group input[type=date] {
    border: none; padding: 0; font-size: 15px; font-weight: 400;
    color: var(--text); background: transparent; width: 100%;
    border-radius: 0; height: auto;
  }
  .field-group input[type=text]::placeholder { color: #bbb; }
  .field-group input:focus { outline: none; border: none; box-shadow: none; }

  /* Dates row — side by side */
  .dates-row {
    display: flex !important; border-bottom: 1px solid #ececec; width: 100%;
  }
  .dates-row .field-date {
    flex: 1; border-bottom: none !important;
    border-right: 1px solid #ececec;
    padding: 14px 12px;
  }
  .dates-row .field-date:last-child { border-right: none; }
  /* Calendar icon via input */
  .dates-row .field-date input[type=date] {
    font-size: 14px; color: var(--text);
  }

  /* Add return */
  .add-return {
    position: static; height: auto;
    background: transparent; border: none;
    color: var(--brand); font-size: 13px; font-weight: 600;
    padding: 0; display: block; margin-top: 3px;
  }
  #returnField.has-return .add-return { display: none; }
  #returnField input[type=date] { display: none; }
  #returnField.has-return input[type=date] { display: block; }

  /* Passengers row */
  .field-passengers {
    padding: 14px 16px; border-bottom: none;
    border-radius: 0 0 16px 16px;
  }
  .passengers-trigger {
    border: none; padding: 0; font-size: 15px; font-weight: 400;
    background: transparent; color: var(--text);
  }
  .passengers-dropdown {
    top: calc(100% + 4px); border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18); left: -16px; right: -16px;
  }

  /* Search button — outside card, full width, bold */
  .search-btn {
    width: 100%; height: 54px; font-size: 16px; font-weight: 700;
    letter-spacing: 1px; border-radius: 12px; margin-top: 12px;
    box-shadow: 0 4px 20px rgba(138,25,79,0.4);
  }

  /* Trust badges — 2 columns */
  .trust-badges {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px;
  }
  .badge { min-width: unset; max-width: unset; padding: 9px 10px; }
  .badge strong { font-size: 10.5px; }
  .badge small { display: none; }
  .badge-icon { width: 28px; height: 28px; font-size: 10px; }

  /* Fare cards */
  .fare-card { flex: 0 0 82vw; }
  .fares-section { padding: 48px 0; }

  /* Methodology — 2 cols on mobile */
  .method-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .methodology-section { padding: 48px 0; }
  .method-card { padding: 18px 14px; }
  .method-icon { width: 48px; height: 48px; margin-bottom: 12px; }
  .method-card h3 { font-size: 13px; }
  .method-card p { font-size: 12px; }

  /* Footer */
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-inner { padding: 28px 16px; }
}

/* ===== SMALL MOBILE (max 380px) ===== */
@media (max-width: 380px) {
  .trust-badges { grid-template-columns: 1fr; }
  .cabin-tab { font-size: 10px; padding: 7px 5px; }
  .hero-tagline h1 { font-size: 22px; }
  .method-grid { grid-template-columns: 1fr; }
  .airline-logos-hero img { height: 18px; }
}
