:root {
  --ink: #172033;
  --muted: #667085;
  --line: #d9e2ec;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --brand: #0f6fff;
  --brand-dark: #064fb7;
  --accent: #ff6b35;
  --green: #0b8f6d;
  --shadow: 0 22px 60px rgba(16, 31, 54, 0.18);
}

/* Live booking flow polish */
.flow-main{background:#f5f7fb;min-height:100vh}.flow-hero{box-shadow:0 22px 60px rgba(16,31,54,.18);position:relative}.flow-hero a{color:#fff;font-weight:900;text-decoration:none}.flow-hero b{background:rgba(255,255,255,.16);border-radius:999px;padding:7px 12px}.flow-section{display:grid;gap:16px}.result-search-engine,.customer-form,.plan-summary,.confirmation-panel,.live-result-card{background:#fff;border:1px solid rgba(134,151,172,.24);border-radius:8px;box-shadow:0 16px 38px rgba(16,31,54,.08)}.result-search-engine{display:grid;grid-template-columns:minmax(240px,1fr) 180px auto;gap:14px;padding:18px;align-items:end}.result-search-engine label,.customer-form label{display:grid;gap:7px;color:var(--muted);font-size:.78rem;font-weight:900;text-transform:uppercase}.result-search-engine input,.result-search-engine select,.customer-form input,.customer-form select,.customer-form textarea{border:1px solid #d8e1ee;border-radius:8px;min-height:48px;padding:0 13px}.live-results{display:grid;gap:14px}.live-result-card{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:10px;padding:18px}.live-result-card span{background:#eaf3ff;border-radius:999px;color:#055cc8;font-size:.74rem;font-weight:900;padding:6px 10px;width:fit-content}.live-result-card strong{font-size:1.18rem}.result-price,.plan-summary b,#planAmount{color:var(--ink);font-size:1.32rem;font-weight:900}.live-result-card button,.pay-button{background:var(--accent);border:0;border-radius:8px;color:#fff;cursor:pointer;font-weight:900;min-height:48px;padding:0 20px}.plan-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:20px;align-items:start}.customer-form,.plan-summary,.confirmation-panel{padding:22px}.customer-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.custom-result-note{background:#fff8ed;border:1px solid #ffd8a8;border-radius:8px;color:#8a4b12;font-weight:800;padding:12px 14px}@media(max-width:820px){.result-search-engine,.plan-layout,.customer-grid,.live-result-card{grid-template-columns:1fr}}
body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--ink);
}

.brand,
.account-actions,
.topnav,
.header-main,
.travel-menu {
  display: flex;
  align-items: center;
}

.header-main {
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(260px, 360px) minmax(230px, 1fr) auto;
  gap: 14px;
  min-height: 64px;
  padding: 9px 10px 9px 14px;
  border: 1px solid rgba(217, 226, 236, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(16, 31, 54, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  gap: 10px;
  flex: 0 0 auto;
  color: #111c2e;
  font-size: 1.08rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), #00a6a6);
  box-shadow: 0 12px 24px rgba(15, 111, 255, 0.35);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
}

.topnav {
  gap: 16px;
  justify-content: center;
  min-width: 0;
  margin-left: 0;
  color: #526277;
  font-size: 0.9rem;
  font-weight: 650;
  white-space: nowrap;
}

.header-search {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 220px;
  height: 42px;
  padding: 0 6px 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  color: var(--ink);
}

.header-search svg {
  flex: 0 0 auto;
  opacity: 0.82;
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 10px;
  color: var(--ink);
  background: transparent;
}

.header-search input::placeholder {
  color: #7a8798;
}

.header-search button,
.hero-search button,
.footer-search button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
}

.header-search button {
  height: 32px;
  padding: 0 14px;
  color: #fff;
  background: var(--brand);
}

.account-actions {
  gap: 10px;
  flex: 0 0 auto;
  justify-content: flex-end;
  min-width: 0;
  white-space: nowrap;
}

.icon-button,
.login-button,
.search-button,
.itinerary-panel button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.icon-button {
  display: grid;
  width: 42px;
  place-items: center;
  color: var(--brand-dark);
  background: #edf5ff;
}

.login-button {
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  font-weight: 750;
}

.helpline-chip {
  display: grid;
  gap: 1px;
  min-height: 42px;
  min-width: 144px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.helpline-chip span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.helpline-chip strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.travel-menu {
  justify-content: center;
  justify-self: center;
  gap: 0;
  min-height: 66px;
  width: max-content;
  max-width: calc(100% - 80px);
  padding: 7px 10px;
  border: 1px solid rgba(217, 226, 236, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 42px rgba(16, 31, 54, 0.14);
  overflow-x: auto;
  scrollbar-width: none;
}

.travel-menu::-webkit-scrollbar {
  display: none;
}

.travel-menu a {
  display: grid;
  gap: 6px;
  min-width: 84px;
  padding: 8px 10px;
  place-items: center;
  border-radius: 8px;
  color: #4b5c72;
  font-size: 0.86rem;
  font-weight: 850;
}

.travel-menu a svg {
  color: var(--brand-dark);
}

.travel-menu a.active,
.travel-menu a:hover {
  color: var(--brand-dark);
  background: #edf5ff;
}

.login-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(360px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.login-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.panel-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-title span,
.login-panel label,
.footer-search label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.panel-title strong {
  display: block;
  margin-top: 4px;
  font-size: 1.25rem;
}

.close-login {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  color: var(--muted);
  font-weight: 900;
}

.login-panel form,
.login-options {
  display: grid;
  gap: 12px;
}

.login-panel label {
  display: grid;
  gap: 7px;
}

.login-panel input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  outline: 0;
}

.login-panel input:focus,
.header-search:focus-within,
.hero-search:focus-within,
.footer-search input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 111, 255, 0.16);
}

.panel-submit,
.login-options button {
  min-height: 44px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
}

.panel-submit {
  border: 0;
  color: #fff;
  background: var(--brand);
}

.login-options {
  grid-template-columns: 1fr 1fr;
  margin-top: 12px;
}

.login-options button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.login-panel p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=86");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 20, 36, 0.86) 0%, rgba(9, 20, 36, 0.52) 48%, rgba(9, 20, 36, 0.14) 100%),
    linear-gradient(180deg, rgba(9, 20, 36, 0.35) 0%, rgba(9, 20, 36, 0.02) 58%, var(--soft) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 168px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-helpline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin: 0 0 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero-helpline svg {
  flex: 0 0 auto;
  color: var(--accent);
}

.hero-helpline span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.hero-helpline strong {
  font-size: 1.05rem;
}

.hero-search {
  display: flex;
  align-items: center;
  max-width: 720px;
  min-height: 58px;
  margin: 0 0 18px;
  padding: 6px 6px 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(9, 20, 36, 0.2);
}

.hero-search svg {
  color: var(--brand);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  font-size: 1.05rem;
  font-weight: 750;
}

.hero-search button {
  min-height: 46px;
  padding: 0 22px;
  color: #fff;
  background: var(--accent);
}

.search-feedback {
  min-height: 24px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.booking-shell {
  max-width: 1120px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--line);
}

.service-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 66px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 850;
}

.service-tab:last-child {
  border-right: 0;
}

.service-tab.active {
  color: var(--brand);
  background: #edf5ff;
  box-shadow: inset 0 -3px 0 var(--brand);
}

.service-panel {
  display: none;
}

.service-panel.active {
  display: block;
}

.search-form {
  padding: 22px;
}

.trip-switch,
.fare-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.trip-switch label,
.fare-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.field-grid,
.hotel-field-grid,
.cab-field-grid,
.universal-grid {
  display: grid;
  gap: 12px;
  align-items: stretch;
  margin: 16px 0;
}

.field-grid {
  grid-template-columns: minmax(160px, 1.35fr) 44px minmax(160px, 1.35fr) minmax(142px, 1fr) minmax(142px, 1fr) minmax(142px, 1fr);
}

.hotel-field-grid {
  grid-template-columns: minmax(210px, 1.45fr) minmax(142px, 1fr) minmax(142px, 1fr) minmax(132px, 0.75fr) minmax(180px, 1fr);
}

.cab-field-grid {
  grid-template-columns: minmax(190px, 1.25fr) minmax(190px, 1.25fr) minmax(132px, 0.8fr) minmax(132px, 0.8fr) minmax(150px, 0.85fr);
  margin: 0;
}

.universal-grid {
  grid-template-columns: repeat(5, minmax(130px, 1fr));
}

.universal-grid .wide {
  grid-column: span 2;
}

.field {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-width: 0;
  margin: 6px 0 4px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1.32rem;
  font-weight: 850;
}

.field select {
  appearance: none;
  cursor: pointer;
  font-size: 1.05rem;
}

.field small {
  min-height: 18px;
  color: var(--muted);
  font-size: 0.8rem;
}

.swap-button {
  align-self: center;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand);
  background: #fff;
  cursor: pointer;
}

.traveller-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 5px;
}

.traveller-row strong {
  min-width: 32px;
  text-align: center;
  font-size: 1.45rem;
}

.stepper {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.fare-row {
  justify-content: space-between;
}

.hotel-filters {
  align-items: center;
}

.cab-actions {
  align-items: center;
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 172px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 14px 28px rgba(15, 111, 255, 0.28);
  font-weight: 850;
}

.cab-search-button {
  background: linear-gradient(135deg, var(--accent), #d94b18);
  box-shadow: 0 14px 28px rgba(255, 107, 53, 0.24);
}

.quick-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1120px, calc(100% - 32px));
  margin: -44px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 36px rgba(16, 31, 54, 0.1);
}

.booking-plan {
  margin-top: 54px;
}

.plan-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  align-items: start;
}

.customer-form,
.plan-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 31, 54, 0.06);
}

.customer-form {
  padding: 20px;
}

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

.customer-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.customer-grid input,
.customer-grid select,
.customer-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  outline: 0;
  font-weight: 700;
  text-transform: none;
}

.customer-grid textarea {
  resize: vertical;
}

.customer-grid input:focus,
.customer-grid select:focus,
.customer-grid textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 111, 255, 0.12);
}

.full-line {
  grid-column: 1 / -1;
}

.customer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.customer-actions label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
}

.plan-summary {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 14px;
  padding: 20px;
}

.plan-summary span,
.plan-total small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.plan-summary strong {
  font-size: 1.6rem;
}

.plan-summary p {
  color: var(--muted);
  line-height: 1.6;
}

.plan-total {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 8px;
  background: #f0f6ff;
}

.plan-total b {
  font-size: 1.1rem;
}

.plan-summary a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-weight: 850;
}

.pay-button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  cursor: pointer;
  font-weight: 900;
}

.pay-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  background: var(--muted);
}

.quick-strip a {
  display: grid;
  gap: 4px;
  min-height: 88px;
  align-content: center;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}

.quick-strip a:last-child {
  border-right: 0;
}

.quick-strip span,
.section-copy,
.deal p,
footer span {
  color: var(--muted);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 54px auto 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  letter-spacing: 0;
}

.section-heading a {
  color: var(--brand);
  font-weight: 850;
}

.service-overview {
  margin-top: 62px;
}

.home-page #booking-plan,
.home-page #results {
  display: none;
}

.flow-page {
  background: #f5f7fb;
}

.flow-main {
  padding: 28px 0 64px;
}

.flow-hero {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 27, 48, 0.9), rgba(10, 27, 48, 0.62)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=84") center/cover;
}

.flow-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.flow-hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: min(1120px, calc(100% - 32px));
  margin: 16px auto 0;
}

.booking-steps span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-weight: 850;
}

.booking-steps span.active {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 26px rgba(15, 111, 255, 0.18);
}

.flow-section {
  margin-top: 24px;
}

.flow-result-card {
  min-height: 220px;
}

.result-price {
  color: var(--ink) !important;
  font-size: 1.15rem;
  font-weight: 900;
}

.review-stack {
  display: grid;
  gap: 16px;
}

.review-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.review-stack strong {
  display: block;
  font-size: 1.35rem;
}

.review-stack p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.confirmation-panel {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: start;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 31, 54, 0.08);
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  grid-column: 1 / -1;
}

.confirmation-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 850;
}

.confirmation-actions a:not(.search-button) {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.company-profile {
  margin-top: 62px;
  padding: clamp(22px, 3.5vw, 34px);
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 31, 54, 0.08);
}

.profile-layout,
.profile-columns {
  display: grid;
  gap: 18px;
}

.profile-layout {
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  align-items: stretch;
}

.profile-story,
.profile-stats article,
.profile-columns article {
  position: relative;
  overflow: hidden;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  box-shadow: none;
}

.profile-story {
  min-height: 390px;
  padding: clamp(26px, 4vw, 46px);
  color: #fff;
  background: linear-gradient(135deg, #111c2e, #173d68);
}

.profile-story::after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -78px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.profile-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.profile-kicker span,
.profile-kicker b {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.profile-kicker span {
  color: #173d68;
  background: #f8fbff;
}

.profile-kicker b {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.profile-story h3 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 40px 0 18px;
  font-size: clamp(1.7rem, 2.8vw, 2.9rem);
  line-height: 1.12;
}

.profile-story p,
.profile-columns p {
  margin: 0;
  line-height: 1.65;
}

.profile-story p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.profile-story p + p {
  margin-top: 12px;
}

.profile-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.profile-badges span {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.profile-stats article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 88px;
  padding: 18px 20px;
  background: #f8fbff;
}

.profile-stats article::before,
.profile-columns article::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 4px;
  height: calc(100% - 36px);
  background: var(--brand);
}

.profile-stats strong {
  color: var(--brand-dark);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  white-space: nowrap;
}

.profile-stats span {
  color: var(--muted);
  font-weight: 750;
  text-align: right;
}

.profile-presence {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #f8fbff;
}

.profile-presence span {
  margin-right: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-presence strong {
  border: 1px solid #dce5ef;
  border-radius: 8px;
  padding: 8px 11px;
  color: #24364f;
  background: #fff;
  font-size: 0.92rem;
}

.profile-columns {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.profile-columns article {
  display: grid;
  gap: 12px;
  padding: 24px 22px 22px;
  background: #fff;
}

.profile-columns article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--brand-dark);
  background: #edf5ff;
  font-size: 0.8rem;
  font-weight: 900;
}

.profile-columns h3 {
  margin: 0;
  color: #111c2e;
  font-size: 1.14rem;
}

.profile-columns p {
  color: var(--muted);
}

.result-search-engine {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(150px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 31, 54, 0.06);
}

.result-search-engine label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.result-search-engine input,
.result-search-engine select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  outline: 0;
  font-weight: 750;
}

.result-search-engine input:focus,
.result-search-engine select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 111, 255, 0.12);
}

.custom-result-note {
  min-height: 28px;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 750;
}

.live-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.live-result-card {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 31, 54, 0.06);
}

.live-result-card span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.live-result-card strong {
  font-size: 1.18rem;
}

.live-result-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.live-result-card .rate-key {
  width: fit-content;
  border-radius: 8px;
  padding: 6px 9px;
  color: var(--green);
  background: #eafaf5;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.live-result-card button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  cursor: pointer;
  font-weight: 850;
}

.mmt-live-status,
.about-booking-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #cbe0fb;
  border-radius: 8px;
  background: linear-gradient(90deg, #f7fbff, #fff);
  box-shadow: 0 14px 32px rgba(16, 31, 54, 0.07);
}

.mmt-live-status {
  width: min(1120px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 14px 18px;
}

.mmt-live-status div,
.about-booking-strip div {
  display: grid;
  gap: 4px;
}

.mmt-live-status span,
.about-booking-strip span,
.mmt-result-tags span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: #075c42;
  background: #e3fff2;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mmt-live-status strong,
.about-booking-strip strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.mmt-live-status a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.mmt-result-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.mmt-result-badge small {
  color: var(--muted);
  font-weight: 850;
}

.mmt-result-main {
  display: grid;
  gap: 8px;
}

.mmt-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mmt-result-tags span {
  color: #36506f;
  background: #edf5ff;
}

.mmt-result-price {
  display: grid;
  gap: 8px;
  justify-items: end;
  align-content: center;
}

.mmt-result-price small {
  color: var(--muted);
  font-weight: 850;
}

.mmt-result-price b {
  font-size: 1.28rem;
}

.mmt-flow-results .custom-result-note {
  margin-bottom: 0;
}

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

.overview-grid article {
  min-height: 168px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 31, 54, 0.06);
}

.overview-grid span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.overview-grid strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 1.18rem;
}

.overview-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.sort-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sort-pills button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.sort-pills button.active {
  border-color: var(--brand);
  color: var(--brand);
  background: #edf5ff;
}

.results-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.filter-panel strong {
  font-size: 1.1rem;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
}

.filter-panel label:has(input[type="checkbox"]) {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.hotel-results {
  display: grid;
  gap: 16px;
}

.pulse-results .hotel-card {
  animation: resultPulse 0.7s ease;
}

@keyframes resultPulse {
  0% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15, 111, 255, 0.16);
  }
  100% {
    transform: translateY(0);
  }
}

.hotel-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 236px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 31, 54, 0.08);
}

.hotel-card img {
  width: 100%;
  height: 100%;
  min-height: 236px;
  object-fit: cover;
}

.hotel-info {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.hotel-title-row,
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.hotel-title-row {
  align-items: flex-start;
}

.hotel-title-row h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.hotel-title-row p {
  margin: 0;
  color: var(--muted);
}

.rating {
  display: grid;
  min-width: 48px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenities span {
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--muted);
  background: #f0f6ff;
  font-size: 0.86rem;
  font-weight: 800;
}

.price-row {
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.price-row div {
  display: grid;
  gap: 3px;
}

.price-row strong {
  font-size: 1.5rem;
}

.price-row span {
  color: var(--muted);
}

.price-row button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: #fff;
  background: var(--brand);
  cursor: pointer;
  font-weight: 850;
}

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

.deal {
  min-height: 188px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cab-deal {
  background: linear-gradient(180deg, #fff 0%, #fff7f2 100%);
}

.deal span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.deal h3 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 216px;
  gap: 16px;
}

.destination {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #d7e0ea;
}

.destination.tall {
  grid-row: span 2;
}

.destination img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination:hover img {
  transform: scale(1.05);
}

.destination::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.72) 100%);
}

.destination div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  color: #fff;
}

.destination span {
  font-weight: 850;
}

.destination strong {
  font-size: 1.2rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 54px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.section-copy {
  max-width: 520px;
  margin: 16px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.itinerary-panel {
  padding: 24px;
  border-radius: 8px;
  background: #f0f6ff;
}

.route-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.route-line b {
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.itinerary-panel li {
  margin: 10px 0;
  color: var(--muted);
}

.itinerary-panel button {
  width: 100%;
  margin-top: 12px;
  color: #fff;
  background: var(--ink);
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(360px, 1.5fr) minmax(260px, 0.9fr);
  gap: 30px;
  padding: 38px clamp(16px, 4vw, 56px) 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-links div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links strong {
  margin-bottom: 4px;
}

.footer-links a {
  color: var(--muted);
}

.footer-search {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-search div {
  display: flex;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.footer-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 12px;
}

.footer-search button {
  min-width: 92px;
  color: #fff;
  background: var(--brand);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.about-page {
  background: #f5f8fb;
}

.about-page .topbar {
  color: var(--ink);
}

.about-main {
  display: grid;
  gap: 34px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 188px 0 56px;
}

.about-booking-strip {
  padding: 18px 20px;
}

.about-booking-strip .search-button {
  min-width: 150px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 32px;
  align-items: center;
}

.about-hero-copy {
  display: grid;
  gap: 16px;
}

.about-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.about-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #536174;
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.about-hero-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 850;
}

.about-hero-actions a:not(.search-button) {
  border: 1px solid var(--line);
  background: #fff;
}

.about-hero-media {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(16, 31, 54, 0.16);
}

.about-hero-media img,
.about-leadership img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-snapshot,
.about-story-grid,
.about-service-grid,
.about-strength-grid,
.about-vision,
.about-icon-grid {
  display: grid;
  gap: 16px;
}

.about-snapshot {
  grid-template-columns: repeat(4, 1fr);
}

.about-snapshot article,
.about-story-grid article,
.about-service-grid article,
.about-presence,
.about-strength-grid,
.about-networth,
.about-trust,
.about-trust article,
.about-vision article,
.about-why,
.about-icon-grid article,
.about-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 31, 54, 0.07);
}

.about-snapshot article {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.about-snapshot strong {
  color: var(--brand-dark);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.about-snapshot span,
.about-service-grid span {
  color: var(--muted);
  font-weight: 800;
}

.about-section {
  display: grid;
  gap: 22px;
}

.about-section h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.about-story-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-story-grid article,
.about-service-grid article {
  padding: 24px;
}

.about-story-grid h3,
.about-service-grid h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.about-story-grid p,
.about-service-grid p,
.about-leadership p,
.about-leadership li,
.about-strength li,
.about-networth p,
.about-trust p,
.about-vision p,
.about-icon-grid span,
.about-cta p {
  color: #536174;
  line-height: 1.7;
}

.about-leadership {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: center;
}

.about-leadership img {
  min-height: 420px;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(16, 31, 54, 0.14);
}

.about-leadership ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.about-service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-service-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--accent);
}

.about-strength-grid {
  grid-template-columns: repeat(2, 1fr);
  padding: 26px 30px;
}

.about-strength-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.about-networth {
  display: grid;
  gap: 8px;
  padding: 26px 30px;
  background: linear-gradient(135deg, #fff8f2, #ffffff);
}

.about-networth span {
  color: var(--muted);
  font-weight: 850;
}

.about-networth strong {
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.about-presence {
  padding: 28px;
}

.about-presence h2 {
  margin-bottom: 20px;
}

.about-presence div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-presence span {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: #f8fbff;
  color: var(--ink);
  font-weight: 800;
}

.about-trust {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: stretch;
  padding: 30px;
}

.about-trust article {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  background: #f8fbff;
  box-shadow: none;
}

.about-trust strong {
  color: var(--brand-dark);
  font-size: 1.15rem;
}

.about-vision {
  grid-template-columns: repeat(2, 1fr);
}

.about-icon-grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-icon-grid article {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.about-icon-grid strong {
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.about-vision article,
.about-why {
  padding: 28px;
}

.about-vision h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.about-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-pill-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #f8fbff;
  color: var(--ink);
  font-weight: 800;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, #172033, #0f6fff);
}

.about-cta .eyebrow {
  color: #ffb08d;
}

.about-cta h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.about-cta p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.about-cta .search-button {
  display: inline-flex;
  min-height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: var(--accent);
}

@media (max-width: 1280px) {
  .topbar {
    width: min(1160px, calc(100% - 24px));
  }

  .header-main {
    grid-template-columns: minmax(210px, auto) minmax(240px, 1fr) minmax(190px, auto) auto;
    gap: 12px;
  }

  .helpline-chip {
    display: none;
  }

  .topnav {
    gap: 14px;
  }

  .travel-menu {
    max-width: calc(100% - 48px);
  }

  .travel-menu a {
    min-width: 78px;
    padding: 8px;
  }
}

@media (max-width: 980px) {
  .topbar {
    top: 8px;
    width: calc(100% - 16px);
  }

  .header-main {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    min-height: 58px;
  }

  .topnav,
  .helpline-chip,
  .header-search {
    display: none;
  }

  .travel-menu {
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
  }

  .hero {
    min-height: 1080px;
  }

  .field-grid,
  .hotel-field-grid,
  .cab-field-grid,
  .universal-grid,
  .deal-grid,
  .overview-grid,
  .profile-layout,
  .profile-columns,
  .live-results,
  .result-search-engine,
  .plan-layout,
  .destination-grid,
  .split,
  .site-footer,
  .results-layout,
  .hotel-card {
    grid-template-columns: 1fr;
  }

  .universal-grid .wide {
    grid-column: span 1;
  }

  .service-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .profile-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-panel {
    position: static;
  }

  .customer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plan-summary {
    position: static;
  }

  .hotel-card img {
    height: 230px;
  }

  .swap-button {
    justify-self: center;
    transform: rotate(90deg);
  }

  .destination-grid {
    grid-auto-rows: 260px;
  }

  .destination.tall {
    grid-row: span 1;
  }

  .about-main {
    padding-top: 168px;
  }

  .about-hero,
  .about-leadership,
  .about-story-grid,
  .about-service-grid,
  .about-strength-grid,
  .about-trust,
  .about-vision,
  .about-icon-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-media,
  .about-leadership img {
    min-height: 360px;
  }

  .about-snapshot {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .mmt-result-price {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .topbar {
    width: calc(100% - 16px);
  }

  .brand {
    font-size: 1rem;
  }

  .brand span:last-child {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-main {
    min-height: 58px;
    padding: 8px 10px;
  }

  .travel-menu {
    min-height: 66px;
    padding: 6px;
  }

  .travel-menu a {
    min-width: 78px;
    padding: 8px 9px;
    font-size: 0.78rem;
  }

  .login-button {
    padding: 0 12px;
  }

  .hero-content {
    width: calc(100% - 24px);
    padding-top: 152px;
  }

  .about-main {
    width: calc(100% - 24px);
    gap: 24px;
    padding-top: 150px;
  }

  .about-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .about-hero-media,
  .about-leadership img {
    min-height: 260px;
  }

  .mmt-live-status,
  .about-booking-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .mmt-live-status a,
  .about-booking-strip .search-button {
    width: 100%;
  }

  .about-snapshot {
    grid-template-columns: 1fr;
  }

  .about-story-grid article,
  .about-service-grid article,
  .about-presence,
  .about-strength-grid,
  .about-networth,
  .about-trust,
  .about-trust article,
  .about-vision article,
  .about-why,
  .about-icon-grid article,
  .about-cta {
    padding: 18px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-helpline {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .hero-search {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .hero-search input {
    min-height: 42px;
    padding: 0 4px;
  }

  .search-form {
    padding: 14px;
  }

  .field {
    min-height: 94px;
  }

  .fare-row {
    align-items: stretch;
  }

  .customer-grid {
    grid-template-columns: 1fr;
  }

  .customer-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .search-button {
    width: 100%;
  }

  .hotel-title-row,
  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-row button {
    width: 100%;
  }

  .quick-strip {
    grid-template-columns: 1fr;
    margin-top: -18px;
  }

  .quick-strip a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .split {
    padding: 22px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .service-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-stats {
    grid-template-columns: 1fr;
  }
}
