
:root {
    --orange: #ff6b00;
    --navy: #07172d;
    --graphite: #111827;
    --muted: #5f6875;
    --bg: #f3f5f8;
    --white: #ffffff;
    --line: rgba(17, 24, 39, .13);
    --shadow: 0 8px 22px rgba(17, 24, 39, .06);
    --radius: 6px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--graphite);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.v5-container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.v5-hero {
    background: var(--navy);
    color: #fff;
    padding: 48px 0;
}

.v5-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 52px;
    align-items: center;
}

.v5-eyebrow {
    margin: 0 0 14px;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.v5-hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.v5-lead {
    max-width: 680px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 19px;
}

.v5-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.v5-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: var(--radius);
    border: 0;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.v5-button-orange {
    background: var(--orange);
    color: #fff;
}

.v5-button-outline {
    border: 1px solid rgba(255,255,255,.28);
    color: #fff;
    background: transparent;
}

.v5-button-outline-dark {
    border: 1px solid var(--line);
    color: var(--navy);
    background: #fff;
}

.v5-hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 20px;
}

.v5-hero-links a {
    color: rgba(255,255,255,.75);
    font-size: 13px;
    text-decoration: none;
}

.v5-hero-links a::before {
    content: "•";
    color: var(--orange);
    margin-right: 7px;
}

.v5-order {
    padding: 22px;
    border-radius: var(--radius);
    background: #fff;
    color: var(--graphite);
    box-shadow: var(--shadow);
}

.v5-order h2 {
    margin: 0 0 15px;
    color: var(--navy);
    font-size: 23px;
}

.v5-order form {
    display: grid;
    gap: 11px;
}

.v5-order label {
    display: grid;
    gap: 5px;
    color: var(--muted);
    font-size: 13px;
}

.v5-order input,
.v5-order select {
    width: 100%;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 0 10px;
    color: var(--graphite);
    background: #fff;
    font: inherit;
}

.v5-order-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.v5-order button {
    min-height: 44px;
    border: 0;
    border-radius: 4px;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.v5-section {
    padding: 58px 0;
}

.v5-title {
    margin: 0 0 22px;
    color: var(--navy);
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.12;
    letter-spacing: -.03em;
}

.v5-section-lead {
    max-width: 720px;
    margin: -10px auto 26px;
    color: var(--muted);
    text-align: center;
}

.v5-services-section,
.v5-fleet-section,
.v5-faq-section {
    background: #fff;
}

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

.v5-service {
    padding: 22px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--orange);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.v5-service h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 18px;
}

.v5-service p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.v5-text-icons-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 24px;
    align-items: start;
}

.v5-text-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.v5-text-card,
.v5-icon-card,
.v5-routes-card,
.v5-car,
.v5-faq,
.v5-final-dark,
.v5-final-light {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.v5-text-card {
    padding: 30px;
}

.v5-text-card p {
    margin: 0 0 17px;
    color: #263344;
    font-size: 17px;
}

.v5-text-card p:last-child {
    margin-bottom: 0;
}

.v5-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.v5-icon-card {
    padding: 22px;
    min-height: 170px;
}

.v5-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 107, 0, .28);
    background: rgba(255, 107, 0, .08);
    color: var(--orange);
    border-radius: 4px;
    font-weight: 700;
}

.v5-icon-card h3 {
    margin: 0 0 9px;
    color: var(--navy);
    font-size: 17px;
    line-height: 1.25;
}

.v5-icon-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.v5-routes-card {
    margin-top: 22px;
    padding: 26px 30px;
}

.v5-routes-card h3 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 24px;
}

.v5-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 22px;
}

.v5-routes-grid a {
    color: var(--graphite);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.v5-routes-grid a::before {
    content: "→";
    color: var(--orange);
    margin-right: 8px;
    font-weight: 700;
}

.v5-fleet {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.v5-car {
    overflow: hidden;
}

.v5-car-media {
    display: flex;
    height: 178px;
    align-items: center;
    justify-content: center;
    background: #f4f6f9;
}

.v5-car-media img {
    width: 100%;
    height: 178px;
    object-fit: contain;
    padding: 12px;
}

.v5-car-body {
    padding: 20px;
}

.v5-car-class {
    margin: 0 0 8px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
}

.v5-car h3 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.18;
}

.v5-car ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 15px;
}

.v5-car li::before {
    content: "•";
    color: var(--orange);
    margin-right: 7px;
}

.v5-center {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.v5-center-title {
    text-align: center;
}

.v5-faq-wrap {
    max-width: 860px;
}

.v5-faq-list {
    display: grid;
    gap: 13px;
}

.v5-faq {
    overflow: hidden;
}

.v5-faq summary {
    cursor: pointer;
    padding: 16px 18px;
    color: var(--navy);
    font-weight: 700;
    list-style: none;
}

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

.v5-faq summary::after {
    content: "+";
    float: right;
    color: var(--orange);
}

.v5-faq[open] summary::after {
    content: "−";
}

.v5-faq div {
    padding: 0 18px 17px;
    color: var(--muted);
}

.v5-faq p {
    margin: 0;
}

.v5-final {
    padding: 62px 0;
    background: var(--navy);
}

.v5-final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.v5-final-dark,
.v5-final-light {
    padding: 32px;
}

.v5-final-dark {
    background: #07111f;
    color: #fff;
    border-color: rgba(255,255,255,.12);
}

.v5-final-light {
    background: #fff;
    color: var(--navy);
}

.v5-final h2 {
    margin: 0 0 15px;
    font-size: 31px;
    line-height: 1.1;
}

.v5-final p {
    margin: 0 0 14px;
}

.v5-final-dark div {
    color: rgba(255,255,255,.78);
}

.v5-final-light div {
    color: var(--muted);
}

@media (max-width: 1050px) {
    .v5-hero-grid,
    .v5-text-icons-grid,
    .v5-text-grid,
    .v5-final-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 640px) {
    .v5-container {
        width: min(100% - 28px, var(--container));
    }

    .v5-hero {
        padding: 36px 0;
    }

    .v5-hero h1 {
        font-size: 38px;
    }

    .v5-order-row,
    .v5-services,
    .v5-fleet,
    .v5-icon-grid,
    .v5-routes-grid {
        grid-template-columns: 1fr;
    }

    .v5-section {
        padding: 46px 0;
    }

    .v5-text-card,
    .v5-icon-card,
    .v5-routes-card,
    .v5-final-dark,
    .v5-final-light {
        padding: 22px;
    }
}


/* v5b: first text block remainder fixes */
.v5-remainder-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 22px;
}

.v5-text-main {
    min-height: 0;
}

@media (max-width: 1050px) {
    .v5-remainder-grid {
        grid-template-columns: 1fr;
    }
}

/* v5c: if only one remainder text card exists, make it full width */
.v5-remainder-grid > .v5-text-card:only-child {
    grid-column: 1 / -1;
}

/* v5d: second text block as one wide card with internal columns */
.v5-text-grid-single {
    grid-template-columns: 1fr;
}

.v5-wide-text-card {
    grid-column: 1 / -1;
}

.v5-wide-text-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    align-items: start;
}

@media (max-width: 1050px) {
    .v5-wide-text-columns {
        grid-template-columns: 1fr;
    }
}

/* v5f: CTA cards moved into the history block */
.v5-history-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 24px;
    align-items: start;
}

.v5-history-text-card {
    grid-column: auto;
}

.v5-inline-cta-stack {
    display: grid;
    gap: 18px;
}

.v5-side-cta {
    padding: 28px;
    min-height: 0;
}

.v5-side-cta h2 {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.12;
}

.v5-side-cta p {
    margin: 0 0 14px;
}

.v5-side-cta .v5-button {
    margin-top: 4px;
}

@media (max-width: 1050px) {
    .v5-history-cta-grid {
        grid-template-columns: 1fr;
    }
}

/* v5h: two extra UX cards in the first icon grid */
.v5-ux-extra-card .v5-icon {
    font-weight: 700;
}

/* PREVIEW V5I: make lower CTA identical dark style */
.v5-inline-cta-stack .v5-side-cta:last-child {
  background: #06172f;
  border: 1px solid #06172f;
  color: #ffffff;
  box-shadow: none;
}

.v5-inline-cta-stack .v5-side-cta:last-child h3,
.v5-inline-cta-stack .v5-side-cta:last-child h4,
.v5-inline-cta-stack .v5-side-cta:last-child .v5-card-title,
.v5-inline-cta-stack .v5-side-cta:last-child .v5-title,
.v5-inline-cta-stack .v5-side-cta:last-child strong {
  color: #ffffff;
}

.v5-inline-cta-stack .v5-side-cta:last-child p,
.v5-inline-cta-stack .v5-side-cta:last-child li,
.v5-inline-cta-stack .v5-side-cta:last-child .v5-card-text,
.v5-inline-cta-stack .v5-side-cta:last-child .v5-text {
  color: rgba(255,255,255,0.92);
}

.v5-inline-cta-stack .v5-side-cta:last-child .v5-btn,
.v5-inline-cta-stack .v5-side-cta:last-child .v5-btn:visited,
.v5-inline-cta-stack .v5-side-cta:last-child a.v5-btn,
.v5-inline-cta-stack .v5-side-cta:last-child a.v5-btn:visited {
  background: #ff7a00;
  border: 1px solid #ff7a00;
  color: #ffffff;
}

.v5-inline-cta-stack .v5-side-cta:last-child .v5-btn:hover,
.v5-inline-cta-stack .v5-side-cta:last-child .v5-btn:focus,
.v5-inline-cta-stack .v5-side-cta:last-child a.v5-btn:hover,
.v5-inline-cta-stack .v5-side-cta:last-child a.v5-btn:focus {
  background: #ff7a00;
  border-color: #ff7a00;
  color: #ffffff;
}

.v5-inline-cta-stack .v5-side-cta:last-child a:not(.v5-btn) {
  color: #ffffff;
}

/* PREVIEW V5J FIX: all right-column CTA cards use identical dark style */
.v5-inline-cta-stack .v5-side-cta {
  background: #06172f !important;
  border: 1px solid #06172f !important;
  color: #ffffff !important;
  box-shadow: none;
}

.v5-inline-cta-stack .v5-side-cta h2,
.v5-inline-cta-stack .v5-side-cta h3,
.v5-inline-cta-stack .v5-side-cta h4,
.v5-inline-cta-stack .v5-side-cta strong {
  color: #ffffff !important;
}

.v5-inline-cta-stack .v5-side-cta p,
.v5-inline-cta-stack .v5-side-cta li {
  color: rgba(255,255,255,0.92) !important;
}

.v5-inline-cta-stack .v5-side-cta .v5-button,
.v5-inline-cta-stack .v5-side-cta .v5-button:visited,
.v5-inline-cta-stack .v5-side-cta a.v5-button,
.v5-inline-cta-stack .v5-side-cta a.v5-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff7a00 !important;
  border: 1px solid #ff7a00 !important;
  color: #ffffff !important;
  text-decoration: none;
}

/* PREVIEW V5K: compact routes block */
.v5-routes-compact {
  padding: 34px;
}

.v5-routes-compact-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.v5-routes-kicker {
  margin: 0 0 8px;
  color: #ff6b00;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.v5-routes-compact h2 {
  margin: 0 0 10px;
}

.v5-routes-compact-head p:last-child {
  max-width: 760px;
  margin: 0;
  color: #46556a;
  line-height: 1.65;
}

.v5-routes-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.v5-route-pill,
.v5-route-more-link {
  text-decoration: none;
}

.v5-route-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 14px 16px;
  background: #f7f9fc;
  border: 1px solid #dfe5ee;
  border-radius: 12px;
  color: #06172f;
  font-weight: 800;
  line-height: 1.25;
}

.v5-route-pill span,
.v5-route-more-link span {
  color: #ff6b00;
  font-weight: 900;
}

.v5-routes-more {
  margin-top: 18px;
  border-top: 1px solid #e4e9f1;
  padding-top: 16px;
}

.v5-routes-more summary {
  cursor: pointer;
  width: fit-content;
  color: #06172f;
  font-weight: 900;
  list-style: none;
}

.v5-routes-more summary::-webkit-details-marker {
  display: none;
}

.v5-routes-more summary::after {
  content: " +";
  color: #ff6b00;
}

.v5-routes-more[open] summary::after {
  content: " −";
}

.v5-routes-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 28px;
  margin-top: 16px;
}

.v5-route-more-link {
  display: flex;
  gap: 8px;
  color: #06172f;
  font-weight: 750;
  line-height: 1.35;
}

@media (max-width: 1050px) {
  .v5-routes-popular-grid,
  .v5-routes-more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .v5-routes-compact {
    padding: 24px;
  }

  .v5-routes-popular-grid,
  .v5-routes-more-grid {
    grid-template-columns: 1fr;
  }
}

/* PREVIEW V5L: article cards below FAQ */
.v5-news-section {
  background: #f3f6fa;
  padding-top: 78px;
}

.v5-news-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.v5-news-kicker {
  margin: 0 0 8px;
  color: #ff6b00;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.v5-news-head h2 {
  margin: 0 0 12px;
  color: #06172f;
  font-size: 38px;
  line-height: 1.12;
}

.v5-news-head p:last-child {
  margin: 0;
  color: #46556a;
  line-height: 1.65;
}

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

.v5-news-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe5ee;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 23, 47, .07);
}

.v5-news-image {
  display: block;
  aspect-ratio: 16 / 9;
  background: #dfe5ee;
  overflow: hidden;
}

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

.v5-news-body {
  padding: 22px;
}

.v5-news-body h3 {
  margin: 0 0 12px;
  color: #06172f;
  font-size: 22px;
  line-height: 1.18;
}

.v5-news-body h3 a {
  color: inherit;
  text-decoration: none;
}

.v5-news-body p {
  margin: 0 0 16px;
  color: #46556a;
  line-height: 1.6;
}

.v5-news-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff6b00;
  font-weight: 900;
  text-decoration: none;
}

.v5-news-link::after {
  content: " →";
}

@media (max-width: 1050px) {
  .v5-news-grid {
    grid-template-columns: 1fr;
  }

  .v5-news-head h2 {
    font-size: 32px;
  }
}

/* CHANGE 3A-PREVIEW: homepage-like form and icon style for static v5l preview only */
.v5-order .tb-front-form {
    display: grid;
    gap: 14px;
    margin: 0;
}

.v5-order .tb-front-form label,
.v5-order .tb-front-form__field {
    display: grid;
    gap: 7px;
    color: #1d1d1f;
    font-weight: 700;
    font-size: 14px;
}

.v5-order .tb-front-form input,
.v5-order .tb-front-form select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 14px;
    background: #ffffff;
    color: #111827;
    padding: 0 14px;
    font: inherit;
    outline: none;
    box-sizing: border-box;
}

.v5-order .tb-front-form input:focus,
.v5-order .tb-front-form select:focus {
    border-color: var(--tb-front-orange, #f97316);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.v5-order .tb-front-form__row,
.v5-order .tb-front-form-row,
.v5-order .v5-order-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.v5-order .tb-front-form button,
.v5-order .tb-front-form__submit,
.v5-order .tb-front-form [type="submit"] {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 14px;
    background: var(--tb-front-orange, #f97316);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.28);
}

.v5-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tb-front-orange, #f97316);
    color: #ffffff;
    text-align: center;
    line-height: 1;
    flex: 0 0 auto;
}

.v5-icon svg,
.v5-icon .tb-front-lucide {
    width: 24px;
    height: 24px;
    display: block;
    flex: 0 0 auto;
    margin: auto;
    stroke: currentColor;
    color: inherit;
}

.v5-icon-card .v5-icon {
    margin-bottom: 18px;
}

@media (max-width: 640px) {
    .v5-order .tb-front-form__row,
    .v5-order .tb-front-form-row,
    .v5-order .v5-order-row {
        grid-template-columns: 1fr;
    }
}

/* CHANGE 3A-PREVIEW-FIX1: restore safety icon-card grid after shared SVG icons */
.v5-text-icons-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 24px;
    align-items: start;
}

.v5-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    min-width: 0;
    align-items: stretch;
}

.v5-icon-card {
    display: block;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: visible;
}

.v5-icon-card .v5-icon {
    width: 52px;
    height: 52px;
    margin: 0 0 16px;
}

.v5-icon-card h3,
.v5-icon-card p {
    width: 100%;
    max-width: none;
}

@media (max-width: 920px) {
    .v5-text-icons-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .v5-icon-grid {
        grid-template-columns: 1fr;
    }
}

/* CHANGE 3A-PREVIEW-FIX3: alignment polish and 1px controls for static v5l preview */

/* Global preview consistency */
.v5-page {
    overflow-x: hidden;
}

.v5-container {
    width: min(100% - 40px, 1120px);
    margin-left: auto;
    margin-right: auto;
}

.v5-section {
    padding: 56px 0;
}

.v5-title {
    margin: 0 0 24px;
    line-height: 1.12;
}

/* Form controls: 1px selectors/inputs/buttons */
.v5-order,
.v5-order * {
    box-sizing: border-box;
}

.v5-order .tb-front-form input,
.v5-order .tb-front-form select,
.v5-order .tb-front-form button,
.v5-order .tb-front-form [type="submit"],
.v5-order input,
.v5-order select,
.v5-order button {
    border-radius: 1px !important;
}

.v5-order .tb-front-form input,
.v5-order .tb-front-form select,
.v5-order input,
.v5-order select {
    min-height: 42px;
    border: 1px solid rgba(6, 23, 47, 0.18);
    box-shadow: none;
}

.v5-order .tb-front-form button,
.v5-order .tb-front-form [type="submit"],
.v5-order button {
    min-height: 44px;
    box-shadow: none;
}

/* Hero alignment */
.v5-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 72px;
    align-items: center;
}

.v5-order {
    width: 100%;
    max-width: 320px;
    justify-self: end;
}

/* Top service cards */
.v5-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.v5-service {
    height: 100%;
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 1px;
}

.v5-service h3 {
    min-height: 38px;
}

/* Safety block */
.v5-text-icons-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    gap: 28px;
    align-items: stretch;
}

.v5-text-main {
    height: 100%;
}

.v5-icon-grid {
    width: 100%;
    max-width: 420px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    justify-self: end;
}

.v5-icon-card {
    min-height: 188px;
    height: 100%;
    padding: 22px;
    border-radius: 1px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.v5-icon-card .v5-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border-radius: 1px;
    margin: 0 0 14px;
}

.v5-icon-card .v5-icon svg,
.v5-icon-card .v5-icon .tb-front-lucide {
    width: 21px;
    height: 21px;
}

.v5-icon-card h3 {
    margin: 0 0 8px;
    min-height: 40px;
    line-height: 1.18;
}

.v5-icon-card p {
    margin: 0;
    line-height: 1.45;
}

/* Text cards and route cards */
.v5-text-card,
.v5-routes-card,
.v5-car,
.v5-faq,
.v5-news-card,
.v5-final-dark,
.v5-final-light,
.v5-side-cta {
    border-radius: 1px;
}

.v5-remainder-grid {
    margin-top: 24px;
}

/* Fleet alignment */
.v5-fleet {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.v5-car {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.v5-car-media {
    border-radius: 1px;
}

.v5-car-body {
    flex: 1;
}

/* History / CTA alignment */
.v5-history-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 28px;
    align-items: start;
}

.v5-inline-cta-stack {
    display: grid;
    gap: 18px;
}

.v5-side-cta {
    min-height: 170px;
}

/* Routes block */
.v5-routes-card,
.v5-routes-compact {
    border-radius: 1px;
}

.v5-routes-popular-grid,
.v5-routes-more-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.v5-route-pill,
.v5-route-more-link {
    border-radius: 1px;
}

/* FAQ */
.v5-faq-wrap {
    width: min(100%, 820px);
    margin-left: auto;
    margin-right: auto;
}

.v5-faq {
    border-radius: 1px;
}

/* News */
.v5-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.v5-news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.v5-news-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.v5-news-link {
    margin-top: auto;
}

/* Responsive */
@media (max-width: 1050px) {
    .v5-hero-grid,
    .v5-text-icons-grid,
    .v5-history-cta-grid {
        grid-template-columns: 1fr;
    }

    .v5-order,
    .v5-icon-grid {
        justify-self: stretch;
        max-width: none;
    }

    .v5-services,
    .v5-fleet,
    .v5-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v5-routes-popular-grid,
    .v5-routes-more-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .v5-container {
        width: min(100% - 28px, 1120px);
    }

    .v5-section {
        padding: 42px 0;
    }

    .v5-services,
    .v5-fleet,
    .v5-icon-grid,
    .v5-news-grid,
    .v5-routes-popular-grid,
    .v5-routes-more-grid {
        grid-template-columns: 1fr;
    }

    .v5-icon-card {
        min-height: auto;
    }
}

/* CHANGE 3A-PREVIEW-FIX4: routes + FAQ as one two-column section */
.v5-routes-faq-section {
    padding: 56px 0;
    background: #ffffff;
}

.v5-routes-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    gap: 28px;
    align-items: start;
}

.v5-routes-faq-column {
    min-width: 0;
}

.v5-routes-faq-column > .v5-section {
    padding: 0;
    background: transparent;
}

.v5-routes-faq-column > .v5-section > .v5-container {
    width: 100%;
    max-width: none;
    margin: 0;
}

.v5-routes-faq-column .v5-routes-card,
.v5-routes-faq-column .v5-faq-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
}

.v5-routes-faq-column .v5-routes-card {
    height: 100%;
}

.v5-routes-faq-column--faq .v5-title {
    margin: 0 0 18px;
}

.v5-routes-faq-column--faq .v5-faq-list {
    display: grid;
    gap: 10px;
}

.v5-routes-faq-column--faq .v5-faq {
    border-radius: 1px;
}

.v5-routes-faq-column--routes .v5-routes-popular-grid,
.v5-routes-faq-column--routes .v5-routes-more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1050px) {
    .v5-routes-faq-grid {
        grid-template-columns: 1fr;
    }

    .v5-routes-faq-column--routes .v5-routes-popular-grid,
    .v5-routes-faq-column--routes .v5-routes-more-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .v5-routes-faq-column--routes .v5-routes-popular-grid,
    .v5-routes-faq-column--routes .v5-routes-more-grid {
        grid-template-columns: 1fr;
    }
}

/* CHANGE 3A-PREVIEW-FIX4-SERVICE-ICONS: homepage-like icons for top service cards */
.v5-service {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.v5-service-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border-radius: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tb-front-orange, #f97316);
    color: #ffffff;
    margin: 0 0 14px;
    line-height: 1;
}

.v5-service-icon svg,
.v5-service-icon .tb-front-lucide {
    width: 21px;
    height: 21px;
    display: block;
    flex: 0 0 auto;
    margin: auto;
    stroke: currentColor;
    color: inherit;
}

.v5-service h3 {
    margin-top: 0;
}

/* CHANGE 3A-PREVIEW-FIX5: center preview icons */

/* top service cards */
.v5-services-section .v5-service-card .v5-service-icon,
.v5-services-section .v5-service-card > .v5-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.v5-services-section .v5-service-card .v5-service-icon svg,
.v5-services-section .v5-service-card > .v5-service-icon svg {
  display: block;
  margin: 0 auto;
}

/* safety icon cards */
.v5-text-icons-grid .v5-icon-card .v5-icon,
.v5-icon-grid .v5-icon-card .v5-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.v5-text-icons-grid .v5-icon-card .v5-icon svg,
.v5-icon-grid .v5-icon-card .v5-icon svg {
  display: block;
  margin: 0 auto;
}

/* CHANGE 3A-PREVIEW-FIX5B: correct icon centering for actual .v5-service cards */
.v5-services-section .v5-service {
    align-items: center;
    text-align: center;
}

.v5-services-section .v5-service > .v5-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.v5-services-section .v5-service > .v5-service-icon svg,
.v5-services-section .v5-service > .v5-service-icon .tb-front-lucide {
    display: block;
    margin: auto;
    stroke: currentColor;
    color: inherit;
}

.v5-services-section .v5-service h3,
.v5-services-section .v5-service p {
    width: 100%;
}

/* CHANGE 3A-PREVIEW-FIX6: restore FAQ as separate centered single-column section */
.v5-routes-faq-section,
.v5-routes-faq-grid,
.v5-routes-faq-column {
    display: initial;
}

.v5-faq-section {
    display: block;
    padding: 56px 0;
    background: #ffffff;
}

.v5-faq-section .v5-container {
    width: min(100% - 40px, 1120px);
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.v5-faq-section .v5-title {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.v5-faq-wrap {
    width: min(100%, 820px);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.v5-faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.v5-faq {
    width: 100%;
    max-width: none;
    border-radius: 1px;
}

@media (max-width: 640px) {
    .v5-faq-section .v5-container {
        width: min(100% - 28px, 1120px);
    }
}

/* CHANGE 3B-DYNAMIC-PREVIEW: WordPress dynamic commercial v5 support */
.tb-commercial-v5,
.tb-commercial-v5 * {
    box-sizing: border-box;
}

.tb-commercial-v5 .v5-hero-section {
    padding: 72px 0 64px;
}

.tb-commercial-v5 .v5-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
    gap: 36px;
    align-items: start;
}

.tb-commercial-v5 .v5-hero-copy h1 {
    margin: 0 0 18px;
}

.tb-commercial-v5 .v5-hero-form {
    width: 100%;
}

.tb-commercial-v5 .v5-services-grid,
.tb-commercial-v5 .v5-fleet-grid,
.tb-commercial-v5 .v5-reviews-grid,
.tb-commercial-v5 .v5-news-grid {
    display: grid;
    gap: 20px;
}

.tb-commercial-v5 .v5-services-grid,
.tb-commercial-v5 .v5-fleet-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tb-commercial-v5 .v5-reviews-grid,
.tb-commercial-v5 .v5-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tb-commercial-v5 .v5-routes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.tb-commercial-v5 .v5-split-grid,
.tb-commercial-v5 .v5-text-icons-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.tb-commercial-v5 .v5-service-icon,
.tb-commercial-v5 .v5-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tb-commercial-v5 .v5-faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tb-commercial-v5 .v5-faq-wrap {
    width: min(100%, 820px);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.tb-commercial-v5-fallback {
    display: block;
}

@media (max-width: 980px) {
    .tb-commercial-v5 .v5-hero-grid,
    .tb-commercial-v5 .v5-split-grid,
    .tb-commercial-v5 .v5-text-icons-grid {
        grid-template-columns: 1fr;
    }

    .tb-commercial-v5 .v5-services-grid,
    .tb-commercial-v5 .v5-fleet-grid,
    .tb-commercial-v5 .v5-reviews-grid,
    .tb-commercial-v5 .v5-news-grid,
    .tb-commercial-v5 .v5-routes-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .tb-commercial-v5 .v5-services-grid,
    .tb-commercial-v5 .v5-fleet-grid,
    .tb-commercial-v5 .v5-reviews-grid,
    .tb-commercial-v5 .v5-news-grid,
    .tb-commercial-v5 .v5-routes-grid {
        grid-template-columns: 1fr;
    }
}


/* CHANGE 3H: exact homepage booking form CSS cloned for commercial v5 hero.
   Removed previous manual 3D/3E/3G commercial form overrides.
   Source of form remains template-parts/shared/booking-form.php.
   Geoapify selectors and JS are untouched. */

/* CHANGE 3H: commercial wrapper is only a holder; visual form CSS is cloned from homepage */
.tb-commercial-v5 .v5-hero .v5-order {
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.tb-commercial-v5 .v5-hero .v5-order > .tb-front-booking {
    margin: 0;
}


.tb-commercial-v5 .v5-hero .v5-order .tb-front-booking {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--tb-front-graphite);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.tb-commercial-v5 .v5-hero .v5-order .tb-front-booking__head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--tb-front-border);
    background: linear-gradient(180deg, #fff, #f7f9fc);
}

.tb-commercial-v5 .v5-hero .v5-order .tb-front-booking__head strong {
    display: block;
    color: var(--tb-front-navy);
    font-size: 20px;
    line-height: 1.2;
}

.tb-commercial-v5 .v5-hero .v5-order .tb-front-booking__head span {
    max-width: 190px;
    color: var(--tb-front-muted);
    font-size: 13px;
    line-height: 1.35;
    text-align: right;
}

.tb-commercial-v5 .v5-hero .v5-order .tb-front-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 22px 24px 24px;
}

.tb-commercial-v5 .v5-hero .v5-order .tb-front-form label {
    display: grid;
    gap: 7px;
    margin: 0;
}

.tb-commercial-v5 .v5-hero .v5-order .tb-front-form label:first-child,
.tb-commercial-v5 .v5-hero .v5-order .tb-front-form label:nth-child(2),
.tb-commercial-v5 .v5-hero .v5-order .tb-front-form button {
    grid-column: 1 / -1;
}

.tb-commercial-v5 .v5-hero .v5-order .tb-front-form span {
    color: var(--tb-front-muted);
    font-size: 12px;
    font-weight: 800;
}

.tb-commercial-v5 .v5-hero .v5-order .tb-front-form input,
.tb-commercial-v5 .v5-hero .v5-order .tb-front-form select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--tb-front-border);
    border-radius: 12px;
    background: #fff;
    color: var(--tb-front-graphite);
    font-size: 15px;
    padding: 0 13px;
    outline: none;
}

.tb-commercial-v5 .v5-hero .v5-order .tb-front-form input:focus,
.tb-commercial-v5 .v5-hero .v5-order .tb-front-form select:focus {
    border-color: var(--tb-front-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
}

.tb-commercial-v5 .v5-hero .v5-order .tb-front-form button {
    min-height: 52px;
    border: 0;
    border-radius: 14px;
    background: var(--tb-front-orange);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.25);
}

.tb-commercial-v5 .v5-hero .v5-order .tb-front-form button:hover,
.tb-commercial-v5 .v5-hero .v5-order .tb-front-form button:focus-visible {
    background: var(--tb-front-orange-dark);
}

@media (max-width: 1060px) {
.tb-commercial-v5 .v5-hero .v5-order .tb-front-booking__head span {
        text-align: left;
    }
}

@media (max-width: 720px) {
.tb-commercial-v5 .v5-hero .v5-order .tb-front-booking {
        border-radius: 20px;
    }

.tb-commercial-v5 .v5-hero .v5-order .tb-front-booking__head {
        display: grid;
    }

.tb-commercial-v5 .v5-hero .v5-order .tb-front-form {
        grid-template-columns: 1fr;
    }
}

.tb-commercial-v5 .v5-hero .v5-order /* ===== TaxiBerlin front form controls square START ===== */ .tb-front-form input,
.tb-commercial-v5 .v5-hero .v5-order .tb-front-form select {
    border-radius: 0;
}

.tb-commercial-v5 .v5-hero .v5-order .tb-front-form input,
.tb-commercial-v5 .v5-hero .v5-order .tb-front-form select,
.tb-commercial-v5 .v5-hero .v5-order .tb-front-form button,
.tb-commercial-v5 .v5-hero .v5-order .tb-front-booking {
    border-radius: 1px;
}

.tb-commercial-v5 .v5-hero .v5-order .tb-front-booking,
.tb-commercial-v5 .v5-hero .v5-order .tb-front-form input,
.tb-commercial-v5 .v5-hero .v5-order .tb-front-form select,
.tb-commercial-v5 .v5-hero .v5-order .tb-front-form button {
  border-radius: 1px;
}

/* CHANGE 3I: exact homepage-sized visual override for commercial v5 shared booking form */
.tb-commercial-v5,
.tb-commercial-v5 .v5-hero,
.tb-commercial-v5 .v5-order,
.tb-commercial-v5 .tb-front-booking {
    --tb-front-orange: #ff6b00;
    --tb-front-orange-dark: #ea580c;
    --tb-front-dark: #071426;
    --tb-front-text: #071426;
    --tb-front-muted: #64748b;
    --tb-front-line: #cbd5e1;
    --tb-front-soft: #f8fafc;
}

/* Right column must have the same visual width as the homepage hero form. */
.tb-commercial-v5 .v5-hero .v5-hero-grid {
    grid-template-columns: minmax(0, 1fr) 390px !important;
    gap: clamp(56px, 7vw, 112px) !important;
    align-items: center !important;
}

.tb-commercial-v5 .v5-hero .v5-order {
    width: 390px !important;
    max-width: 390px !important;
    min-width: 390px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    justify-self: end !important;
    box-sizing: border-box !important;
}

/* Shared homepage form card, fixed to homepage desktop size. */
.tb-commercial-v5 .v5-hero .v5-order > .tb-front-booking {
    width: 390px !important;
    max-width: 390px !important;
    min-width: 390px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #ffffff !important;
    color: #071426 !important;
    border: 0 !important;
    border-radius: 2px !important;
    box-shadow: 0 18px 45px rgba(4, 15, 31, 0.22) !important;
    box-sizing: border-box !important;
}

.tb-commercial-v5 .v5-hero .tb-front-booking__head {
    display: grid !important;
    grid-template-columns: minmax(190px, 1fr) 130px !important;
    gap: 16px !important;
    align-items: start !important;
    margin: 0 !important;
    padding: 24px 24px 22px !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.tb-commercial-v5 .v5-hero .tb-front-booking__head strong {
    display: block !important;
    margin: 0 !important;
    color: #071426 !important;
    font-size: 24px !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    white-space: nowrap !important;
}

.tb-commercial-v5 .v5-hero .tb-front-booking__head span {
    display: block !important;
    max-width: 130px !important;
    margin: 0 !important;
    color: #071426 !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
    text-align: right !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 12px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 24px !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form label {
    display: grid !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #071426 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    box-sizing: border-box !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form label:nth-of-type(1),
.tb-commercial-v5 .v5-hero .tb-front-form label:nth-of-type(2) {
    grid-column: 1 / -1 !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form label:nth-of-type(5) {
    grid-column: 1 / 2 !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form label > span {
    color: #071426 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form input,
.tb-commercial-v5 .v5-hero .tb-front-form select {
    display: block !important;
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 1px !important;
    background: #ffffff !important;
    color: #071426 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    box-sizing: border-box !important;
    appearance: auto !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form input::placeholder {
    color: #64748b !important;
    opacity: 1 !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form input:focus,
.tb-commercial-v5 .v5-hero .tb-front-form select:focus {
    outline: none !important;
    border-color: #ff6b00 !important;
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.16) !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form button,
.tb-commercial-v5 .v5-hero .tb-front-form button[type="submit"] {
    grid-column: 1 / -1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 54px !important;
    min-height: 54px !important;
    margin: 6px 0 0 !important;
    padding: 0 22px !important;
    border: 0 !important;
    border-radius: 1px !important;
    background: #ff6b00 !important;
    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: none !important;
    opacity: 1 !important;
    box-sizing: border-box !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form button:hover,
.tb-commercial-v5 .v5-hero .tb-front-form button[type="submit"]:hover {
    background: #ea580c !important;
    color: #ffffff !important;
}

@media (max-width: 1120px) {
    .tb-commercial-v5 .v5-hero .v5-hero-grid {
        grid-template-columns: minmax(0, 1fr) 390px !important;
        gap: 44px !important;
    }
}

@media (max-width: 980px) {
    .tb-commercial-v5 .v5-hero .v5-hero-grid {
        grid-template-columns: 1fr !important;
    }

    .tb-commercial-v5 .v5-hero .v5-order,
    .tb-commercial-v5 .v5-hero .v5-order > .tb-front-booking {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        justify-self: stretch !important;
    }
}

@media (max-width: 620px) {
    .tb-commercial-v5 .v5-hero .tb-front-booking__head {
        grid-template-columns: 1fr !important;
    }

    .tb-commercial-v5 .v5-hero .tb-front-booking__head strong {
        white-space: normal !important;
    }

    .tb-commercial-v5 .v5-hero .tb-front-booking__head span {
        max-width: none !important;
        text-align: left !important;
    }

    .tb-commercial-v5 .v5-hero .tb-front-form {
        grid-template-columns: 1fr !important;
    }

    .tb-commercial-v5 .v5-hero .tb-front-form label:nth-of-type(5) {
        grid-column: auto !important;
    }
}

/* CHANGE 3J: commercial v5 shared booking form head after subtitle removal */
.tb-commercial-v5 .v5-hero .tb-front-booking__head {
    grid-template-columns: 1fr !important;
}

.tb-commercial-v5 .v5-hero .tb-front-booking__head strong:only-child {
    grid-column: 1 / -1 !important;
}

.tb-commercial-v5 .v5-hero .tb-front-booking__head strong {
    white-space: normal !important;
}

/* CHANGE 3K: commercial hero shared trust list START */
.tb-commercial-v5 .v5-hero .tb-front-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.tb-commercial-v5 .v5-hero .tb-front-trust li {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.tb-commercial-v5 .v5-hero .tb-front-trust li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tb-front-orange, #ff6b00);
}

.tb-commercial-v5 .v5-hero .tb-front-trust__secure {
    flex-basis: 100%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tb-commercial-v5 .v5-hero .tb-front-trust__lock {
    width: 14px;
    height: 14px;
    color: #f97316;
    flex: 0 0 auto;
}

@media (max-width: 760px) {
    .tb-commercial-v5 .v5-hero .tb-front-trust__secure {
        flex-basis: auto;
    }
}
/* CHANGE 3K: commercial hero shared trust list END */

/* CHANGE 3L-B: commercial hero/form visual sync with homepage START */
.tb-commercial-v5 .v5-hero {
    position: relative !important;
    overflow: hidden !important;
    padding: 54px 0 36px !important;
    background:
        linear-gradient(90deg, rgba(7, 23, 47, 0.98), rgba(7, 23, 47, 0.72)),
        var(--tb-front-hero-bg, none) !important;
    background-size: cover !important;
    background-position: center !important;
    color: #ffffff !important;
}

.tb-commercial-v5 .v5-hero::after {
    content: "" !important;
    position: absolute !important;
    inset: auto -12% -45% 40% !important;
    height: 420px !important;
    border-radius: 999px !important;
    background: rgba(249, 115, 22, 0.18) !important;
    filter: blur(72px) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.tb-commercial-v5 .v5-hero > .v5-container {
    width: min(1200px, calc(100% - 32px)) !important;
    margin: 0 auto !important;
}

.tb-commercial-v5 .v5-hero .v5-hero-grid {
    position: relative !important;
    z-index: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.86fr) !important;
    gap: 34px !important;
    align-items: center !important;
}

.tb-commercial-v5 .v5-hero .v5-eyebrow {
    display: inline-flex !important;
    margin: 0 0 16px !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
}

.tb-commercial-v5 .v5-hero h1 {
    max-width: 760px !important;
    margin: 0 !important;
    color: #ffffff !important;
    font-size: clamp(38px, 5vw, 62px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
}

.tb-commercial-v5 .v5-hero .v5-lead {
    max-width: 650px !important;
    margin: 20px 0 0 !important;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: clamp(17px, 1.8vw, 21px) !important;
    line-height: 1.55 !important;
}

.tb-commercial-v5 .v5-hero .v5-hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 26px 0 0 !important;
}

.tb-commercial-v5 .v5-hero .v5-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    padding: 0 18px !important;
    border-radius: 1px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.tb-commercial-v5 .v5-hero .v5-button-orange {
    background: #ff6b00 !important;
    color: #ffffff !important;
    border: 1px solid #ff6b00 !important;
}

.tb-commercial-v5 .v5-hero .v5-button-outline {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.tb-commercial-v5 .v5-hero .v5-order {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: none !important;
    justify-self: end !important;
}

.tb-commercial-v5 .v5-hero .tb-front-booking {
    width: 100% !important;
    max-width: 410px !important;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.30) !important;
    border-radius: 0 !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 253, 0.98) 100%) !important;
    color: #07172f !important;
    box-shadow:
        0 20px 46px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form {
    padding: 14px 16px 16px !important;
    gap: 8px 10px !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form label {
    gap: 5px !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form span {
    color: #42526a !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form input,
.tb-commercial-v5 .v5-hero .tb-front-form select {
    min-height: 38px !important;
    height: 38px !important;
    padding: 0 12px !important;
    border: 1px solid #c9d4e3 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: #111827 !important;
    font-size: 14px !important;
    box-shadow: inset 0 1px 0 rgba(7, 23, 47, 0.03) !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form input::placeholder {
    color: #8a95a6 !important;
}

.tb-commercial-v5 .v5-hero .tb-front-form button {
    min-height: 41px !important;
    height: 41px !important;
    padding: 0 18px !important;
    border-radius: 0 !important;
    background: linear-gradient(180deg, #ff8124 0%, #f97316 100%) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    box-shadow:
        0 12px 24px rgba(249, 115, 22, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.tb-commercial-v5 .v5-hero .tb-front-trust {
    margin: 28px 0 0 !important;
}

@media (max-width: 980px) {
    .tb-commercial-v5 .v5-hero .v5-hero-grid {
        grid-template-columns: 1fr !important;
    }

    .tb-commercial-v5 .v5-hero .v5-order,
    .tb-commercial-v5 .v5-hero .tb-front-booking {
        width: 100% !important;
        max-width: none !important;
        justify-self: stretch !important;
    }
}

@media (max-width: 760px) {
    .tb-commercial-v5 .v5-hero {
        padding: 28px 0 22px !important;
        background-position: center center !important;
    }

    .tb-commercial-v5 .v5-hero::after {
        inset: 0 !important;
        height: auto !important;
        border-radius: 0 !important;
        filter: none !important;
        background:
            linear-gradient(180deg, rgba(3,17,36,.94) 0%, rgba(3,17,36,.86) 56%, rgba(3,17,36,.92) 100%) !important;
    }

    .tb-commercial-v5 .v5-hero .v5-hero-grid {
        gap: 18px !important;
    }

    .tb-commercial-v5 .v5-hero .v5-eyebrow {
        padding: 5px 8px !important;
        font-size: 10px !important;
    }

    .tb-commercial-v5 .v5-hero h1 {
        margin-top: 13px !important;
        font-size: clamp(31px, 9.4vw, 42px) !important;
    }

    .tb-commercial-v5 .v5-hero .v5-lead {
        margin-top: 10px !important;
        font-size: 14px !important;
        line-height: 1.45 !important;
    }

    .tb-commercial-v5 .v5-hero .v5-hero-actions {
        margin-top: 15px !important;
        gap: 8px !important;
    }

    .tb-commercial-v5 .v5-hero .v5-button {
        min-height: 40px !important;
        padding: 0 13px !important;
        font-size: 12px !important;
        font-weight: 950 !important;
    }

    .tb-commercial-v5 .v5-hero .tb-front-trust {
        margin-top: 13px !important;
        gap: 8px !important;
        font-size: 10.5px !important;
    }
}
/* CHANGE 3L-B: commercial hero/form visual sync with homepage END */

/* CHANGE 3O-C: correct routes accordion scope START */
.v5-routes-card.v5-routes-compact.v5-routes-split-accordion {
    padding: 34px !important;
    min-height: 0 !important;
}

.v5-routes-split-accordion > .v5-routes-compact-head {
    display: grid !important;
    grid-template-columns: minmax(180px, .75fr) minmax(260px, 1.4fr) !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 0 !important;
    margin: 0 0 28px !important;
}

.v5-routes-split-accordion > .v5-routes-compact-head h2,
.v5-routes-split-accordion > .v5-routes-compact-head .v5-routes-kicker {
    margin: 0 !important;
}

.v5-routes-split-accordion .v5-routes-popular-grid {
    margin-top: 0 !important;
}

.v5-routes-more-accordion {
    display: block !important;
    margin-top: 24px !important;
    padding-top: 22px !important;
    border-top: 1px solid #dbe5ef !important;
}

.v5-routes-more-accordion > summary.v5-routes-more-summary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 38px !important;
    padding: 0 16px !important;
    border: 1px solid #dbe5ef !important;
    background: #f7f9fc !important;
    color: #ff6b00 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    list-style: none !important;
    user-select: none !important;
}

.v5-routes-more-accordion > summary.v5-routes-more-summary::-webkit-details-marker {
    display: none !important;
}

.v5-routes-more-accordion > summary.v5-routes-more-summary::after {
    content: "+" !important;
    margin-left: 8px !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

.v5-routes-more-accordion[open] > summary.v5-routes-more-summary {
    background: #fff3e8 !important;
    border-color: rgba(255, 107, 0, 0.26) !important;
}

.v5-routes-more-accordion[open] > summary.v5-routes-more-summary::after {
    content: "−" !important;
}

.v5-routes-more-accordion:not([open]) > .v5-routes-more-grid {
    display: none !important;
}

.v5-routes-more-accordion[open] > .v5-routes-more-grid {
    display: grid !important;
    margin-top: 22px !important;
}

@media (max-width: 760px) {
    .v5-routes-card.v5-routes-compact.v5-routes-split-accordion {
        padding: 22px 18px !important;
    }

    .v5-routes-split-accordion > .v5-routes-compact-head {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }

    .v5-routes-more-accordion > summary.v5-routes-more-summary {
        width: 100% !important;
    }
}
/* CHANGE 3O-C: correct routes accordion scope END */

/* CHANGE 3P: route buttons same style 4 columns START */
.v5-routes-split-accordion .v5-routes-popular-grid,
.v5-routes-more-accordion[open] > .v5-routes-more-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.v5-routes-split-accordion .v5-route-pill,
.v5-routes-more-accordion .v5-route-more-link {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 54px !important;
    padding: 14px 16px !important;
    border: 1px solid #dbe5ef !important;
    border-radius: 1px !important;
    background: #f7f9fc !important;
    color: #06172f !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
}

.v5-routes-split-accordion .v5-route-pill:hover,
.v5-routes-split-accordion .v5-route-pill:focus,
.v5-routes-more-accordion .v5-route-more-link:hover,
.v5-routes-more-accordion .v5-route-more-link:focus {
    border-color: rgba(255, 107, 0, 0.35) !important;
    background: #ffffff !important;
    color: #06172f !important;
}

@media (max-width: 1050px) {
    .v5-routes-split-accordion .v5-routes-popular-grid,
    .v5-routes-more-accordion[open] > .v5-routes-more-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    .v5-routes-split-accordion .v5-routes-popular-grid,
    .v5-routes-more-accordion[open] > .v5-routes-more-grid {
        grid-template-columns: 1fr !important;
    }
}
/* CHANGE 3P: route buttons same style 4 columns END */

/* CHANGE 3W-RETRY2: homepage-style shared fleet on commercial pages START */
.tb-commercial-v5 .tb-shared-fleet-section {
    padding: clamp(56px, 7vw, 90px) 0;
    background: #f4f7fb;
}

.tb-commercial-v5 .tb-shared-fleet-section .tb-front-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.tb-commercial-v5 .tb-shared-fleet-section .tb-front-section__head {
    margin-bottom: 28px;
}

.tb-commercial-v5 .tb-shared-fleet-section .tb-front-section__head h2 {
    margin: 0 0 10px;
    color: #071426;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.tb-commercial-v5 .tb-shared-fleet-section .tb-front-section__head p {
    max-width: 920px;
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.65;
}

.tb-commercial-v5 .tb-front-fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.tb-commercial-v5 .tb-front-vehicle-card {
    overflow: hidden;
    border: 1px solid #cbd5e1;
    background: #fff;
    box-shadow: 0 14px 34px rgba(7, 20, 38, 0.06);
}

.tb-commercial-v5 .tb-front-vehicle-card__media {
    display: block;
    padding: 16px 16px 0;
    background: #fff;
    text-decoration: none;
}

.tb-commercial-v5 .tb-front-vehicle-card__media img {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.tb-commercial-v5 .tb-front-vehicle-card__body {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
}

.tb-commercial-v5 .tb-front-vehicle-card h3 {
    margin: 0 0 8px;
    color: #071426;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.tb-commercial-v5 .tb-front-vehicle-card h3 a {
    color: inherit;
    text-decoration: none;
}

.tb-commercial-v5 .tb-front-vehicle-card h3 a:hover,
.tb-commercial-v5 .tb-front-vehicle-card h3 a:focus-visible {
    color: #ff6b00;
}

.tb-commercial-v5 .tb-front-vehicle-card p {
    margin: 0 0 12px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.45;
}

.tb-commercial-v5 .tb-front-vehicle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tb-commercial-v5 .tb-front-vehicle-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 8px;
    background: #ff6b00;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.tb-commercial-v5 .tb-front-section__actions {
    margin-top: 26px;
    text-align: center;
}

.tb-commercial-v5 .tb-front-link {
    display: inline-flex;
    align-items: center;
    color: #ff6b00;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.tb-commercial-v5 .tb-front-link:hover,
.tb-commercial-v5 .tb-front-link:focus-visible {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .tb-commercial-v5 .tb-front-fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .tb-commercial-v5 .tb-front-fleet-grid {
        grid-template-columns: 1fr;
    }

    .tb-commercial-v5 .tb-front-vehicle-card__media img {
        height: 170px;
    }
}
/* CHANGE 3W-RETRY2: homepage-style shared fleet on commercial pages END */



/* FORM 2N: shared hero/front route swap button */
.tb-front-form .tb-front-form__swap,
.tb-front-form button.tb-front-form__swap {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 40px !important;
    padding: 0 12px !important;
    border: 1px solid rgba(15, 23, 42, 0.16) !important;
    border-radius: 12px !important;
    background: #f3f6fb !important;
    color: #0f172a !important;
    box-shadow: none !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    text-transform: none !important;
    cursor: pointer !important;
}

.tb-front-form .tb-front-form__swap:hover,
.tb-front-form .tb-front-form__swap:focus-visible {
    background: #e8eef7 !important;
    color: #0f172a !important;
    box-shadow: none !important;
    transform: none !important;
}

.tb-front-form .tb-front-form__swap + label {
    grid-column: 1 / -1 !important;
}

/* FLEET 1B: commercial vehicle spec labels START */
.tb-commercial-v5 .tb-shared-fleet-section .tb-front-vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 0;
    margin: 14px 0 0;
    list-style: none;
}

.tb-commercial-v5 .tb-shared-fleet-section .tb-front-vehicle-specs li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.tb-commercial-v5 .tb-shared-fleet-section .tb-front-vehicle-spec {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    padding: 5px 9px;
    border: 1px solid #b45309;
    border-radius: 0;
    background: #b45309;
    color: #ffffff;
    line-height: 1;
}

.tb-commercial-v5 .tb-shared-fleet-section .tb-front-vehicle-spec svg,
.tb-commercial-v5 .tb-shared-fleet-section .tb-front-vehicle-spec .tb-front-lucide {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    color: currentColor;
}

.tb-commercial-v5 .tb-shared-fleet-section .tb-front-vehicle-spec > span {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.tb-commercial-v5 .tb-shared-fleet-section .tb-front-vehicle-spec strong {
    display: inline;
    color: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.tb-commercial-v5 .tb-shared-fleet-section .tb-front-vehicle-spec small {
    display: inline;
    color: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}
/* FLEET 1B: commercial vehicle spec labels END */

