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

:root {
  --primary: #1a56db;
  --primary-dark: #1143b0;
  --primary-light: #e8f0fe;
  --accent: #f59e0b;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --bg-light: #f8fafc;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.lp-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.lp-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
}

.lp-header .support {
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
}
.lp-header .support a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.lp-header .support a:hover { text-decoration: underline; }

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}

.logo-img {
  height: 60px;
  width: auto;
  aspect-ratio: 791 / 315;
  display: block;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 60%, #1143b0 100%);
  padding: 56px 0 80px;
  color: white;
}

.hero-content {
  text-align: center;
  margin-bottom: 32px;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* ── Search Widget ── */
.search-widget {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 920px;
  margin: 0 auto;
}

.trip-type {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 160px 160px 120px;
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
}

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

.form-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s;
}

.form-group textarea { resize: vertical; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.swap-btn {
  background: var(--primary-light);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 15px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  align-self: end;
}

.swap-btn:hover {
  background: var(--primary);
  color: white;
}

.search-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #1a56db 0%, #1143b0 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.4);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.search-btn:hover {
  background: linear-gradient(135deg, #1e40af 0%, #0e369e 100%);
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.5);
  transform: translateY(-1px);
}

.search-btn:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(26,86,219,0.4); }

/* autocomplete dropdown */
.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 200;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: var(--shadow);
}

.autocomplete-list li {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 13px;
  list-style: none;
  border-bottom: 1px solid var(--border);
}

.autocomplete-list li:last-child {
  border-bottom: none;
}

.autocomplete-list li:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.autocomplete-list li strong {
  font-weight: 600;
}

.autocomplete-list li small {
  color: var(--text-muted);
  font-size: 11px;
  margin-left: 4px;
}

/* ── Contact Section ── */
.contact-section { padding: 64px 0; }
.contact-widget   { max-width: 600px; }
.contact-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-widget .form-group { margin-bottom: 16px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-terms { margin-bottom: 16px; font-weight: 400; }
.contact-terms a { color: var(--primary); }
.contact-status { margin-top: 12px; font-size: 14px; font-weight: 600; min-height: 20px; }
.contact-status.ok  { color: #16a34a; }
.contact-status.err { color: #ef4444; }

/* ── Deals Section ── */
.deals-section {
  padding: 64px 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-muted);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.deal-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  border-top: 3px solid transparent;
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 86, 219, 0.12);
  border-color: var(--primary-light);
  border-top-color: var(--primary);
}

.deal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.deal-route {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
}

.deal-airports {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.deal-price {
  text-align: right;
}

.deal-price .amount {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.deal-price .label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.deal-info {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  margin-top: 4px;
}

.deal-cta {
  margin-top: 16px;
  padding: 10px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.deal-card:hover .deal-cta {
  background: var(--primary);
  color: white;
}

.deals-note {
  margin-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

.loading-spinner {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Features ── */
.features {
  padding: 64px 0;
}

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

.feature {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
}

.feature:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 42px;
  margin-bottom: 12px;
  display: block;
}

.feature h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Footer ── */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 12px;
  display: inline-flex;
}

.footer-brand .logo-img {
  height: 60px;
  width: auto;
  aspect-ratio: 791 / 315;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-links a,
.footer-contact a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
}

/* ── Policy pages ── */
.policy-hero {
  background: var(--primary);
  color: white;
  padding: 48px 0;
  text-align: center;
}

.policy-hero h1 {
  font-size: 34px;
  font-weight: 700;
}

.policy-hero p {
  margin-top: 8px;
  opacity: 0.85;
  font-size: 15px;
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.policy-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 36px 0 12px;
  color: var(--text-dark);
  border-left: 4px solid var(--primary);
  padding-left: 12px;
}

.policy-content p,
.policy-content li {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 12px;
}

.policy-content ul {
  padding-left: 24px;
  margin-bottom: 12px;
}

.policy-content a {
  color: var(--primary);
}

.policy-content .last-updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 32px;
  display: block;
}

/* ── Urgency Bar ── */
.urgency-bar {
  background: linear-gradient(90deg, #1a56db 0%, #1e40af 100%);
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ── Landing page ── */
.landing-hero {
  background: linear-gradient(135deg, #1a56db 0%, #1143b0 100%);
  padding: 72px 0 80px;
  color: white;
  text-align: center;
}

.landing-hero .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.landing-hero h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
}

.landing-hero .sub {
  font-size: 19px;
  opacity: 0.9;
  margin-bottom: 36px;
}

.hero-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

.highlight-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 2px 10px;
  font-weight: 700;
  margin-right: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ── Social Proof Numbers ── */
.social-proof {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.social-item {
  padding: 8px 0;
}
.big {
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.social-item p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
  font-weight: 500;
}

.landing-search {
  max-width: 920px;
  margin: 0 auto;
}

.trust-bar {
  background: white;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 6px 28px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  font-size: 17px;
}

.landing-why {
  padding: 64px 0;
  background: var(--bg-light);
}

.landing-why h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

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

.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1.5px solid var(--border);
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.why-card:hover {
  box-shadow: 0 8px 24px rgba(26, 86, 219, 0.1);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.why-card .icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.landing-cta-section {
  background: var(--primary);
  color: white;
  padding: 56px 0;
  text-align: center;
}

.landing-cta-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.landing-cta-section p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 16px 44px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.cta-btn:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

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

/* ── Landing page footer ── */
.lp-footer {
  background: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 28px 20px;
  font-size: 13px;
  line-height: 1.8;
}
.lp-footer p + p { margin-top: 8px; }
.lp-footer a {
  color: #9ca3af;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.2s;
}
.lp-footer a:hover { color: white; }

/* ── Breadcrumb ── */
.breadcrumb-nav {
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  list-style: none;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb li::before {
  content: '/';
  margin-right: 8px;
}

.breadcrumb li:first-child::before {
  display: none;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ── FAQ Section (AEO — Answer Engine Optimization) ── */
.faq-section {
  padding: 64px 0;
  background: var(--bg-light);
}

.faq-section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--primary);
}

.faq-item summary {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--primary);
  background: var(--bg-light);
}

.faq-item[open] summary {
  background: var(--primary-light);
  color: var(--primary);
  border-bottom: 1px solid var(--border);
}

.faq-answer {
  padding: 16px 20px 20px;
}

.faq-answer p {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
}

/* ── Policy Table of Contents ── */
.policy-toc {
  background: var(--primary-light);
  border: 1.5px solid #c7d9fb;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0 36px;
  font-size: 14px;
}

.policy-toc strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 12px;
}

.policy-toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  line-height: 1.9;
}

.policy-toc a {
  color: var(--primary);
  text-decoration: none;
}

.policy-toc a:hover {
  text-decoration: underline;
}

/* ── Policy Table ── */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}

.policy-table th {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}

.policy-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}

.policy-table tr:nth-child(even) td {
  background: var(--bg-light);
}

.policy-table a {
  color: var(--primary);
}

/* ── Policy h3 ── */
.policy-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 24px 0 10px;
}

/* ── CCPA footer link ── */
.footer-ccpa {
  font-size: 12px;
  color: var(--text-muted) !important;
  font-style: italic;
}

/* ── 404 Error Page ── */
.error-page {
  text-align: center;
  padding: 100px 20px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-page .container {
  width: 100%;
}

.error-number {
  font-size: 96px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -4px;
}

.error-page h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.error-page p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

/* ── Accessibility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ── How It Works ───────────────────────────────────────── */
.how-it-works {
  padding: 64px 0;
  background: #f0f4ff;
  text-align: center;
}

.how-it-works h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.how-intro {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.how-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(26, 86, 219, 0.07);
  border: 1.5px solid var(--border);
}

.how-step-num {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.how-step h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.how-step p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ── Affiliate Disclosure (below search widget on landing page) ─ */
.search-disclosure {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 14px;
  line-height: 1.5;
}

.search-disclosure a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

/* ── Deals Disclosure Box (replaces old .deals-note) ─────── */
.deals-disclosure {
  margin-top: 24px;
  padding: 14px 18px;
  background: #f0f4ff;
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.deals-disclosure strong {
  color: var(--text-dark);
}

/* ── Cookie Notice ───────────────────────────────────────── */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e2a3a;
  color: #d1d9e6;
  padding: 14px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 3px solid var(--primary);
}

.cookie-notice p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}

.cookie-notice a {
  color: #7eb8ff;
  text-decoration: underline;
}

.cookie-notice-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.cookie-accept-btn:hover {
  background: var(--primary-dark);
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE  —  Mobile-first breakpoints
   1280px  Large desktop
   1100px  Laptop / narrow desktop
    900px  Tablet landscape
    768px  Tablet portrait
    640px  Large phone (iPhone Plus / Android XL)
    480px  Medium phone
    375px  Small phone (iPhone SE)
════════════════════════════════════════════════════════ */

/* ── 1280px + : Large desktop ──────────────────────── */
@media (min-width: 1280px) {
  .hero-content h1   { font-size: 52px; }
  .landing-hero h1   { font-size: 56px; }
  .container         { max-width: 1200px; }
}

/* ── ≤ 1100px : Laptop / narrow desktop ────────────── */
@media (max-width: 1100px) {
  .form-row {
    grid-template-columns: 1fr 36px 1fr 140px 140px 110px;
    gap: 10px;
  }
}

/* ── ≤ 900px : Tablet landscape ────────────────────── */
@media (max-width: 900px) {
  /* Search: hide swap, 3-col grid
     Row 1 → From | To | Depart
     Row 2 → Return | Passengers | (empty)          */
  .swap-btn { display: none; }
  .form-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }

  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .why-grid      { grid-template-columns: 1fr 1fr; }

  .footer-inner  {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand  { grid-column: 1 / -1; }

  .how-it-works  { padding: 48px 0; }

  .hero          { padding: 40px 0 60px; }
  .landing-hero  { padding: 48px 0 60px; }

  .hero-content h1  { font-size: 34px; }
  .landing-hero h1  { font-size: 38px; }

  .search-widget { padding: 22px 20px; }
  .deals-section { padding: 48px 0; }
  .features      { padding: 48px 0; }
  .landing-why   { padding: 48px 0; }
  .faq-section   { padding: 48px 0; }
}

/* ── ≤ 768px : Tablet portrait ─────────────────────── */
@media (max-width: 768px) {
  /* Nav: smaller gap & font on tablet */
  .nav       { gap: 16px; }
  .nav a     { font-size: 13px; }
  .logo-img  { height: 46px; }

  /* Search: 2-col grid
     Row 1 → From | To
     Row 2 → Depart | Return
     Row 3 → Passengers (full width)                */
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .form-row > .form-group:last-child { grid-column: 1 / -1; }

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

  .hero-content h1  { font-size: 30px; }
  .landing-hero h1  { font-size: 32px; }
  .landing-hero .sub { font-size: 16px; }

  .section-header h2 { font-size: 24px; }
  .landing-why h2    { font-size: 24px; }
  .faq-section h2    { font-size: 24px; }

  .why-grid  { grid-template-columns: 1fr; gap: 16px; }

  /* Trust bar: 2-column wrap */
  .trust-inner { gap: 0; flex-wrap: wrap; }
  .trust-item  { width: 50%; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 10px 16px; justify-content: center; }
  .trust-item:nth-child(even) { border-right: none; }

  /* Social proof: 3 → 1 row scroll or 2-col */
  .social-grid { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .big         { font-size: 28px; }

  .policy-hero h1    { font-size: 26px; }
  .policy-content    { padding: 32px 20px 48px; }
  .policy-content h2 { font-size: 18px; }

  .landing-cta-section h2 { font-size: 24px; }
  .landing-cta-section p  { font-size: 15px; }
  .cta-btn { font-size: 15px; padding: 13px 28px; }
}

/* ── ≤ 640px : Large phone ──────────────────────────── */
@media (max-width: 640px) {
  .container { padding: 0 16px; }

  /* Nav: hide text links on small phones (links are in footer) */
  .nav { gap: 12px; }
  .nav a { font-size: 12px; }
  .logo-img { height: 38px; }

  .hero           { padding: 32px 0 48px; }
  .hero-content   { margin-bottom: 24px; }
  .hero-content h1 { font-size: 26px; }
  .hero-content p  { font-size: 15px; }

  .landing-hero         { padding: 36px 0 48px; }
  .landing-hero h1      { font-size: 26px; }
  .landing-hero .sub    { font-size: 15px; margin-bottom: 24px; }
  .landing-hero .badge  { font-size: 12px; padding: 4px 12px; margin-bottom: 14px; }

  /* Search: fully stacked (1 column) */
  .search-widget { padding: 18px 16px; border-radius: 10px; }
  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .trip-type  { gap: 16px; margin-bottom: 16px; }
  .search-btn { font-size: 15px; padding: 13px; }

  /* Deals */
  .deals-section  { padding: 40px 0; }
  .deals-grid     { grid-template-columns: 1fr; gap: 14px; }
  .deal-price .amount { font-size: 20px; }

  /* Features */
  .features       { padding: 40px 0; }
  .features-grid  { grid-template-columns: 1fr 1fr; gap: 20px; }
  .feature-icon   { font-size: 32px; }
  .feature h3     { font-size: 14px; }
  .feature p      { font-size: 13px; }

  /* Footer */
  .footer         { padding: 36px 0 20px; }
  .footer-inner   { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand   { grid-column: 1; }
  .footer-brand .logo-img { height: 38px; }

  /* Why grid */
  .landing-why    { padding: 40px 0; }
  .why-grid       { grid-template-columns: 1fr; gap: 14px; }
  .why-card       { padding: 22px 18px; }

  /* Trust */
  .trust-bar      { padding: 0; }
  .trust-item     { width: 50%; font-size: 12px; padding: 10px 12px; }
  .trust-item:last-child { border-right: none; }
  .trust-icon     { font-size: 15px; }

  /* Social proof */
  .social-proof   { padding: 28px 0; }
  .social-grid    { grid-template-columns: 1fr; gap: 16px; }
  .big            { font-size: 36px; }

  /* FAQ */
  .faq-section    { padding: 40px 0; }
  .faq-section h2 { font-size: 22px; margin-bottom: 24px; }
  .faq-item summary { font-size: 14px; padding: 14px 16px; }
  .faq-answer     { padding: 0 16px 14px; }
  .faq-answer p   { font-size: 14px; }

  /* Policy */
  .policy-hero    { padding: 32px 0; }
  .policy-hero h1 { font-size: 22px; }
  .policy-content { padding: 28px 16px 40px; }
  .policy-toc ol  { grid-template-columns: 1fr; }
  .policy-table   { font-size: 13px; }
  .policy-table th,
  .policy-table td { padding: 8px 10px; }

  /* Landing CTA */
  .landing-cta-section { padding: 40px 0; }
  .landing-cta-section h2 { font-size: 22px; }
  .cta-btn { font-size: 14px; padding: 12px 24px; }

  /* How it works */
  .how-it-works  { padding: 40px 0; }
  .how-it-works h2 { font-size: 22px; }
  .how-grid      { gap: 14px; }
  .how-step      { padding: 24px 18px; }

  /* Cookie notice */
  .cookie-notice { padding: 12px 16px; gap: 12px; }
  .cookie-notice p { font-size: 12px; }

  /* 404 */
  .error-number   { font-size: 72px; }
  .error-page h1  { font-size: 22px; }
  .error-page     { padding: 60px 20px; }

  /* Breadcrumb */
  .breadcrumb     { font-size: 12px; }

  /* lp-header */
  .lp-header .container { padding: 8px 16px; }
  .lp-header .support   { font-size: 12px; }
}

/* ── ≤ 480px : Medium phone ─────────────────────────── */
@media (max-width: 480px) {
  .hero-content h1  { font-size: 23px; }
  .landing-hero h1  { font-size: 23px; }

  .features-grid    { grid-template-columns: 1fr; gap: 20px; }
  .feature          { display: flex; align-items: flex-start; gap: 14px; text-align: left; }
  .feature-icon     { font-size: 28px; margin-bottom: 0; flex-shrink: 0; }

  .trust-item       { width: 50%; justify-content: center; }

  .deal-route       { font-size: 15px; }

  .section-header h2 { font-size: 21px; }
  .landing-why h2    { font-size: 21px; }
  .faq-section h2    { font-size: 21px; }

  .footer-bottom    { font-size: 11px; }

  .lp-header .support { display: none; }
}

/* ── ≤ 375px : Small phone (iPhone SE) ──────────────── */
@media (max-width: 375px) {
  .container    { padding: 0 12px; }
  .logo-img     { height: 32px; }
  .nav          { gap: 8px; }
  .nav a        { font-size: 11px; }

  .hero-content h1  { font-size: 21px; }
  .landing-hero h1  { font-size: 21px; }

  .search-widget    { padding: 14px 12px; }
  .form-group input,
  .form-group select { padding: 10px; font-size: 13px; }
  .search-btn       { font-size: 14px; padding: 12px; }

  .error-number     { font-size: 60px; }
  .btn-primary      { font-size: 14px; padding: 12px 24px; }
}