/* ===========================
   SKYWINGS AIRLINES — CSS
   =========================== */

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

:root {
  --red: #C8102E;
  --red-dark: #9e0c24;
  --gold: #D4A017;
  --gold-light: #f0c040;
  --navy: #0a1628;
  --navy-mid: #132240;
  --navy-light: #1e3a5f;
  --white: #fff;
  --off: #f5f3ee;
  --gray: #8a8a8a;
  --light: #e8e4dd;
  --text: #1a1a1a;
  --shadow: 0 8px 40px rgba(10,22,40,0.18);
  --radius: 14px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off);
  color: var(--text);
  min-height: 100vh;
}

/* ===== NAVBAR ===== */
nav {
  background: var(--navy);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
}
.logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.hamburger {
  display: none;
  background: none; border: none;
  color: white; font-size: 1.4rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1a2e50 100%);
  padding: 56px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(200,16,46,0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(212,160,23,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; margin-bottom: 36px; }
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 420px;
}

/* ===== BOOKING CARD ===== */
.booking-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 32px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  animation: fadeUp 0.5s ease both;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.trip-tabs {
  display: flex; gap: 4px;
  background: var(--off);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 28px;
}
.trip-tab {
  padding: 8px 22px;
  border-radius: 50px;
  border: none; background: transparent;
  cursor: pointer;
  font-size: 0.88rem; font-weight: 500;
  color: var(--gray);
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
}
.trip-tab.active {
  background: var(--red); color: white;
  box-shadow: 0 2px 8px rgba(200,16,46,0.3);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 170px 170px;
  gap: 12px;
  align-items: end;
  margin-bottom: 20px;
}
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-size: 0.72rem; font-weight: 600;
  color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.8px;
}
.field-input {
  border: 2px solid var(--light);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  width: 100%; outline: none;
}
.field-input:focus { border-color: var(--red); }
.field-select {
  border: 2px solid var(--light);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  outline: none; cursor: pointer;
}
.field-select:focus { border-color: var(--red); }
.swap-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--light);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--red);
  transition: all 0.2s;
  align-self: end;
}
.swap-btn:hover {
  background: var(--red); color: white;
  border-color: var(--red);
  transform: rotate(180deg);
}
.extras-row {
  display: flex; gap: 14px; align-items: center;
  flex-wrap: wrap; margin-bottom: 22px;
}
.search-btn {
  background: var(--red); color: white;
  border: none; border-radius: 12px;
  padding: 15px 40px;
  font-size: 1rem; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(200,16,46,0.3);
  width: 100%; justify-content: center;
}
.search-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.4);
}

/* ===== AUTOCOMPLETE ===== */
.input-wrap { position: relative; }
.autocomplete-list {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: white;
  border: 2px solid var(--light);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(10,22,40,0.15);
  z-index: 500;
  min-width: 300px;
  max-height: 220px; overflow-y: auto;
  display: none;
}
.autocomplete-list.open { display: block; }
.autocomplete-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.88rem;
  display: flex; gap: 10px; align-items: center;
  transition: background 0.15s;
  border-bottom: 1px solid var(--off);
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover { background: var(--off); }
.ac-code {
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem; color: var(--red);
  font-weight: 600; min-width: 38px;
}
.ac-country { font-size: 0.74rem; color: var(--gray); }

/* ===== PROMOS ===== */
.promos-section { padding: 52px 5%; background: var(--navy); }
.promos-wrap { max-width: 1100px; margin: 0 auto; }
.promos-label {
  color: var(--gold); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 8px;
}
.promos-title {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 2rem; margin-bottom: 32px;
}
.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.promo-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 24px;
  cursor: pointer; transition: all 0.25s;
}
.promo-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(212,160,23,0.3);
}
.promo-route {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: white; margin-bottom: 6px;
}
.promo-price {
  color: var(--gold); font-size: 1.5rem;
  font-weight: 700; font-family: 'DM Mono', monospace;
}
.promo-price span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif; font-weight: 400;
}
.promo-tag { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 8px; }

/* ===== MAIN WRAP ===== */
.main-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 5%; }

/* ===== RESULTS ===== */
.results-header {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 16px;
}
.results-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; color: var(--navy);
}
.results-subtitle { color: var(--gray); font-size: 0.88rem; margin-top: 4px; }
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  padding: 7px 16px; border-radius: 50px;
  border: 1.5px solid var(--light);
  background: white; font-size: 0.82rem;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  color: var(--text); transition: all 0.2s;
}
.filter-chip:hover, .filter-chip.active {
  background: var(--navy); border-color: var(--navy); color: white;
}

/* ===== FLIGHT CARD ===== */
.flight-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 14px rgba(10,22,40,0.07);
  margin-bottom: 14px;
  border: 2px solid transparent;
  transition: all 0.25s; cursor: pointer;
  animation: fadeUp 0.4s ease both;
}
.flight-card:hover { border-color: var(--red); box-shadow: 0 8px 28px rgba(200,16,46,0.1); }
.flight-card.selected { border-color: var(--red); box-shadow: 0 8px 28px rgba(200,16,46,0.14); }
.flight-card-inner {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 170px 1fr 190px;
  gap: 20px; align-items: center;
}
.airline-col { display: flex; flex-direction: column; gap: 4px; }
.airline-name { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.flight-num { font-family: 'DM Mono', monospace; font-size: 0.8rem; color: var(--gray); }
.aircraft-tag {
  font-size: 0.71rem; background: var(--off);
  padding: 3px 8px; border-radius: 4px;
  color: var(--gray); width: fit-content; margin-top: 4px;
}
.flight-timeline { display: flex; align-items: center; gap: 16px; }
.timeline-time { text-align: center; }
.time-big {
  font-family: 'DM Mono', monospace;
  font-size: 1.55rem; font-weight: 500; color: var(--navy);
}
.time-airport { font-size: 0.78rem; color: var(--gray); letter-spacing: 0.5px; }
.time-city { font-size: 0.82rem; color: var(--text); font-weight: 500; }
.timeline-mid {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 4px;
}
.duration-label { font-size: 0.78rem; color: var(--gray); }
.timeline-line {
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--light), var(--red), var(--light));
  border-radius: 2px; position: relative;
}
.timeline-line::before {
  content: '✈';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.65rem; color: var(--red);
  background: white; padding: 0 4px;
}
.stops-label { font-size: 0.72rem; color: var(--gray); }
.price-col {
  text-align: right;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 8px;
}
.price-currency { font-size: 0.78rem; color: var(--gray); }
.price-amount {
  font-size: 1.9rem; font-weight: 700;
  color: var(--red); font-family: 'DM Mono', monospace; line-height: 1;
}
.price-note { font-size: 0.72rem; color: var(--gray); }
.select-btn {
  background: var(--red); color: white;
  border: none; border-radius: 8px;
  padding: 10px 22px; font-size: 0.88rem;
  font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.select-btn:hover { background: var(--red-dark); }
.flight-footer {
  background: var(--off);
  padding: 10px 24px;
  display: flex; gap: 18px; align-items: center;
  border-top: 1px solid var(--light);
  font-size: 0.8rem; color: var(--gray);
  flex-wrap: wrap;
}
.badge {
  padding: 3px 10px; border-radius: 50px;
  font-size: 0.71rem; font-weight: 600;
}
.badge-green { background: #e6f4ea; color: #2d7a3a; }
.badge-blue  { background: #e3f0ff; color: #1565c0; }
.badge-gold  { background: #fdf3d0; color: #8a6500; }

/* ===== CHECKOUT ===== */
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--navy); margin-bottom: 28px;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 28px; align-items: start;
}
.checkout-section {
  background: white; border-radius: var(--radius);
  padding: 28px; box-shadow: 0 2px 14px rgba(10,22,40,0.07);
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--navy);
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 2px solid var(--off);
  display: flex; align-items: center; gap: 10px;
}
.section-num {
  width: 28px; height: 28px;
  background: var(--red); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; flex-shrink: 0;
}
.form-row { margin-bottom: 16px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.one-col { display: grid; grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--gray); text-transform: uppercase; letter-spacing: 0.6px;
}
.form-input {
  border: 2px solid var(--light);
  border-radius: 10px; padding: 12px 14px;
  font-size: 0.92rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text); outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--red); }

/* Summary */
.summary-card {
  background: white; border-radius: var(--radius);
  padding: 24px; box-shadow: 0 2px 14px rgba(10,22,40,0.07);
  position: sticky; top: 82px;
}
.summary-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--navy);
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 2px solid var(--off);
}
.summary-flight {
  background: var(--off); border-radius: 10px;
  padding: 14px; margin-bottom: 14px;
}
.summary-route {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.92rem; color: var(--navy); margin-bottom: 4px;
}
.summary-detail { font-size: 0.78rem; color: var(--gray); margin-top: 3px; }
.route-tag {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.8px; padding: 3px 8px; border-radius: 4px;
}
.outbound-tag { background: #fdf3d0; color: #8a6500; }
.return-tag   { background: #e3f0ff; color: #1565c0; }
.price-breakdown { border-top: 1px solid var(--light); padding-top: 16px; margin-top: 6px; }
.price-row {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 10px; font-size: 0.88rem;
}
.price-row.total {
  font-weight: 700; font-size: 1.05rem; color: var(--navy);
  border-top: 2px solid var(--light); padding-top: 12px; margin-top: 4px;
}

/* ===== E-TICKET ===== */
.ticket-wrap { max-width: 760px; margin: 0 auto; animation: fadeUp 0.4s ease both; }
.success-banner {
  background: linear-gradient(135deg, #1a3a2a, #0d2418);
  border-radius: 14px; padding: 22px 26px;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 26px;
  border: 1px solid rgba(45,122,58,0.3);
}
.success-icon { font-size: 2rem; }
.success-text h3 { color: #4caf7d; font-size: 1.05rem; margin-bottom: 4px; }
.success-text p { color: rgba(255,255,255,0.55); font-size: 0.86rem; }

.ticket-outer { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(10,22,40,0.2); }
.ticket-header-bar {
  background: var(--navy);
  padding: 28px 36px;
  display: flex; justify-content: space-between; align-items: center;
}
.ticket-airline {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 1.5rem;
}
.ticket-airline span { color: var(--gold); }
.ticket-ref { text-align: right; }
.ticket-ref-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.5);
  letter-spacing: 1px; text-transform: uppercase;
}
.ticket-ref-value {
  font-family: 'DM Mono', monospace;
  font-size: 1.4rem; color: var(--gold); font-weight: 500;
}
.ticket-ref-sub { color: rgba(255,255,255,0.4); font-size: 0.72rem; margin-top: 3px; }
.ticket-body { background: white; padding: 0 36px 36px; }
.ticket-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px dashed var(--light);
  font-size: 0.82rem; color: var(--gray); flex-wrap: wrap; gap: 8px;
}
.ticket-meta strong { color: var(--text); }
.ticket-section-title {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--red);
  font-weight: 700; margin: 22px 0 12px;
}
.pax-table, .itin-table, .fare-table-grid {
  width: 100%; border-collapse: collapse;
  font-size: 0.85rem;
}
.pax-table th, .itin-table th {
  text-align: left; padding: 10px 12px;
  background: var(--navy); color: rgba(255,255,255,0.75);
  font-size: 0.69rem; text-transform: uppercase;
  letter-spacing: 0.8px; font-weight: 600;
}
.pax-table th:first-child, .itin-table th:first-child { border-radius: 8px 0 0 0; }
.pax-table th:last-child, .itin-table th:last-child   { border-radius: 0 8px 0 0; }
.pax-table td, .itin-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--light);
  vertical-align: top;
}
.pax-table tr:last-child td, .itin-table tr:last-child td { border-bottom: none; }
.pax-table tr:nth-child(even), .itin-table tr:nth-child(even) { background: #fafaf8; }

.fare-box {
  border: 1px solid var(--light);
  border-radius: 10px; overflow: hidden;
  font-size: 0.88rem;
}
.fare-box-row {
  display: flex; justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1px solid var(--light);
}
.fare-box-row:last-child { border-bottom: none; }
.fare-box-row.total-row {
  background: var(--navy); color: white;
  font-weight: 700; font-size: 0.95rem;
}
.fare-box-row.total-row span:last-child { color: var(--gold); }

.ticket-footer-bar {
  background: var(--off);
  padding: 18px 36px;
  font-size: 0.79rem; color: var(--gray);
}
.ticket-footer-bar ul { padding-left: 16px; display: flex; flex-direction: column; gap: 5px; }
.ticket-footer-bar li { list-style-type: disc; }
.ticket-footer-note { margin-top: 12px; font-size: 0.74rem; }

.ticket-actions {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 28px; flex-wrap: wrap;
}
.ticket-btn {
  padding: 12px 26px; border-radius: 10px;
  font-size: 0.92rem; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.2s; border: 2px solid transparent;
  display: flex; align-items: center; gap: 8px;
}
.ticket-btn-primary { background: var(--red); color: white; border-color: var(--red); }
.ticket-btn-primary:hover { background: var(--red-dark); }
.ticket-btn-outline { background: white; color: var(--navy); border-color: var(--navy); }
.ticket-btn-outline:hover { background: var(--navy); color: white; }
.ticket-btn-ghost { background: var(--off); color: var(--gray); border-color: var(--light); }
.ticket-btn-ghost:hover { background: var(--light); }

/* ===== LOADING ===== */
.loading-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,22,40,0.75);
  z-index: 9999;
  align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.loading-overlay.show { display: flex; }
.loader-box { text-align: center; }
.plane-loader {
  font-size: 2.8rem;
  animation: flyPlane 1.2s ease-in-out infinite alternate;
  display: block; margin-bottom: 18px;
}
@keyframes flyPlane {
  from { transform: translateX(-20px) rotate(-5deg); }
  to   { transform: translateX(20px) rotate(5deg); }
}
.loading-text { color: white; font-size: 1rem; margin-bottom: 18px; }
.loading-bar {
  width: 220px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px; overflow: hidden; margin: 0 auto;
}
.loading-bar-fill {
  height: 100%; width: 0;
  background: var(--gold);
  border-radius: 4px;
  animation: loadBar 1.5s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }

/* ===== UTILS ===== */
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gray); font-size: 0.88rem;
  cursor: pointer; border: none; background: none;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 22px; padding: 0; transition: color 0.2s;
}
.back-btn:hover { color: var(--red); }

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.45);
  padding: 22px 5%;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 0.82rem;
}
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ===== PRINT STYLES ===== */
@media print {
  nav, .ticket-actions, .success-banner,
  .back-btn, footer, .promos-section,
  .hero, #resultsSection, #checkoutSection { display: none !important; }
  body { background: white; }
  .main-wrap { padding: 0; max-width: 100%; }
  #eticketSection { display: block !important; }
  .ticket-outer { box-shadow: none; }
  #mainWrap { display: block !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .swap-btn { display: none; }
  .checkout-grid { grid-template-columns: 1fr; }
  .promos-grid { grid-template-columns: 1fr 1fr; }
  .flight-card-inner { grid-template-columns: 1fr 1fr; }
  .price-col { align-items: flex-end; grid-column: 1/-1; flex-direction: row; justify-content: space-between; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .booking-grid { grid-template-columns: 1fr; }
  .promos-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .flight-card-inner { grid-template-columns: 1fr; }
  .price-col { align-items: flex-start; flex-direction: column; }
  .ticket-header-bar { flex-direction: column; gap: 14px; text-align: center; }
  .ticket-ref { text-align: center; }
  .ticket-body { padding: 0 16px 24px; }
  .ticket-header-bar { padding: 22px 16px; }
  .ticket-footer-bar { padding: 16px; }
  .itin-table { font-size: 0.75rem; }
  .itin-table td, .itin-table th { padding: 8px 6px; }
  .results-header { flex-direction: column; }
  .ticket-actions { flex-direction: column; align-items: stretch; }
}
