:root {
  --navy: #082447;
  --navy-2: #123458;
  --teal: #008a8c;
  --teal-dark: #006f76;
  --orange: #ff4a12;
  --orange-2: #ff6b1a;
  --gold: #ffab1a;
  --sky: #eaf9fb;
  --ink: #0a2344;
  --muted: #5c6f89;
  --line: #dbe6ef;
  --soft: #f6fafc;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(8, 36, 71, 0.14);
  --shadow-soft: 0 10px 30px rgba(8, 36, 71, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f5f8fb;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.tb-ui-icon {
  --fa-display: inline-grid;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  color: currentColor;
}

.tb-icon-badge,
.tb-icon-soft,
.tb-icon-heading,
.tb-icon-cta {
  box-shadow: 0 12px 24px rgba(8, 36, 71, 0.12);
}

.tb-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #fff;
  font-size: 22px;
}

.tb-icon-badge.teal,
.tb-icon-heading.teal,
.tb-icon-soft.teal {
  background: linear-gradient(135deg, var(--teal), #00b7b5);
}

.tb-icon-badge.orange,
.tb-icon-heading.orange,
.tb-icon-soft.orange {
  background: linear-gradient(135deg, var(--orange), #ff8a20);
}

.tb-icon-badge.gold,
.tb-icon-heading.gold,
.tb-icon-soft.gold {
  background: linear-gradient(135deg, #ff9f0a, #ffd15a);
}

.tb-icon-badge.navy,
.tb-icon-heading.navy,
.tb-icon-soft.navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.tb-icon-heading.blue,
.tb-icon-soft.blue {
  background: linear-gradient(135deg, #0b72ff, #2fc7ff);
}

.tb-icon-soft {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.tb-icon-soft .tb-fa-icon {
  line-height: 1;
  vertical-align: 0;
}

.tb-icon-heading {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  color: #fff;
  font-size: 17px;
}

.tb-icon-inline,
.tb-icon-arrow,
.tb-icon-mini,
.tb-icon-input {
  width: auto;
  height: auto;
}

.tb-icon-input {
  min-width: 18px;
  color: var(--navy);
  font-size: 15px;
}

.tb-icon-input.orange {
  color: var(--orange);
}

.tb-icon-input.navy {
  color: var(--navy);
}

.tb-icon-mini {
  color: var(--orange);
  font-size: 13px;
}

.tb-icon-mini.teal {
  color: var(--teal);
}

.tb-icon-mini.orange {
  color: var(--orange);
}

.tb-icon-mini.gold {
  color: var(--gold);
}

.tb-icon-mini.navy {
  color: var(--navy);
}

.tb-icon-arrow {
  font-size: 0.88em;
}

.tb-icon-cta {
  width: 50px;
  height: 50px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  font-size: 22px;
}

.tb-star {
  color: var(--gold);
  font-size: 13px;
}

.assurance-grid .tb-icon-badge {
  margin-bottom: 2px;
}

.hero-stats .tb-icon-soft {
  grid-row: 1 / 3;
  align-self: center;
  justify-self: center;
}

.tab .tb-icon-inline {
  font-size: 15px;
}

.input-wrap .tb-icon-input.right-icon {
  margin-left: auto;
  color: var(--navy);
  opacity: 0.74;
}

.fare-button .tb-icon-arrow,
.check-fare .tb-icon-arrow {
  color: currentColor;
}

.quick-links .tb-icon-soft {
  width: 32px;
  height: 32px;
  font-size: 14px;
}

.section-head h2 .tb-icon-heading,
.fare-panel h2 .tb-icon-heading,
.reviews-head h2 .tb-icon-heading {
  margin-right: 2px;
}

.features .tb-icon-mini,
.mini-checks .tb-icon-mini,
.destination-panel li .tb-icon-mini {
  font-size: 14px;
}

.cab-tabs .tb-icon-inline {
  font-size: 16px;
}

.why-grid .tb-icon-badge {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  font-size: 25px;
}

.cta-icons .tb-icon-cta {
  margin-bottom: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 230, 239, 0.8);
  box-shadow: 0 8px 26px rgba(8, 36, 71, 0.06);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(1760px, calc(100% - 64px));
  min-height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px 1fr auto;
  grid-template-areas:
    "brand meta actions"
    "brand nav actions";
  align-items: center;
  column-gap: 28px;
}

.brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex: 0 0 auto;
  background: var(--white);
  border-radius: 78px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  color: var(--navy);
  font-size: 42px;
  font-weight: 800;
  line-height: 0.95;
}

.brand-name strong {
  color: var(--orange);
}

.brand-line {
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.header-meta {
  grid-area: meta;
  display: flex;
  justify-content: space-around;
  gap: 24px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.header-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.main-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  align-self: end;
  height: 52px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 17px 0;
  white-space: nowrap;
}

.main-nav a.active {
  color: var(--orange);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
}

.down {
  display: inline-block;
  transform: translateY(-1px);
}

.nav-chevron {
  width: auto;
  height: auto;
  margin-left: 3px;
  vertical-align: -2px;
}

.nav-toggle {
  grid-area: toggle;
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy);
  background: #fff9f5;
  border: 1px solid #ffd5c1;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(8, 36, 71, 0.08);
}

.nav-toggle .tb-fa-icon {
  font-size: 18px;
}

.nav-toggle .nav-toggle-close,
.site-header.nav-open .nav-toggle .nav-toggle-open {
  display: none !important;
}

.site-header.nav-open .nav-toggle .nav-toggle-close {
  display: inline-block !important;
}

.header-actions {
  grid-area: actions;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.call-pill,
.book-pill,
.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  border-radius: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.call-pill {
  min-width: 202px;
  padding: 0 22px;
  color: var(--navy);
  background: #fff9f5;
  border: 1px solid #ffd5c1;
}

.book-pill {
  min-width: 166px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  box-shadow: 0 14px 28px rgba(255, 74, 18, 0.22);
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background: var(--soft);
}

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

.hero-media {
  background-image: url("/assets/img/bg/hero-bg.webp");
  background-size: cover;
  background-position: center center;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.8) 28%, rgba(255, 255, 255, 0.2) 54%, rgba(255, 255, 255, 0.62) 100%),
    linear-gradient(0deg, rgba(8, 36, 71, 0.22), rgba(8, 36, 71, 0));
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1760px, calc(100% - 64px));
  min-height: 790px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(540px, 1fr) 520px;
  grid-template-rows: 1fr;
  gap: 26px 44px;
  align-items: center;
  padding: 36px 0 34px;
}

.hero-copy {
  align-self: start;
  padding-top: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--teal-dark);
  background: rgba(235, 255, 255, 0.9);
  border: 1px solid rgba(0, 138, 140, 0.25);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 28px 0 18px;
  color: var(--navy);
  font-size: 78px;
  line-height: 1.08;
  font-weight: 900;
}

.hero h1 span {
  color: var(--orange);
}

.hero-copy p {
  max-width: 600px;
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 138px);
  gap: 18px;
  margin-top: 30px;
}

.assurance-grid article {
  min-height: 160px;
  padding: 22px 14px 18px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(219, 230, 239, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.assurance-grid strong {
  font-size: 14px;
  line-height: 1.2;
}

.hero-car {
    position: absolute;
    z-index: 1;
    width: 500px;
    height: auto;
    left: 44%;
    margin-left: -6%;
    bottom: 26px;
    filter: drop-shadow(0 14px 12px rgba(8, 36, 71, 0.35));
    pointer-events: none;

}

.booking-card {
  position: relative;
  z-index: 3;
  width: 85%;
  max-width: 520px;
  padding: 22px 26px 18px;
  background: rgba(255, 255, 255, 0.50);
  border: 1px solid rgba(219, 230, 239, 0.9);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.trip-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 56px;
  padding: 0;
  margin-bottom: 16px;
  background: #f4f7fb;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.tab {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--navy);
  border-radius: 18px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tab.active {
  color: #fff;
  background: linear-gradient(180deg, var(--teal), var(--teal-dark));
  box-shadow: 0 12px 20px rgba(0, 138, 140, 0.2);
}

.tab.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 18px;
  height: 18px;
  background: var(--teal-dark);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 3px;
}

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

.field {
  margin-bottom: 12px;
}

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

.field label,
.fare-panel label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.input-wrap {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: inset 0 1px 0 rgba(8, 36, 71, 0.02);
}

.input-wrap .right-icon {
  margin-left: auto;
  color: var(--navy);
  width: 16px;
  height: 16px;
}

.input-wrap input,
.input-wrap select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--navy);
  background: transparent;
  font-size: 14px;
}

.input-wrap input::placeholder {
  color: #788ca3;
}

.phone-field span {
  color: var(--navy);
  font-weight: 800;
}

.fare-button,
.check-fare {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 74, 18, 0.2);
}

.fare-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.quick-links a {
  min-height: 72px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  color: var(--navy);
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

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

.hero-stats {
  /* In flow under the assurance cards (not pinned to the hero bottom), so the
     road + car strip at the bottom of the photo stays fully visible. Width
     matches the assurance grid above and ends before the centre-anchored car. */
  width: min(640px, 100%);
  margin-top: 26px;
  min-height: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(219, 230, 239, 0.95);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-stats div {
  min-height: 74px;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  column-gap: 11px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.google-g {
  grid-row: 1 / 3;
  align-self: center;
  justify-self: center;
}

.hero-stats strong {
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
}

.hero-stats span {
  color: var(--navy);
  font-size: 12px;
}

.routes-section,
.fleet-fare-grid,
.why-section,
.info-grid,
.faq-section {
  width: min(1760px, calc(100% - 64px));
  margin: 0 auto;
}

.routes-section {
  position: relative;
  padding: 28px 0 16px;
}

.section-head,
.panel-head,
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-head h2,
.panel-head h2,
.fare-panel h2,
.why-section h2,
.destination-panel h2,
.tourist-panel h2,
.reviews-panel h2,
.faq-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}

.section-head h2,
.fare-panel h2,
.faq-section h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-head a,
.panel-head a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.section-title-copy {
  display: grid;
  gap: 6px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  color: var(--teal);
  background: rgba(0, 137, 138, 0.09);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.section-title-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(220px, 1fr));
  gap: 18px;
}

.route-card {
  position: relative;
  min-height: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(8, 36, 71, 0.05);
  text-align: left;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.route-card:hover {
  border-color: rgba(255, 74, 18, 0.28);
  box-shadow: 0 18px 34px rgba(8, 36, 71, 0.1);
  transform: translateY(-3px);
}

.route-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  opacity: 0;
}

.route-card.popular {
  border-color: rgba(255, 74, 18, 0.34);
  box-shadow: 0 16px 34px rgba(255, 74, 18, 0.08);
}

.route-card.popular::before {
  opacity: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  padding: 0 8px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}

.tag::before {
  display: none;
}

.tag .tb-ui-icon {
  color: currentColor;
}

.route-card-top,
.route-meta,
.route-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.route-kicker,
.route-badge,
.route-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.route-kicker {
  padding: 0 10px;
  color: var(--teal);
  background: rgba(0, 137, 138, 0.09);
}

.route-badge {
  padding: 0 9px;
  color: var(--orange);
  background: rgba(255, 74, 18, 0.1);
}

.route-cities {
  display: grid;
  gap: 8px;
}

.route-city {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.route-city > .tb-ui-icon {
  justify-self: center;
}

.route-city span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.route-city strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.route-connector {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding-left: 13px;
  color: var(--orange);
}

.route-connector span {
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 137, 138, 0.2), rgba(255, 74, 18, 0.34));
}

.route-meta {
  flex-wrap: wrap;
  margin-top: 2px;
}

.route-meta span {
  padding: 0 9px;
  color: var(--muted);
  background: var(--soft);
}

.route-card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.route-card small {
  display: grid;
  gap: 1px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.route-card small strong {
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
}

.route-card-footer > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 96px;
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
}

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

.coverage-grid.is-paginated .coverage-card {
  display: none;
}

.coverage-grid.is-paginated .coverage-card.is-visible {
  display: flex;
}

.coverage-pagination {
  margin-top: 18px;
}

.coverage-card {
  position: relative;
  min-height: 204px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 85% 8%, rgba(0, 137, 138, 0.11), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(8, 36, 71, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.coverage-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}

.coverage-card:hover {
  border-color: rgba(0, 137, 138, 0.28);
  box-shadow: 0 18px 34px rgba(8, 36, 71, 0.1);
  transform: translateY(-3px);
}

.coverage-card-top,
.coverage-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.coverage-card-top span,
.coverage-card-top small,
.coverage-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.coverage-card-top span {
  color: var(--teal);
  background: rgba(0, 137, 138, 0.09);
}

.coverage-card-top small {
  color: var(--orange);
  background: rgba(255, 74, 18, 0.1);
}

.coverage-card h3 {
  margin: 2px 0 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.coverage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.coverage-card-meta {
  justify-content: flex-start;
  margin-top: auto;
}

.coverage-card-meta span {
  color: var(--muted);
  background: var(--soft);
}

.coverage-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 13px;
  width: fit-content;
  color: #fff;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
}

.fleet-fare-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: start;
  gap: 22px;
  padding: 20px 0 22px;
}

.fleet-panel,
.fare-panel,
.why-section,
.destination-panel,
.tourist-panel,
.reviews-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(8, 36, 71, 0.04);
}

.fleet-panel {
  padding: 22px 24px 26px;
}

.panel-head {
  margin-bottom: 14px;
}

.panel-head p,
.fare-panel p,
.destination-panel p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.fleet-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2px 0 18px;
}

.fleet-summary span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 12px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.fleet-grid {
  display: grid;
  /* auto-fit instead of a fixed 4 columns: .fleet-panel is now ~66% width
     (shares its row with .fare-panel), so card count must follow the space
     actually available rather than assuming full container width. */
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.vehicle-card {
  position: relative;
  min-height: 390px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.9), rgba(255, 255, 255, 0) 42%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 12px 26px rgba(8, 36, 71, 0.04);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  opacity: 0;
}

.vehicle-card:hover {
  border-color: rgba(0, 137, 138, 0.28);
  box-shadow: 0 18px 34px rgba(8, 36, 71, 0.1);
  transform: translateY(-3px);
}

.vehicle-card.selected {
  border-color: rgba(255, 74, 18, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 248, 244, 0.98), rgba(255, 255, 255, 0) 50%),
    #fff;
  box-shadow: 0 16px 32px rgba(255, 74, 18, 0.08);
}

.vehicle-card.selected::before {
  opacity: 1;
}

.vehicle-card-top,
.vehicle-specs,
.vehicle-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.vehicle-type,
.vehicle-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.vehicle-type {
  padding: 0 10px;
  color: var(--teal);
  background: rgba(0, 137, 138, 0.09);
}

.vehicle-badge {
  padding: 0 9px;
  color: var(--orange);
  background: rgba(255, 74, 18, 0.1);
}

.vehicle-image {
  min-height: 132px;
  display: grid;
  place-items: center;
  margin: 2px 0 0;
  background:
    radial-gradient(circle at 50% 78%, rgba(8, 36, 71, 0.12), transparent 33%),
    linear-gradient(180deg, rgba(245, 249, 253, 0.6), rgba(255, 255, 255, 0));
  border-radius: 12px;
}

.vehicle-image img {
  width: 100%;
  max-width: 230px;
  height: 126px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 12px 10px rgba(8, 36, 71, 0.16));
}

.vehicle-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.vehicle-card p {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.vehicle-specs {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.vehicle-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  color: var(--navy);
  background: var(--soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.features span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.vehicle-rate {
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.vehicle-rate span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.vehicle-rate strong {
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
}

.fare-panel {
  padding: 22px 28px;
}

.fare-panel input {
  width: 100%;
  min-height: 54px;
  margin-bottom: 18px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  color: var(--navy);
}

.cab-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.cab-tabs button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.cab-tabs button.active {
  color: #0b72ff;
  background: #eef6ff;
  border-color: #0b72ff;
}

.fare-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0 6px;
}

.fare-total span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.fare-total b {
  color: var(--orange);
  font-size: 38px;
  line-height: 1;
}

.fare-panel small {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
}

.fare-panel small:empty {
  display: none;
  margin: 0;
}

#tbEstimateBetaNote {
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--teal);
}

.check-fare {
  min-height: 48px;
  font-size: 16px;
}

.mini-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.mini-checks span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.why-section {
  padding: 22px 34px 26px;
}

.why-section h2 {
  margin-bottom: 14px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.why-grid article {
  min-height: 140px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  padding: 0 18px;
  text-align: center;
  border-right: 1px solid #cbd8e5;
}

.why-grid article:last-child {
  border-right: 0;
}

.why-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.why-grid p {
  max-width: 160px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.82fr 1.28fr;
  align-items: stretch;
  gap: 18px;
  padding: 20px 0 20px;
}

.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 10px;
  color: var(--teal);
  background: rgba(0, 137, 138, 0.09);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.destination-panel {
  min-height: 325px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  background:
    linear-gradient(135deg, rgba(0, 137, 138, 0.05), rgba(255, 255, 255, 0) 52%),
    #fff;
}

.destination-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.destination-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 6px;
}

.destination-stats span {
  min-height: 58px;
  padding: 10px;
  display: grid;
  align-content: center;
  gap: 2px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
}

.destination-stats strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
}

.destination-panel ul {
  list-style: none;
  margin: 16px 0 20px;
  padding: 0;
  display: grid;
  gap: 11px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.destination-panel li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.green-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  margin-top: auto;
  padding: 0 18px;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.map-card {
  position: relative;
  min-height: 277px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 138, 140, 0.12), rgba(11, 114, 255, 0.04)),
    repeating-linear-gradient(110deg, transparent 0 22px, rgba(255, 255, 255, 0.4) 23px 24px),
    radial-gradient(circle at 54% 42%, rgba(255, 255, 255, 0.8) 0 28%, transparent 29%),
    #edf9fb;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(0, 137, 138, 0.08);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 12px 38px 18px 28px;
  background: rgba(0, 138, 140, 0.12);
  border: 1px solid rgba(0, 138, 140, 0.18);
  clip-path: polygon(35% 0, 68% 9%, 88% 34%, 77% 64%, 61% 100%, 30% 86%, 20% 55%, 8% 25%);
}

.map-card > * {
  position: relative;
  z-index: 1;
}

.pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
}

.pin::before {
  content: "\f3c5";
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--orange);
  font-family: "Font Awesome 7 Free";
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  filter: drop-shadow(0 3px 6px rgba(8, 36, 71, 0.18));
}

.chennai { right: 13px; top: 22px; }
.salem { right: 61px; top: 83px; }
.coimbatore { left: 18px; top: 105px; }
.trichy { right: 42px; top: 126px; }
.madurai { right: 66px; top: 184px; }
.tirunelveli { left: 64px; bottom: 26px; }

.salem::before,
.trichy::before {
  color: var(--teal);
}

.coimbatore::before,
.tirunelveli::before {
  color: #0b72ff;
}

.madurai::before {
  color: var(--gold);
}

.map-card strong {
  position: absolute;
  right: 25px;
  bottom: 12px;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  text-align: center;
  font-size: 21px;
}

.map-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.tourist-panel,
.reviews-panel {
  padding: 24px;
}

.tourist-panel {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.95), rgba(255, 255, 255, 0) 42%),
    #fff;
}

.tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 18px 0 20px;
}

.tour-grid a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 8px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(8, 36, 71, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.tour-grid a:hover {
  border-color: rgba(255, 74, 18, 0.28);
  transform: translateY(-2px);
}

.tour-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.tour-grid small {
  color: var(--muted);
  font-size: 12px;
}

.tour-img {
  display: block;
  height: 76px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -40px 40px rgba(8, 36, 71, 0.12);
}

.tour-img.ooty {
  background-image: linear-gradient(145deg, rgba(11, 114, 255, 0.18), rgba(0, 138, 140, 0.02)), url("/assets/img/bg/hero-bg.webp");
  background-position: 36% 48%;
}

.tour-img.kodai {
  background-image: linear-gradient(145deg, rgba(255, 171, 26, 0.15), rgba(8, 36, 71, 0.05)), url("/assets/img/bg/hero-bg.webp");
  background-position: 57% 43%;
}

.tour-img.temple {
  background-image: linear-gradient(145deg, rgba(255, 74, 18, 0.08), rgba(0, 138, 140, 0.08)), url("/assets/img/bg/hero-bg.webp");
  background-position: 80% 30%;
}

.reviews-head {
  margin-bottom: 20px;
}

.reviews-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.review-rating-pill {
  display: inline-grid;
  place-items: center;
  min-width: 74px;
  min-height: 38px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff8a20);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

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

.review-grid article {
  min-height: 190px;
  padding: 16px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.review-score-card {
  background:
    linear-gradient(135deg, rgba(0, 137, 138, 0.1), rgba(255, 74, 18, 0.08)),
    #fff;
  border-color: rgba(0, 137, 138, 0.22);
}

.review-score-card > strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}

.review-person span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.review-person strong {
  color: var(--navy);
  font-size: 13px;
}

.stars {
  min-height: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.stars .tb-star {
  display: inline-grid;
}

.review-grid p {
  min-height: 58px;
  margin: 9px 0 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.review-grid small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.cta-band {
  position: relative;
  min-height: 170px;
  margin-top: 0;
  padding: 24px min(64px, 4vw);
  display: grid;
  grid-template-columns: 420px 1fr 760px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #009b99 0%, #007f83 45%, #043356 100%);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 520px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-band > img {
  position: relative;
  z-index: 1;
  width: 430px;
  height: auto;
  margin-left: -30px;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.18));
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  margin: 0 0 4px;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 900;
}

.cta-copy p {
  margin: 0 0 14px;
  font-weight: 700;
}

.cta-copy > div {
  display: flex;
  gap: 12px;
}

.cta-copy .book-pill,
.whatsapp-pill {
  min-height: 46px;
  min-width: 180px;
  border-radius: 8px;
  font-size: 14px;
}

.whatsapp-pill {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.cta-icons {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.cta-icons span {
  min-height: 102px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  font-weight: 900;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.site-footer {
  color: #dce9f3;
  background: linear-gradient(180deg, #082447, #061b36);
}

.footer-shell {
  width: min(1760px, calc(100% - 64px));
  margin: 0 auto;
  padding: 24px 0 32px;
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  gap: 42px;
}

.site-footer .brand {
  margin-bottom: 10px;
}

.site-footer .brand-mark {
  width: 58px;
  height: 58px;
}

.site-footer .brand-name {
  color: #fff;
  font-size: 28px;
}

.site-footer .brand-line {
  color: #e9f2f8;
  font-size: 9px;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: #dce9f3;
  font-size: 13px;
  font-weight: 600;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.footer-brand p {
  max-width: 320px;
}

.socials {
  display: flex;
  gap: 9px;
  margin-top: 12px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 12px;
}

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

.payments img {
  display: block;
  width: auto;
  height: auto;
}

.parent-service-hub {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 54px;
}

.parent-service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  padding: 30px;
  background:
    linear-gradient(120deg, rgba(234, 249, 251, 0.96), rgba(255, 255, 255, 0.98) 58%),
    linear-gradient(90deg, rgba(0, 138, 140, 0.12), rgba(255, 74, 18, 0.1));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.parent-service-hero h1 {
  max-width: 780px;
  margin: 14px 0 12px;
  color: var(--navy);
  font-size: 44px;
  line-height: 1.06;
  font-weight: 900;
}

.parent-service-hero p,
.parent-service-lead,
.parent-service-content p {
  color: var(--navy-2);
  font-size: 15px;
  font-weight: 650;
}

.parent-service-hero p {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
}

.parent-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.parent-service-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.parent-service-summary span,
.parent-service-grid article,
.parent-service-content article,
.parent-service-faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(8, 36, 71, 0.04);
}

.parent-service-summary span {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.parent-service-summary strong {
  display: block;
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.parent-service-section {
  margin-top: 22px;
}

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

.parent-service-grid article {
  min-height: 172px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.parent-service-grid h3,
.parent-service-content h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.parent-service-grid h3 {
  font-size: 18px;
}

.parent-service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.parent-city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.parent-city-grid a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(8, 36, 71, 0.04);
}

.parent-city-grid a .tb-fa-icon {
  color: var(--orange);
}

.parent-service-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.parent-service-content article {
  padding: 22px;
}

.parent-service-content h2 {
  margin-bottom: 10px;
  font-size: 23px;
}

.parent-service-content p {
  margin: 0;
}

.parent-service-faq {
  margin-top: 22px;
  padding: 22px;
}

.parent-service-faq h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 23px;
  font-weight: 900;
}

.parent-service-faq details {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.parent-service-faq details:first-of-type {
  border-top: 0;
}

.parent-service-faq summary {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.parent-service-faq p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.city-service-page {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 54px;
}

.city-service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  padding: 30px;
  background:
    linear-gradient(120deg, rgba(234, 249, 251, 0.96), rgba(255, 255, 255, 0.98) 58%),
    linear-gradient(90deg, rgba(0, 138, 140, 0.12), rgba(255, 74, 18, 0.1));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.city-service-hero h1 {
  max-width: 820px;
  margin: 14px 0 12px;
  color: var(--navy);
  font-size: 44px;
  line-height: 1.06;
  font-weight: 900;
}

.city-service-hero p,
.city-routes-section > p,
.city-service-content p {
  color: var(--navy-2);
  font-size: 15px;
  font-weight: 650;
}

.city-service-hero p {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
}

.city-service-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.city-service-summary span,
.city-service-grid article,
.city-routes-section,
.city-route-card,
.city-service-content article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(8, 36, 71, 0.04);
}

.city-service-summary span {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.city-service-summary strong {
  display: block;
  color: var(--navy);
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
}

.city-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.city-service-grid article {
  min-height: 166px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.city-service-grid h2,
.city-routes-section h2,
.city-service-content h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.city-service-grid h2 {
  font-size: 18px;
}

.city-service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.city-routes-section {
  margin-top: 22px;
  padding: 22px;
}

.city-routes-section > p {
  margin: -6px 0 16px;
}

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

.city-route-grid.is-paginated .city-route-card {
  display: none;
}

.city-route-grid.is-paginated .city-route-card.is-visible {
  display: flex;
}

.city-route-card {
  position: relative;
  min-height: 232px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 14px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.city-route-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}

.city-route-card:hover {
  border-color: rgba(255, 74, 18, 0.28);
  box-shadow: 0 18px 34px rgba(8, 36, 71, 0.1);
  transform: translateY(-3px);
}

.city-route-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.city-route-card-top span,
.city-route-card-top small {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.city-route-card-top span {
  color: var(--teal-dark);
  background: rgba(0, 138, 140, 0.1);
}

.city-route-card-top small {
  color: var(--orange);
  background: rgba(255, 74, 18, 0.1);
}

.city-route-card .route-cities {
  gap: 8px;
  padding: 0;
}

.city-route-card .route-city {
  grid-template-columns: 30px minmax(0, 1fr);
  min-height: 46px;
}

.city-route-card .route-city > .tb-ui-icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  align-self: center;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #00b7b5);
  border-radius: 10px;
  font-size: 13px;
  box-shadow: 0 10px 18px rgba(8, 36, 71, 0.1);
}

.city-route-card .route-city:last-child > .tb-ui-icon {
  background: linear-gradient(135deg, var(--orange), #ff8a20);
}

.city-route-card .route-city span,
.city-route-card .route-city strong {
  grid-column: 2;
}

.city-route-card .route-city span {
  margin-bottom: -2px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0;
}

.city-route-card .route-city strong {
  font-size: 18px;
  line-height: 1.08;
}

.city-route-card .route-connector {
  padding-left: 13px;
}

.city-route-card .route-connector .tb-fa-icon {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  color: var(--orange);
  background: #fff;
  border: 1px solid rgba(255, 74, 18, 0.18);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255, 74, 18, 0.12);
}

.city-route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.city-route-meta span {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  color: var(--navy);
  background: #f1f7fb;
  border: 1px solid rgba(219, 230, 239, 0.82);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.city-route-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 -14px -14px;
  padding: 11px 14px 14px;
  background: linear-gradient(180deg, rgba(246, 250, 252, 0.65), #fff);
  border-top: 1px solid var(--line);
}

.city-route-footer small {
  display: grid;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.city-route-footer small strong {
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
}

.city-route-footer a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: #fff;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(255, 74, 18, 0.2);
}

.city-route-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.city-route-pagination button {
  min-width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 900;
}

.city-route-pagination button.active {
  color: #fff;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  border-color: transparent;
}

.city-route-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.city-route-pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pagination-ellipsis {
  color: var(--muted);
  font-weight: 800;
  padding: 0 2px;
  user-select: none;
}

.city-route-pagination [data-route-page-status] {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.city-service-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.city-service-content article {
  padding: 22px;
}

.city-service-content h2 {
  margin-bottom: 10px;
  font-size: 23px;
}

.city-service-content p {
  margin: 0;
}

.route-detail-page {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 54px;
}

.route-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  padding: 30px;
  color: var(--navy);
  background:
    linear-gradient(120deg, rgba(234, 249, 251, 0.96), rgba(255, 255, 255, 0.98) 58%),
    linear-gradient(90deg, rgba(0, 138, 140, 0.12), rgba(255, 74, 18, 0.1));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.route-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}

.route-hero-copy,
.route-hero-card {
  position: relative;
  z-index: 1;
}

.route-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.route-detail-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  color: var(--teal-dark);
  background: rgba(0, 138, 140, 0.1);
  border: 1px solid rgba(0, 138, 140, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.route-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-size: 46px;
  line-height: 1.05;
  font-weight: 900;
}

.route-hero-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--navy-2);
  font-size: 18px;
  font-weight: 700;
}

.route-route-line {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.route-route-line > span {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(8, 36, 71, 0.06);
}

.route-route-line small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.route-route-line strong {
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.route-route-line > .tb-fa-icon {
  justify-self: center;
  color: var(--orange);
  font-size: 24px;
}

.route-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.route-primary-btn,
.route-secondary-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 900;
}

.route-primary-btn {
  color: #fff;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  box-shadow: 0 14px 26px rgba(255, 74, 18, 0.22);
}

.route-secondary-btn {
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(255, 74, 18, 0.25);
}

.route-hero-card {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 320px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 230, 239, 0.95);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.route-card-label {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.route-hero-card > strong {
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.route-hero-card > small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.route-hero-card dl {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
}

.route-hero-card dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.route-hero-card dt,
.route-hero-card dd {
  margin: 0;
}

.route-hero-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.route-hero-card dd {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.route-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.route-trust-grid article,
.route-detail-page .why-choose-us,
.route-detail-page .route-highlights,
.route-detail-page .chennai-highlights,
.route-detail-page .midway-highlights,
.route-detail-page .route-character,
.route-detail-page .faq,
.route-detail-page .main-bg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(8, 36, 71, 0.04);
}

.route-trust-grid article {
  min-height: 128px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
}

.route-trust-grid strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.route-trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.route-detail-page .why-choose-us,
.route-detail-page .route-highlights,
.route-detail-page .chennai-highlights,
.route-detail-page .midway-highlights,
.route-detail-page .route-character,
.route-detail-page .faq {
  margin: 16px 0 0;
  padding: 24px;
}

.route-detail-page h2,
.route-detail-page h3 {
  color: var(--navy);
  font-weight: 900;
}

.route-detail-page h2 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.15;
}

.route-detail-page h3 {
  margin: 18px 0 8px;
  font-size: 18px;
}

.route-detail-page p {
  color: var(--navy-2);
  font-size: 15px;
  font-weight: 600;
}

.route-detail-page .why-choose-us ul,
.route-detail-page .faq ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-detail-page .why-choose-us li,
.route-detail-page .faq li {
  position: relative;
  min-height: 48px;
  padding: 12px 14px 12px 42px;
  color: var(--navy-2);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.route-detail-page .why-choose-us li::before,
.route-detail-page .faq li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 14px;
  width: 16px;
  height: 16px;
  background: rgba(0, 138, 140, 0.1);
  border: 1px solid rgba(0, 138, 140, 0.32);
  border-radius: 50%;
}

.route-detail-page .why-choose-us li::after,
.route-detail-page .faq li::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 20px;
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
}

.route-detail-page .faq li {
  line-height: 1.45;
}

.route-detail-page .faq li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.route-detail-page .route-highlights,
.route-detail-page .chennai-highlights,
.route-detail-page .main-bg {
  color: var(--navy-2);
}

.route-detail-page .route-highlights p,
.route-detail-page .chennai-highlights p,
.route-detail-page .main-bg p {
  margin-top: 0;
}

.route-detail-page table {
  width: 100%;
  margin: 14px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.route-detail-page th,
.route-detail-page td {
  padding: 12px;
  color: var(--navy);
  border: 1px solid var(--line);
  font-size: 13px;
}

.route-detail-page th {
  background: var(--sky);
  font-weight: 900;
}

.route-detail-page .main-bg {
  padding: 24px;
}

@media (max-width: 1050px) {
  .parent-service-hero,
  .city-service-hero,
  .route-detail-hero {
    grid-template-columns: 1fr;
  }

  .parent-service-grid,
  .parent-city-grid,
  .parent-service-content,
  .city-service-grid,
  .city-route-grid,
  .city-service-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-hero-card {
    min-height: 0;
  }

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

  .fleet-fare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .parent-service-hub,
  .city-service-page,
  .route-detail-page {
    width: min(100% - 24px, 520px);
    padding: 18px 0 38px;
  }

  .parent-service-hero,
  .city-service-hero,
  .route-detail-hero {
    gap: 18px;
    padding: 22px 16px 18px;
    border-radius: 14px;
  }

  .parent-service-hero h1 {
    font-size: 31px;
  }

  .city-service-hero h1 {
    font-size: 31px;
  }

  .parent-service-hero p {
    font-size: 15px;
  }

  .city-service-hero p {
    font-size: 15px;
  }

  .parent-service-actions,
  .parent-service-summary,
  .parent-service-grid,
  .parent-city-grid,
  .parent-service-content,
  .city-service-summary,
  .city-service-grid,
  .city-route-grid,
  .city-service-content {
    grid-template-columns: 1fr;
  }

  .parent-service-actions {
    display: grid;
  }

  .parent-service-summary span,
  .parent-service-grid article,
  .city-service-summary span,
  .city-service-grid article,
  .city-route-card {
    min-height: 0;
  }

  .parent-service-grid article,
  .parent-service-content article,
  .city-service-grid article,
  .city-routes-section,
  .city-service-content article {
    padding: 18px;
  }

  .city-route-footer {
    align-items: stretch;
    margin: 0 -14px -14px;
  }

  .city-route-footer a {
    min-width: 104px;
  }

  .city-route-card .route-city strong {
    font-size: 17px;
  }

  .route-hero-copy {
    gap: 14px;
  }

  .route-detail-kicker {
    min-height: 31px;
    font-size: 12px;
  }

  .route-hero-copy h1 {
    font-size: 31px;
  }

  .route-hero-copy p {
    font-size: 15px;
  }

  .route-route-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .route-route-line > span {
    min-height: 66px;
    padding: 12px 14px;
  }

  .route-route-line strong {
    font-size: 18px;
  }

  .route-route-line > .tb-fa-icon {
    transform: rotate(90deg);
    font-size: 18px;
  }

  .route-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .route-primary-btn,
  .route-secondary-btn {
    width: 100%;
  }

  .route-hero-card {
    padding: 18px;
  }

  .route-hero-card > strong {
    font-size: 34px;
  }

  .route-hero-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .route-trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 14px 0;
  }

  .route-trust-grid article {
    min-height: 0;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    padding: 14px;
  }

  .route-trust-grid article p {
    grid-column: 2;
  }

  .route-detail-page .why-choose-us,
  .route-detail-page .route-highlights,
  .route-detail-page .chennai-highlights,
  .route-detail-page .midway-highlights,
  .route-detail-page .route-character,
  .route-detail-page .faq,
  .route-detail-page .main-bg {
    padding: 18px;
    border-radius: 12px;
  }

  .route-detail-page h2 {
    font-size: 22px;
  }

  .route-detail-page p,
  .route-detail-page .why-choose-us li,
  .route-detail-page .faq li {
    font-size: 13px;
  }
}

/* The single-row header needs ~1500px of shell (brand 350 + nav ~760 + pills
   ~382); between 1500-1640px viewports the nowrap nav/ticker minimums force
   the grid past the shell and the Book Now pill clips off-screen. Switch to
   the two-row header (nav on its own line) for that whole band. */
@media (max-width: 1640px) {
  .header-shell {
    grid-template-columns: 310px 1fr auto;
    grid-template-areas:
      "brand meta actions"
      "nav nav nav";
    row-gap: 6px;
    padding: 12px 0;
  }

  .main-nav {
    justify-content: center;
    gap: 24px;
  }

  .header-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 1500px) {
  .header-shell,
  .hero-shell,
  .routes-section,
  .fleet-fare-grid,
  .why-section,
  .info-grid,
  .faq-section,
  .footer-shell {
    width: min(1280px, calc(100% - 40px));
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) 480px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .booking-card {
    padding: 24px;
  }

  .hero-car {
    width: 430px;
    left: 50%;
    margin-left: -30px;
    bottom: 30px;
  }

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

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

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

  .reviews-panel {
    grid-column: 1 / -1;
  }

  .cta-band {
    grid-template-columns: 300px 1fr;
    gap: 18px;
  }

  .cta-icons {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1050px) {
  .header-shell {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "meta"
      "nav"
      "actions";
    row-gap: 12px;
    padding: 14px 0;
  }

  .header-meta,
  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    height: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px 20px;
    align-self: auto;
  }

  .main-nav a {
    padding: 8px 0;
  }

  .main-nav a.active::after {
    bottom: 0;
  }

  .hero {
    min-height: 0;
  }

  .hero-shell {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-car {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(520px, 100%);
    margin: -18px auto 0;
    z-index: 2;
  }

  .booking-card {
    width: 100%;
    max-width: none;
    min-height: 0;
  }

  .hero-stats {
    position: static;
    width: 100%;
    grid-column: 1;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats div:nth-child(2) {
    border-right: 0;
  }

  .assurance-grid {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fleet-grid,
  .coverage-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid article {
    border-right: 0;
    border-bottom: 1px solid #cbd8e5;
  }

  .why-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .info-grid,
  .destination-panel,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .destination-panel {
    gap: 16px;
  }

  .map-card {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .header-shell,
  .hero-shell,
  .routes-section,
  .fleet-fare-grid,
  .why-section,
  .info-grid,
  .faq-section,
  .footer-shell {
    width: min(100% - 24px, 520px);
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) 46px;
    grid-template-areas:
      "brand toggle"
      "actions actions";
    row-gap: 10px;
    padding: 10px 0;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand-name {
    font-size: 31px;
  }

  .brand-line {
    font-size: 10px;
  }

  .header-meta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
    position: relative;
    z-index: 24;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 23;
    width: min(82vw, 320px);
    height: 100vh;
    height: 100dvh;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 92px 18px 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-content: start;
    overflow-y: auto;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-105%);
    color: var(--navy);
    background: rgba(255, 255, 255, 0.99);
    border-right: 1px solid var(--line);
    border-radius: 0 20px 20px 0;
    box-shadow: 22px 0 42px rgba(8, 36, 71, 0.18);
    font-size: 12px;
    transition: transform 0.24s ease, opacity 0.18s ease;
  }

  .site-header.nav-open .main-nav {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0);
  }

  .site-header.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 22;
    background: rgba(8, 36, 71, 0.35);
  }

  .main-nav a {
    padding: 12px 8px 12px 15px;
    border-bottom: 1px solid rgba(219, 230, 239, 0.85);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a.active::after {
    left: 0;
    right: auto;
    bottom: 10px;
    width: 3px;
    height: calc(100% - 20px);
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .header-actions > .book-pill {
    display: none;
  }

  .call-pill,
  .book-pill {
    min-width: 0;
    min-height: 48px;
    width: 100%;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 13px;
  }

  .hero-shell {
    gap: 12px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
    justify-self: start;
  }

  .hero-copy h1 {
    order: 2;
    width: 100%;
    margin: 10px 0 6px;
  }

  .hero-copy p {
    order: 3;
    width: 100%;
  }

  .booking-card {
    order: 4;
  }

  .hero-car {
    order: 5;
  }

  .assurance-grid {
    order: 6;
  }

  .hero-stats {
    order: 7;
  }

  .hero-media {
    background-size: auto 100%;
    background-position: 66% bottom;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0.34) 66%, rgba(8, 36, 71, 0.34) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.42) 58%, rgba(255, 255, 255, 0.16) 100%);
  }

  .eyebrow {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 36px;
    overflow-wrap: break-word;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-car {
    width: min(440px, 112vw);
    max-width: none;
    margin: -8px -6vw -26px auto;
    filter: drop-shadow(0 22px 16px rgba(8, 36, 71, 0.42));
  }

  .route-grid,
  .coverage-grid,
  .fleet-grid,
  .form-grid,
  .mini-checks,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .coverage-card {
    min-height: 0;
  }

  .assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .assurance-grid article {
    min-height: 112px;
    padding: 16px 10px;
  }

  .booking-card {
    width: 100%;
    padding: 18px;
    border-radius: 18px;
  }

  .trip-tabs {
    min-height: 58px;
  }

  .tab {
    gap: 6px;
    font-size: 13px;
  }

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

  .hero-stats div {
    border-bottom: 1px solid var(--line);
    padding: 12px;
  }

  .hero-stats div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .hero-stats div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .hero-stats strong {
    font-size: 22px;
  }

  .quick-links,
  .cab-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-links a:nth-child(even) {
    border-right: 0;
  }

  .quick-links a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .fare-panel,
  .fleet-panel,
  .tourist-panel,
  .reviews-panel,
  .destination-panel,
  .why-section {
    padding: 18px;
  }

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

  .tour-grid a {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .section-head,
  .panel-head,
  .reviews-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head h2,
  .panel-head h2,
  .fare-panel h2,
  .why-section h2,
  .destination-panel h2,
  .tourist-panel h2,
  .reviews-panel h2,
  .faq-section h2 {
    font-size: 23px;
  }

  .section-head h2,
  .fare-panel h2,
  .reviews-head h2 {
    flex-wrap: wrap;
  }

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

  .why-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid #cbd8e5;
  }

  .why-grid article:last-child {
    border-bottom: 0;
  }

  .cta-band {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 14px 24px;
    text-align: center;
  }

  .cta-band > img {
    width: min(320px, 100%);
    justify-self: center;
    margin: -8px auto 0;
  }

  .cta-copy h2 {
    font-size: 26px;
  }

  .cta-copy > div {
    flex-direction: column;
  }

  .cta-copy .book-pill,
  .cta-copy .whatsapp-pill {
    width: 100%;
  }

  .cta-icons {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .cta-icons span {
    min-height: 96px;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    font-size: 13px;
  }

  .cta-icons .tb-icon-cta {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 19px;
  }

  .footer-shell {
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 24px 18px;
    padding: 26px 0 30px;
  }

  .footer-brand,
  .footer-shell > div:last-child {
    grid-column: 1 / -1;
  }

  .site-footer h3 {
    margin-bottom: 9px;
    font-size: 14px;
  }

  .site-footer p,
  .site-footer a {
    margin-bottom: 9px;
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (max-width: 420px) {
  .header-shell,
  .hero-shell,
  .routes-section,
  .fleet-fare-grid,
  .why-section,
  .info-grid,
  .faq-section,
  .footer-shell {
    width: min(100% - 18px, 520px);
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-name {
    font-size: 27px;
  }

  .main-nav {
    font-size: 12px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .call-pill,
  .book-pill {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-media {
    background-position: 69% bottom;
  }

  .section-head h2,
  .panel-head h2,
  .fare-panel h2,
  .why-section h2,
  .destination-panel h2,
  .tourist-panel h2,
  .reviews-panel h2,
  .faq-section h2 {
    font-size: 21px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-car {
    width: min(405px, 118vw);
    margin: -4px -10vw -22px auto;
  }

  .input-wrap {
    padding: 0 10px;
  }

  .fare-button,
  .check-fare {
    font-size: 16px;
  }

  .cta-band {
    padding-inline: 10px;
  }

  .cta-icons {
    gap: 8px;
  }

  .cta-icons span {
    min-height: 88px;
    font-size: 12px;
  }

  .footer-shell {
    gap: 20px 14px;
  }
}

/* ---------------------------------------------------------------------
   FAQ accordion — visible on-page counterpart to the FAQPage JSON-LD
   BaseController::initController() already emits. Native <details>/
   <summary> keeps it accessible and JS-free.
   --------------------------------------------------------------------- */
.faq-section {
  padding: 12px 0 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 20px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  color: var(--navy);
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary .tb-ui-icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.faq-item[open] summary .tb-ui-icon {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ---------------------------------------------------------------------
   Minimal modal/table/close-button CSS — replaces loading the full Bootstrap
   CSS framework (187 KiB transferred, ~99% unused: this site only ever
   references .modal/.table/.btn-close). bootstrap.bundle.min.js stays, since
   its show/hide/backdrop-management JS still drives these same class names
   and data-bs-* attributes — only the CSS half is being dropped.

   Values below are Bootstrap 5.0.2's own rules (verified against the actual
   file previously loaded here), scoped to only what's used on this site: no
   offcanvas, no modal-lg/sm, no scrollable-dialog variant. One deliberate
   deviation: this project's bootstrap.min.css had .modal/.modal-backdrop
   z-index overridden down to 9/8, which sits *below* .site-header's z-index
   20 — likely a latent bug, not a value worth preserving. Using Bootstrap's
   real defaults (1055/1050) instead, comfortably above every z-index used
   elsewhere on this page.
   --------------------------------------------------------------------- */
.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translateY(-50px);
}

.modal.show .modal-dialog {
  transform: none;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.fade {
  transition: opacity 0.15s linear;
}

.fade:not(.show) {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .fade,
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em;
  color: #000;
  background: transparent;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

/* × drawn with a pseudo-element instead of Bootstrap's SVG data-URI —
   avoids depending on a data URI copied out of someone else's minified
   file, for one character glyph it isn't worth the risk of a transcription
   error silently breaking the close button. */
.btn-close::before {
  content: "\00d7";
}

.btn-close:hover {
  opacity: 0.75;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--line);
}

.table > :not(caption) > * > * {
  padding: 0.5rem;
  border-bottom: 1px solid var(--line);
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

/* ---------------------------------------------------------------------
   Fare-breakdown / booking-confirmation modal theming.
   The static mockup doesn't define this screen (it's the result state
   after "Calculate Fare"), so this is a necessary small addition layered
   on Bootstrap's modal, restyled with the same tokens as the rest of the
   page instead of Bootstrap's default look.
   --------------------------------------------------------------------- */
.modal-content {
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.modal-header {
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
}
.modal-title {
  color: var(--navy);
  font-weight: 900;
  font-size: 18px;
}
.modal-body {
  padding: 20px 22px;
}
.modal-footer {
  border-top: 1px solid var(--line);
  padding: 16px 22px;
}
.modal .table td {
  color: var(--navy);
  font-size: 14px;
  padding: 8px 4px;
  border-color: var(--line);
}

.fare-disclaimer {
  margin: -4px 0 16px;
  padding: 10px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

/* ---------------------------------------------------------------------
   Flatpickr date/time picker — explicit OK/Cancel footer (native flatpickr
   has no confirm step, so users had no way to close the time dropdown
   without clicking outside and losing track of what they'd selected).
   --------------------------------------------------------------------- */
.tb-fp-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 8px;
  border-top: 1px solid var(--line);
}

.tb-fp-actions button {
  min-height: 34px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.tb-fp-cancel {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
}

.tb-fp-ok {
  background: var(--teal);
  border: 1px solid var(--teal);
  color: #fff;
}

/* ---------------------------------------------------------------------
   Font Awesome icon swap-in — the static build's own "SVG" icon set turned
   out to be tiny raster PNGs (some as small as 5x11px) wrapped in <svg>,
   which is why icons looked soft/blurry at display size. Font Awesome is
   a real vector icon font already bundled in this project, so header/
   footer icons now use <i class="tb-fa-icon"> instead — crisp at any size.
   --------------------------------------------------------------------- */
.tb-fa-icon {
  display: inline-block;
  color: currentColor;
  font-size: 0.95em;
  vertical-align: -1px;
}
.header-meta .tb-fa-icon { font-size: 13px; }
.nav-chevron.tb-fa-icon { font-size: 9px; margin-left: 3px; vertical-align: 1px; }
.call-pill .tb-fa-icon, .book-pill .tb-fa-icon, .whatsapp-pill .tb-fa-icon { font-size: 15px; }
.socials .tb-fa-icon { font-size: 13px; }
.site-footer p .tb-fa-icon {
  width: 15px;
  display: inline-block;
  margin-right: 8px;
  color: var(--teal);
}
.payments { align-items: center; }
.tb-payment-icon { font-size: 30px; color: #fff; }
.tb-payment-badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  background: #fff;
  color: var(--navy);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

/* ---------------------------------------------------------------------
   Google Places autocomplete dropdown for the booking card's From/To
   fields. The Maps API appends .pac-container to <body>, outside any of
   our wrappers, so it has to be themed globally with the same tokens.
   --------------------------------------------------------------------- */
.pac-container {
  margin-top: 6px;
  padding: 6px 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  z-index: 1100; /* above .booking-card (3) and Bootstrap modals (1050) */
}
.pac-container::after {
  /* "powered by Google" strip — keep it, just pad it to the new shape */
  margin: 4px 12px 2px;
}
.pac-item {
  padding: 9px 14px;
  border-top: 1px solid var(--soft);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
}
.pac-item:first-of-type {
  border-top: 0;
}
.pac-item:hover,
.pac-item-selected {
  background: var(--sky);
}
.pac-item-query {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}
.pac-item .pac-icon {
  margin-top: 3px;
}
