:root {
  --navy: #001942;
  --deep-blue: #040079;
  --panel-border: rgba(255, 205, 0, 0.42);
  --white: #ffffff;
  --soft-white: #f1f2f5;
  --input-border: rgba(226, 237, 255, 0.9);
  --muted-blue: #a7b8da;
  --yellow: #ffd200;
  --shadow-blue: rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--navy);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background: linear-gradient(180deg, #001942 0%, #001942 46%, #001a45 100%);
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-shell {
  width: min(1695px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 16px;
}

.brand-header {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-bottom: 30px;
  text-align: center;
}

.brand-lockup {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  color: var(--white);
  font-size: clamp(44px, 3.6vw, 58px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand-cabs {
  color: var(--yellow);
}

.brand-wale {
  color: var(--white);
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 37px;
  margin-left: 6px;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 24px;
  height: 20px;
  border-right: 6px solid var(--yellow);
  border-bottom: 6px solid var(--yellow);
  transform: rotate(39deg);
  border-radius: 0 0 12px 0;
}

.brand-header p {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.booking-card {
  min-height: 470px;
  padding: clamp(24px, 2.4vw, 42px);
  background: linear-gradient(180deg, rgba(0, 26, 68, 0.98) 0%, rgba(5, 0, 117, 0.92) 100%);
  border: 1px solid var(--panel-border);
  border-radius: 26px;
  box-shadow: 0 20px 40px var(--shadow-blue);
}

.commission-line {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.commission-line strong {
  color: var(--yellow);
  font-weight: 800;
}

.trip-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: min(394px, 100%);
  height: 48px;
  margin: 0 auto 27px;
  overflow: hidden;
  border: 1px solid var(--input-border);
  border-radius: 8px;
}

.toggle-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 0;
  color: var(--white);
  background: transparent;
  font-size: 18px;
  font-weight: 700;
}

.toggle-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-option.is-active {
  color: #111a2c;
  background: var(--soft-white);
}

.radio-dot {
  position: relative;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.radio-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0;
}

.is-active .radio-dot::after {
  opacity: 1;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 28px 32px;
  width: min(1420px, 100%);
  margin: 0 auto 20px;
}

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

.field {
  position: relative;
  min-width: 0;
}

.field.is-hidden {
  display: none;
}

.field label {
  position: absolute;
  left: 14px;
  top: -12px;
  z-index: 1;
  padding: 0 6px;
  color: var(--white);
  background: #04184b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

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

.field-control {
  display: flex;
  align-items: center;
  min-height: 54px;
  border: 1px solid var(--input-border);
  border-radius: 12px;
  background: rgba(0, 25, 66, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field-control:focus-within {
  border-color: var(--yellow);
  background: rgba(0, 25, 66, 0.82);
  box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.14);
}

.field-control input,
.field-control select,
.field-control textarea {
  min-width: 0;
  width: 100%;
  padding: 0 10px;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 20px;
  font-weight: 500;
}

.field-control input,
.field-control select {
  height: 52px;
}

.field-control textarea {
  min-height: 72px;
  padding: 14px 16px;
  resize: vertical;
}

.field-control input::placeholder,
.field-control textarea::placeholder {
  color: var(--muted-blue);
  opacity: 1;
}

.field-control select {
  appearance: none;
  color: var(--muted-blue);
  cursor: pointer;
}

.field-control select:valid {
  color: var(--white);
}

.field-control option {
  color: #111a2c;
  background: #ffffff;
}

.place-field .field-control {
  padding-left: 15px;
  padding-right: 9px;
}

.place-field button {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--muted-blue);
  background: transparent;
  border: 0;
  font-size: 25px;
  line-height: 1;
}

.textarea-control {
  align-items: stretch;
}

.pin-icon {
  position: relative;
  flex: 0 0 17px;
  width: 17px;
  height: 22px;
  margin-right: 9px;
  border: 2px solid var(--muted-blue);
  border-radius: 50% 50% 55% 55%;
  transform: rotate(45deg);
}

.pin-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 5px;
  height: 5px;
  border: 2px solid var(--muted-blue);
  border-radius: 50%;
}

.date-control {
  justify-content: space-between;
  padding-right: 13px;
}

.date-control input {
  padding-left: 16px;
}

.date-control input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(1);
  opacity: 0.75;
}

.date-control.is-muted {
  border-color: rgba(142, 165, 216, 0.42);
}

.calendar-icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(167, 184, 218, 0.86);
  border-radius: 3px;
}

.calendar-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 5px;
  height: 3px;
  background: rgba(167, 184, 218, 0.86);
}

.calendar-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: -6px;
  height: 7px;
  border-left: 3px solid rgba(167, 184, 218, 0.86);
  border-right: 3px solid rgba(167, 184, 218, 0.86);
}

.filters {
  display: grid;
  justify-items: center;
  padding-top: 2px;
}

.filters p {
  margin: 0 0 11px;
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
}

.filters p span {
  font-size: 13px;
  font-weight: 500;
}

.filter-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(620px, 100%);
  min-height: 46px;
  margin-bottom: 27px;
  overflow: hidden;
  border: 1px solid var(--input-border);
  border-radius: 8px;
}

.filter-tabs.vehicle-only {
  grid-template-columns: 1fr;
  width: min(194px, 100%);
}

.filter-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  font-size: 17px;
  font-weight: 800;
}

.filter-tab.is-active {
  color: #172033;
  background: var(--soft-white);
}

.vehicle-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 220px));
  justify-content: center;
  gap: 18px 28px;
  width: min(980px, 100%);
  margin-bottom: 30px;
}

.vehicle-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  color: var(--white);
  background: rgba(0, 25, 66, 0.42);
  border: 1px solid rgba(229, 238, 255, 0.36);
  border-radius: 12px;
  font-size: 17px;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.vehicle-chip.is-selected {
  color: #111a2c;
  background: var(--soft-white);
  border-color: var(--white);
}

.vehicle-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 210, 0, 0.8);
}

.vehicle-art {
  display: block;
  flex: 0 0 auto;
  width: 62px;
  height: 36px;
  object-fit: contain;
}

.find-button {
  position: relative;
  isolation: isolate;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(520px, 100%);
  min-height: 62px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
  border: 0;
  border-radius: 14px;
  font-size: 21px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.24);
  animation: callPulse 2.8s ease-in-out infinite;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.find-button::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  z-index: -1;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  transform: skewX(-18deg);
  animation: buttonShine 3.4s ease-in-out infinite;
}

.find-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.34);
  filter: brightness(1.04);
}

.find-button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.5);
  opacity: 0.75;
  transform: none;
  animation: none;
}

.find-button:disabled::before {
  animation: none;
}

@keyframes callPulse {
  0%,
  100% {
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.24);
  }
  50% {
    box-shadow: 0 17px 36px rgba(37, 211, 102, 0.42), 0 0 0 6px rgba(37, 211, 102, 0.08);
  }
}

@keyframes buttonShine {
  0%,
  45% {
    left: -40%;
  }
  72%,
  100% {
    left: 115%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .find-button,
  .find-button::before {
    animation: none;
  }
}

.form-span-all {
  grid-column: 1 / -1;
}

.booking-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 28px;
  width: min(1250px, 100%);
  margin: 18px auto 30px;
}

.booking-details .field-wide {
  grid-column: span 2;
}

.fare-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1160px, 100%);
  margin: 0 auto 22px;
  overflow: hidden;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(229, 238, 255, 0.24);
  border-radius: 16px;
}

.fare-card div {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 88px;
  padding: 18px 22px;
  background: rgba(0, 25, 66, 0.78);
}

.fare-card span {
  color: var(--muted-blue);
  font-size: 14px;
  font-weight: 700;
}

.fare-card strong {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.fare-card .fare-total strong {
  color: var(--yellow);
  font-size: 22px;
}

.terms-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(520px, 100%);
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.terms-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--yellow);
}

.thankyou-screen {
  display: none;
  justify-items: center;
  gap: 14px;
  width: min(620px, 100%);
  margin: 34px auto;
  padding: 30px 18px;
  text-align: center;
}

.booking-card.is-complete .booking-form,
.booking-card.is-complete .commission-line,
.booking-card.is-complete .trip-toggle {
  display: none;
}

.booking-card.is-complete .thankyou-screen {
  display: grid;
}

.success-mark {
  position: relative;
  width: 70px;
  height: 70px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.12);
}

.success-mark::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 17px;
  width: 20px;
  height: 34px;
  border-right: 6px solid #fff;
  border-bottom: 6px solid #fff;
  transform: rotate(42deg);
}

.thankyou-screen h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
}

.thankyou-screen p {
  margin: 0 0 6px;
  color: var(--muted-blue);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.destinations {
  margin-top: 28px;
}

.destinations h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
}

.destination-row {
  display: grid;
  grid-template-columns: repeat(9, minmax(92px, 1fr));
  gap: 27px;
  align-items: start;
}

.destination {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  text-align: center;
}

.destination-photo {
  position: relative;
  display: block;
  width: clamp(86px, 6.8vw, 118px);
  aspect-ratio: 1;
  overflow: hidden;
  background: #8eb1d5;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.destination-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-photo::before,
.destination-photo::after {
  content: "";
  position: absolute;
  display: none;
}

.destination-photo::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(0, 0, 0, 0.22), transparent 38%);
}

.destination-photo::after {
  left: 18%;
  right: 18%;
  bottom: 18%;
  height: 34%;
  background: rgba(255, 238, 194, 0.8);
  border-radius: 7px 7px 0 0;
  box-shadow:
    13px 8px 0 rgba(113, 82, 57, 0.45),
    -12px 12px 0 rgba(255, 238, 194, 0.45);
}

.destination strong {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.drivers-section {
  margin-top: 44px;
  padding-bottom: 20px;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-title-row h2 {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.section-title-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.section-title-row span {
  font-size: 25px;
  line-height: 0;
}

.driver-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.driver-card {
  display: grid;
  justify-items: center;
  min-height: 173px;
  padding: 10px 18px 14px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 25, 66, 0.92), rgba(4, 0, 121, 0.9));
  border: 1px solid var(--panel-border);
  border-radius: 14px;
}

.driver-avatar {
  position: relative;
  display: block;
  width: 76px;
  height: 76px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #b9c9d5 url("assets/experienced-drivers-sheet.png") center / 500% 100% no-repeat;
  border: 1px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.driver-avatar::before,
.driver-avatar::after {
  content: "";
  position: absolute;
  display: none;
}

.driver-one {
  background-position: 0% 50%;
}

.driver-two {
  background-position: 25% 50%;
}

.driver-three {
  background-position: 50% 50%;
}

.driver-four {
  background-position: 75% 50%;
}

.driver-five {
  background-position: 100% 50%;
}

.driver-avatar::before {
  left: 24px;
  top: 17px;
  width: 27px;
  height: 30px;
  background: #8b583d;
  border-radius: 50% 50% 45% 45%;
  box-shadow: 0 -13px 0 #1c2027;
}

.driver-avatar::after {
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 30px;
  background: #eceff6;
  border-radius: 18px 18px 0 0;
}

.avatar-one {
  background: linear-gradient(135deg, #dde0dc, #c7b58f 45%, #6e7176);
}

.avatar-two {
  background: linear-gradient(135deg, #57273f, #8b2a42 45%, #d7b06f);
}

.avatar-three {
  background: linear-gradient(135deg, #28323c, #9d7456 45%, #ccd1d5);
}

.avatar-four {
  background: linear-gradient(135deg, #82b66f, #d9e4d7 48%, #5e7e48);
}

.avatar-five {
  background: linear-gradient(135deg, #cad8e1, #e8d9ca 45%, #4a5968);
}

.driver-card h3 {
  width: 100%;
  min-height: 30px;
  margin: 0 0 12px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.driver-card p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
}

.clock-icon {
  position: relative;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}

.clock-icon::before,
.clock-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  background: var(--yellow);
  border-radius: 999px;
  transform-origin: top center;
}

.clock-icon::before {
  height: 5px;
  transform: translate(-50%, -100%);
}

.clock-icon::after {
  height: 4px;
  transform: rotate(90deg) translate(-1px, -1px);
}

.chaos-section {
  margin-top: 46px;
  padding: 84px 0 18px;
  border-top: 1px solid var(--yellow);
}

.chaos-section h2 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.chaos-carousel {
  display: grid;
  grid-template-columns: 70px minmax(0, 998px) 70px;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.chaos-card {
  min-width: 0;
}

.chaos-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 998 / 665;
  background: #251b15;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
}

.chaos-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chaos-arrow {
  display: grid;
  place-items: center;
  width: 51px;
  height: 51px;
  color: var(--white);
  background: rgba(33, 28, 151, 0.82);
  border: 2px solid rgba(116, 106, 255, 0.74);
  border-radius: 50%;
  font-size: 48px;
  font-weight: 600;
  line-height: 0.8;
}

.chaos-prev {
  justify-self: end;
}

.chaos-next {
  justify-self: start;
}

.speech-bubble {
  position: absolute;
  max-width: 214px;
  margin: 0;
  padding: 10px 18px;
  color: #1c1c1c;
  background: rgba(239, 237, 226, 0.95);
  border: 2px solid #1f1f1f;
  border-radius: 48%;
  font-size: clamp(14px, 1.42vw, 26px);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 22px;
  background: inherit;
  border-right: 2px solid #1f1f1f;
  border-bottom: 2px solid #1f1f1f;
  transform: rotate(35deg);
}

.speech-one {
  left: 6%;
  top: 5%;
}

.speech-one::after {
  right: 36px;
  bottom: -11px;
}

.speech-two {
  left: 39%;
  top: 7%;
}

.speech-two::after {
  left: 25px;
  bottom: -18px;
  transform: rotate(58deg);
}

.speech-three {
  right: 21%;
  top: 10%;
}

.speech-three::after {
  right: 22px;
  bottom: -16px;
}

.speech-four {
  right: 20%;
  bottom: 17%;
  max-width: 190px;
  padding: 8px 16px;
  font-size: clamp(13px, 1.25vw, 22px);
}

.speech-four::after {
  left: 22px;
  top: -10px;
  transform: rotate(218deg);
}

.chaos-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  min-height: 69px;
  padding: 0 22px;
  color: #f4f0e8;
  background: rgba(46, 20, 17, 0.92);
  font-size: clamp(17px, 1.7vw, 32px);
  font-weight: 800;
}

.chaos-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 0;
  white-space: nowrap;
}

.chaos-strip b {
  color: #ff432e;
  font-size: 1.35em;
  line-height: 1;
}

.chaos-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.chaos-dots span {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
}

.chaos-dots .is-current {
  background: #0797ff;
}

.chaos-caption {
  width: min(998px, 100%);
  margin: 16px auto 0;
  color: var(--white);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.how-section {
  margin-top: 72px;
  padding: 0 0 18px;
}

.how-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 42px;
  text-align: center;
}

.how-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 4vw, 62px);
  font-weight: 800;
  line-height: 1.05;
}

.how-heading p {
  margin: 0;
  color: var(--white);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 800;
  line-height: 1.2;
}

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

.how-card {
  display: grid;
  justify-items: center;
  min-height: 432px;
  padding: 38px 28px 34px;
  color: var(--white);
  text-align: center;
  background: rgba(0, 25, 66, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
}

.how-visual {
  position: relative;
  width: min(320px, 100%);
  height: 228px;
  margin-bottom: 18px;
}

.how-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.how-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(25px, 1.8vw, 31px);
  font-weight: 800;
  line-height: 1.12;
}

.how-card p {
  margin: 0;
  color: var(--white);
  font-size: clamp(19px, 1.45vw, 25px);
  font-weight: 500;
  line-height: 1.25;
}

.commission-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  padding-top: 20px;
  color: var(--white);
  border-top: 5px solid var(--yellow);
  font-size: clamp(29px, 2.6vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
}

.commission-banner strong {
  color: var(--yellow);
}

.partners-section {
  margin-top: 66px;
  padding: 10px 0 24px;
}

.partners-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 44px;
  text-align: center;
}

.partners-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.08;
}

.partners-heading p {
  margin: 0;
  color: var(--white);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 700;
  line-height: 1.25;
}

.partners-heading strong {
  color: var(--yellow);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.partner-card {
  overflow: hidden;
  min-height: 458px;
  background: #132263;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
}

.partner-photo {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: #5c7895 url("assets/experienced-clients-sheet.png") center / 400% 200% no-repeat;
}

.partner-photo::before,
.partner-photo::after {
  content: "";
  position: absolute;
}

.partner-photo::before {
  display: none;
  left: 50%;
  bottom: 62px;
  width: 126px;
  height: 156px;
  background: linear-gradient(180deg, #cc8b5d 0 28%, #1e385d 29% 100%);
  border-radius: 60px 60px 14px 14px;
  transform: translateX(-50%);
  box-shadow: 0 -78px 0 -42px #141922;
}

.partner-photo::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 128px;
  background: linear-gradient(180deg, rgba(0, 25, 66, 0), rgba(0, 25, 66, 0.96));
}

.client-one {
  background-position: 0% 0%;
}

.client-two {
  background-position: 33.333% 0%;
}

.client-three {
  background-position: 66.666% 0%;
}

.client-four {
  background-position: 100% 0%;
}

.client-five {
  background-position: 0% 100%;
}

.client-six {
  background-position: 33.333% 100%;
}

.client-seven {
  background-position: 66.666% 100%;
}

.client-eight {
  background-position: 100% 100%;
}

.partner-one {
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.65), transparent 24%),
    linear-gradient(135deg, #c9d2dc 0%, #e7eef3 26%, #a1b5c7 52%, #46657b 100%);
}

.partner-two {
  background:
    radial-gradient(circle at 64% 12%, rgba(255, 255, 255, 0.82), transparent 22%),
    linear-gradient(135deg, #91b2d3 0%, #dfe8ee 42%, #586c7e 100%);
}

.partner-three {
  background:
    linear-gradient(90deg, rgba(191, 214, 210, 0.85), rgba(103, 144, 145, 0.55)),
    linear-gradient(135deg, #d2c7a6, #77a2a7);
}

.partner-four {
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.78), rgba(238, 240, 240, 0.2)),
    linear-gradient(135deg, #222, #ce3434 28%, #d9e2e7 65%, #6d8a6e);
}

.partner-five {
  background: linear-gradient(135deg, #c5dfdf, #e8f4d4 45%, #7b9a70 100%);
}

.partner-six {
  background: linear-gradient(135deg, #d4c3af, #e6e2d7 48%, #8a9f80 100%);
}

.partner-seven {
  background: linear-gradient(135deg, #8a5d5b, #312a2f 45%, #d3b493 100%);
}

.partner-eight {
  background: linear-gradient(135deg, #93c9f1, #d7e6ef 45%, #6a7890 100%);
}

.partner-two::before,
.partner-seven::before {
  background: linear-gradient(180deg, #bd8058 0 28%, #111827 29% 100%);
  width: 140px;
}

.partner-three::before {
  background: linear-gradient(180deg, #c9885b 0 28%, #c49b27 29% 100%);
}

.partner-four::before {
  background: linear-gradient(180deg, #c8865a 0 28%, #93a728 29% 100%);
}

.verified-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 12px;
  color: var(--white);
  background: #25c42d;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
}

.verified-badge::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 7px;
  background: var(--white);
  clip-path: polygon(50% 0, 62% 18%, 84% 12%, 88% 35%, 100% 50%, 84% 65%, 88% 88%, 62% 82%, 50% 100%, 38% 82%, 12% 88%, 16% 65%, 0 50%, 16% 35%, 12% 12%, 38% 18%);
}

.experience-pill {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 37px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(7, 17, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
}

.experience-pill::before {
  content: "";
  width: 17px;
  height: 17px;
  margin-right: 8px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  box-shadow: inset 0 -5px 0 -2px var(--yellow);
}

.partner-info {
  padding: 20px 18px 22px;
  text-align: center;
}

.partner-info h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.partner-info p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 800;
}

.pin-small {
  position: relative;
  flex: 0 0 auto;
  width: 13px;
  height: 18px;
  background: var(--yellow);
  border-radius: 50% 50% 55% 55%;
  transform: rotate(45deg);
}

.pin-small::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 5px;
  height: 5px;
  background: #132263;
  border-radius: 50%;
}

.support-section {
  margin-top: 66px;
  padding: 2px 0 28px;
}

.partner-note {
  width: min(720px, 100%);
  margin: 0 auto 92px;
  color: var(--white);
  font-size: clamp(22px, 1.6vw, 25px);
  font-weight: 800;
  line-height: 1.32;
  text-align: center;
}

.partner-note strong {
  color: var(--yellow);
}

.support-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
  color: var(--white);
  text-align: center;
}

.support-heading h2 {
  margin: 0;
  font-size: clamp(42px, 3.5vw, 49px);
  font-weight: 800;
  line-height: 1.1;
}

.support-heading p {
  margin: 0;
  font-size: clamp(22px, 1.7vw, 25px);
  font-weight: 700;
  line-height: 1.28;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(1508px, 100%);
  margin: 0 auto;
}

.support-card {
  overflow: hidden;
  min-height: 362px;
  background: #142464;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
}

.support-photo {
  position: relative;
  min-height: 301px;
  overflow: hidden;
}

.support-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(0, 25, 66, 0), rgba(0, 25, 66, 0.96));
}

.support-photo img {
  display: block;
  width: 100%;
  height: 301px;
  object-fit: cover;
}

.support-pill {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 29px;
  padding: 0 11px;
  color: var(--white);
  background: rgba(6, 18, 42, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.support-pill span {
  position: relative;
  width: 15px;
  height: 15px;
  background: #1f84ff;
  border-radius: 50%;
}

.support-pill span::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 9px;
  height: 7px;
  border: 2px solid #fff;
  border-top: 0;
  border-radius: 0 0 7px 7px;
}

.support-card h3 {
  display: grid;
  place-items: center;
  min-height: 60px;
  margin: 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1508px, 100%);
  min-height: 69px;
  margin: 32px auto 0;
  overflow: hidden;
  background: #142464;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
}

.support-options div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 17px;
  font-weight: 800;
}

.support-options div:last-child {
  border-right: 0;
}

.support-option-icon {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  background: #f4f6ff;
  border-radius: 7px;
}

.support-option-icon::before,
.support-option-icon::after {
  content: "";
  position: absolute;
}

.chat-icon::before {
  width: 18px;
  height: 14px;
  background: #315cca;
  border-radius: 4px;
}

.chat-icon::after {
  left: 10px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  background: #315cca;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.booking-icon::before {
  width: 16px;
  height: 20px;
  border: 3px solid #315cca;
  border-radius: 2px;
}

.booking-icon::after {
  width: 9px;
  height: 2px;
  background: #315cca;
  box-shadow: 0 5px 0 #315cca;
}

.emergency-icon {
  background: #e83131;
}

.emergency-icon::before,
.emergency-icon::after {
  background: var(--white);
  border-radius: 2px;
}

.emergency-icon::before {
  width: 18px;
  height: 7px;
}

.emergency-icon::after {
  width: 7px;
  height: 18px;
}

.final-footer {
  margin-top: 72px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.delhi-band {
  display: grid;
  justify-items: center;
  min-height: 432px;
  padding: 76px 20px 58px;
  background: linear-gradient(180deg, #061b45 0%, #05007a 100%);
}

.delhi-band p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(31px, 2.6vw, 43px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.delhi-band p span {
  color: #e92b2b;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 0.95em;
  font-weight: 800;
}

.delhi-skyline {
  width: min(780px, 92vw);
  height: auto;
  color: rgba(255, 255, 255, 0.9);
}

.delhi-skyline path,
.delhi-skyline circle,
.delhi-skyline rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links-band {
  padding: 28px clamp(20px, 10vw, 198px) 22px;
  color: var(--white);
  background: #000;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.25fr;
  gap: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.footer-columns div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-columns h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.footer-columns a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.social-links strong {
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.social-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: #000;
  background: #fff;
  border-radius: 5px;
}

.linkedin::before {
  content: "in";
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.instagram {
  color: #fff;
  background: transparent;
  border: 3px solid #fff;
  border-radius: 8px;
}

.instagram::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.instagram::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 4px;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}

.youtube {
  border-radius: 7px;
}

.youtube::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #000;
}

.delhi { background: linear-gradient(180deg, #d7c19c, #e9d2a4 50%, #a2c0cf 100%); }
.jaipur { background: linear-gradient(180deg, #f0bd82, #e8a04d 51%, #a85f39 100%); }
.chandigarh { background: linear-gradient(180deg, #81a5b7, #5b7d8e 50%, #234b5c 100%); }
.agra { background: linear-gradient(180deg, #f2a978, #e6c2a5 48%, #6f7b78 100%); }
.ahmedabad { background: linear-gradient(180deg, #91cef0, #c9d4d0 50%, #7b9289 100%); }
.mumbai { background: linear-gradient(180deg, #b8d3f1, #a9b5c4 46%, #334964 100%); }
.pune { background: linear-gradient(180deg, #d9e7ea, #b4c3bf 52%, #7b8f7d 100%); }
.lucknow { background: linear-gradient(180deg, #bcd1c4, #d8c693 50%, #6f735d 100%); }
.patna { background: linear-gradient(180deg, #dbe4d5, #f3d6a6 50%, #a1563a 100%); }
.indore { background: linear-gradient(180deg, #48a8dc, #dba76a 50%, #5fa05e 100%); }
.dehradun { background: linear-gradient(180deg, #a1c0eb, #6c86ba 51%, #11295c 100%); }
.varanasi { background: linear-gradient(180deg, #e0a159, #8d4c33 48%, #533023 100%); }

.whatsapp-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  background: #25d366;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  transition: transform 160ms ease;
}

.whatsapp-button span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 4px solid #fff;
  border-radius: 50%;
}

.whatsapp-button span::before {
  content: "";
  position: absolute;
  left: -2px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: #25d366;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-18deg);
}

.whatsapp-button span::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  width: 11px;
  height: 16px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  border-radius: 0 0 10px 0;
  transform: rotate(-38deg);
}

.whatsapp-button:hover {
  transform: translateY(-2px);
}

.whatsapp-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.65);
  outline-offset: 4px;
}

@media (max-width: 1260px) {
  .booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .booking-card.is-round-trip .booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .booking-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-row {
    grid-template-columns: repeat(6, minmax(92px, 1fr));
  }

  .driver-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chaos-carousel {
    grid-template-columns: 52px minmax(0, 998px) 52px;
    gap: 10px;
  }

  .chaos-arrow {
    width: 44px;
    height: 44px;
    font-size: 40px;
  }

  .chaos-strip {
    padding: 0 14px;
  }

  .how-grid {
    gap: 20px;
  }

  .how-card {
    padding-right: 18px;
    padding-left: 18px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 560px);
    padding-top: 22px;
  }

  .brand-lockup {
    font-size: 42px;
  }

  .brand-header p {
    font-size: 19px;
  }

  .booking-card {
    min-height: 0;
    padding: 20px 14px 22px;
    border-radius: 20px;
  }

  .commission-line {
    margin-bottom: 18px;
    font-size: 17px;
  }

  .trip-toggle {
    height: 46px;
    margin-bottom: 24px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .booking-card.is-round-trip .booking-form {
    grid-template-columns: 1fr;
  }

  .field-control input,
  .field-control select,
  .field-control textarea {
    font-size: 17px;
  }

  .field label {
    font-size: 14px;
  }

  .filters {
    margin-top: 4px;
  }

  .filter-tabs.vehicle-only {
    width: min(210px, 100%);
    margin-bottom: 18px;
  }

  .booking-details {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 8px auto 22px;
  }

  .booking-details .field-wide {
    grid-column: auto;
  }

  .fare-card {
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

  .fare-card div {
    min-height: 64px;
    padding: 13px 16px;
  }

  .fare-card span {
    font-size: 13px;
  }

  .fare-card strong {
    font-size: 15px;
  }

  .fare-card .fare-total strong {
    font-size: 20px;
  }

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

  .filter-tab {
    min-height: 45px;
    font-size: 16px;
  }

  .vehicle-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 12px;
    margin-bottom: 22px;
  }

  .vehicle-chip {
    min-height: 56px;
    font-size: 15px;
  }

  .vehicle-art {
    width: 54px;
    height: 32px;
  }

  .terms-check {
    margin-bottom: 14px;
    padding: 0 6px;
    font-size: 14px;
    text-align: left;
  }

  .find-button {
    width: 100%;
    min-height: 58px;
    font-size: 19px;
    border-radius: 13px;
  }

  .destination-row {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .destination {
    flex: 0 0 92px;
    scroll-snap-align: start;
  }

  .destination-photo {
    width: 86px;
  }

  .drivers-section {
    margin-top: 30px;
  }

  .section-title-row h2 {
    font-size: 22px;
  }

  .driver-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .driver-card {
    flex: 0 0 270px;
    min-height: 166px;
    scroll-snap-align: start;
  }

  .driver-card h3 {
    font-size: 21px;
  }

  .chaos-section {
    margin-top: 28px;
    padding-top: 50px;
  }

  .chaos-carousel {
    grid-template-columns: 1fr;
  }

  .chaos-arrow {
    display: none;
  }

  .chaos-image {
    aspect-ratio: 4 / 5;
  }

  .chaos-image img {
    object-position: center;
  }

  .speech-bubble {
    max-width: 145px;
    padding: 7px 10px;
    font-size: 14px;
  }

  .speech-two {
    left: 35%;
  }

  .speech-three {
    right: 4%;
  }

  .speech-four {
    right: 8%;
    bottom: 24%;
    max-width: 142px;
    font-size: 13px;
  }

  .chaos-strip {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 105px;
    padding: 10px 16px;
    font-size: 18px;
  }

  .chaos-strip span {
    justify-content: flex-start;
  }

  .chaos-caption {
    font-size: 22px;
    text-align: center;
  }

  .how-section {
    margin-top: 54px;
  }

  .how-heading {
    margin-bottom: 26px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .how-card {
    min-height: 376px;
    padding: 28px 18px 26px;
    border-radius: 22px;
  }

  .how-visual {
    height: 190px;
    transform: scale(0.9);
    transform-origin: center top;
    margin-bottom: -2px;
  }

  .commission-banner {
    flex-wrap: wrap;
    margin-top: 26px;
    padding-top: 16px;
    font-size: 29px;
  }

  .partners-section {
    margin-top: 50px;
  }

  .partners-heading {
    margin-bottom: 28px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .partner-card {
    min-height: 0;
    border-radius: 22px;
  }

  .partner-photo {
    min-height: 300px;
  }

  .partner-info h3 {
    font-size: 24px;
  }

  .partner-info p {
    font-size: 17px;
  }

  .partner-note {
    margin-bottom: 52px;
  }

  .support-section {
    margin-top: 50px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-card {
    border-radius: 18px;
  }

  .support-options {
    grid-template-columns: 1fr;
  }

  .support-options div {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .support-options div:last-child {
    border-bottom: 0;
  }

  .final-footer {
    margin-top: 56px;
  }

  .delhi-band {
    min-height: 330px;
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .footer-links-band {
    padding: 26px 18px 24px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom p {
    font-size: 15px;
  }

  .whatsapp-button {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-button span {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 430px) {
  .page-shell {
    width: min(100% - 14px, 420px);
  }

  .brand-lockup {
    font-size: 36px;
  }

  .brand-header p {
    font-size: 17px;
  }

  .booking-card {
    padding-right: 12px;
    padding-left: 12px;
  }

  .toggle-option,
  .filter-tab {
    gap: 8px;
    font-size: 15px;
  }

  .radio-dot {
    width: 17px;
    height: 17px;
  }

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

  .field-control input,
  .field-control select,
  .field-control textarea {
    font-size: 16px;
  }

  .fare-card div {
    padding: 12px 14px;
  }

  .find-button {
    min-height: 56px;
    font-size: 18px;
  }
}
