:root {
  --brand: #0c6f78;
  --brand-dark: #083f61;
  --accent: #f96768;
  --gold: #f4b840;
  --ink: #102033;
  --muted: #5f6f83;
  --line: #dfe8ef;
  --soft: #f5f8fb;
  --white: #fff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container-wide { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 72px 0; }
.section.soft { background: var(--soft); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-kicker { color: var(--accent); font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: .08em; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 14px; color: var(--ink); }
h1 { font-size: clamp(34px, 5vw, 64px); max-width: 920px; }
h2 { font-size: clamp(26px, 3vw, 40px); }
h3 { font-size: 21px; }
p { margin: 0 0 16px; color: var(--muted); }
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; border-radius: 8px; padding: 12px 20px; border: 0;
  font-weight: 800; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 28px rgba(249,103,104,.25); }
.btn-secondary { background: var(--brand); color: #fff; }
.btn-primary:hover, .btn-secondary:hover { filter: brightness(.95); color: #fff; }

.promo-ticker { background: var(--brand-dark); color: #fff; display: flex; gap: 14px; align-items: center; padding: 8px 16px; overflow: hidden; }
.promo-ticker strong { white-space: nowrap; color: var(--gold); }
.promo-ticker div { overflow: hidden; flex: 1; }
.promo-ticker span { display: inline-block; white-space: nowrap; animation: ticker 26s linear infinite; }
@keyframes ticker { from { transform: translateX(100%); } to { transform: translateX(-100%); } }
.topbar { background: #f7fbfc; border-bottom: 1px solid var(--line); font-size: 14px; }
.topbar .container-wide { display: flex; gap: 18px; justify-content: flex-end; align-items: center; min-height: 42px; flex-wrap: wrap; }
.whatsapp-pill { background: #1ea952; color: #fff; padding: 5px 10px; border-radius: 999px; font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 8px 28px rgba(16,32,51,.08); }
.main-nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 148px; height: auto; }
.main-nav ul { display: flex; align-items: center; gap: 8px; list-style: none; padding: 0; margin: 0; }
.main-nav a:not(.brand) { padding: 10px 13px; border-radius: 8px; font-weight: 800; color: var(--ink); }
.main-nav a.active, .main-nav a:hover { background: rgba(12,111,120,.09); color: var(--brand); }
.nav-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 9px 12px; font-weight: 800; }

.hero {
  min-height: 690px; display: grid; align-items: center; position: relative; color: #fff;
  background: linear-gradient(90deg, rgba(6,25,47,.86), rgba(6,25,47,.34)), var(--hero-image) center/cover no-repeat;
}
.hero h1, .hero p { color: #fff; }
.hero p { font-size: 20px; max-width: 780px; }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; padding: 74px 0 150px; }
.booking-panel { margin-top: -118px; position: relative; z-index: 2; }
.tab-shell { background: #fff; border-radius: 8px; box-shadow: 0 22px 70px rgba(16,32,51,.18); padding: 14px; }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 16px; }
.tabs button { border: 0; border-radius: 8px; background: #edf5f6; color: var(--brand-dark); font-weight: 900; padding: 10px 15px; cursor: pointer; }
.tabs button.active { background: var(--brand); color: #fff; }
.tab-content { display: none; }
.tab-content.active { display: block; }

.booking-form { color: var(--ink); }
.form-title { font-size: 20px; font-weight: 900; margin-bottom: 16px; }
.form-grid { display: grid; gap: 14px; margin-bottom: 14px; }
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
label { display: grid; gap: 6px; font-weight: 800; color: var(--ink); position: relative; }
label span { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
input, select, textarea {
  width: 100%; min-height: 46px; border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px;
  color: var(--ink); background: #fff; outline: none;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(12,111,120,.12); }
.full { margin-bottom: 16px; }
.form-note { font-size: 13px; margin: 12px 0 0; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.autocomplete-list {
  position: absolute; left: 0; right: 0; top: calc(100% + 4px); z-index: 30; background: #fff; border: 1px solid var(--line);
  border-radius: 8px; box-shadow: 0 14px 34px rgba(16,32,51,.16); overflow: hidden;
}
.autocomplete-list button { display: block; width: 100%; border: 0; background: #fff; text-align: left; padding: 10px 12px; cursor: pointer; }
.autocomplete-list button:hover { background: #f0f7f8; }
.autocomplete-list strong { display: block; color: var(--ink); }
.autocomplete-list small { display: block; color: var(--muted); }

.cards-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card-item { border: 1px solid var(--line); border-radius: 8px; background: #fff; overflow: hidden; display: flex; flex-direction: column; min-height: 100%; }
.card-item img { height: 178px; width: 100%; object-fit: cover; }
.card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.badge-line { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 10px; }
.badge { background: rgba(12,111,120,.1); color: var(--brand); padding: 4px 8px; border-radius: 999px; font-weight: 900; font-size: 12px; }
.updated { color: var(--muted); font-size: 12px; font-weight: 700; }
.price { margin-top: auto; padding-top: 10px; font-weight: 900; color: var(--accent); font-size: 21px; }
.price span { color: var(--muted); font-size: 13px; font-weight: 700; }
.text-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.feature-list { display: grid; gap: 12px; margin: 20px 0; padding: 0; list-style: none; }
.feature-list li { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; font-weight: 800; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; margin-bottom: 12px; }
.faq-list summary { cursor: pointer; font-weight: 900; color: var(--ink); }
.page-hero { background: linear-gradient(90deg, rgba(6,25,47,.86), rgba(6,25,47,.42)), var(--hero-image) center/cover no-repeat; color: #fff; padding: 96px 0; }
.page-hero h1, .page-hero p { color: #fff; }
.airline-hero { color: #fff; padding: 72px 0; background: linear-gradient(135deg, var(--airline-primary), var(--airline-secondary)); }
.airline-hero h1, .airline-hero p { color: #fff; }
.airline-logo { width: 220px; background: #fff; border-radius: 8px; padding: 14px; margin-bottom: 18px; }
.legal-content { max-width: 900px; }
.legal-content h2 { margin-top: 28px; font-size: 26px; }
.notice { background: #fff7e6; border: 1px solid #f4d38a; border-radius: 8px; padding: 16px; color: #6c4a00; font-weight: 700; }
.thank-you { text-align: center; max-width: 760px; margin: 0 auto; }
.reference { display: inline-block; border: 2px dashed var(--brand); border-radius: 8px; padding: 12px 18px; color: var(--brand); font-size: 30px; font-weight: 900; letter-spacing: .08em; margin: 14px 0; }

.site-footer { background: #092744; color: #dceaf5; padding: 52px 0 20px; }
.site-footer p, .site-footer a { color: #dceaf5; }
.site-footer a { display: block; margin-bottom: 8px; }
.site-footer h2 { color: #fff; font-size: 18px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 28px; }
.footer-logo { width: 145px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 34px; padding-top: 16px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; }
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: #1ea952; color: #fff; font-weight: 900; box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

/* Tavelo template style alignment */
body {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #142955;
}

.promo-ticker {
  background: #071321;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.site-header {
  background: linear-gradient(90deg, rgba(5,19,34,.94), rgba(7,47,61,.9));
  box-shadow: none;
  color: #fff;
}

.topbar {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #fff;
}

.topbar .container-wide {
  justify-content: space-between;
  min-height: 54px;
}

.top-social,
.top-contact,
.top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top-social a {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.top-contact a,
.top-actions span {
  color: #fff;
  font-weight: 800;
}

.main-nav {
  min-height: 92px;
}

.brand img {
  width: 188px;
  filter: brightness(0) invert(1);
}

.main-nav ul {
  gap: 12px;
}

.main-nav a:not(.brand),
.main-nav .nav-toggle {
  color: #fff;
}

.main-nav a:not(.brand)::after {
  content: "";
}

.main-nav a.active,
.main-nav a:hover {
  background: transparent;
  color: #24bdc7;
}

.nav-cta {
  background: #24bdc7 !important;
  color: #fff !important;
  min-height: 50px;
  padding: 13px 22px !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 28px rgba(36,189,199,.24);
}

.hero {
  min-height: 640px;
  background: linear-gradient(rgba(1,6,15,.58), rgba(1,6,15,.58)), var(--hero-image) center/cover no-repeat;
  text-align: center;
}

.hero-layout {
  padding: 120px 0 160px;
}

.hero h1 {
  font-family: "Barlow", Arial, Helvetica, sans-serif;
  margin-left: auto;
  margin-right: auto;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: capitalize;
  text-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.hero p {
  margin-left: auto;
  margin-right: auto;
  text-transform: capitalize;
}

.booking-panel {
  margin-top: -88px;
}

.tab-shell {
  border-radius: 52px;
  padding: 0 24px 28px;
  box-shadow: 0 18px 55px rgba(12,44,122,.12);
}

.tabs {
  transform: translateY(-28px);
  margin-bottom: -4px;
  border-bottom: 0;
  justify-content: center;
  gap: 12px;
}

.tabs button {
  min-height: 47px;
  padding: 11px 20px;
  border-radius: 999px;
  color: #142955;
  background: #e9fbfd;
  box-shadow: 0 8px 22px rgba(12,44,122,.08);
}

.tabs button::before {
  content: "\2708";
  margin-right: 8px;
  color: #24bdc7;
}

.tabs button.active {
  background: #24bdc7;
  color: #fff;
}

.tabs button.active::before {
  color: #fff;
}

.booking-form {
  position: relative;
}

.booking-form .form-title {
  display: none;
}

.booking-form .form-grid {
  margin-bottom: 18px;
}

.booking-form .form-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-form label {
  background: #e5f8fb;
  border-radius: 28px;
  padding: 18px 24px;
  min-height: 132px;
  justify-content: center;
}

.booking-form label span {
  font-size: 16px;
  color: #445472;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  min-height: 30px;
  font-size: 18px;
  font-weight: 900;
  color: #142955;
  box-shadow: none;
}

.booking-form textarea {
  min-height: 80px;
  font-size: 15px;
  font-weight: 700;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #142955;
  opacity: .72;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  box-shadow: none;
  border: 0;
}

.booking-form label.full {
  min-height: 110px;
}

.booking-form .btn-primary {
  border-radius: 999px;
  min-width: 160px;
  background: #24bdc7;
  box-shadow: 0 12px 28px rgba(36,189,199,.28);
}

.tab-shell .booking-form .btn-primary {
  position: absolute;
  right: 26px;
  top: -76px;
}

.form-note {
  color: #6f7891;
}

.autocomplete-list {
  border-radius: 18px;
  top: calc(100% - 8px);
}

.card-item {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(12,44,122,.08);
}

.card-item img {
  height: 205px;
}

.badge {
  background: #24bdc7;
  color: #fff;
}

.price {
  color: #f96768;
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
}

.page-hero {
  padding: 132px 0 94px;
  background: linear-gradient(rgba(1,6,15,.64), rgba(1,6,15,.64)), var(--hero-image) center/cover no-repeat;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
}

.site-footer {
  background: #071f4d;
}

.footer-logo {
  filter: brightness(0) invert(1);
}

@media (max-width: 980px) {
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .text-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; }
  .main-nav ul { position: absolute; top: 124px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 10px; box-shadow: 0 18px 44px rgba(16,32,51,.14); }
  .main-nav ul.open { display: flex; }
  .main-nav ul a:not(.brand) { color: #142955; }
  .nav-cta { display: none; }
  .booking-form .form-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tab-shell .booking-form .btn-primary { position: static; }
  .topbar .container-wide { justify-content: center; }
}

@media (max-width: 640px) {
  .topbar .container-wide { justify-content: center; }
  .hero { min-height: 620px; }
  .hero-layout { padding-bottom: 125px; }
  .booking-panel { margin-top: -88px; }
  .form-grid.two, .form-grid.four, .cards-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .card-item img { height: 210px; }
  .tab-shell { border-radius: 30px; padding: 0 14px 24px; }
  .tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .tabs button { white-space: nowrap; }
  .booking-form label { min-height: 112px; border-radius: 22px; }
}

/* Reference booking panel and featured fare list */
.booking-panel {
  width: min(1200px, calc(100% - 32px));
  margin-bottom: 92px;
}

.booking-panel .tab-shell {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.booking-panel .tabs {
  display: none;
}

.reference-booking-form {
  background: #fff;
  border-radius: 22px;
  padding: 92px 34px 28px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .14);
  position: relative;
  overflow: visible;
}

.booking-top-strip {
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  display: grid;
  grid-template-columns: 190px minmax(360px, 1fr) 120px 190px;
  align-items: start;
  gap: 0;
  pointer-events: none;
}

.booking-side-note {
  min-height: 64px;
  background: #fff;
  border-radius: 18px 18px 0 0;
  color: #132033;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  padding: 18px 26px;
  pointer-events: auto;
}

.booking-side-note.right {
  text-align: center;
}

.traveller-tabs {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(25, 37, 37, .86);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 34px 0 0 34px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05);
  pointer-events: auto;
}

.traveller-tabs label {
  padding: 0;
  min-height: auto;
  border-radius: 999px;
  background: transparent;
  display: block;
}

.traveller-tabs input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.traveller-tabs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}

.traveller-tabs input:checked + span {
  background: rgba(255, 255, 255, .22);
}

.top-search-btn {
  min-height: 52px;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  background: #35dd72;
  color: #031b12;
  font-weight: 900;
  padding: 0 18px;
  box-shadow: 8px 8px 0 rgba(33, 91, 67, .55);
  pointer-events: auto;
  cursor: pointer;
}

.top-search-btn span {
  margin-left: 8px;
  font-size: 18px;
}

.reference-booking-form .form-title,
.reference-booking-form .form-note {
  display: none;
}

.reference-booking-form .form-grid {
  gap: 0;
  margin: 0;
}

.reference-booking-form .form-grid.five {
  grid-template-columns: 1.15fr 1.15fr 1fr 1fr 1.15fr;
}

.reference-booking-form .form-grid.three {
  grid-template-columns: 1fr 1fr 1fr;
}

.reference-booking-form .search-main-row {
  border-bottom: 1px solid #edf0f4;
  padding-bottom: 22px;
}

.reference-booking-form .contact-details-row {
  padding-top: 20px;
}

.reference-booking-form .search-field {
  min-height: 116px;
  background: transparent;
  border-radius: 0;
  padding: 18px 34px;
  justify-content: start;
  align-content: center;
  border-right: 0;
}

.reference-booking-form .search-field span {
  color: #617082;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: none;
}

.reference-booking-form .search-field input,
.reference-booking-form .search-field select,
.reference-booking-form .search-field textarea {
  color: #000b2b;
  font-size: 21px;
  font-weight: 900;
  min-height: 32px;
}

.reference-booking-form .search-field input[type="date"] {
  color: #9aa1ad;
}

.reference-booking-form .search-field small {
  color: #617082;
  font-size: 12px;
  font-weight: 500;
}

.reference-booking-form .details-field {
  display: none;
}

.reference-booking-form > .btn-primary {
  position: absolute;
  left: 0;
  bottom: -66px;
  margin-top: 0;
  min-height: 44px;
  min-width: 112px;
  background: #35dd72;
  color: #031b12;
  box-shadow: none;
  border-radius: 999px;
}

.tab-shell .reference-booking-form .btn-primary {
  position: absolute;
}

.flight-fare-list {
  display: grid;
  gap: 14px;
}

.flight-fare-row {
  display: grid;
  grid-template-columns: 58px 1.05fr 42px 1.05fr 130px 140px 116px 116px 126px;
  align-items: center;
  gap: 0;
  min-height: 86px;
  padding: 12px 22px;
  border: 1px solid #dfe4ea;
  border-radius: 7px;
  background: #fff;
}

.fare-airline img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.fare-city strong {
  display: block;
  color: #020a18;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.fare-city span {
  color: #020a18;
  font-size: 14px;
  white-space: nowrap;
}

.fare-city span::before {
  content: "\25F7";
  color: #9198a3;
  margin-right: 5px;
}

.fare-swap {
  color: #020a18;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

.fare-seats {
  justify-self: center;
  background: #11884e;
  color: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.fare-start {
  color: #6d7480;
  font-size: 15px;
  text-align: center;
  border-right: 1px solid #dfe4ea;
  padding-right: 20px;
}

.fare-price {
  padding: 0 22px;
  border-right: 1px solid #dfe4ea;
}

.fare-price span {
  display: block;
  color: #6d7480;
  font-size: 14px;
  line-height: 1.2;
}

.fare-price strong {
  color: #020a18;
  font-size: 19px;
  line-height: 1.2;
}

.fare-book {
  justify-self: end;
  min-width: 105px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f4f6f8;
  border: 1px solid #dde2e8;
  color: #020a18;
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .booking-top-strip {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .reference-booking-form {
    padding: 24px;
  }

  .booking-side-note,
  .traveller-tabs,
  .top-search-btn {
    border-radius: 18px;
  }

  .booking-side-note.right {
    display: none;
  }

  .reference-booking-form > .btn-primary,
  .tab-shell .reference-booking-form .btn-primary {
    position: static;
    margin-top: 18px;
  }

  .reference-booking-form .form-grid.five,
  .reference-booking-form .form-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flight-fare-row {
    grid-template-columns: 58px 1fr 38px 1fr;
    gap: 10px;
  }

  .fare-seats,
  .fare-start,
  .fare-price,
  .fare-book {
    grid-column: auto;
    justify-self: start;
    border-right: 0;
    padding: 0;
  }
}

@media (max-width: 680px) {
  .reference-booking-form .form-grid.five,
  .reference-booking-form .form-grid.three {
    grid-template-columns: 1fr;
  }

  .reference-booking-form .search-field {
    padding: 16px 10px;
    min-height: 92px;
  }

  .traveller-tabs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .traveller-tabs span {
    white-space: nowrap;
  }

  .flight-fare-row {
    grid-template-columns: 48px 1fr;
    align-items: start;
  }

  .fare-swap {
    display: none;
  }

  .fare-seats,
  .fare-start,
  .fare-price,
  .fare-book {
    grid-column: 2;
  }
}
