/* --------------------------------------------- */
/*  ROOTS & RESETS                                */
/* --------------------------------------------- */
:root {
    --navy: #132A6E;
    --navy-dark: #0C1D50;
    --navy-light: #1B3A8C;
    --red: #D4202C;
    --red-dark: #A9161F;
    --red-light: #E13540;
    --ink: #14161A;
    --paper: #FFFFFF;
    --mist: #F4F5F7;
    --mist-line: #E4E6EB;
    --gold: #B8933D;
    --muted: #6B7080;
    --shadow-sm: 0 2px 10px rgba(19, 42, 110, .08);
    --shadow-md: 0 14px 34px rgba(19, 42, 110, .14);
    --shadow-lg: 0 28px 64px rgba(10, 20, 50, .20);
    --ease: cubic-bezier(.22, 1, .36, 1);
    --radius: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.display {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.01em;
}

.mono {
    font-family: 'IBM Plex Mono', monospace;
    font-variant-numeric: tabular-nums;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* --------------------------------------------- */
/*  HEADER                                       */
/* --------------------------------------------- */
header.site {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--mist-line);
}

.hbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1160px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    display: flex;
}

    .brand-mark span {
        font-family: 'Space Grotesk';
        font-weight: 700;
        font-size: 22px;
    }

    .brand-mark .l {
        color: var(--red);
    }

    .brand-mark .u {
        color: var(--navy);
    }

.brand-sub {
    font-size: 10px;
    letter-spacing: .18em;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
}

nav.main {
    display: flex;
    align-items: center;
    gap: 4px;
}

    nav.main button {
        position: relative;
        background: none;
        border: none;
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 600;
        color: var(--muted);
        border-radius: 8px;
        transition: color .2s var(--ease), background .2s var(--ease);
    }

        nav.main button:hover {
            color: var(--ink);
            background: var(--mist);
        }

        nav.main button.active {
            color: var(--navy);
            background: var(--mist);
        }

        nav.main button::after {
            content: '';
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 5px;
            height: 2px;
            background: var(--red);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .25s var(--ease);
        }

        nav.main button.active::after {
            transform: scaleX(1);
        }

.hcta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.phone-pill {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    display: none;
}

.btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

    .btn::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: -60%;
        width: 35%;
        height: 100%;
        background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .4), transparent);
        transform: skewX(-18deg);
        transition: left .55s var(--ease);
        pointer-events: none;
    }

    .btn:hover::after {
        left: 130%;
    }

    .btn > * {
        position: relative;
        z-index: 2;
    }

.btn-red {
    background: linear-gradient(135deg, var(--red-light), var(--red) 60%, var(--red-dark));
    color: #fff;
    box-shadow: 0 6px 16px rgba(212, 32, 44, .32);
}

    .btn-red:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(212, 32, 44, .4);
    }

    .btn-red:active {
        transform: translateY(0) scale(.97);
    }

.btn-navy {
    background: linear-gradient(135deg, var(--navy-light), var(--navy) 60%, var(--navy-dark));
    color: #fff;
    box-shadow: 0 6px 16px rgba(19, 42, 110, .32);
}

    .btn-navy:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(19, 42, 110, .4);
    }

    .btn-navy:active {
        transform: translateY(0) scale(.97);
    }

.btn-ghost {
    background: #fff;
    color: var(--navy);
    border: 1.5px solid var(--mist-line);
}

    .btn-ghost:hover {
        border-color: var(--navy);
        background: var(--mist);
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

.btn-ghost-light {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(8px);
}

    .btn-ghost-light:hover {
        background: rgba(255, 255, 255, .2);
        border-color: #fff;
        transform: translateY(-2px);
    }

.btn-lg {
    padding: 15px 28px;
    font-size: 15px;
}

.btn-sm {
    padding: 9px 16px;
    font-size: 13px;
    border-radius: 8px;
}

@media (min-width:720px) {
    .phone-pill {
        display: block;
    }
}

/* ===== NEW MOBILE NAV ===== */
.navtoggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    color: var(--navy);
    cursor: pointer;
    flex-shrink: 0;
}

    .navtoggle:hover {
        background: var(--mist);
    }

    .navtoggle .icon-close {
        display: none;
    }

    .navtoggle[aria-expanded="true"] .icon-menu {
        display: none;
    }

    .navtoggle[aria-expanded="true"] .icon-close {
        display: block;
    }

/* Mobile nav overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(9, 16, 42, .5);
    backdrop-filter: blur(2px);
    z-index: 88;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}

    .mobile-nav-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

/* Mobile nav panel */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(84vw, 340px);
    background: #fff;
    z-index: 89;
    padding: 20px 20px 30px;
    box-shadow: -18px 0 48px rgba(10, 20, 50, .22);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--mist-line);
}

    .mobile-nav-panel.open {
        transform: translateX(0);
    }

    .mobile-nav-panel .panel-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--mist-line);
        margin-bottom: 20px;
        flex-shrink: 0;
    }

        .mobile-nav-panel .panel-header .panel-brand {
            font-family: 'Space Grotesk';
            font-weight: 700;
            font-size: 20px;
            color: var(--navy);
        }

            .mobile-nav-panel .panel-header .panel-brand .l {
                color: var(--red);
            }

            .mobile-nav-panel .panel-header .panel-brand .u {
                color: var(--navy);
            }

    .mobile-nav-panel .panel-close {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: var(--mist);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        cursor: pointer;
        transition: background .2s var(--ease), color .2s var(--ease);
        flex-shrink: 0;
    }

        .mobile-nav-panel .panel-close:hover {
            background: var(--mist-line);
            color: var(--ink);
        }

    .mobile-nav-panel .panel-links {
        display: flex;
        flex-direction: column;
        gap: 2px;
        flex: 1;
    }

        .mobile-nav-panel .panel-links button {
            width: 100%;
            text-align: left;
            padding: 14px 16px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            background: none;
            border-radius: 10px;
            color: var(--muted);
            transition: background .2s var(--ease), color .2s var(--ease);
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            position: relative;
        }

            .mobile-nav-panel .panel-links button:hover {
                background: var(--mist);
                color: var(--ink);
            }

            .mobile-nav-panel .panel-links button.active {
                background: var(--mist);
                color: var(--navy);
            }

                .mobile-nav-panel .panel-links button.active::after {
                    content: '';
                    position: absolute;
                    left: 16px;
                    right: 16px;
                    bottom: 6px;
                    height: 2px;
                    background: var(--red);
                    border-radius: 1px;
                }

    .mobile-nav-panel .panel-divider {
        border: none;
        border-top: 1px solid var(--mist-line);
        margin: 12px 0 16px;
    }

    .mobile-nav-panel .panel-phone {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 15px;
        font-weight: 600;
        color: var(--navy);
        text-align: center;
        padding: 6px 0 10px;
    }

    .mobile-nav-panel .panel-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 4px;
    }

        .mobile-nav-panel .panel-actions .btn {
            width: 100%;
            justify-content: center;
        }

/* Hide mobile nav on desktop */
@media (min-width:861px) {
    .mobile-nav-overlay,
    .mobile-nav-panel {
        display: none !important;
    }

    .navtoggle {
        display: none !important;
    }
}

/* Show mobile nav toggle on mobile */
@media (max-width:860px) {
    nav.main {
        display: none !important;
    }

    .navtoggle {
        display: block;
    }
}

/* --------------------------------------------- */
/*  MOBILE PADDING / SPACING PASS                */
/* --------------------------------------------- */
@media (max-width:600px) {
    .wrap {
        padding: 0 16px;
    }

    .hbar {
        padding: 12px 16px;
    }

    .section {
        padding: 48px 16px;
    }

    .hero-video .wrap {
        padding: 56px 16px 48px;
    }

    .hero-actions .btn {
        min-width: 0;
        flex: 1 1 100%;
    }

    .odometer-card {
        padding: 22px;
    }

    .strip-row {
        gap: 20px;
    }

    .strip-item {
        padding-right: 20px;
        flex: 1 1 calc(50% - 10px);
    }

    .rates-hero {
        padding: 32px 0 0;
    }

    .quote-box {
        padding: 18px;
        gap: 12px;
    }

    .rate-toolbar {
        margin: 24px 0 16px;
    }

    .search-wrap {
        max-width: none;
        width: 100%;
    }

    table.rates thead th {
        top: 57px;
    }

    .rates-cta {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

        .rates-cta .btn {
            width: 100%;
            justify-content: center;
        }

    .about-hero-content,
    .contact-hero-content {
        padding: 40px 16px;
    }

    .about-banner-copy {
        padding: 28px 22px;
    }

    .contact-wrap {
        padding: 40px 10px 48px !important;
    }

    .contact-side {
        gap: 12px;
    }

    .contact-tile {
        padding: 16px;
    }

    .cform-card {
        padding: 24px 20px;
    }

    .cform-foot {
        flex-direction: column;
        align-items: stretch;
    }

        .cform-foot .btn {
            width: 100%;
            justify-content: center;
        }

    .foot-top {
        flex-direction: column;
        align-items: flex-start;
    }

        .foot-top .btn {
            width: 100%;
            justify-content: center;
        }

    .book-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .book-modal {
        max-width: none;
        width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 92vh;
        display: flex;
        flex-direction: column;
    }

    .book-body {
        padding: 18px 18px 22px;
        overflow-y: auto;
    }

    .book-head {
        padding: 18px 18px;
    }

    .book-fab {
        right: 14px;
        bottom: 14px;
        padding: 12px 18px;
    }

    .veh-art {
        height: 160px;
    }
}

/* --------------------------------------------- */
/*  PAGE SYSTEM                                  */
/* --------------------------------------------- */
main section.page {
    display: none;
}

    main section.page.active {
        display: block;
        animation: fadein .4s var(--ease);
    }

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------- */
/*  HERO – video background, h1 exactly like image */
/* --------------------------------------------- */
.hero-video {
    position: relative;
    min-height: calc(100vh - 65px);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--mist-line);
}

.hero-media-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--navy-dark);
}

.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .9;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(9, 16, 42, .94) 0%, rgba(9, 16, 42, .82) 32%, rgba(9, 16, 42, .4) 62%, rgba(9, 16, 42, .62) 100%);
}

.hero-video .wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 80px 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
}

@media (max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-video {
        min-height: auto;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
}

    .eyebrow::before {
        content: '';
        width: 18px;
        height: 2px;
        background: var(--red);
        display: inline-block;
    }

.eyebrow-light {
    color: whitesmoke;
}

    .eyebrow-light::before {
        background: whitesmoke;
    }

/* --- h1 exactly like the image --- */
.hero h1 {
    font-size: clamp(38px, 5.6vw, 64px);
    line-height: 1.04;
    margin: 0 0 20px;
    font-weight: 700;
    color: var(--ink);
}

    .hero h1.light {
        color: #fff;
    }

        .hero h1.light em {
            font-style: normal;
            color: #FF6B6B;
            display: inline-block;
        }

        .hero h1.light .accent-block {
            display: block;
            color: #FF6B6B;
            font-style: normal;
        }

.hero p.lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 46ch;
    margin: 0 0 28px;
}

    .hero p.lead.light {
        color: #D5DAF0;
    }

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .hero-actions .btn {
        flex: 1 1 auto;
        min-width: 140px;
        justify-content: center;
    }

/* --- odometer card (right panel) --- */
.odometer-card {
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04));
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .3);
}

    .odometer-card::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(120% 100% at 0% 0%, rgba(212, 32, 44, .22), transparent 55%);
    }

.odo-label {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #E4E8FA;
    font-weight: 700;
    position: relative;
}

.odo-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    position: relative;
}

    .odo-row:first-of-type {
        border-top: none;
        margin-top: 18px;
        padding-top: 0;
    }

.odo-name {
    font-size: 14px;
    color: #EDEFFA;
}

.odo-val {
    font-size: 26px;
    font-weight: 600;
}

.odo-foot {
    margin-top: 20px;
    font-size: 12px;
    color: #C7CDEA;
    position: relative;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 1;
    color: #fff;
    opacity: .75;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

    .scroll-cue svg {
        animation: bob 1.8s ease-in-out infinite;
    }

@keyframes bob {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

@media (max-width:900px) {
    .scroll-cue {
        display: none;
    }
}

/* --------------------------------------------- */
/*  STRIP (stats bar)                            */
/* --------------------------------------------- */
section.strip {
    background: var(--mist);
    border-bottom: 1px solid var(--mist-line);
    padding: 22px 0;
}

.strip-row {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.strip-item {
    display: flex;
    flex-direction: column;
    padding-right: 36px;
    border-right: 1px solid var(--mist-line);
}

    .strip-item:last-child {
        border-right: none;
        padding-right: 0;
    }

.strip-num {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 28px;
    color: var(--navy);
}

.strip-cap {
    font-size: 12px;
    color: var(--muted);
}

/* --------------------------------------------- */
/*  COMMON SECTION                               */
/* --------------------------------------------- */
.section {
    padding: 72px 20px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

    .section-head h2 {
        font-size: clamp(26px, 3.4vw, 36px);
        margin: 0 0 6px;
    }

    .section-head p {
        color: var(--muted);
        margin: 0;
        max-width: 52ch;
    }

.kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
}

/* --------------------------------------------- */
/*  SERVICE CARDS (home)                         */
/* --------------------------------------------- */
.cards3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width:820px) {
    .cards3 {
        grid-template-columns: 1fr;
    }
}

.svc {
    border: 1px solid var(--mist-line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

    .svc:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

.svc-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

    .svc-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s var(--ease);
    }

.svc:hover .svc-img img {
    transform: scale(1.09);
}

.svc-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19, 42, 110, 0) 55%, rgba(12, 20, 50, .55));
}

.svc-num {
    position: absolute;
    left: 14px;
    bottom: 12px;
    color: #fff;
    font-family: 'IBM Plex Mono';
    font-size: 12px;
    letter-spacing: .08em;
    z-index: 1;
    opacity: .9;
}

.svc-body {
    padding: 20px 22px 24px;
}

    .svc-body h3 {
        font-size: 17px;
        margin: 0 0 8px;
    }

    .svc-body p {
        font-size: 14px;
        color: var(--muted);
        margin: 0;
        line-height: 1.55;
    }

/* --------------------------------------------- */
/*  FOOTER                                       */
/* --------------------------------------------- */
footer.site {
    position: relative;
    background: linear-gradient(155deg, var(--navy-dark), #081231 75%);
    color: #fff;
    padding: 64px 0 26px;
    overflow: hidden;
}

    footer.site::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--red), var(--navy-light), var(--red));
        opacity: .7;
    }

    footer.site::after {
        content: '';
        position: absolute;
        right: -120px;
        top: -120px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(212, 32, 44, .18), transparent 70%);
        pointer-events: none;
    }

.foot-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    position: relative;
}

    .foot-top h3 {
        font-size: clamp(22px, 3vw, 30px);
        margin: 0 0 8px;
        max-width: 20ch;
    }

    .foot-top p {
        margin: 0;
        color: #AEB7E2;
        font-size: 14px;
        max-width: 44ch;
    }

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    position: relative;
}

@media (max-width:820px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:520px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }
}

footer.site h4 {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #8D97C8;
    margin: 0 0 16px;
    font-weight: 700;
}

footer.site p,
footer.site a {
    font-size: 14px;
    color: #DCE1F5;
    line-height: 2;
}

footer.site nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    cursor: pointer;
}

    footer.site nav a::before {
        content: '';
        width: 0;
        height: 1px;
        background: #fff;
        transition: width .25s var(--ease);
    }

    footer.site nav a:hover {
        color: #fff;
    }

        footer.site nav a:hover::before {
            width: 10px;
        }

.foot-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

    .foot-social a {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .14);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .2s var(--ease), transform .2s var(--ease);
    }

        .foot-social a:hover {
            background: rgba(255, 255, 255, .18);
            transform: translateY(-2px);
        }

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 36px;
    padding-top: 22px;
    font-size: 12px;
    color: #8D97C8;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
}

/* --------------------------------------------- */
/*  RATES PAGE                                   */
/* --------------------------------------------- */
.rates-hero {
    padding: 52px 20px 0;
}

.quote-box {
    background: #fff;
    border: 1px solid var(--mist-line);
    border-radius: 20px;
    padding: 26px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
    margin-bottom: 8px;
    box-shadow: var(--shadow-md);
}

@media (max-width:860px) {
    .quote-box {
        grid-template-columns: 1fr 1fr;
    }
}

.field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--mist-line);
    background: #fff;
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%236B7080' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

    .field select:hover {
        border-color: #C7CCDA;
    }

    .field select:focus-visible {
        border-color: var(--navy);
        box-shadow: 0 0 0 4px rgba(19, 42, 110, .12);
        outline: none;
    }

.quote-result {
    background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
    border-radius: 14px;
    padding: 15px 20px;
    color: #fff;
    min-width: 180px;
    box-shadow: 0 10px 26px rgba(19, 42, 110, .3);
}

    .quote-result .qr-label {
        font-size: 10px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: #AEB7E2;
    }

    .quote-result .qr-val {
        font-family: 'IBM Plex Mono';
        font-size: 24px;
        font-weight: 600;
        margin-top: 2px;
    }

    .quote-result .qr-sub {
        font-size: 11px;
        color: #AEB7E2;
        margin-top: 4px;
    }

.rate-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin: 36px 0 20px;
}

.segmented {
    display: inline-flex;
    background: var(--mist);
    border-radius: 10px;
    padding: 4px;
    border: 1px solid var(--mist-line);
}

    .segmented button {
        border: none;
        background: none;
        padding: 9px 16px;
        font-size: 13px;
        font-weight: 700;
        border-radius: 7px;
        color: var(--muted);
        transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
        cursor: pointer;
    }

        .segmented button.active {
            background: #fff;
            color: var(--navy);
            box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
        }

.search-wrap {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

    .search-wrap input {
        width: 100%;
        padding: 10px 14px 10px 36px;
        border-radius: 10px;
        border: 1.5px solid var(--mist-line);
        font-size: 14px;
        font-family: 'Inter';
        transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
        background: #fff;
    }

        .search-wrap input:focus-visible {
            border-color: var(--navy);
            box-shadow: 0 0 0 4px rgba(19, 42, 110, .12);
            outline: none;
        }

    .search-wrap svg {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }

.chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.chip {
    border: 1.5px solid var(--mist-line);
    background: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
    transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
    cursor: pointer;
}

    .chip:hover {
        border-color: var(--navy);
        color: var(--navy);
        transform: translateY(-1px);
    }

    .chip.active {
        background: var(--navy);
        border-color: var(--navy);
        color: #fff;
    }

.rate-note {
    font-size: 12.5px;
    color: var(--muted);
    margin: -8px 0 20px;
}

    .rate-note b {
        color: var(--ink);
    }

table.rates {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

    table.rates thead th {
        text-align: right;
        font-size: 10.5px;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--muted);
        padding: 10px 12px;
        border-bottom: 2px solid var(--mist-line);
        position: sticky;
        top: 64px;
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(6px);
        z-index: 2;
    }

        table.rates thead th:first-child {
            text-align: left;
        }

    table.rates tbody td {
        padding: 12px;
        text-align: right;
        border-bottom: 1px solid var(--mist-line);
    }

        table.rates tbody td:first-child {
            text-align: left;
        }

    table.rates tbody tr {
        transition: background .15s var(--ease);
    }

        table.rates tbody tr:hover {
            background: var(--mist);
        }

.car-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex: none;
}

.car-name {
    font-weight: 600;
}

.car-cat {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
}

.best {
    position: relative;
}

.best-tag {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--gold);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.depo {
    color: var(--muted);
    font-size: 12px;
}

.rate-cards {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.rate-card {
    border: 1px solid var(--mist-line);
    border-radius: 14px;
    padding: 16px;
    transition: box-shadow .25s var(--ease), transform .25s var(--ease);
    background: #fff;
}

    .rate-card:hover {
        box-shadow: var(--shadow-sm);
        transform: translateY(-2px);
    }

.rate-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.rate-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.rc-tile {
    background: var(--mist);
    border-radius: 8px;
    padding: 8px 10px;
}

    .rc-tile .rc-days {
        font-size: 10px;
        color: var(--muted);
    }

    .rc-tile .rc-price {
        font-family: 'IBM Plex Mono';
        font-weight: 600;
        font-size: 14.5px;
    }

@media (max-width:760px) {
    table.rates {
        display: none;
    }

    .rate-cards {
        display: flex;
    }
}

.rates-cta {
    background: linear-gradient(120deg, var(--red-light), var(--red-dark));
    border-radius: 20px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 44px;
    color: #fff;
    box-shadow: 0 20px 44px rgba(212, 32, 44, .28);
}

    .rates-cta h3 {
        margin: 0 0 6px;
        font-size: 20px;
    }

    .rates-cta p {
        margin: 0;
        font-size: 14px;
        color: #FBD5D8;
    }

/* --------------------------------------------- */
/*  VEHICLES PAGE                                */
/* --------------------------------------------- */
.veh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width:900px) {
    .veh-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .veh-grid {
        grid-template-columns: 1fr;
    }
}

.veh-card {
    border: 1px solid var(--mist-line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

    .veh-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

.veh-art {
    height: 190px;
    overflow: hidden;
    position: relative;
}

    .veh-art img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s var(--ease);
    }

.veh-card:hover .veh-art img {
    transform: scale(1.1);
}

.veh-art::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19, 42, 110, 0) 50%, rgba(10, 16, 40, .6));
}

.veh-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    padding: 5px 10px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.veh-price-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 1;
    background: rgba(255, 255, 255, .94);
    color: var(--navy);
    font-family: 'IBM Plex Mono';
    font-weight: 600;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 8px;
}

.veh-body {
    padding: 18px 20px 20px;
}

    .veh-body .cat {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .veh-body h4 {
        margin: 8px 0 6px;
        font-size: 17px;
    }

    .veh-body .veh-desc {
        font-size: 13px;
        color: var(--muted);
        margin: 0 0 16px;
        line-height: 1.5;
    }

    .veh-body .btn {
        width: 100%;
        justify-content: center;
    }

/* --------------------------------------------- */
/*  ABOUT PAGE                                   */
/* --------------------------------------------- */
.about-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

    .about-hero img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-hero .about-hero-scrim {
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(9, 16, 42, .92) 0%, rgba(9, 16, 42, .55) 45%, rgba(9, 16, 42, .25) 100%);
    }

.about-hero-content {
    position: relative;
    z-index: 1;
    padding: 56px 24px;
    width: 100%;
}

    .about-hero-content .eyebrow {
        color: whitesmoke;
    }

        .about-hero-content .eyebrow::before {
            background: whitesmoke;
        }

    .about-hero-content h1 {
        color: #fff;
        font-size: clamp(30px, 4.6vw, 46px);
        max-width: 18ch;
        margin: 0;
    }

.about-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 24px;
}

    .about-stats .stat {
        color: #fff;
    }

        .about-stats .stat b {
            display: block;
            font-family: 'Space Grotesk';
            font-size: 26px;
        }

        .about-stats .stat span {
            font-size: 12px;
            color: #C7CDEA;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

.about-intro {
    font-family: 'Space Grotesk';
    font-size: clamp(21px, 2.6vw, 28px);
    line-height: 1.45;
    color: var(--ink);
    max-width: 34ch;
    margin: 0 0 20px;
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

@media (max-width:820px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width:520px) {
    .feature-list {
        grid-template-columns: 1fr;
    }
}

.feature-tile {
    border: 1px solid var(--mist-line);
    border-radius: 14px;
    padding: 20px;
    transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}

    .feature-tile:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
        border-color: transparent;
    }

.feature-ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--navy);
}

.feature-tile b {
    display: block;
    font-size: 14.5px;
    margin-bottom: 6px;
}

.feature-tile span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

.about-banner {
    margin-top: 64px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 280px;
    background: var(--navy-dark);
}

@media (max-width:760px) {
    .about-banner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 220px;
}

.about-banner-copy {
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .about-banner-copy .kicker {
        color: var(--red);
    }

    .about-banner-copy h3 {
        font-size: clamp(20px, 2.6vw, 28px);
        margin: 10px 0 12px;
        max-width: 16ch;
    }

    .about-banner-copy p {
        font-size: 14px;
        color: #C7CDEA;
        line-height: 1.6;
        margin: 0 0 22px;
        max-width: 38ch;
    }

/* --------------------------------------------- */
/*  CONTACT PAGE                                 */
/* --------------------------------------------- */
.contact-hero {
    position: relative;
    padding: 0;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .contact-hero img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.contact-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(9, 16, 42, .94) 10%, rgba(9, 16, 42, .7) 55%, rgba(9, 16, 42, .4) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    padding: 64px 24px;
    width: 100%;
}

    .contact-hero-content .eyebrow {
        color: whitesmoke;
    }

        .contact-hero-content .eyebrow::before {
            background: whitesmoke;
        }

    .contact-hero-content h1 {
        color: #fff;
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
        max-width: 20ch;
    }

    .contact-hero-content p {
        color: #C7CDEA;
        max-width: 52ch;
        margin: 14px 0 0;
        font-size: 15px;
        line-height: 1.6;
    }

.contact-wrap {
    padding: 56px 20px 72px;
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 32px;
    align-items: start;
}

@media (max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-tile {
    display: flex;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--mist-line);
    border-radius: 16px;
    align-items: flex-start;
    transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}

    .contact-tile:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
        border-color: transparent;
    }

    .contact-tile .c-ic-wrap {
        width: 40px;
        height: 40px;
        border-radius: 11px;
        background: var(--mist);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: none;
    }

.c-ic {
    width: 19px;
    height: 19px;
    color: var(--red);
}

.contact-tile b {
    display: block;
    font-size: 14.5px;
    margin-bottom: 3px;
}

.contact-tile span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.contact-tile.whatsapp {
    background: linear-gradient(135deg, #1FA855, #178a45);
    border-color: transparent;
    color: #fff;
}

    .contact-tile.whatsapp b,
    .contact-tile.whatsapp span {
        color: #fff;
    }

    .contact-tile.whatsapp .c-ic-wrap {
        background: rgba(255, 255, 255, .18);
    }

    .contact-tile.whatsapp .c-ic {
        color: #fff;
    }

.cform-card {
    background: #fff;
    border: 1px solid var(--mist-line);
    border-radius: 22px;
    padding: 34px;
    box-shadow: var(--shadow-md);
}

    .cform-card h3 {
        margin: 0 0 4px;
        font-size: 20px;
    }

    .cform-card .sub {
        font-size: 13.5px;
        color: var(--muted);
        margin: 0 0 26px;
    }

.cform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width:520px) {
    .cform-row {
        grid-template-columns: 1fr;
    }
}

.cform .field {
    margin-bottom: 18px;
}

.cform label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.cform input,
.cform select,
.cform textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid var(--mist-line);
    border-radius: 11px;
    font-family: 'Inter';
    font-size: 14.5px;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    background: #fff;
}

    .cform input:focus-visible,
    .cform select:focus-visible,
    .cform textarea:focus-visible {
        border-color: var(--navy);
        box-shadow: 0 0 0 4px rgba(19, 42, 110, .12);
        outline: none;
    }

.cform textarea {
    resize: vertical;
    min-height: 110px;
}

.cform-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 6px;
}

    .cform-foot .btn {
        padding: 14px 30px;
    }

.cform-note {
    font-size: 12px;
    color: var(--muted);
}

/* --------------------------------------------- */
/*  BOOKING MODAL                                */
/* --------------------------------------------- */
.book-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(9, 16, 42, .6);
    backdrop-filter: blur(6px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 4vh 16px;
    overflow-y: auto;
}

    .book-overlay.open {
        display: flex;
    }

.book-modal {
    background: #fff;
    width: 100%;
    max-width: 620px;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: modalIn .3s var(--ease);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(.98);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.book-head {
    padding: 22px 26px;
    border-bottom: 1px solid var(--mist-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

    .book-head h3 {
        margin: 0;
        font-size: 18px;
    }

    .book-head span {
        display: block;
        font-size: 12px;
        color: var(--muted);
        margin-top: 2px;
    }

.book-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    flex: none;
    transition: .2s;
    cursor: pointer;
}

    .book-close:hover {
        background: var(--mist-line);
        color: var(--ink);
    }

.book-progress {
    display: flex;
    gap: 6px;
    padding: 0 26px;
    margin-top: 18px;
}

    .book-progress span {
        flex: 1;
        height: 4px;
        border-radius: 4px;
        background: var(--mist-line);
        transition: background .25s var(--ease);
    }

        .book-progress span.done {
            background: var(--red);
        }

.book-body {
    padding: 22px 26px 26px;
}

.book-step {
    display: none;
}

    .book-step.active {
        display: block;
        animation: fadein .3s var(--ease);
    }

.book-step-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 4px;
}

.book-step h4 {
    margin: 0 0 20px;
    font-size: 19px;
}

.book-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width:480px) {
    .book-row2 {
        grid-template-columns: 1fr;
    }
}

.book-field {
    margin-bottom: 18px;
}

    .book-field label {
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .06em;
        margin-bottom: 8px;
    }

    .book-field input,
    .book-field select,
    .book-field textarea {
        width: 100%;
        padding: 13px 14px;
        border: 1.5px solid var(--mist-line);
        border-radius: 11px;
        font-family: 'Inter';
        font-size: 14.5px;
        background: #fff;
        transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    }

        .book-field input:focus-visible,
        .book-field select:focus-visible,
        .book-field textarea:focus-visible {
            border-color: var(--navy);
            box-shadow: 0 0 0 4px rgba(19, 42, 110, .12);
            outline: none;
        }

.book-toggle {
    display: inline-flex;
    background: var(--mist);
    border-radius: 10px;
    padding: 4px;
    border: 1px solid var(--mist-line);
    width: 100%;
}

    .book-toggle button {
        flex: 1;
        border: none;
        background: none;
        padding: 11px 10px;
        font-size: 13.5px;
        font-weight: 700;
        border-radius: 7px;
        color: var(--muted);
        transition: .2s;
        cursor: pointer;
    }

        .book-toggle button.active {
            background: #fff;
            color: var(--navy);
            box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
        }

.book-price-box {
    margin-top: 4px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
    border-radius: 14px;
    padding: 16px 18px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

    .book-price-box .bp-label {
        font-size: 10.5px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: #AEB7E2;
    }

    .book-price-box .bp-val {
        font-family: 'IBM Plex Mono';
        font-size: 24px;
        font-weight: 600;
    }

    .book-price-box .bp-sub {
        font-size: 11.5px;
        color: #C7CDEA;
    }

.book-nopay {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #F0F7F1;
    border: 1px solid #CFE8D3;
    border-radius: 12px;
    padding: 13px 15px;
    margin-top: 16px;
}

    .book-nopay svg {
        flex: none;
        color: #1FA855;
        margin-top: 1px;
    }

    .book-nopay p {
        margin: 0;
        font-size: 12.5px;
        line-height: 1.55;
        color: #1E5C33;
    }

.book-summary {
    background: var(--mist);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 18px;
}

.book-sum-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px solid var(--mist-line);
    font-size: 13.5px;
}

    .book-sum-row:last-child {
        border-bottom: none;
    }

    .book-sum-row span:first-child {
        color: var(--muted);
    }

    .book-sum-row span:last-child {
        font-weight: 600;
        text-align: right;
    }

.book-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.book-foot-left {
    display: flex;
    gap: 10px;
}

.book-error {
    color: var(--red);
    font-size: 12.5px;
    margin-top: -10px;
    margin-bottom: 14px;
    display: none;
}

    .book-error.show {
        display: block;
    }

.book-success {
    text-align: center;
    padding: 10px 0 4px;
}

    .book-success .ok-ic {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        background: #E9F7EC;
        color: #1FA855;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
    }

    .book-success h4 {
        margin: 0 0 8px;
    }

    .book-success p {
        color: var(--muted);
        font-size: 14px;
        max-width: 40ch;
        margin: 0 auto 22px;
        line-height: 1.6;
    }

    .book-success .ref {
        display: inline-block;
        font-family: 'IBM Plex Mono';
        font-size: 13px;
        background: var(--mist);
        padding: 8px 14px;
        border-radius: 8px;
        margin-bottom: 22px;
    }

.book-send-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 340px;
    margin: 0 auto;
}

.book-send-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--mist-line);
    background: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
    transition: .2s;
    cursor: pointer;
}

    .book-send-btn:hover {
        border-color: var(--navy);
        box-shadow: var(--shadow-sm);
    }

    .book-send-btn.whatsapp {
        border-color: #1FA855;
        color: #1FA855;
    }

        .book-send-btn.whatsapp svg {
            color: #1FA855;
        }

.book-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    display: none;
}

@media (max-width:860px) {
    .book-fab {
        display: inline-flex;
    }
}

/* --------------------------------------------- */
/*  MOBILE FIX: RATE FINDER / QUOTE BOX          */
/* --------------------------------------------- */

/* Make the quote box stack vertically on small screens */
@media (max-width: 600px) {
    .quote-box {
        grid-template-columns: 1fr !important;
        padding: 16px 18px 20px;
        gap: 14px;
        border-radius: 16px;
    }

        /* Full-width fields with larger touch targets */
        .quote-box .field {
            width: 100%;
            margin-bottom: 0;
        }

            .quote-box .field select,
            .quote-box .field input {
                width: 100%;
                padding: 14px 16px;
                font-size: 16px;
                /* Prevents iOS zoom on focus */
                border-radius: 10px;
            }

            .quote-box .field label {
                font-size: 11px;
                margin-bottom: 6px;
            }

    /* Quote result card — full-width, prominent */
    .quote-result {
        width: 100%;
        min-width: unset;
        padding: 18px 18px 16px;
        border-radius: 12px;
        margin-top: 4px;
        box-shadow: 0 8px 20px rgba(19, 42, 110, 0.25);
    }

        .quote-result .qr-val {
            font-size: 24px;
        }

        .quote-result .qr-sub {
            font-size: 12px;
            margin-top: 2px;
        }

        /* "Book this rate" button — full-width, easy to tap */
        .quote-result .btn {
            width: 100%;
            padding: 15px 20px;
            font-size: 16px;
            font-weight: 700;
            justify-content: center;
            border-radius: 10px;
            margin-top: 14px;
            min-height: 52px;
        }

    /* Tidy up the heading area above the quote box */
    .rates-hero {
        padding: 20px 15px 0;
    }

        .rates-hero h1 {
            font-size: 26px !important;
            margin-bottom: 6px;
        }

        .rates-hero p {
            font-size: 14px;
            margin-bottom: 18px;
        }

        .rates-hero .eyebrow {
            font-size: 11px;
            margin-bottom: 12px;
        }

    /* Adjust the note below the quote box */
    .rate-note {
        font-size: 12px;
        margin: 4px 0 16px;
        line-height: 1.5;
    }
}

/* Extra small phones (below 400px) — even more breathing room */
@media (max-width: 400px) {
    .quote-box {
        padding: 12px 14px 16px;
        gap: 12px;
    }

        .quote-box .field select,
        .quote-box .field input {
            padding: 12px 14px;
            font-size: 15px;
        }

    .quote-result {
        padding: 14px 14px 14px;
    }

        .quote-result .qr-val {
            font-size: 21px;
        }

        .quote-result .btn {
            padding: 14px 16px;
            font-size: 15px;
            min-height: 48px;
            margin-top: 12px;
        }
}

/* Tablet portrait — keep 2 columns but improve spacing */
@media (min-width: 601px) and (max-width: 860px) {
    .quote-box {
        grid-template-columns: 1fr 1fr;
        gap: 14px 18px;
        padding: 22px 24px;
    }

    .quote-result {
        grid-column: 1 / -1;
        width: 100%;
        min-width: unset;
        padding: 18px 22px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px 20px;
    }

        .quote-result .qr-val {
            font-size: 22px;
        }

        .quote-result .btn {
            flex: 0 0 auto;
            min-width: 160px;
            padding: 12px 22px;
            margin-top: 0;
        }

        .quote-result .qr-label,
        .quote-result .qr-sub {
            flex-basis: 100%;
        }

        .quote-result .qr-sub {
            margin-top: 0;
        }
}
