/* =========================================================
   TRAVEL SWIFT — HOMEPAGE STYLES
   File: public/assets/css/style.css
   Palette:
   #212331 — charcoal
   #D87200 — orange
   #263376 — navy
   #FFFFFF — white
========================================================= */

/* =========================================================
   1. DESIGN TOKENS
========================================================= */
:root {
    --colour-charcoal: #212331;
    --colour-orange: #D87200;
    --colour-navy: #263376;
    --colour-white: #FFFFFF;

    --colour-text: #343746;
    --colour-muted: #666B7A;
    --colour-border: #D9DCE8;
    --colour-soft: #F4F6FB;
    --colour-soft-blue: #EEF1FA;
    --colour-soft-orange: #FFF5E9;
    --colour-success: #167D4A;
    --colour-error: #B42318;

    --font-body: Arial, Helvetica, sans-serif;

    --container-width: 1520px;
    --container-narrow: 920px;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --shadow-sm: 0 8px 24px rgba(33, 35, 49, 0.08);
    --shadow-md: 0 18px 46px rgba(33, 35, 49, 0.12);
    --shadow-lg: 0 26px 70px rgba(33, 35, 49, 0.18);

    --transition-fast: 180ms ease;
    --transition-normal: 280ms ease;

    --section-space: 110px;
    --section-space-tablet: 84px;
    --section-space-mobile: 64px;
}

/* =========================================================
   2. RESET / GLOBALS
========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--colour-text);
    background: var(--colour-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(216, 114, 0, 0.36);
    outline-offset: 4px;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure,
blockquote {
    margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child,
figure:last-child {
    margin-bottom: 0;
}

ul,
ol {
    padding-left: 1.25rem;
}

address {
    font-style: normal;
}

main {
    overflow: hidden;
}

.container {
    width: min(calc(100% - 160px), var(--container-width));
    margin-inline: auto;
}

.container--narrow {
    width: min(calc(100% - 160px), var(--container-narrow));
}

.section {
    padding-block: var(--section-space);
}

.section--soft {
    background: var(--colour-soft);
}

.section--dark {
    color: var(--colour-white);
    background:
        radial-gradient(circle at 10% 10%, rgba(216, 114, 0, 0.15), transparent 28%),
        linear-gradient(135deg, var(--colour-charcoal), var(--colour-navy));
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 9999;
    transform: translateY(-150%);
    padding: 12px 18px;
    color: var(--colour-white);
    background: var(--colour-charcoal);
    border-radius: var(--radius-sm);
    transition: transform var(--transition-fast);
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--colour-orange);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    color: var(--colour-charcoal);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 820px;
    margin-bottom: 24px;
    font-size: 46px !important;
}

h2 {
    margin-bottom: 22px;
    font-size: 34px !important;
}

h3 {
    margin-bottom: 14px;
    font-size: 22px !important;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 54px;
}

.section-heading--centred {
    margin-inline: auto;
    text-align: center;
}

.section-heading p:not(.eyebrow) {
    margin-inline: auto;
    color: var(--colour-muted);
    font-size: 1.08rem;
}

.section--dark h2,
.section--dark h3,
.section--dark p {
    color: var(--colour-white);
}

/* =========================================================
   3. BUTTONS / LINKS
========================================================= */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    font-size: 0.97rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        box-shadow var(--transition-fast);
}

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

.button--primary {
    color: var(--colour-white);
    background: var(--colour-orange);
    box-shadow: 0 12px 28px rgba(216, 114, 0, 0.26);
}

.button--primary:hover {
    background: #BD6300;
    box-shadow: 0 16px 34px rgba(216, 114, 0, 0.32);
}

.button--secondary {
    color: var(--colour-white);
    background: var(--colour-navy);
}

.button--secondary:hover {
    background: var(--colour-charcoal);
}

.button--light {
    color: var(--colour-navy);
    background: var(--colour-white);
}

.button--light:hover {
    color: var(--colour-white);
    background: var(--colour-orange);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--colour-navy);
    font-weight: 800;
    transition: color var(--transition-fast), gap var(--transition-fast);
}

.text-link::after {
    content: "→";
    color: var(--colour-orange);
    font-size: 1.1rem;
}

.text-link:hover {
    gap: 14px;
    color: var(--colour-orange);
}

.section-action {
    margin-top: 42px;
    text-align: center;
}

.content-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

/* =========================================================
   4. TOP BAR
========================================================= */
.topbar {
    position: relative;
    z-index: 30;
    color: rgba(255, 255, 255, 0.86);
    background: var(--colour-charcoal);
    font-size: 0.82rem;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    gap: 24px;
}

.topbar__details,
.topbar__social {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar a {
    transition: color var(--transition-fast);
}

.topbar a:hover {
    color: var(--colour-white);
}

.topbar__social a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
}

/* =========================================================
   5. MAIN HEADER
========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(38, 51, 118, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 22px rgba(33, 35, 49, 0.04);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    min-height: 88px;
    gap: 26px;
}

.site-logo {
    flex: 0 0 auto;
}

.site-logo img {
    width: 122px;
    max-height: 68px;
    object-fit: contain;
}

.primary-nav {
    margin-left: auto;
}

.primary-nav__list,
.submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.primary-nav__list > li {
    position: relative;
}

.primary-nav__list > li > a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 88px;
    padding-inline: 12px;
    color: var(--colour-charcoal);
    font-size: 0.9rem;
    font-weight: 750;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.primary-nav__list > li > a:hover,
.primary-nav__list > li > a[aria-current="page"] {
    color: var(--colour-orange);
}

.primary-nav__list > li > a[aria-current="page"]::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 20px;
    left: 12px;
    height: 3px;
    border-radius: var(--radius-pill);
    background: var(--colour-orange);
}

.has-submenu > a::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.has-submenu > a[aria-current="page"]::after {
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    border-radius: 0;
    background: transparent;
    transform: rotate(45deg) translateY(-2px);
}

.submenu {
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    width: 265px;
    padding: 10px;
    border: 1px solid rgba(38, 51, 118, 0.08);
    border-radius: 16px;
    background: var(--colour-white);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity var(--transition-fast),
        visibility var(--transition-fast),
        transform var(--transition-fast);
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu a {
    display: block;
    padding: 11px 13px;
    border-radius: 9px;
    color: var(--colour-charcoal);
    font-size: 0.9rem;
    font-weight: 700;
    transition:
        color var(--transition-fast),
        background-color var(--transition-fast);
}

.submenu a:hover {
    color: var(--colour-orange);
    background: var(--colour-soft-orange);
}

.site-header__cta {
    flex: 0 0 auto;
    min-height: 48px;
    padding-inline: 20px;
}

.nav-toggle {
    position: relative;
    display: none;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(38, 51, 118, 0.08);
    border-radius: 12px;
    background: var(--colour-soft);
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    display: block;
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: var(--radius-pill);
    background: var(--colour-charcoal);
    transform: translateX(-50%);
    transform-origin: center;
    transition:
        top var(--transition-fast),
        transform var(--transition-fast),
        opacity var(--transition-fast);
}

.nav-toggle span:nth-child(1) {
    top: 16px;
}

.nav-toggle span:nth-child(2) {
    top: 23px;
}

.nav-toggle span:nth-child(3) {
    top: 30px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    top: 23px;
    transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 23px;
    transform: translateX(-50%) rotate(-45deg);
}

/* =========================================================
   6. HERO WITH RIGHT-SIDE QUOTE FORM
========================================================= */
.hero {
    position: relative;
    display: flex;
    min-height: 700px;
    overflow: hidden;
    color: var(--colour-charcoal);
    background: #F7F8FB;
    isolation: isolate;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    filter: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    align-items: center;
    gap: clamp(40px, 4vw, 72px);
    padding-block: 54px;
}

.hero__content {
    width: auto;
    max-width: 720px;
}

.hero .eyebrow {
    color: var(--colour-orange);
}

.hero h1 {
    color: var(--colour-charcoal);
}

.hero__intro {
    max-width: 680px;
    margin-bottom: 28px;
    color: #4F5668;
    font-size: clamp(1.08rem, 1.4vw, 1.3rem);
}

.hero__benefits {
    display: grid;
    gap: 10px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.hero__benefits li {
    position: relative;
    padding-left: 30px;
    color: var(--colour-charcoal);
    font-weight: 700;
}

.hero__benefits li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    color: var(--colour-white);
    border-radius: 50%;
    background: var(--colour-orange);
    font-size: 0.75rem;
    line-height: 1;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero .button--secondary {
    color: var(--colour-charcoal);
    border-color: rgba(33, 35, 49, 0.14);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(33, 35, 49, 0.08);
}

.hero .button--secondary:hover {
    color: var(--colour-white);
    border-color: var(--colour-charcoal);
    background: var(--colour-charcoal);
}

.hero__note {
    margin-top: 18px;
    color: #606778;
    font-size: 0.9rem;
}

/* Hero quote card */
.hero__quote {
    position: relative;
    width: 520px;
    max-width: 520px;
    justify-self: end;
    overflow: hidden;
    color: var(--colour-text);
    border: 1px solid rgba(38, 51, 118, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 66px rgba(33, 35, 49, 0.18);
    backdrop-filter: blur(8px);
}

.hero__quote-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 22px 24px;
    color: var(--colour-white);
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(135deg, var(--colour-orange), #B95F00);
}

.hero__quote-heading > div {
    min-width: 0;
}

.hero__quote-kicker {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.25;
    text-transform: uppercase;
}

.hero__quote-heading h2 {
    margin-bottom: 5px;
    color: var(--colour-white);
    font-size: 28px !important;
}

.hero__quote-heading p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.8rem;
    line-height: 1.45;
}

.hero__quote-badge {
    display: grid;
    place-items: center;
    flex: 0 0 92px;
    min-height: 58px;
    padding: 10px;
    color: var(--colour-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    background: rgba(33, 35, 49, 0.22);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
}

.quote-form-shell {
    min-height: 0;
    padding: 24px;
    border: 1px solid rgba(38, 51, 118, 0.1);
    border-radius: var(--radius-lg);
    background: var(--colour-white);
    box-shadow: var(--shadow-lg);
}

.hero__quote .quote-form-shell {
    padding: 24px 32px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.quote-form-shell:empty::before {
    content: "The custom two-step quote form will be inserted here.";
    display: grid;
    place-items: center;
    min-height: 230px;
    color: var(--colour-muted);
    border: 2px dashed var(--colour-border);
    border-radius: 18px;
    background: var(--colour-soft);
    text-align: center;
}

/* =========================================================
   8. TRUST STRIP
========================================================= */
.trust-strip {
    color: var(--colour-white);
    background: var(--colour-navy);
}

.trust-strip__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.trust-strip__list li {
    position: relative;
    display: grid;
    gap: 4px;
    min-height: 126px;
    padding: 28px 30px;
    align-content: center;
}

.trust-strip__list li + li::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.trust-strip strong {
    color: var(--colour-white);
    font-size: 1.05rem;
}

.trust-strip span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

/* =========================================================
   9. SPLIT LAYOUTS / SHARED CONTENT
========================================================= */
.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(52px, 7vw, 110px);
}

.split-layout--reverse .split-layout__media {
    order: 2;
}

.split-layout--reverse .split-layout__content {
    order: 1;
}

.split-layout__media {
    position: relative;
}

.split-layout__media::before {
    content: "";
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: -1;
    width: 42%;
    height: 42%;
    border-radius: 24px;
    background: var(--colour-soft-orange);
}

.split-layout__media img {
    width: 100%;
    min-height: 520px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.split-layout__content > p:not(.eyebrow) {
    color: var(--colour-muted);
    font-size: 1.02rem;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 30px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--colour-charcoal);
    font-weight: 700;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    top: 3px;
    left: 0;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: var(--colour-white);
    border-radius: 50%;
    background: var(--colour-orange);
    font-size: 0.75rem;
}

/* =========================================================
   10. SERVICES
========================================================= */
.card-grid {
    display: grid;
    gap: 26px;
}

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

.service-card,
.fleet-card,
.process-card,
.benefit-card,
.testimonial-card {
    border: 1px solid rgba(38, 51, 118, 0.08);
    border-radius: var(--radius-md);
    background: var(--colour-white);
    box-shadow: var(--shadow-sm);
}

.service-card {
    overflow: hidden;
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.service-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.service-card__content {
    padding: 28px;
}

.service-card p {
    min-height: 82px;
    color: var(--colour-muted);
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--colour-navy);
    font-weight: 800;
}

.service-card a::after {
    content: "→";
    color: var(--colour-orange);
}

.service-card a:hover {
    color: var(--colour-orange);
}

/* =========================================================
   11. BOOKING PROCESS
========================================================= */
.process-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-card {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    padding: 34px;
}

.process-card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -45px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--colour-soft-orange);
}

.process-card__number {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    color: var(--colour-white);
    border-radius: 16px;
    background: var(--colour-orange);
    font-weight: 900;
}

.process-card h3,
.process-card p {
    position: relative;
    z-index: 1;
}

.process-card p {
    color: var(--colour-muted);
}

/* =========================================================
   12. FLEET
========================================================= */
.fleet-home .section-heading p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

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

.fleet-card {
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: blur(8px);
    transition:
        transform var(--transition-normal),
        background-color var(--transition-normal);
}

.fleet-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

.fleet-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.fleet-card__content {
    padding: 28px;
}

.fleet-card__content p {
    color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   13. WHY CHOOSE US
========================================================= */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    position: relative;
    min-height: 230px;
    padding: 32px;
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        border-color var(--transition-normal);
}

.benefit-card::before {
    content: "";
    display: block;
    width: 48px;
    height: 6px;
    margin-bottom: 28px;
    border-radius: var(--radius-pill);
    background: var(--colour-orange);
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 114, 0, 0.24);
    box-shadow: var(--shadow-md);
}

.benefit-card p {
    color: var(--colour-muted);
}

/* =========================================================
   14. COVERAGE
========================================================= */
.location-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 30px;
    padding: 0;
    list-style: none;
}

.location-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 12px 16px;
    border: 1px solid var(--colour-border);
    border-radius: 12px;
    color: var(--colour-charcoal);
    background: var(--colour-white);
    font-weight: 750;
    transition:
        color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.location-links a::after {
    content: "→";
    color: var(--colour-orange);
}

.location-links a:hover {
    transform: translateX(4px);
    color: var(--colour-orange);
    border-color: rgba(216, 114, 0, 0.4);
}

/* =========================================================
   15. TESTIMONIALS
========================================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.testimonial-card {
    margin: 0;
    padding: 34px;
}

.testimonial-card blockquote {
    margin: 0 0 28px;
}

.testimonial-card blockquote::before {
    content: "“";
    display: block;
    height: 44px;
    color: var(--colour-orange);
    font-family: Georgia, serif;
    font-size: 4.4rem;
    line-height: 0.9;
}

.testimonial-card blockquote p {
    color: var(--colour-charcoal);
    font-size: 1.02rem;
    font-weight: 650;
}

.testimonial-card figcaption {
    display: grid;
    gap: 2px;
    padding-top: 20px;
    border-top: 1px solid var(--colour-border);
}

.testimonial-card figcaption strong {
    color: var(--colour-navy);
}

.testimonial-card figcaption span {
    color: var(--colour-muted);
    font-size: 0.88rem;
}

.content-note {
    margin-top: 28px;
    color: var(--colour-muted);
    font-size: 0.85rem;
    text-align: center;
}

/* =========================================================
   16. FAQ
========================================================= */
.faq-home {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 8%, rgba(216, 114, 0, 0.12), transparent 24%),
        linear-gradient(135deg, #F7F8FC 0%, #FFFFFF 52%, #F3F5FB 100%);
}

.faq-home::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;
    width: 520px;
    height: 520px;
    border: 70px solid rgba(38, 51, 118, 0.035);
    border-radius: 50%;
    pointer-events: none;
}

.faq-home::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -160px;
    width: 420px;
    height: 420px;
    border: 55px solid rgba(216, 114, 0, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.faq-showcase {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: clamp(48px, 7vw, 110px);
}

.faq-showcase__intro {
    position: relative;
    top: auto;
    align-self: start;
    overflow: hidden;
    min-height: 590px;
    padding: 54px;
    color: var(--colour-white);
    border-radius: 32px;
    background:
        radial-gradient(circle at 85% 15%, rgba(216, 114, 0, 0.28), transparent 28%),
        linear-gradient(145deg, var(--colour-navy), var(--colour-charcoal));
    box-shadow: var(--shadow-lg);
}

.faq-showcase__intro::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 9px;
    background: var(--colour-orange);
}

.faq-showcase__symbol {
    position: absolute;
    right: -24px;
    bottom: -116px;
    color: rgba(255, 255, 255, 0.055);
    font-size: 29rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.faq-showcase__intro-content {
    position: relative;
    z-index: 1;
}

.faq-showcase__intro h2 {
    max-width: 470px;
    color: var(--colour-white);
}

.faq-showcase__intro p:not(.eyebrow) {
    max-width: 470px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.02rem;
}

.faq-showcase__highlights {
    display: grid;
    gap: 15px;
    margin: 32px 0 36px;
    padding: 0;
    list-style: none;
}

.faq-showcase__highlights li {
    position: relative;
    padding-left: 32px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.faq-showcase__highlights li::before {
    content: "✓";
    position: absolute;
    top: 3px;
    left: 0;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    color: var(--colour-white);
    border-radius: 50%;
    background: var(--colour-orange);
    font-size: 0.72rem;
}

.faq-showcase__questions {
    position: relative;
    padding-left: 62px;
}

.faq-showcase__questions::before {
    content: "";
    position: absolute;
    top: 100px;
    bottom: 150px;
    left: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--colour-orange), rgba(216, 114, 0, 0.12));
}

.faq-showcase__topline {
    display: grid;
    gap: 4px;
    margin-bottom: 34px;
}

.faq-showcase__topline span {
    color: var(--colour-orange);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.faq-showcase__topline strong {
    color: var(--colour-charcoal);
    font-size: clamp(1.25rem, 1.7vw, 1.7rem);
    line-height: 1.25;
}

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

.faq-home .faq-item {
    position: relative;
    overflow: visible;
    border: 1px solid rgba(38, 51, 118, 0.1);
    border-radius: 20px;
    background: var(--colour-white);
    box-shadow: 0 14px 36px rgba(33, 35, 49, 0.07);
    transition: transform var(--transition-normal), border-color var(--transition-fast), box-shadow var(--transition-normal);
}

.faq-home .faq-item:nth-child(even) {
    transform: translateX(24px);
}

.faq-home .faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(216, 114, 0, 0.36);
    box-shadow: 0 20px 46px rgba(33, 35, 49, 0.11);
}

.faq-home .faq-item:nth-child(even):hover {
    transform: translate(24px, -4px);
}

.faq-home .faq-item[open] {
    border-color: var(--colour-orange);
    box-shadow: 0 22px 50px rgba(33, 35, 49, 0.13);
}

.faq-home .faq-item::before {
    content: attr(data-number);
    position: absolute;
    top: 20px;
    left: -63px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    color: var(--colour-white);
    border: 5px solid #F7F8FC;
    border-radius: 50%;
    background: var(--colour-navy);
    box-shadow: 0 8px 20px rgba(38, 51, 118, 0.22);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.faq-home .faq-item[open]::before {
    background: var(--colour-orange);
    transform: scale(1.08);
}

.faq-home .faq-item summary {
    position: relative;
    padding: 26px 76px 26px 30px;
    color: var(--colour-charcoal);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

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

.faq-home .faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 26px;
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    color: var(--colour-white);
    border-radius: 50%;
    background: var(--colour-navy);
    font-size: 1.35rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.faq-home .faq-item[open] summary::after {
    background: var(--colour-orange);
    transform: translateY(-50%) rotate(45deg);
}

.faq-home .faq-item__content {
    padding: 0 30px 27px;
}

.faq-home .faq-item__content p {
    max-width: 720px;
    color: var(--colour-muted);
}

.faq-showcase__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 38px;
    padding-top: 30px;
    border-top: 1px solid var(--colour-border);
}

.faq-showcase__footer p {
    max-width: 420px;
    margin: 0;
    color: var(--colour-muted);
}

.faq-showcase__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

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

    .faq-showcase__intro {
        position: relative;
        top: auto;
        min-height: auto;
    }

    .faq-showcase__questions {
        padding-left: 54px;
    }
}

@media (max-width: 767px) {
    .faq-showcase {
        gap: 40px;
    }

    .faq-showcase__intro {
        padding: 38px 28px;
        border-radius: 24px;
    }

    .faq-showcase__symbol {
        right: -12px;
        bottom: -70px;
        font-size: 20rem;
    }

    .faq-showcase__questions {
        padding-left: 0;
    }

    .faq-showcase__questions::before {
        display: none;
    }

    .faq-showcase__topline {
        margin-bottom: 28px;
    }

    .faq-home .faq-item,
    .faq-home .faq-item:nth-child(even) {
        transform: none;
    }

    .faq-home .faq-item:hover,
    .faq-home .faq-item:nth-child(even):hover {
        transform: translateY(-3px);
    }

    .faq-home .faq-item::before {
        top: -13px;
        left: 18px;
        width: 38px;
        height: 38px;
        border-width: 4px;
    }

    .faq-home .faq-item summary {
        padding: 34px 62px 22px 20px;
        font-size: 0.96rem;
    }

    .faq-home .faq-item summary::after {
        right: 18px;
    }

    .faq-home .faq-item__content {
        padding: 0 20px 22px;
    }

    .faq-showcase__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .faq-showcase__actions {
        display: grid;
        gap: 12px;
    }
}

/* =========================================================
   17. FINAL CTA
========================================================= */
.final-cta {
    padding-block: 78px;
    color: var(--colour-white);
    background:
        radial-gradient(circle at 80% 10%, rgba(216, 114, 0, 0.26), transparent 30%),
        linear-gradient(135deg, var(--colour-navy), var(--colour-charcoal));
}

.final-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) auto;
    align-items: center;
    gap: 48px;
}

.final-cta h2 {
    max-width: 780px;
    margin-bottom: 16px;
    color: var(--colour-white);
}

.final-cta p:not(.eyebrow) {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.04rem;
}

.final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

/* =========================================================
   18. FOOTER
========================================================= */
.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: #171924;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 50px;
    padding-block: 78px;
}

.site-footer__logo img {
    width: 136px;
    margin-bottom: 22px;
}

.site-footer__brand p {
    max-width: 330px;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
}

.site-footer__social a,
.site-footer a {
    transition: color var(--transition-fast);
}

.site-footer a:hover {
    color: var(--colour-orange);
}

.site-footer__column h2 {
    margin-bottom: 20px;
    color: var(--colour-white);
    font-size: 34px;
    letter-spacing: -0.01em;
    font-size: 1rem !important;
}

.site-footer__column ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__column address p {
    margin-bottom: 10px;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 24px;
    font-size: 0.88rem;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

/* =========================================================
   19. FLOATING ACTIONS
========================================================= */
.floating-action {
    position: fixed;
    z-index: 950;
    right: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    color: var(--colour-white);
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.floating-action:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.floating-action--whatsapp {
    bottom: 86px;
    background: #168C4B;
}

.floating-action--quote {
    bottom: 24px;
    background: var(--colour-orange);
}

/* =========================================================
   20. RESPONSIVE — LARGE DESKTOP
========================================================= */
@media (max-width: 1380px) {
    .container {
        width: min(calc(100% - 100px), var(--container-width));
    }

    .container--narrow {
        width: min(calc(100% - 100px), var(--container-narrow));
    }

    .primary-nav__list > li > a {
        padding-inline: 8px;
        font-size: 0.84rem;
    }

    .site-header__cta {
        padding-inline: 16px;
    }
}

/* =========================================================
   21. RESPONSIVE — TABLET / SMALL LAPTOP
========================================================= */
@media (max-width: 1180px) {
    :root {
        --section-space: var(--section-space-tablet);
    }

    .container {
        width: min(calc(100% - 66px), var(--container-width));
    }

    .container--narrow {
        width: min(calc(100% - 66px), var(--container-narrow));
    }

    .topbar {
        display: none;
    }

    .site-header__inner {
        min-height: 78px;
    }

    .site-logo img {
        width: 112px;
    }

    .nav-toggle {
        display: grid;
    }

    .site-header__cta {
        order: 3;
    }

    .primary-nav {
        position: fixed;
        top: 78px;
        right: 0;
        bottom: 0;
        z-index: 1002;
        width: min(430px, 100%);
        margin: 0;
        padding: 22px;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--colour-white);
        box-shadow: -18px 20px 50px rgba(33, 35, 49, 0.18);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition:
            opacity var(--transition-normal),
            visibility var(--transition-normal),
            transform var(--transition-normal);
    }

    .primary-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .primary-nav__list {
        display: grid;
        align-items: stretch;
        gap: 4px;
    }

    .primary-nav__list > li > a {
        min-height: auto;
        padding: 14px 14px;
        border-radius: 10px;
        font-size: 0.98rem;
    }

    .primary-nav__list > li > a:hover,
    .primary-nav__list > li > a[aria-current="page"] {
        background: var(--colour-soft-orange);
    }

    .primary-nav__list > li > a[aria-current="page"]::after {
        display: none;
    }

    .has-submenu > a {
        justify-content: space-between;
    }

    .submenu {
        position: static;
        display: grid;
        width: auto;
        margin: 0 0 8px 14px;
        padding: 4px 0 4px 14px;
        border: 0;
        border-left: 2px solid var(--colour-border);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .submenu a {
        padding-block: 9px;
    }

    .hero {
        min-height: 700px;
    }

    .hero__content {
        width: min(760px, 76%);
    }

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

    .service-card p {
        min-height: auto;
    }

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

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

/* =========================================================
   22. RESPONSIVE — TABLET PORTRAIT
========================================================= */
@media (max-width: 900px) {
    .topbar__social {
        display: none;
    }

    .topbar__inner {
        justify-content: center;
    }

    .hero {
        min-height: 680px;
    }

    .hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(33, 35, 49, 0.94) 0%,
                rgba(33, 35, 49, 0.82) 58%,
                rgba(33, 35, 49, 0.4) 100%
            );
    }

    .hero__content {
        width: min(720px, 88%);
    }

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

    .trust-strip__list li:nth-child(3)::before {
        display: none;
    }

    .trust-strip__list li:nth-child(n + 3) {
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .split-layout,
    .split-layout--reverse {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .split-layout--reverse .split-layout__media,
    .split-layout--reverse .split-layout__content {
        order: initial;
    }

    .split-layout__media img {
        min-height: 440px;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
    }

    .final-cta__inner {
        grid-template-columns: 1fr;
    }

    .final-cta__actions {
        justify-content: flex-start;
    }
}

/* =========================================================
   23. RESPONSIVE — MOBILE
========================================================= */
@media (max-width: 767px) {
    :root {
        --section-space: var(--section-space-mobile);
    }

    html {
        scroll-padding-top: 86px;
    }

    body {
        font-size: 15.5px;
    }

    .container,
    .container--narrow {
        width: min(calc(100% - 46px), var(--container-width));
    }

    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 26px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .topbar {
        display: none;
    }

    .site-header__inner {
        min-height: 76px;
        gap: 12px;
    }

    .site-logo img {
        width: 100px;
        max-height: 58px;
    }

    .site-header__cta {
        min-height: 44px;
        padding: 11px 15px;
        font-size: 0.84rem;
    }

    .nav-toggle {
        order: 4;
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .nav-toggle span:nth-child(1) {
        top: 14px;
    }

    .nav-toggle span:nth-child(2) {
        top: 21px;
    }

    .nav-toggle span:nth-child(3) {
        top: 28px;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1),
    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        top: 21px;
    }

    .primary-nav {
        top: 76px;
        width: 100%;
    }

    .hero {
        min-height: 700px;
    }

    .hero__media img {
        object-position: 60% center;
    }

    .hero__overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(33, 35, 49, 0.55) 0%,
                rgba(33, 35, 49, 0.82) 38%,
                rgba(33, 35, 49, 0.96) 100%
            );
    }

    .hero__inner {
        align-items: flex-end;
        padding-block: 90px 72px;
    }

    .hero__content {
        width: 100%;
    }

    .hero__intro {
        font-size: 1.03rem;
    }

    .hero__actions,
    .content-actions,
    .final-cta__actions {
        display: grid;
        width: 100%;
    }

    .hero__actions .button,
    .content-actions .button,
    .final-cta__actions .button {
        width: 100%;
    }


    .quote-form-shell {
        padding: 18px;
        border-radius: 20px;
    }

    .trust-strip__list {
        grid-template-columns: 1fr;
    }

    .trust-strip__list li {
        min-height: auto;
        padding: 22px 0;
    }

    .trust-strip__list li + li::before {
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        width: auto;
        height: 1px;
    }

    .trust-strip__list li:nth-child(3)::before {
        display: block;
    }

    .trust-strip__list li:nth-child(n + 3) {
        border-top: 0;
    }

    .split-layout__media::before {
        top: -10px;
        right: -10px;
    }

    .split-layout__media img {
        min-height: 320px;
        border-radius: 20px;
    }

    .card-grid--services,
    .card-grid--fleet,
    .benefit-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .service-card__content,
    .fleet-card__content,
    .benefit-card,
    .testimonial-card {
        padding: 24px;
    }

    .process-card {
        padding: 26px;
    }

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

    .faq-item summary {
        padding: 19px 58px 19px 20px;
    }

    .faq-item__content {
        padding: 0 20px 20px;
    }

    .final-cta {
        padding-block: 64px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-block: 60px;
    }

    .site-footer__bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 22px;
    }

    .site-footer__bottom nav {
        gap: 14px;
    }

    .floating-action {
        right: 14px;
        min-height: 46px;
        padding: 10px 15px;
        font-size: 0.82rem;
    }

    .floating-action--whatsapp {
        bottom: 72px;
    }

    .floating-action--quote {
        bottom: 14px;
    }
}

/* =========================================================
   24. VERY SMALL MOBILE
========================================================= */
@media (max-width: 430px) {
    .container,
    .container--narrow {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .site-header__cta {
        display: none;
    }

    .nav-toggle {
        margin-left: auto;
    }

    .hero__benefits li {
        padding-left: 28px;
        font-size: 0.92rem;
    }

    .floating-action--quote {
        display: none;
    }

    .floating-action--whatsapp {
        bottom: 14px;
    }
}

/* =========================================================
   25. REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   26. FINAL HOMEPAGE CORRECTIONS
   - Simplified FAQ layout
   - Removed FAQ timeline and decorative question mark
   - Equal FAQ alignment
   - Repaired mobile navigation viewport
========================================================= */

/* FAQ: simple left information box */
.faq-showcase__symbol {
    display: none !important;
}

/* FAQ: remove timeline line, numbers and staggered cards */
.faq-showcase__questions {
    padding-left: 0;
}

.faq-showcase__questions::before,
.faq-home .faq-item::before {
    display: none;
}

.faq-home .faq-item,
.faq-home .faq-item:nth-child(even),
.faq-home .faq-item:hover,
.faq-home .faq-item:nth-child(even):hover {
    width: 100%;
    transform: none;
}

.faq-home .faq-item:hover {
    transform: translateY(-3px);
}

.faq-home .faq-item[open] {
    transform: none;
}

/* Keep the intro panel clean after removing the large symbol */
.faq-showcase__intro {
    min-height: 540px;
}

.faq-showcase__intro-content {
    max-width: 500px;
}

/* Mobile/tablet menu repair */
@media (max-width: 1180px) {
    /*
     * backdrop-filter can make a fixed child use the sticky header
     * as its containing block. Removing it allows the menu panel
     * to fill the viewport correctly.
     */
    .site-header {
        overflow: visible;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-header__inner {
        position: relative;
    }

    .primary-nav {
        position: fixed;
        top: 78px;
        right: 0;
        bottom: auto;
        left: auto;
        width: min(430px, 100vw);
        height: calc(100dvh - 78px);
        max-height: calc(100dvh - 78px);
        min-height: 0;
        padding: 22px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--colour-white);
        box-shadow: -18px 20px 50px rgba(33, 35, 49, 0.18);
    }

    .primary-nav__list {
        width: 100%;
        align-content: start;
    }
}

@media (max-width: 767px) {
    .primary-nav {
        top: 76px;
        right: 0;
        left: 0;
        width: 100%;
        height: calc(100dvh - 76px);
        max-height: calc(100dvh - 76px);
        padding: 18px 23px 34px;
        box-shadow: 0 18px 40px rgba(33, 35, 49, 0.16);
    }

    .faq-showcase__intro {
        min-height: auto;
    }
}

.site-footer__copyright {
    display: grid;
    gap: 3px;
}

.site-footer__credit {
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.78rem;
}

.site-footer__credit a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 750;
}

.site-footer__credit a:hover {
    color: var(--colour-orange);
}



/* =========================================================
   28. FAQ INTRO TOP ALIGNMENT
   Keeps the left FAQ panel aligned with the top of the
   questions column instead of being pushed down by sticky top.
========================================================= */
.faq-showcase {
    align-items: start;
}

.faq-showcase__intro {
    position: relative;
    top: auto;
    align-self: start;
    margin-top: 0;
}

/* =========================================================
   29. HERO FORM RESPONSIVE LAYOUT
========================================================= */
@media (max-width: 1380px) {
    .hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(500px, 560px);
        gap: 36px;
    }

    .hero__content {
        width: auto;
    }
}

@media (max-width: 1100px) {
    .hero {
        min-height: auto;
    }

    .hero__overlay {
        background:
            linear-gradient(
                135deg,
                rgba(23, 25, 36, 0.98) 0%,
                rgba(33, 35, 49, 0.94) 58%,
                rgba(38, 51, 118, 0.9) 100%
            );
    }

    .hero__inner {
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 48px;
        padding-block: 72px;
    }

    .hero__content {
        width: 100%;
        max-width: 760px;
    }

    .hero__quote {
        max-width: 760px;
        justify-self: start;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
    }

    .hero__media img {
        object-position: center;
        opacity: 0.22;
    }

    .hero__overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(23, 25, 36, 0.9) 0%,
                rgba(33, 35, 49, 0.96) 48%,
                rgba(38, 51, 118, 0.96) 100%
            );
    }

    .hero::before {
        opacity: 0.34;
        background-size: 18px 18px;
    }

    .hero__inner {
        align-items: stretch;
        gap: 42px;
        padding-block: 64px 72px;
    }

    .hero__quote {
        max-width: none;
        border-radius: 20px;
    }

    .hero__quote-heading {
        align-items: flex-start;
        padding: 18px;
    }

    .hero__quote-heading h2 {
        font-size: 24px !important;
    }

    .hero__quote-badge {
        flex-basis: 78px;
        min-height: 52px;
        padding: 8px;
        font-size: 0.66rem;
    }

    .hero__quote .quote-form-shell {
        padding: 16px;
    }
}

@media (max-width: 430px) {
    .hero__quote-heading {
        display: block;
    }

    .hero__quote-badge {
        display: inline-grid;
        min-height: 0;
        margin-top: 12px;
        padding: 7px 10px;
    }
}

/* =========================================================
   30. BALANCED DESKTOP HERO QUOTE CARD
   Removes the separate orange heading and gives the embedded
   form more horizontal room without letting it dominate.
========================================================= */
@media (min-width: 1101px) {
    .hero {
        min-height: 700px;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(540px, 600px);
        gap: clamp(40px, 4vw, 72px);
        padding-block: 54px;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero__quote {
        max-width: 600px;
        border-radius: 22px;
        box-shadow: 0 26px 66px rgba(8, 10, 18, 0.34);
    }

    .hero__quote .quote-form-shell {
        padding: 24px 32px;
    }
}

@media (min-width: 1101px) and (max-width: 1380px) {
    .hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(510px, 560px);
        gap: 34px;
    }

    .hero__quote {
        max-width: 560px;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-block: 64px;
    }

    .hero__quote {
        width: min(100%, 660px);
        max-width: 660px;
    }

    .hero__quote .quote-form-shell {
        padding: 17px 19px 18px;
    }
}

/* =========================================================
   31. A/B-TESTED DESKTOP HERO FORM WIDTH
   Keep the quote card at exactly 520px on desktop.
   Tablet and mobile layouts remain unchanged.
========================================================= */
@media (min-width: 1101px) {
    .hero__inner {
        grid-template-columns: minmax(0, 1fr) 520px;
    }

    .hero__quote {
        width: 520px;
        max-width: 520px;
    }
}

/* =========================================================
   32. FINAL LIGHT HERO OVERRIDES
   These rules intentionally come last so older responsive
   hero declarations cannot restore the dark treatment.
========================================================= */
.hero__overlay,
.hero__scene,
.hero::before,
.hero::after {
    display: none !important;
}

.hero__media img {
    opacity: 1 !important;
    filter: none !important;
}

@media (min-width: 1101px) {
    .hero {
        min-height: 700px;
        background: #F7F8FB;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1fr) 520px;
        gap: clamp(40px, 4vw, 72px);
        padding-block: 54px;
    }

    .hero__content {
        width: auto;
        max-width: 720px;
    }

    .hero__quote {
        width: 520px;
        max-width: 520px;
    }
}

@media (max-width: 1100px) {
    .hero {
        min-height: auto;
        background:
            radial-gradient(circle at 90% 0%, rgba(216, 114, 0, 0.08), transparent 30%),
            linear-gradient(135deg, #F8FAFD 0%, #EEF2F8 100%);
    }

    .hero__media {
        display: none;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 42px;
        padding-block: 64px;
    }

    .hero__content {
        width: 100%;
        max-width: 760px;
    }

    .hero__quote {
        width: min(100%, 660px);
        max-width: 660px;
        justify-self: start;
    }

    .hero__quote .quote-form-shell {
        padding: 17px 19px 18px;
    }
}

@media (max-width: 767px) {
    .hero__inner {
        gap: 38px;
        padding-block: 52px 64px;
    }

    .hero__quote {
        width: 100%;
        max-width: none;
        border-radius: 20px;
    }

    .hero__quote .quote-form-shell {
        padding: 16px;
    }
}

/* =========================================================
   33. SUBTLE DARK HERO CALMING OVERLAY
   Adds a restrained charcoal/navy wash over the artwork.
   The left side remains lighter for dark text readability,
   while the busier coach/form side receives more calming.
========================================================= */
@media (min-width: 1101px) {
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        display: block !important;
        pointer-events: none;
    }

    .hero__inner {
        position: relative;
        z-index: 1;
    }

    .hero__media img {
        opacity: 1 !important;
        filter: none !important;
    }
}

@media (max-width: 1100px) {
    .hero::after {
        display: none !important;
    }
}

/* =========================================================
   34. MOBILE HERO ORDER — HEADING, FORM, THEN DETAILS
   Keeps the main context above the quote form while still
   making the form the first major interactive element.
========================================================= */
@media (max-width: 767px) {
    .hero__inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    /*
     * Let the individual hero content elements participate
     * directly in the mobile flex order.
     */
    .hero__content {
        display: contents;
    }

    .hero__content .eyebrow {
        order: 1;
        margin-bottom: 12px;
    }

    .hero__content h1 {
        order: 2;
        width: 100%;
        max-width: none;
        margin-bottom: 28px;
    }

    .hero__quote {
        order: 3;
        width: 100%;
        max-width: none;
        margin-bottom: 34px;
    }

    .hero__intro {
        order: 4;
        width: 100%;
        max-width: none;
        margin-bottom: 26px;
    }

    .hero__benefits {
        order: 5;
        width: 100%;
        margin-bottom: 34px;
    }

    .hero__actions {
        order: 6;
        width: 100%;
    }

    .hero__note {
        order: 7;
        width: 100%;
        margin-top: 18px;
    }
}

@media (max-width: 767px) {
    .about-hero,
    .services-hero,
    .places-hero,
    .airport-hero,
    .fleet-hero,
    .faqs-hero,
    .blog-hero,
    .contact-hero,
    .book-now-hero {
        background:
            linear-gradient(
                rgba(255, 255, 255, 0.12),
                rgba(255, 255, 255, 0.12)
            ),
            #FFFFFF
            url("/assets/images/background.svg")
            center / cover no-repeat;
    }
}

