@import url(https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;600;700&family=Libre+Caslon+Display&family=Manrope:wght@500;600;700&family=Playfair+Display:ital,wght@1,500;1,600&display=swap);

/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500;1,600&display=swap'); */
.header-actions .header-book-btn,
.site-header .header-actions a.header-book-btn,
.site-header.is-scrolled .header-actions a.header-book-btn,
.site-header:not(.is-scrolled) .header-actions a.header-book-btn,
a.header-book-btn {
    background: #0b0d0f !important;
    color: #fff !important;
    -webkit-text-fill-color: #ffffff !important;
    border: 1px solid #0b0d0f !important;
    border-radius: 999px;
    opacity: 1 !important
}

.header-book-btn *,
.site-header .header-book-btn * {
    color: #fff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important
}

.header-actions .header-book-btn:hover,
.site-header .header-actions a.header-book-btn:hover {
    background: #c79b55 !important;
    border-color: #c79b55 !important;
    color: #fff !important;
    -webkit-text-fill-color: #ffffff !important
}

:root {
    --ink: #0b0d0f;
    --ink-soft: #171a1e;
    --text: #151719;
    --muted: #6f7378;
    --gold: #c79b55;
    --gold-light: #e5c78f;
    --cream: #f7f5f0;
    --white: #fff;
    --line: rgba(18, 20, 22, .11);
    --green: #3fc878;
    --shadow-sm: 0 16px 40px rgba(8, 10, 12, .08);
    --shadow-lg: 0 35px 90px rgba(8, 10, 12, .16)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    overflow-x: hidden;
    color: var(--text);
    background: var(--white);
    font-family: 'DM Sans', sans-serif;
    -webkit-font-smoothing: antialiased
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit
}

button,
input,
select,
textarea {
    font: inherit
}

.site-container {
    width: min(calc(100% - 48px), 1360px);
    margin-inline: auto
}

.section-space {
    padding: 125px 0
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(10, 12, 14, .72);
    backdrop-filter: blur(18px);
    transition: height .3s ease, background .3s ease, box-shadow .3s ease
}

.site-header.is-scrolled {
    height: 68px;
    background: rgba(10, 12, 14, .94);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .16)
}

.header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px
}

.brand {
    position: relative;
    width: 158px;
    display: inline-flex;
    align-items: center;
    text-decoration: none
}

.brand img {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: brightness(0) invert(1)
}

.brand-glow {
    position: absolute;
    inset: -18px -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 155, 85, .27), transparent 65%);
    animation: logoGlow 2.8s ease-in-out infinite
}

.brand-live-text {
    position: absolute;
    z-index: 3;
    right: -48px;
    top: 50%;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .65);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transform: translateY(-50%)
}

.brand-live-text i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(63, 200, 120, .55);
    animation: liveRing 1.8s infinite
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px
}

.main-nav a {
    position: relative;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width .25s ease
}

.main-nav a:hover {
    color: #fff
}

.main-nav a:hover::after {
    width: 100%
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 22px
}

.header-phone {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: 11px
}

.header-book-btn {
    min-width: 132px;
    height: 40px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: .25s ease
}

.header-book-btn:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px)
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: 0 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px
}

.mobile-menu-button span {
    width: 17px;
    height: 1px;
    background: #fff;
    transition: .25s ease
}

.hero-section {
    position: relative;
    min-height: 895px;
    padding-top: 76px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: radial-gradient(circle at 75% 35%, #2b3035 0, #171b1f 28%, #0b0d0f 65%)
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .12;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E")
}

.hero-grid {
    min-height: 760px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 80px
}

.hero-copy {
    position: relative;
    z-index: 3;
    padding-bottom: 55px
}

.hero-eyebrow {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.3px;
    text-transform: uppercase
}

.eyebrow-line {
    width: 34px;
    height: 1px;
    background: var(--gold)
}

.hero-title {
    max-width: 660px;
    font-family: Manrope, sans-serif;
    font-size: clamp(54px, 5.2vw, 86px);
    font-weight: 600;
    line-height: .92;
    letter-spacing: -5.7px
}

.hero-title em {
    display: inline-block;
    margin-top: 20px;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: .61em;
    font-weight: 500;
    letter-spacing: -2px
}

.hero-description {
    max-width: 620px;
    margin-top: 30px;
    color: cornsilk !important;
    font-size: 28px;
    font-family: math;
    line-height: 1.55;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 22px
}

.primary-hero-btn {
    min-width: 230px;
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 0;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 13px 35px rgba(199, 155, 85, .22);
    transition: transform .25s ease, box-shadow .25s ease
}

.primary-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(199, 155, 85, .34)
}

.text-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600
}

.text-hero-btn span:last-child {
    color: var(--gold-light);
    transition: transform .2s ease
}

.text-hero-btn:hover span:last-child {
    transform: translateX(5px)
}

.hero-trust {
    margin-top: 50px;
    display: flex;
    gap: 40px
}

.hero-trust div {
    display: grid;
    gap: 3px
}

.hero-trust strong {
    font-size: 17px
}



/* =====================================================
   FINAL THIN SIDE STRIP + TRIP METER + WHATSAPP
   Is code ko </style> se just pehle paste karein
===================================================== */

:root {
    /* 76px se reduce karke 52px */
    --svc-rail-width: 52px !important;
}

/* Main page ko thin strip ke according adjust karega */
.svc-page {
    padding-left: var(--svc-rail-width) !important;
}

/* Header bhi thin strip ke baad start hoga */
.svc-page .site-header,
.svc-page .site-header.is-scrolled,
.svc-page .site-header:not(.is-scrolled) {
    left: var(--svc-rail-width) !important;
    width: calc(100% - var(--svc-rail-width)) !important;
}

/* LEFT SIDE STRIP */
.svc-page .svc-side-rail {
    width: var(--svc-rail-width) !important;
    min-width: var(--svc-rail-width) !important;
    max-width: var(--svc-rail-width) !important;
    overflow: hidden !important;
}

/* CD logo area */
.svc-page .svc-rail-logo {
    width: 100% !important;
    height: 62px !important;
    min-height: 62px !important;
    flex: 0 0 62px !important;
    padding: 0 !important;
}

/* Logo ka diamond */
.svc-page .svc-rail-logo::before {
    width: 28px !important;
    height: 28px !important;
}

/* CD text */
.svc-page .svc-rail-logo span {
    font-size: 7px !important;
    letter-spacing: 0.1em !important;
}

/* Navigation container */
.svc-page .svc-rail-nav {
    width: 100% !important;
    grid-template-rows: repeat(5, minmax(70px, 1fr)) !important;
}

/* Navigation ke individual boxes */
.svc-page .svc-rail-nav a {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 70px !important;
    padding: 5px 0 !important;
    gap: 0 !important;
}

/* Side strip ke circular signals */
.svc-page .svc-rail-nav a .svc-rail-circle-signal {
    width: 27px !important;
    height: 27px !important;
    min-width: 27px !important;
    min-height: 27px !important;
    flex-basis: 27px !important;
    margin: 0 auto !important;
}

/* Active circular signal */
.svc-page .svc-rail-nav a.is-active .svc-rail-circle-signal {
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
    min-height: 29px !important;
    flex-basis: 29px !important;
    transform: scale(1.04) !important;
    box-shadow:
        0 0 0 3px rgba(6, 21, 35, 0.16),
        0 0 14px rgba(6, 21, 35, 0.32) !important;
}

/* Active dot ko bhi compact rakhega */
.svc-page .svc-rail-nav a.is-active .svc-rail-signal-dot {
    width: 7px !important;
    height: 7px !important;
    min-width: 7px !important;
    min-height: 7px !important;
}

/* =====================================================
   TRIP METER — RIGHT SE LEFT
===================================================== */

.svc-page .svc-trip-meter {
    position: fixed !important;
    left: calc(var(--svc-rail-width) + 14px) !important;
    right: auto !important;
    bottom: 18px !important;
    z-index: 1300 !important;

    width: 130px !important;
    padding: 12px !important;
    border-radius: 4px !important;
}

/* =====================================================
   WHATSAPP BUTTON — RIGHT SIDE
===================================================== */

.svc-whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1400;

    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: linear-gradient(145deg,
            #2fe66d 0%,
            #25d366 48%,
            #128c4a 100%);

    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    text-decoration: none;

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.25),
        0 0 0 5px rgba(37, 211, 102, 0.12);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.svc-whatsapp-float:hover {
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);

    box-shadow:
        0 15px 34px rgba(0, 0, 0, 0.3),
        0 0 0 7px rgba(37, 211, 102, 0.15);
}

.svc-whatsapp-float svg {
    width: 28px;
    height: 28px;
    display: block;
    fill: currentColor;
}

/* Mobile aur tablet */
@media (max-width: 1100px) {
    .svc-page {
        padding-left: 0 !important;
    }

    .svc-page .site-header,
    .svc-page .site-header.is-scrolled,
    .svc-page .site-header:not(.is-scrolled) {
        left: 0 !important;
        width: 100% !important;
    }

    .svc-page .svc-side-rail {
        display: none !important;
    }

    .svc-page .svc-trip-meter {
        left: 12px !important;
        right: auto !important;
        bottom: 12px !important;
    }

    .svc-whatsapp-float {
        right: 12px;
        bottom: 12px;
        width: 48px;
        height: 48px;
    }

    .svc-whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}

.hero-trust span {
    color: rgba(255, 255, 255, .42);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 40px
}

.vehicle-photo-wrap {
    --mouse-x: 0px;
    --mouse-y: 0px;
    position: relative;
    width: min(100%, 650px);
    transform: translate(var(--mouse-x), var(--mouse-y));
    transition: transform .3s cubic-bezier(.2, .8, .2, 1)
}

.vehicle-frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px 90px 4px 90px;
    box-shadow: var(--shadow-lg)
}

.vehicle-frame::before {
    content: '';
    position: absolute;
    z-index: 3;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: inherit;
    pointer-events: none
}

.vehicle-photo {
    width: 100%;
    height: 590px;
    object-fit: cover;
    filter: saturate(.75) contrast(1.08);
    transform: scale(1.03);
    transition: transform 1.1s cubic-bezier(.2, .8, .2, 1)
}

.vehicle-frame:hover .vehicle-photo {
    transform: scale(1.08)
}

.vehicle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 8, 10, .72))
}

.vehicle-tag {
    position: absolute;
    left: 30px;
    bottom: 28px;
    color: rgba(255, 255, 255, .75);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.live-vehicle-card {
    position: absolute;
    z-index: 5;
    left: -68px;
    bottom: 55px;
    width: 310px;
    padding: 12px;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    background: rgba(16, 19, 22, .86);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .28);
    animation: cardFloat 4s ease-in-out infinite
}

.live-car-picture {
    position: relative;
    height: 82px;
    overflow: hidden;
    border-radius: 12px
}

.live-car-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.8) saturate(.7)
}

.live-car-sweep {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .22) 50%, transparent 65%);
    transform: translateX(-130%);
    animation: imageSweep 3.6s ease-in-out infinite
}

.live-car-content {
    min-width: 0;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.status-label {
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--gold-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase
}

.status-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green)
}

.status-dot::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(63, 200, 120, .65);
    border-radius: 50%;
    animation: liveRing 1.8s infinite
}

.live-car-content strong {
    color: #fff;
    font-size: 13px
}

.live-car-content small {
    margin-top: 5px;
    overflow: hidden;
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.route-card {
    position: absolute;
    z-index: 4;
    top: 55px;
    right: -35px;
    width: 215px;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 17px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(15px)
}

.route-card>span {
    color: rgba(255, 255, 255, .4);
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.route-card strong {
    display: block;
    margin-top: 8px;
    font-size: 12px
}

.route-line {
    position: relative;
    height: 2px;
    margin-top: 15px;
    overflow: hidden;
    border-radius: 3px;
    background: rgba(255, 255, 255, .12)
}

.route-line i {
    position: absolute;
    width: 45%;
    height: 100%;
    border-radius: inherit;
    background: var(--gold);
    animation: routeMove 2.4s ease-in-out infinite
}

.ambient-shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px)
}

.shape-one {
    width: 600px;
    height: 600px;
    top: 70px;
    right: -170px;
    border: 1px solid rgba(199, 155, 85, .12);
    animation: slowRotate 22s linear infinite
}

.shape-two {
    width: 280px;
    height: 280px;
    left: -120px;
    bottom: 30px;
    background: radial-gradient(circle, rgba(199, 155, 85, .12), transparent 70%);
    animation: ambientFloat 8s ease-in-out infinite alternate
}

.ambient-lines {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 170px;
    width: 200px;
    display: grid;
    gap: 14px;
    opacity: .22
}

.ambient-lines span {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
    animation: lineSweep 4s ease-in-out infinite
}

.ambient-lines span:nth-child(2) {
    width: 72%;
    animation-delay: .4s
}

.ambient-lines span:nth-child(3) {
    width: 45%;
    animation-delay: .8s
}

.booking-position {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: -53px;
    transform: translateX(-50%)
}

.booking-bar {
    min-height: 106px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1fr .9fr auto;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 20px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 28px 75px rgba(6, 8, 10, .18)
}

.booking-field {
    min-width: 0;
    padding: 0 20px;
    border-right: 1px solid var(--line)
}

.booking-field:first-child {
    padding-left: 4px
}

.booking-field>span {
    display: block;
    margin-bottom: 9px;
    color: #999b9d;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase
}

.booking-field input,
.booking-field select {
    width: 100%;
    border: 0;
    outline: 0;
    background: 0 0;
    color: var(--text);
    font-size: 12px;
    font-weight: 600
}

.booking-field select {
    appearance: none
}

.quote-btn {
    min-width: 172px;
    height: 50px;
    margin-left: 22px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease
}

.quote-btn:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px)
}

.service-strip {
    padding: 92px 0 32px;
    background: var(--cream)
}

.service-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: #777;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase
}

.service-strip-inner i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold)
}

.section-heading-row {
    margin-bottom: 55px;
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: end;
    gap: 60px
}

.section-kicker {
    margin-bottom: 13px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.1px;
    text-transform: uppercase
}

.section-title {
    max-width: 850px;
    font-family: Manrope, sans-serif;
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -3.8px
}

.section-intro {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8
}

.car-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px
}

.car-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-sm)
}

.car-image-wrap {
    position: relative;
    height: auto;
    overflow: hidden;
    background: #ece9e3
}

.car-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease
}

.car-card:hover img {
    transform: scale(1.055)
}

.car-image-wrap span {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase
}

.car-card-body {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.car-card h3 {
    margin-bottom: 7px;
    font-size: 20px
}

.car-card p {
    color: var(--muted);
    font-size: 12px
}

.car-card-body a {
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    text-decoration: none;
    transition: .2s ease
}

.car-card-body a:hover {
    background: var(--ink);
    color: #fff
}

.performance-section {
    position: relative;
    overflow: hidden;
    padding: 112px 0 118px;
    color: #fff;
    background: #08090a;
    isolation: isolate
}

.performance-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .12;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E")
}

.performance-glow {
    position: absolute;
    z-index: -1;
    top: -220px;
    left: 50%;
    width: 760px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 155, 85, .12), transparent 70%);
    transform: translateX(-50%);
    pointer-events: none
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 72px;
    align-items: start
}

.performance-item {
    position: relative;
    min-width: 0
}

.performance-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 8px;
    right: -36px;
    width: 1px;
    height: 86px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .13), transparent)
}

.performance-value {
    min-height: 82px;
    display: flex;
    align-items: flex-start;
    color: var(--gold-light);
    font-family: Manrope, sans-serif;
    line-height: 1;
    text-align: center;
    justify-content: center
}

.performance-value strong {
    font-size: clamp(62px, 5.7vw, 92px);
    font-weight: 600;
    letter-spacing: -5px
}

.performance-value sup {
    margin: 9px 0 0 5px;
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 700;
    letter-spacing: -1px
}

.performance-item p {
    margin-top: 18px;
    color: rgba(255, 255, 255, .55);
    font-size: 15px;
    line-height: 1.55
}

.performance-item:hover .performance-value {
    transform: translateY(-4px)
}

.performance-value {
    transition: transform .3s ease
}

.about {
    padding: 140px 0;
    color: #fff;
    background: var(--ink)
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 100px
}

.section-kicker.light {
    color: var(--gold-light)
}

.about h2 {
    font-family: Manrope, sans-serif;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1;
    letter-spacing: -4px
}

.about h2 em {
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-weight: 500
}

.about-panel {
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 24px;
    background: rgba(255, 255, 255, .04)
}

.about-panel p {
    color: rgba(255, 255, 255, .62);
    font-size: 16px;
    line-height: 1.8
}

.outline-btn {
    min-height: 48px;
    margin-top: 30px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: .25s ease
}

.outline-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light)
}

.contact-inner {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px
}

.contact-copy h2 {
    max-width: 520px;
    font-family: Manrope, sans-serif;
    font-size: clamp(45px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -3.8px
}

.contact-copy>p:not(.section-kicker) {
    max-width: 450px;
    margin-top: 25px;
    color: var(--muted);
    line-height: 1.8
}

.contact-detail {
    margin-top: 45px;
    display: grid;
    gap: 6px
}

.contact-detail span {
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.contact-detail strong {
    font-size: 18px
}

.contact-form {
    padding: 38px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-radius: 24px;
    background: var(--cream)
}

.contact-form label {
    display: grid;
    gap: 8px
}

.contact-form label>span {
    color: #8e9092;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid #d8d5cf;
    outline: 0;
    background: 0 0
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold)
}

.contact-form textarea {
    min-height: 115px;
    resize: vertical
}

.full-field {
    grid-column: 1/-1
}

.contact-submit {
    margin-top: 8px
}

.faq-section {
    background: var(--cream)
}

.faq-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px
}

.faq-list details {
    border-top: 1px solid #d9d6d0
}

.faq-list details:last-child {
    border-bottom: 1px solid #d9d6d0
}

.faq-list summary {
    padding: 25px 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    font-size: 17px;
    font-weight: 600
}

.faq-list summary::-webkit-details-marker {
    display: none
}

.faq-list summary span {
    font-size: 22px;
    font-weight: 400;
    transition: transform .25s ease
}

.faq-list details[open] summary span {
    transform: rotate(45deg)
}

.faq-list p {
    max-width: 680px;
    padding: 0 2px 25px;
    color: var(--muted);
    line-height: 1.75
}

.reveal {
    opacity: 0;
    filter: blur(4px);
    transition: opacity .85s cubic-bezier(.2, .8, .2, 1), transform .85s cubic-bezier(.2, .8, .2, 1), filter .85s ease;
    will-change: opacity, transform
}

.reveal-left {
    transform: translate3d(-55px, 0, 0)
}

.reveal-right {
    transform: translate3d(55px, 0, 0)
}

.reveal-up {
    transform: translate3d(0, 45px, 0)
}

.reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0)
}

.delay-1 {
    transition-delay: .12s
}

.delay-2 {
    transition-delay: .24s
}

.delay-3 {
    transition-delay: .36s
}

@keyframes logoGlow {

    0%,
    100% {
        opacity: .35;
        transform: scale(.92)
    }

    50% {
        opacity: .9;
        transform: scale(1.08)
    }
}

@keyframes liveRing {
    0% {
        box-shadow: 0 0 0 0 rgba(63, 200, 120, .55);
        transform: scale(.75);
        opacity: 1
    }

    100% {
        box-shadow: 0 0 0 8px rgba(63, 200, 120, 0);
        transform: scale(1.45);
        opacity: 0
    }
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-9px)
    }
}

@keyframes imageSweep {

    0%,
    45% {
        transform: translateX(-130%)
    }

    100%,
    75% {
        transform: translateX(130%)
    }
}

@keyframes routeMove {
    0% {
        left: -45%
    }

    100% {
        left: 100%
    }
}

@keyframes slowRotate {
    to {
        transform: rotate(360deg)
    }
}

@keyframes ambientFloat {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        transform: translate3d(45px, -25px, 0)
    }
}

@keyframes lineSweep {

    0%,
    100% {
        transform: scaleX(.35);
        opacity: .25
    }

    50% {
        transform: scaleX(1);
        opacity: 1
    }
}

@media (max-width:1180px) {
    .header-phone {
        display: none
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px
    }

    .vehicle-photo {
        height: 535px
    }

    .route-card {
        right: -10px
    }

    .booking-bar {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 20px 0
    }

    .quote-btn {
        grid-column: 1/-1;
        width: 100%;
        margin: 0
    }
}

@media (max-width:900px) {
    .site-header {
        height: 70px
    }

    .header-inner {
        grid-template-columns: 1fr auto auto
    }

    .brand-live-text {
        display: none
    }

    .main-nav {
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;
        display: none;
        padding: 15px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 16px;
        background: rgba(10, 12, 14, .98);
        box-shadow: var(--shadow-lg)
    }

    .main-nav.is-open {
        display: flex
    }

    .main-nav a {
        padding: 14px
    }

    .main-nav a::after {
        display: none
    }

    .mobile-menu-button {
        display: flex
    }

    .hero-section {
        padding-top: 70px
    }

    .hero-grid {
        padding: 85px 0 120px;
        grid-template-columns: 1fr
    }

    .hero-copy {
        padding-bottom: 0
    }

    .hero-visual {
        justify-content: center
    }

    .vehicle-photo-wrap {
        width: min(90%, 620px)
    }

    .booking-position {
        position: relative;
        left: auto;
        bottom: auto;
        padding-bottom: 35px;
        transform: none
    }

    .booking-bar {
        grid-template-columns: 1fr 1fr
    }

    .service-strip {
        padding-top: 45px
    }

    .about-grid,
    .contact-inner,
    .faq-grid,
    .section-heading-row {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .car-row {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .performance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 58px 48px
    }

    .performance-item:nth-child(2)::after {
        display: none
    }

    .car-image-wrap {
        height: 330px
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .back-top {
        justify-self: start
    }
}

@media (max-width:600px) {
    .site-container {
        width: min(calc(100% - 28px), 560px)
    }

    .section-space {
        padding: 85px 0
    }

    .header-book-btn {
        display: none
    }

    .header-inner {
        grid-template-columns: 1fr auto
    }

    .brand {
        width: 145px
    }

    .hero-grid {
        padding-top: 65px;
        gap: 55px
    }

    .hero-title {
        font-size: clamp(50px, 15vw, 72px);
        letter-spacing: -3.8px
    }

    .hero-title em {
        font-size: .68em;
        letter-spacing: -1.5px
    }

    .hero-description {
        font-size: 14px
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column
    }

    .primary-hero-btn {
        width: 100%
    }

    .text-hero-btn {
        justify-content: center
    }

    .hero-trust {
        gap: 22px;
        justify-content: space-between
    }

    .hero-trust strong {
        font-size: 14px
    }

    .hero-trust span {
        font-size: 8px
    }

    .vehicle-photo-wrap {
        width: 100%
    }

    .vehicle-photo {
        height: 430px
    }

    .vehicle-frame {
        border-radius: 4px 55px 4px 55px
    }

    .live-vehicle-card {
        left: 8px;
        bottom: -35px;
        width: calc(100% - 16px)
    }

    .route-card {
        display: none
    }

    .booking-position {
        padding-top: 70px
    }

    .booking-bar {
        padding: 23px;
        grid-template-columns: 1fr
    }

    .booking-field,
    .booking-field:first-child {
        padding: 0 0 17px;
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .service-strip-inner {
        flex-wrap: wrap;
        gap: 14px
    }

    .section-heading-row {
        margin-bottom: 38px
    }

    .section-title {
        letter-spacing: -2.6px
    }

    .car-row {
        grid-template-columns: 1fr
    }

    .car-image-wrap {
        height: 285px
    }

    .performance-section {
        padding: 78px 0 82px
    }

    .performance-grid {
        grid-template-columns: 1fr;
        gap: 42px
    }

    .performance-item:not(:last-child)::after {
        top: auto;
        right: auto;
        left: 0;
        bottom: -21px;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .12), transparent)
    }

    .performance-value {
        min-height: auto
    }

    .performance-value strong {
        font-size: 68px
    }

    .performance-item p {
        margin-top: 10px
    }

    .about {
        padding: 90px 0
    }

    .about h2 {
        letter-spacing: -2.8px
    }

    .about-panel {
        padding: 28px
    }

    .contact-form {
        padding: 24px;
        grid-template-columns: 1fr
    }

    .full-field {
        grid-column: auto
    }

    .footer-links {
        flex-wrap: wrap
    }

    .footer-bottom {
        flex-direction: column
    }
}

.booking-panel-section {
    position: relative;
    z-index: 12;
    padding: 0 0 26px;
    background: linear-gradient(180deg, var(--ink) 0 52px, var(--cream) 52px 100%)
}

.booking-panel-section .booking-position {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(calc(100% - 40px), 1440px);
    transform: none
}

.booking-panel-section .booking-bar {
    min-height: 158px;
    padding: 34px 50px;
    grid-template-columns: 1.12fr 1.12fr .95fr .95fr 230px;
    border: 1px solid rgba(20, 22, 24, .04);
    border-radius: 30px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 30px 75px rgba(21, 23, 25, .12);
    backdrop-filter: blur(20px)
}

.booking-panel-section .booking-field {
    min-height: 62px;
    padding: 3px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.booking-panel-section .booking-field:first-child {
    padding-left: 0
}

.booking-panel-section .booking-field>span {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 1.45px
}

.booking-panel-section .booking-field input,
.booking-panel-section .booking-field select {
    font-size: 16px;
    font-weight: 500
}

.booking-panel-section .booking-field input {
    color: #a4a4a4
}

.booking-panel-section .booking-field select {
    color: #171717;
    cursor: pointer
}

.booking-panel-section .quote-btn {
    min-width: 0;
    width: 100%;
    height: 66px;
    margin-left: 32px;
    justify-content: center;
    gap: 14px;
    border-radius: 999px;
    background: var(--gold);
    color: #101112;
    font-size: 14px
}

.booking-panel-section .quote-btn:hover {
    background: var(--ink);
    color: #fff
}

.live-car-picture {
    background: #e7dac5
}

.live-car-picture img {
    object-position: center;
    transform: scale(1.03)
}

.live-vehicle-card:hover .live-car-picture img {
    transform: scale(1.09)
}

@media (max-width:1180px) {
    .booking-panel-section .booking-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0
    }

    .booking-panel-section .booking-field:nth-child(2) {
        border-right: 0
    }

    .booking-panel-section .quote-btn {
        grid-column: 1/-1;
        width: 100%;
        margin-left: 0
    }
}

@media (max-width:900px) {
    .booking-panel-section {
        padding-top: 0;
        background: var(--cream)
    }

    .booking-panel-section .booking-position {
        width: min(calc(100% - 40px), 860px);
        padding-bottom: 0
    }

    .booking-panel-section .booking-bar {
        margin-top: -58px
    }
}

@media (max-width:600px) {
    .booking-panel-section .booking-position {
        width: min(calc(100% - 28px), 560px)
    }

    .booking-panel-section .booking-bar {
        min-height: auto;
        margin-top: -30px;
        padding: 24px;
        grid-template-columns: 1fr;
        border-radius: 22px
    }

    .booking-panel-section .booking-field,
    .booking-panel-section .booking-field:first-child {
        min-height: auto;
        padding: 0 0 18px;
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .booking-panel-section .booking-field:nth-child(4) {
        border-bottom: 0
    }

    .booking-panel-section .booking-field input,
    .booking-panel-section .booking-field select {
        font-size: 14px
    }

    .booking-panel-section .quote-btn {
        grid-column: auto;
        height: 58px;
        margin-top: 4px
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    ::after,
    ::before {
        animation-duration: NaNs !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: NaNs !important
    }

    .reveal {
        opacity: 1;
        filter: none;
        transform: none
    }
}

.vehicle-photo {
    object-fit: cover;
    object-position: center;
    background: #171a1e
}

.car-image-wrap img,
.live-car-picture img,
.vehicle-frame img {
    opacity: 1;
    visibility: visible
}

@media (min-width:901px) {
    .luxury-cars .site-container {
        width: min(calc(100% - 48px), 1500px)
    }
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 118px 0 34px;
    color: rgba(255, 255, 255, .66);
    background: #08090a;
    border-top: 1px solid rgba(199, 155, 85, .18)
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 78%;
    background: linear-gradient(180deg, var(--gold), rgba(199, 155, 85, .18))
}

.site-footer::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 78%;
    width: 14px;
    height: 14px;
    border: 5px solid rgba(199, 155, 85, .16);
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
    box-sizing: content-box
}

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr .78fr .92fr 1.08fr 1.22fr;
    gap: clamp(42px, 5vw, 88px);
    align-items: start;
    padding-bottom: 96px
}

.footer-brand-column {
    max-width: 300px
}

.footer-brand {
    width: 188px;
    display: inline-flex;
    margin-bottom: 27px
}

.footer-brand img {
    width: 100%;
    filter: brightness(0) invert(1)
}

.footer-brand-column>p,
.footer-newsletter>p {
    color: rgba(255, 255, 255, .55);
    font-size: 15px;
    line-height: 1.8
}

.footer-column h3,
.footer-newsletter h3 {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.footer-newsletter h3 {
    margin-bottom: 2px;
    color: #fff;
    font-size: 18px;
    letter-spacing: -.3px;
    text-transform: none
}

.footer-column nav,
.footer-contact {
    display: grid;
    gap: 18px
}

.footer-column a,
.footer-contact p,
.footer-legal a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.45;
    transition: color .2s ease, transform .2s ease
}

.footer-column a:hover,
.footer-legal a:hover {
    color: var(--gold-light);
    transform: translateX(3px)
}

.footer-newsletter>p {
    max-width: 330px;
    margin-bottom: 22px
}

.newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .16)
}

.newsletter-form input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: 0 0;
    color: #fff;
    font-size: 14px
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .48)
}

.newsletter-form button {
    border: 0;
    background: 0 0;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: color .2s ease, transform .2s ease
}

.newsletter-form button:hover {
    color: #fff;
    transform: translateX(3px)
}

.footer-bottom {
    padding-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.footer-bottom>p {
    color: rgba(255, 255, 255, .56);
    font-size: 13px
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 34px
}

.footer-legal a {
    color: rgba(255, 255, 255, .58);
    font-size: 13px
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

@media (max-width:1180px) {
    .footer-main {
        grid-template-columns: 1.4fr repeat(2, .8fr) 1.15fr
    }

    .footer-newsletter {
        grid-column: 1/-1;
        max-width: 520px
    }
}

@media (max-width:900px) {
    .site-footer {
        padding-top: 88px
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 54px 42px;
        padding-bottom: 70px
    }

    .footer-brand-column,
    .footer-newsletter {
        max-width: none
    }

    .footer-brand-column,
    .footer-newsletter {
        grid-column: 1/-1
    }
}

@media (max-width:600px) {
    .site-footer {
        padding: 72px 0 28px
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-bottom: 56px
    }

    .footer-brand-column,
    .footer-newsletter {
        grid-column: auto
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 18px 26px
    }

    .newsletter-form {
        grid-template-columns: 1fr auto
    }
}

.business-travel-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0 132px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .76), rgba(247, 245, 240, .92)), radial-gradient(circle at 85% 20%, rgba(199, 155, 85, .12), transparent 32%);
    isolation: isolate
}

.business-travel-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .22;
    background-image: linear-gradient(rgba(11, 13, 15, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 13, 15, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent)
}

.business-travel-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px)
}

.business-orb-one {
    width: 460px;
    height: 460px;
    top: -230px;
    right: -90px;
    border: 1px solid rgba(199, 155, 85, .18);
    animation: businessOrbRotate 24s linear infinite
}

.business-orb-two {
    width: 260px;
    height: 260px;
    left: -100px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(199, 155, 85, .15), transparent 70%);
    animation: businessOrbFloat 8s ease-in-out infinite alternate
}

.business-travel-heading {
    margin-bottom: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    align-items: end;
    gap: 80px
}

.business-kicker {
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase
}

.business-kicker span {
    width: 34px;
    height: 1px;
    background: var(--gold);
    transform-origin: left;
    animation: businessLinePulse 3s ease-in-out infinite
}

.business-travel-heading h2 {
    max-width: 920px;
    font-family: Manrope, sans-serif;
    font-size: clamp(52px, 6.2vw, 92px);
    font-weight: 600;
    line-height: .99;
    letter-spacing: -5.5px
}

.business-travel-intro {
    max-width: 470px;
    padding-bottom: 8px;
    color: #8c8f93;
    font-size: 17px;
    line-height: 1.6
}

.business-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(15, 17, 19, .14);
    border-radius: 28px;
    background: rgba(255, 255, 255, .66);
    box-shadow: 0 32px 80px rgba(15, 17, 19, .08);
    backdrop-filter: blur(18px)
}

.business-service-card {
    --spot-x: 50%;
    --spot-y: 50%;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    position: relative;
    min-height: 350px;
    padding: 45px 38px 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    transition: transform .22s ease, background .35s ease, box-shadow .35s ease
}

.business-service-card:not(:last-child) {
    border-right: 1px solid rgba(15, 17, 19, .13)
}

.business-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(280px circle at var(--spot-x) var(--spot-y), rgba(199, 155, 85, .17), transparent 66%);
    transition: opacity .3s ease
}

.business-service-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1)
}

.business-service-card:hover {
    z-index: 2;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 65px rgba(15, 17, 19, .13)
}

.business-service-card:hover::before {
    opacity: 1
}

.business-service-card:hover::after {
    transform: scaleX(1)
}

.business-card-number {
    position: relative;
    z-index: 1;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    transform: translateZ(24px)
}

.business-card-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 82px;
    transform: translateZ(30px)
}

.business-card-content h3 {
    max-width: 260px;
    margin-bottom: 17px;
    font-family: Manrope, sans-serif;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -.7px
}

.business-card-content p {
    color: #898c90;
    font-size: 15px;
    line-height: 1.65
}

.business-card-arrow {
    position: absolute;
    top: 35px;
    right: 34px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(15, 17, 19, .13);
    border-radius: 50%;
    opacity: 0;
    transform: translate(8px, -8px);
    transition: opacity .3s ease, transform .3s ease, background .3s ease, color .3s ease
}

.business-service-card:hover .business-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
    background: var(--ink);
    color: #fff
}

.business-travel-cta {
    margin-top: 32px;
    padding: 24px 4px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.business-travel-cta p {
    color: #8a8d91;
    font-size: 14px
}

.business-travel-cta a {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700
}

.business-travel-cta a span {
    color: var(--gold);
    transition: transform .25s ease
}

.business-travel-cta a:hover span {
    transform: translateX(6px)
}

@keyframes businessOrbRotate {
    to {
        transform: rotate(360deg)
    }
}

@keyframes businessOrbFloat {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        transform: translate3d(48px, -30px, 0)
    }
}

@keyframes businessLinePulse {

    0%,
    100% {
        transform: scaleX(.45);
        opacity: .55
    }

    50% {
        transform: scaleX(1);
        opacity: 1
    }
}

@media (max-width:1180px) {
    .business-travel-heading {
        grid-template-columns: 1fr 360px;
        gap: 45px
    }

    .business-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .business-service-card:nth-child(2) {
        border-right: 0
    }

    .business-service-card:nth-child(-n+2) {
        border-bottom: 1px solid rgba(15, 17, 19, .13)
    }
}

@media (max-width:900px) {
    .business-travel-section {
        padding: 105px 0 100px
    }

    .business-travel-heading {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 52px
    }

    .business-travel-intro {
        max-width: 620px
    }

    .business-travel-heading h2 {
        letter-spacing: -3.8px
    }
}

@media (max-width:600px) {
    .business-travel-section {
        padding: 82px 0 78px
    }

    .business-travel-heading h2 {
        font-size: clamp(43px, 13vw, 61px);
        letter-spacing: -2.8px
    }

    .business-travel-intro {
        font-size: 15px
    }

    .business-service-grid {
        grid-template-columns: 1fr;
        border-radius: 22px
    }

    .business-service-card {
        min-height: 300px;
        padding: 34px 27px 30px;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(15, 17, 19, .13);
        transform: none !important
    }

    .business-service-card:last-child {
        border-bottom: 0
    }

    .business-card-content {
        padding-top: 58px
    }

    .business-card-arrow {
        opacity: 1;
        transform: none
    }

    .business-travel-cta {
        align-items: flex-start;
        flex-direction: column
    }
}

.site-header {
    border-bottom-color: rgba(14, 16, 18, .08);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 34px rgba(16, 18, 20, .04)
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 15px 45px rgba(16, 18, 20, .09)
}

.brand img,
.footer-brand img {
    filter: none
}

.brand-glow {
    background: radial-gradient(circle, rgba(199, 155, 85, .18), transparent 66%)
}

.brand-live-text {
    color: rgba(17, 19, 21, .55)
}

.main-nav a {
    color: rgba(17, 19, 21, .72)
}

.main-nav a:hover {
    color: #0b0d0f
}

.header-phone {
    color: rgba(17, 19, 21, .58)
}

.header-book-btn {
    border-color: rgba(17, 19, 21, .18);
    color: #fff;
    background: #0b0d0f
}

.mobile-menu-button {
    border-color: rgba(17, 19, 21, .14);
    background: #0b0d0f
}

.hero-section {
    min-height: 900px;
    color: var(--text);
    background: radial-gradient(circle at 76% 34%, rgba(199, 155, 85, .1), transparent 28%), linear-gradient(180deg, #fff 0, #fbfaf8 100%)
}

.hero-noise {
    opacity: .035
}

.shape-one {
    border-color: rgba(199, 155, 85, .2)
}

.shape-two {
    background: radial-gradient(circle, rgba(199, 155, 85, .12), transparent 70%)
}

.hero-eyebrow {
    color: var(--gold)
}

.hero-title {
    color: #090a0b;
    font-size: clamp(68px, 6vw, 104px)
}

.hero-title em {
    color: var(--gold);
    font-size: .72em
}

.hero-description {
    color: #7c7f83;
    font-size: 16px
}

.primary-hero-btn {
    background: #090a0b;
    color: #fff;
    box-shadow: 0 15px 34px rgba(9, 10, 11, .15)
}

.primary-hero-btn:hover {
    background: var(--gold);
    color: #090a0b
}

.text-hero-btn {
    color: #202225
}

.hero-trust strong {
    color: #111315
}

.hero-trust span {
    color: rgba(17, 19, 21, .48)
}

.hero-visual {
    perspective: 1500px
}

.vehicle-photo-wrap {
    --scroll-y: 0px;
    --scroll-rotate: -5deg;
    --scroll-scale: .96;
    width: min(100%, 700px);
    transform: translate3d(var(--mouse-x), calc(var(--mouse-y) + var(--scroll-y)), 0) rotate(var(--scroll-rotate)) scale(var(--scroll-scale));
    transform-origin: 52% 55%;
    transition: transform .18s linear;
    will-change: transform
}

.vehicle-frame {
    --image-shift: 0px;
    border-radius: 8px 78px 8px 78px;
    background: #ede8df;
    box-shadow: 0 45px 100px rgba(37, 31, 24, .2);
    transition: box-shadow .55s ease, border-radius .55s ease
}

.vehicle-frame::before {
    border-color: rgba(255, 255, 255, .72)
}

.vehicle-photo {
    height: 620px;
    object-position: center;
    filter: saturate(.88) contrast(1.04);
    transform: translate3d(0, var(--image-shift), 0) scale(1.08);
    transition: transform .2s linear, filter .55s ease;
    will-change: transform
}

.vehicle-frame:hover {
    border-radius: 8px 48px 8px 48px;
    box-shadow: 0 52px 120px rgba(37, 31, 24, .27)
}

.vehicle-frame:hover .vehicle-photo {
    transform: translate3d(0, var(--image-shift), 0) scale(1.125);
    filter: saturate(1) contrast(1.06)
}

.vehicle-overlay {
    background: linear-gradient(180deg, transparent 58%, rgba(8, 10, 12, .55))
}

.vehicle-tag {
    color: rgba(255, 255, 255, .85)
}

.live-vehicle-card {
    --card-scroll-y: 0px;
    left: -60px;
    bottom: 46px;
    border-color: rgba(17, 19, 21, .1);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 25px 65px rgba(30, 24, 18, .16);
    transform: translateY(var(--card-scroll-y));
    animation: none;
    transition: transform .2s linear, box-shadow .35s ease
}

.live-vehicle-card:hover {
    box-shadow: 0 32px 80px rgba(30, 24, 18, .22)
}

.live-car-content strong {
    color: #111315
}

.live-car-content small {
    color: rgba(17, 19, 21, .48)
}

.status-label {
    color: #8c6a31
}

.route-card {
    --route-scroll-y: 0px;
    border-color: rgba(17, 19, 21, .1);
    color: #111315;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 18px 46px rgba(20, 18, 15, .1);
    transform: translateY(var(--route-scroll-y));
    transition: transform .2s linear
}

.route-card>span {
    color: rgba(17, 19, 21, .42)
}

.route-line {
    background: rgba(17, 19, 21, .1)
}

.booking-panel-section {
    background: linear-gradient(180deg, #fbfaf8 0 52px, var(--cream) 52px 100%)
}

@media (max-width:900px) {
    .main-nav {
        background: rgba(255, 255, 255, .98);
        border-color: rgba(17, 19, 21, .1)
    }

    .main-nav a {
        color: #17191b
    }

    .hero-grid {
        padding-top: 72px
    }

    .vehicle-photo-wrap {
        width: min(92%, 650px);
        transform: translate3d(0, var(--scroll-y), 0) rotate(var(--scroll-rotate)) scale(var(--scroll-scale))
    }
}

@media (max-width:600px) {
    .hero-section {
        min-height: auto
    }

    .hero-title {
        font-size: clamp(58px, 17vw, 82px)
    }

    .vehicle-photo {
        height: 455px
    }

    .vehicle-photo-wrap {
        --scroll-rotate: -2deg;
        width: 96%
    }

    .live-vehicle-card {
        left: 6px;
        bottom: -42px;
        width: calc(100% - 12px)
    }
}

@media (prefers-reduced-motion:reduce) {

    .live-vehicle-card,
    .route-card,
    .vehicle-photo,
    .vehicle-photo-wrap {
        transform: none !important;
        transition: none !important
    }
}

.vehicle-photo-wrap {
    --mouse-x: 0px;
    --mouse-y: 0px;
    --scroll-x: 0px;
    --scroll-y: 0px;
    --scroll-rotate: 0deg;
    --scroll-scale: 1;
    --scroll-lift: 0;
    transform: translate3d(calc(var(--mouse-x) + var(--scroll-x)), calc(var(--mouse-y) + var(--scroll-y)), 0) rotate(var(--scroll-rotate)) scale(var(--scroll-scale));
    transform-origin: 50% 58%;
    will-change: transform;
    transition: transform .12s linear, filter .35s ease
}

.vehicle-frame {
    --frame-elevation: 0;
    position: relative;
    border-radius: calc(28px - (var(--frame-elevation) * 8px));
    box-shadow: 0 calc(18px + (var(--frame-elevation) * 35px)) calc(45px + (var(--frame-elevation) * 55px)) rgba(11, 13, 15, calc(.1 + (var(--frame-elevation) * .12)));
    transform: translateZ(calc(var(--frame-elevation) * 24px));
    transition: border-radius .3s ease, box-shadow .18s linear, transform .18s linear
}

.vehicle-frame::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 8%;
    right: 8%;
    bottom: -34px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(10, 12, 14, .24), transparent 70%);
    filter: blur(18px);
    opacity: var(--scroll-lift);
    transform: scale(calc(.78 + (var(--scroll-lift) * .28)));
    transition: opacity .18s linear, transform .18s linear;
    pointer-events: none
}

.vehicle-photo {
    transform: translate3d(0, var(--image-shift, 0), 0) scale(calc(1.02 + (var(--scroll-lift) * .025)));
    transition: transform .18s linear, filter .35s ease
}

.vehicle-frame:hover .vehicle-photo {
    transform: translate3d(0, var(--image-shift, 0), 0) scale(calc(1.055 + (var(--scroll-lift) * .025)))
}

.live-vehicle-card {
    --card-scroll-x: 0px;
    --card-scroll-y: 0px;
    transform: translate3d(var(--card-scroll-x), var(--card-scroll-y), 0);
    transition: transform .18s linear, box-shadow .35s ease
}

.route-card {
    --route-scroll-x: 0px;
    --route-scroll-y: 0px;
    transform: translate3d(var(--route-scroll-x), var(--route-scroll-y), 0);
    transition: transform .18s linear, box-shadow .35s ease
}

.hero-section.is-hero-elevated .vehicle-frame {
    border-color: rgba(199, 155, 85, .24)
}

.hero-section.is-hero-elevated .live-vehicle-card,
.hero-section.is-hero-elevated .route-card {
    box-shadow: 0 24px 60px rgba(12, 14, 16, .16)
}

@media (max-width:900px) {
    .vehicle-photo-wrap {
        transform: translate3d(var(--scroll-x), var(--scroll-y), 0) rotate(calc(var(--scroll-rotate) * .55)) scale(calc(1 + ((var(--scroll-scale) - 1) * .65)))
    }
}

@media (max-width:600px) {
    .vehicle-photo-wrap {
        --scroll-x: 0px;
        --scroll-rotate: 0deg
    }

    .vehicle-frame::after {
        bottom: -22px;
        height: 42px
    }
}

@media (prefers-reduced-motion:reduce) {

    .live-vehicle-card,
    .route-card,
    .vehicle-frame,
    .vehicle-photo,
    .vehicle-photo-wrap {
        transform: none !important;
        transition: none !important
    }

    .vehicle-frame::after {
        display: none
    }
}

.main-nav {
    gap: 30px
}

.main-nav a {
    font-size: 13.5px;
    font-weight: 650;
    letter-spacing: -.1px
}

.nav-service-link {
    min-height: 42px;
    padding: 0 13px 0 9px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    overflow: hidden;
    isolation: isolate
}

.nav-service-link::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(110deg, rgba(199, 155, 85, .14), rgba(255, 255, 255, .06));
    opacity: 0;
    transform: scale(.82);
    transition: opacity .3s ease, transform .3s ease
}

.nav-service-link.is-active,
.nav-service-link:hover {
    color: #fff;
    border-color: rgba(199, 155, 85, .28)
}

.nav-service-link.is-active::before,
.nav-service-link:hover::before {
    opacity: 1;
    transform: scale(1)
}

.nav-service-icon {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(229, 199, 143, .36);
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02)
}

.nav-service-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(199, 155, 85, .22);
    border-radius: 50%;
    opacity: 0;
    transform: scale(.72)
}

.nav-service-link.is-active .nav-service-icon::after,
.nav-service-link:hover .nav-service-icon::after {
    animation: servicesIconRing 1.65s ease-out infinite
}

.nav-service-icon svg {
    width: 21px;
    height: 21px;
    overflow: visible
}

.nav-service-icon circle,
.nav-service-icon path {
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round
}

.nav-service-link.is-active .service-icon-car,
.nav-service-link:hover .service-icon-car {
    animation: servicesCarMove 1.35s ease-in-out infinite
}

.nav-service-link.is-active .service-icon-wheel,
.nav-service-link:hover .service-icon-wheel {
    transform-origin: center;
    animation: servicesWheelSpin .85s linear infinite
}

.nav-service-link.is-active .service-icon-star,
.nav-service-link:hover .service-icon-star {
    transform-origin: center;
    animation: servicesStarPulse 1.15s ease-in-out infinite
}

.nav-service-link.is-active .service-icon-road,
.nav-service-link:hover .service-icon-road {
    stroke-dasharray: 5 4;
    animation: servicesRoadMove .8s linear infinite
}

@keyframes servicesCarMove {

    0%,
    100% {
        transform: translateX(-.8px) translateY(0)
    }

    50% {
        transform: translateX(1.3px) translateY(-.6px)
    }
}

@keyframes servicesWheelSpin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes servicesStarPulse {

    0%,
    100% {
        opacity: .45;
        transform: scale(.78) rotate(0)
    }

    50% {
        opacity: 1;
        transform: scale(1.12) rotate(20deg)
    }
}

@keyframes servicesRoadMove {
    to {
        stroke-dashoffset: -9
    }
}

@keyframes servicesIconRing {
    0% {
        opacity: .8;
        transform: scale(.72)
    }

    100% {
        opacity: 0;
        transform: scale(1.35)
    }
}

.service-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    transition: color .25s ease, transform .25s ease
}

.service-strip-item:hover {
    color: var(--ink);
    transform: translateY(-2px)
}

.service-strip-icon {
    color: var(--gold);
    font-size: 10px;
    animation: stripIconFloat 2.4s ease-in-out infinite
}

.service-strip-item:nth-of-type(2) .service-strip-icon {
    animation-delay: .3s
}

.service-strip-item:nth-of-type(3) .service-strip-icon {
    animation-delay: .6s
}

.service-strip-item:nth-of-type(4) .service-strip-icon {
    animation-delay: .9s
}

@keyframes stripIconFloat {

    0%,
    100% {
        opacity: .55;
        transform: translateY(0) rotate(0)
    }

    50% {
        opacity: 1;
        transform: translateY(-3px) rotate(90deg)
    }
}

.booking-field-with-icon {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 14px
}

.booking-field-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.booking-field-label {
    display: block;
    margin-bottom: 12px;
    color: #999b9d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.35px;
    text-transform: uppercase
}

.booking-field-icon {
    position: relative;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(199, 155, 85, .24);
    border-radius: 12px;
    color: var(--gold);
    background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(247, 245, 240, .92));
    box-shadow: 0 8px 22px rgba(13, 15, 17, .06);
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease
}

.booking-field-icon::after {
    content: '';
    position: absolute;
    inset: -35%;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .9) 50%, transparent 65%);
    transform: translateX(-110%) rotate(8deg)
}

.booking-field-with-icon:hover .booking-field-icon {
    border-color: rgba(199, 155, 85, .55);
    box-shadow: 0 14px 30px rgba(13, 15, 17, .1);
    transform: translateY(-3px) rotate(-2deg)
}

.booking-field-with-icon:hover .booking-field-icon::after {
    animation: bookingIconSweep .85s ease forwards
}

.booking-field-icon svg {
    width: 22px;
    height: 22px;
    overflow: visible
}

.booking-field-icon circle,
.booking-field-icon path,
.booking-field-icon rect {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round
}

.booking-icon-pickup svg {
    animation: pickupPinFloat 2.5s ease-in-out infinite
}

.booking-icon-destination path:nth-child(2) {
    stroke-dasharray: 4 3;
    animation: destinationRouteMove 1.2s linear infinite
}

.booking-icon-calendar svg {
    transform-origin: center;
    animation: calendarTick 3s ease-in-out infinite
}

.booking-icon-vehicle circle {
    transform-origin: center;
    animation: bookingWheelSpin 1.5s linear infinite
}

@keyframes bookingIconSweep {
    from {
        transform: translateX(-110%) rotate(8deg)
    }

    to {
        transform: translateX(110%) rotate(8deg)
    }
}

@keyframes pickupPinFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-2px)
    }
}

@keyframes destinationRouteMove {
    to {
        stroke-dashoffset: -7
    }
}

@keyframes calendarTick {

    0%,
    100% {
        transform: rotate(0)
    }

    50% {
        transform: rotate(2deg)
    }
}

@keyframes bookingWheelSpin {
    to {
        transform: rotate(360deg)
    }
}

.service-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.service-strip-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(199, 155, 85, .24);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(255, 255, 255, .58);
    transition: transform .3s ease, color .3s ease, background .3s ease, border-color .3s ease
}

.service-strip-icon svg {
    width: 16px;
    height: 16px;
    overflow: visible
}

.service-strip-icon circle,
.service-strip-icon path,
.service-strip-icon rect {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round
}

.service-strip-item:hover .service-strip-icon {
    color: #fff;
    border-color: var(--gold);
    background: var(--gold);
    transform: translateY(-4px) rotate(5deg)
}

.airport-service-icon svg {
    animation: airportIconFly 3s ease-in-out infinite
}

.corporate-service-icon svg {
    animation: corporateIconLift 2.6s ease-in-out infinite
}

.events-service-icon path:last-child {
    transform-origin: 8px 7px;
    animation: eventsIconSparkle 1.8s ease-in-out infinite
}

.hourly-service-icon path:nth-child(2) {
    transform-origin: 16px 16px;
    animation: hourlyIconTick 4s linear infinite
}

@keyframes airportIconFly {

    0%,
    100% {
        transform: translate(-1px, 1px) rotate(-2deg)
    }

    50% {
        transform: translate(2px, -2px) rotate(3deg)
    }
}

@keyframes corporateIconLift {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-2px)
    }
}

@keyframes eventsIconSparkle {

    0%,
    100% {
        opacity: .45;
        transform: scale(.75) rotate(0)
    }

    50% {
        opacity: 1;
        transform: scale(1.15) rotate(90deg)
    }
}

@keyframes hourlyIconTick {
    to {
        transform: rotate(360deg)
    }
}

@media (max-width:900px) {
    .booking-field-with-icon {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px
    }

    .service-strip-item {
        min-width: 210px;
        justify-content: flex-start
    }
}

@media (max-width:600px) {
    .booking-field-with-icon {
        grid-template-columns: 36px minmax(0, 1fr)
    }

    .booking-field-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px
    }

    .booking-field-label {
        margin-bottom: 8px
    }

    .service-strip-inner {
        align-items: stretch;
        flex-direction: column
    }

    .service-strip-inner>i {
        display: none
    }

    .service-strip-item {
        width: 100%;
        min-width: 0;
        padding: 11px 14px;
        border: 1px solid rgba(18, 20, 22, .07);
        border-radius: 14px;
        background: rgba(255, 255, 255, .55)
    }
}

@media (prefers-reduced-motion:reduce) {

    .booking-field-icon,
    .booking-field-icon circle,
    .booking-field-icon path,
    .booking-field-icon svg,
    .booking-field-icon::after,
    .service-strip-icon,
    .service-strip-icon path,
    .service-strip-icon svg {
        animation: none !important;
        transition: none !important
    }
}

:root {
    --svc-navy: #081421;
    --svc-navy-soft: #0d1c2a;
    --svc-cream: #f2eee4;
    --svc-cream-deep: #eae4d7;
    --svc-paper: #f8f5ed;
    --svc-gold: #c69a4a;
    --svc-gold-light: #e5c98d;
    --svc-green: #0c2a20;
    --svc-green-deep: #082119;
    --svc-ink: #161714;
    --svc-muted: #6e6c64;
    --svc-line: rgba(37, 34, 27, .2);
    --svc-dark-line: rgba(225, 201, 141, .18)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--svc-cream)
}

.svc-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: var(--svc-ink);
    background: var(--svc-cream);
    font-family: 'DM Sans', sans-serif;
    -webkit-font-smoothing: antialiased
}

.svc-page a {
    color: inherit
}

.svc-shell {
    width: min(calc(100% - 64px), 1040px);
    margin-inline: auto
}

.svc-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    color: #fff;
    border-bottom: 1px solid rgba(229, 201, 141, .2);
    background: rgba(8, 20, 33, .92);
    backdrop-filter: blur(18px);
    transition: height .3s ease, background .3s ease, box-shadow .3s ease
}

.svc-header.is-scrolled {
    height: 62px;
    background: rgba(8, 20, 33, .98);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18)
}

.svc-header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 34px
}

.svc-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none
}

.svc-logo-mark {
    position: relative;
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border: 1px solid var(--svc-gold);
    transform: rotate(45deg)
}

.svc-logo-mark::after,
.svc-logo-mark::before {
    content: '';
    position: absolute;
    background: var(--svc-gold)
}

.svc-logo-mark::before {
    width: 13px;
    height: 1px
}

.svc-logo-mark::after {
    width: 1px;
    height: 13px
}

.svc-logo-mark i {
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(229, 201, 141, .5);
    animation: svcMarkPulse 2.8s ease-in-out infinite
}

.svc-logo-copy {
    display: grid;
    gap: 2px
}

.svc-logo-copy strong {
    font-family: 'Libre Caslon Display', serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1
}

.svc-logo-copy small {
    color: var(--svc-gold-light);
    font-family: 'DM Mono', monospace;
    font-size: 6px;
    letter-spacing: 1.8px;
    text-transform: uppercase
}

.svc-main-nav {
    display: flex;
    align-items: center;
    gap: 27px
}

.svc-main-nav a {
    position: relative;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: .5px;
    text-transform: uppercase
}

.svc-main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--svc-gold);
    transition: width .25s ease
}

.svc-main-nav a:hover {
    color: #fff
}

.svc-main-nav a:hover::after {
    width: 100%
}

.svc-quote-link {
    justify-self: end;
    min-width: 116px;
    height: 33px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--svc-gold);
    color: var(--svc-gold-light);
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color .25s ease, background .25s ease, transform .25s ease
}

.svc-quote-link:hover {
    color: var(--svc-navy);
    background: var(--svc-gold);
    transform: translateY(-2px)
}

.svc-menu-button {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: 0 0;
    cursor: pointer
}

.svc-menu-button span {
    width: 16px;
    height: 1px;
    margin: 4px auto;
    display: block;
    background: #fff;
    transition: transform .25s ease
}

.svc-side-rail {
    position: fixed;
    z-index: 1100;
    top: 0;
    left: 0;
    width: 34px;
    height: 100vh;
    border-right: 1px solid rgba(198, 154, 74, .25);
    background: linear-gradient(180deg, var(--svc-navy) 0 27%, var(--svc-cream) 27% 56%, var(--svc-gold) 56% 79%, var(--svc-navy) 79%)
}

.svc-rail-brand {
    position: absolute;
    top: 9px;
    left: 5px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid var(--svc-gold);
    color: var(--svc-gold-light);
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    font-size: 6px;
    transform: rotate(45deg)
}

.svc-rail-brand span {
    transform: rotate(-45deg)
}

.svc-rail-nav {
    position: absolute;
    top: 50px;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.svc-rail-nav::before {
    content: '';
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 50%;
    width: 1px;
    opacity: .55;
    background: repeating-linear-gradient(180deg, currentColor 0 2px, transparent 2px 8px)
}

.svc-rail-nav a {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 58px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .54);
    text-decoration: none
}

.svc-rail-nav a:nth-child(2),
.svc-rail-nav a:nth-child(3) {
    color: rgba(22, 23, 20, .55)
}

.svc-rail-nav a span {
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    background: inherit;
    font-family: 'DM Mono', monospace;
    font-size: 5px;
    transition: color .25s ease, background .25s ease, transform .25s ease
}

.svc-rail-nav a em {
    margin-top: 2px;
    font-family: 'DM Mono', monospace;
    font-size: 5px;
    font-style: normal;
    letter-spacing: .6px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg)
}

.svc-rail-nav a.is-active span,
.svc-rail-nav a:hover span {
    color: var(--svc-navy);
    background: var(--svc-gold);
    transform: rotate(45deg)
}

.svc-hero {
    position: relative;
    min-height: 535px;
    padding: 70px 0 0;
    overflow: hidden;
    color: #fff;
    background: var(--svc-navy);
    isolation: isolate
}

.svc-grid-lines {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .14;
    background: linear-gradient(90deg, transparent 0, transparent calc(50% - .5px), rgba(229, 201, 141, .25) 50%, transparent calc(50% + .5px)), repeating-linear-gradient(90deg, transparent 0 140px, rgba(229, 201, 141, .13) 140px 141px)
}

.svc-hero-glow {
    position: absolute;
    z-index: -1;
    right: 12%;
    top: 80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 154, 74, .09), transparent 70%);
    animation: svcHeroGlow 5s ease-in-out infinite
}

.svc-hero-grid {
    min-height: 465px;
    display: grid;
    grid-template-columns: 1fr .92fr;
    align-items: center;
    gap: 100px
}

.svc-overline,
.svc-section-label {
    margin: 0 0 22px;
    color: var(--svc-gold);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase
}

.svc-hero h1 {
    max-width: 510px;
    margin: 0;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(48px, 5.3vw, 76px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -2.8px
}

.svc-hero h1 em {
    display: block;
    color: var(--svc-gold-light);
    font-style: italic
}

.svc-hero-description {
    max-width: 480px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .68);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    line-height: 1.65
}

.svc-hero-actions {
    margin-top: 27px;
    display: flex;
    gap: 14px
}

.svc-button {
    min-width: 132px;
    height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid transparent;
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease
}

.svc-button:hover {
    transform: translateY(-3px)
}

.svc-button-gold {
    color: var(--svc-navy);
    background: var(--svc-gold)
}

.svc-button-gold:hover {
    background: var(--svc-gold-light)
}

.svc-button-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .42);
    background: 0 0
}

.svc-button-outline:hover {
    color: var(--svc-navy);
    background: #fff
}

.svc-departures {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(229, 201, 141, .34);
    background: rgba(3, 11, 18, .38);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .15)
}

.svc-departures-head {
    min-height: 42px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(229, 201, 141, .25);
    color: var(--svc-gold-light);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    letter-spacing: .6px;
    text-transform: uppercase
}

.svc-departures-head span {
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.svc-departures-head small {
    font-size: 6px
}

.svc-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--svc-gold);
    box-shadow: 0 0 0 0 rgba(198, 154, 74, .55);
    animation: svcLivePulse 1.8s infinite
}

.svc-board-labels,
.svc-board-row {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr .8fr;
    align-items: center
}

.svc-board-labels {
    min-height: 28px;
    padding: 0 15px;
    color: rgba(255, 255, 255, .35);
    font-family: 'DM Mono', monospace;
    font-size: 6px;
    text-transform: uppercase
}

.svc-board-row {
    min-height: 44px;
    padding: 0 15px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    transition: background .25s ease, transform .25s ease
}

.svc-board-row:hover {
    background: rgba(198, 154, 74, .08);
    transform: translateX(4px)
}

.svc-board-row strong {
    font-weight: 500
}

.svc-board-row span {
    color: rgba(255, 255, 255, .68)
}

.svc-board-row em {
    color: var(--svc-gold-light);
    font-style: normal
}

.svc-board-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0 45%, rgba(198, 154, 74, .08) 50%, transparent 55% 100%);
    transform: translateY(-100%);
    animation: svcBoardScan 4.2s linear infinite
}

.svc-about {
    padding: 85px 0 90px;
    background: var(--svc-paper)
}

.svc-about-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 120px
}

.svc-fleet-heading h2,
.svc-pricing h2,
.svc-section-intro h2,
.svc-services-heading h2 {
    margin: 0;
    font-family: 'Libre Caslon Display', serif;
    font-weight: 400
}

.svc-section-intro h2 {
    max-width: 430px;
    font-size: clamp(31px, 3.4vw, 46px);
    line-height: 1.04;
    letter-spacing: -1.3px
}

.svc-about-content>p {
    margin: 0 0 18px;
    color: var(--svc-muted);
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    line-height: 1.7
}

.svc-credentials {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.svc-credentials div {
    display: grid;
    gap: 5px
}

.svc-credentials strong {
    font-family: 'Libre Caslon Display', serif;
    font-size: 20px;
    font-weight: 400
}

.svc-credentials span {
    color: var(--svc-muted);
    font-family: 'DM Mono', monospace;
    font-size: 6px;
    line-height: 1.45
}

.svc-about-stats {
    margin-top: 32px;
    padding-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    border-top: 1px solid var(--svc-line)
}

.svc-about-stats div {
    display: grid;
    gap: 6px
}

.svc-about-stats strong {
    font-family: 'Libre Caslon Display', serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1
}

.svc-about-stats span {
    color: var(--svc-muted);
    font-family: 'DM Mono', monospace;
    font-size: 5px;
    letter-spacing: .7px;
    text-transform: uppercase
}

.svc-services {
    padding: 75px 0 85px;
    background: var(--svc-cream-deep)
}

.svc-services-inner {
    max-width: 870px
}

.svc-services-heading {
    margin-bottom: 30px
}

.svc-services-heading h2 {
    font-size: clamp(29px, 3vw, 42px);
    line-height: 1.08
}

.svc-service-list {
    border-top: 1px solid var(--svc-line)
}

.svc-service-row {
    position: relative;
    min-height: 64px;
    padding: 0 42px 0 0;
    display: grid;
    grid-template-columns: 86px 1.05fr 1.45fr;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--svc-line);
    color: var(--svc-ink);
    text-decoration: none;
    transition: color .3s ease, background .3s ease, padding .3s ease
}

.svc-service-row:hover {
    padding-left: 14px;
    color: #fff;
    background: var(--svc-navy)
}

.svc-service-code {
    color: var(--svc-gold);
    font-family: 'DM Mono', monospace;
    font-size: 7px
}

.svc-service-row strong {
    font-family: 'Libre Caslon Display', serif;
    font-size: 17px;
    font-weight: 400
}

.svc-service-row p {
    margin: 0;
    color: var(--svc-muted);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    line-height: 1.55;
    transition: color .3s ease
}

.svc-service-row:hover p {
    color: rgba(255, 255, 255, .65)
}

.svc-service-arrow {
    position: absolute;
    right: 15px;
    color: var(--svc-gold);
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: opacity .25s ease, transform .25s ease
}

.svc-service-row:hover .svc-service-arrow {
    opacity: 1;
    transform: translate(0, 0)
}

.svc-fleet {
    padding: 85px 0 90px;
    background: var(--svc-paper)
}

.svc-fleet-heading {
    margin-bottom: 28px
}

.svc-fleet-heading h2 {
    font-size: clamp(31px, 3.4vw, 46px)
}

.svc-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px
}

.svc-fleet-card {
    position: relative;
    min-height: 330px;
    padding: 21px;
    overflow: hidden;
    border: 1px solid var(--svc-line);
    background: rgba(255, 255, 255, .14);
    transition: color .35s ease, background .35s ease, transform .35s ease, box-shadow .35s ease
}

.svc-fleet-card:hover {
    color: #fff;
    background: var(--svc-navy);
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(8, 20, 33, .14)
}

.svc-car-drawing {
    height: 117px;
    display: grid;
    place-items: center
}

.svc-car-drawing svg {
    width: 100%;
    max-width: 310px
}

.svc-car-drawing circle,
.svc-car-drawing path {
    fill: none;
    stroke: var(--svc-gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke-dashoffset .8s ease, transform .5s ease
}

.svc-car-drawing path {
    stroke-dasharray: 760;
    stroke-dashoffset: 0
}

.svc-fleet-card:hover .svc-car-drawing path {
    animation: svcCarDraw 1.1s ease
}

.svc-fleet-card:hover .svc-car-drawing circle {
    transform-origin: center;
    animation: svcWheelRotate 1.1s linear infinite
}

.svc-fleet-type {
    margin: 5px 0 8px;
    color: var(--svc-gold);
    font-family: 'DM Mono', monospace;
    font-size: 6px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.svc-fleet-card h3 {
    margin: 0;
    font-family: 'Libre Caslon Display', serif;
    font-size: 20px;
    font-weight: 400
}

.svc-fleet-copy {
    min-height: 55px;
    margin: 12px 0 17px;
    color: var(--svc-muted);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    line-height: 1.55;
    transition: color .35s ease
}

.svc-fleet-card:hover .svc-fleet-copy {
    color: rgba(255, 255, 255, .62)
}

.svc-fleet-card dl {
    margin: 0;
    padding-top: 13px;
    display: grid;
    grid-template-columns: .7fr .8fr 1.3fr;
    border-top: 1px solid var(--svc-line)
}

.svc-fleet-card dl div {
    display: grid;
    gap: 4px
}

.svc-fleet-card dt {
    color: var(--svc-muted);
    font-family: 'DM Mono', monospace;
    font-size: 5px
}

.svc-fleet-card dd {
    margin: 0;
    font-family: 'DM Mono', monospace;
    font-size: 7px
}

.svc-pricing {
    position: relative;
    padding: 82px 0 88px;
    overflow: hidden;
    color: #fff;
    background: var(--svc-navy)
}

.svc-pricing-grid {
    position: absolute;
    inset: 0;
    opacity: .14;
    background: repeating-linear-gradient(90deg, transparent 0 145px, rgba(229, 201, 141, .2) 145px 146px)
}

.svc-pricing-inner {
    position: relative;
    z-index: 2;
    text-align: center
}

.svc-label-dark {
    color: var(--svc-gold)
}

.svc-pricing h2 {
    font-size: clamp(31px, 3.5vw, 48px)
}

.svc-pricing p {
    max-width: 520px;
    margin: 14px auto 25px;
    color: rgba(255, 255, 255, .62);
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    line-height: 1.55
}

.svc-pricing .svc-button {
    margin-inline: auto
}

.svc-footer {
    padding: 55px 0 22px;
    color: #fff;
    background: var(--svc-green)
}

.svc-footer-grid {
    padding-bottom: 38px;
    display: grid;
    grid-template-columns: 1.2fr .75fr 1fr .75fr;
    gap: 55px
}

.svc-footer strong {
    display: block;
    margin-bottom: 13px;
    color: var(--svc-gold-light);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    letter-spacing: .7px;
    text-transform: uppercase
}

.svc-footer a,
.svc-footer p {
    color: rgba(255, 255, 255, .66);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    line-height: 1.65
}

.svc-footer-company p {
    margin: 0 0 11px
}

.svc-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.svc-footer-column a {
    margin-bottom: 5px;
    text-decoration: none
}

.svc-footer-column a:hover {
    color: var(--svc-gold-light)
}

.svc-footer-quote a {
    min-width: 116px;
    height: 35px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--svc-gold);
    color: var(--svc-gold-light);
    text-decoration: none;
    text-transform: uppercase
}

.svc-footer-quote a:hover {
    color: var(--svc-green);
    background: var(--svc-gold)
}

.svc-footer-bottom {
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(229, 201, 141, .18)
}

.svc-footer-bottom p {
    margin: 0;
    font-size: 6px
}

.svc-trip-meter {
    position: fixed;
    z-index: 1200;
    right: 17px;
    bottom: 15px;
    width: 130px;
    padding: 12px;
    color: #fff;
    border: 1px solid var(--svc-gold);
    background: rgba(8, 20, 33, .96);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px)
}

.svc-trip-meter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--svc-gold-light);
    font-family: 'DM Mono', monospace;
    font-size: 5px;
    letter-spacing: .8px;
    text-transform: uppercase
}

.svc-trip-meter-head i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--svc-gold);
    animation: svcLivePulse 1.8s infinite
}

.svc-trip-meter-values {
    margin-top: 7px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-family: 'DM Mono', monospace
}

.svc-trip-meter-values strong {
    font-size: 15px;
    font-weight: 500
}

.svc-trip-meter-values small,
.svc-trip-meter-values span {
    color: var(--svc-gold-light);
    font-size: 7px
}

.svc-trip-meter p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .55);
    font-family: 'DM Mono', monospace;
    font-size: 5px
}

.svc-reveal {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(24px);
    transition: opacity .75s cubic-bezier(.2, .8, .2, 1), transform .75s cubic-bezier(.2, .8, .2, 1), filter .75s ease
}

.svc-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0)
}

@keyframes svcMarkPulse {

    0%,
    100% {
        opacity: .35;
        transform: scale(.8)
    }

    50% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes svcHeroGlow {

    0%,
    100% {
        opacity: .6;
        transform: scale(.92)
    }

    50% {
        opacity: 1;
        transform: scale(1.08)
    }
}

@keyframes svcLivePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 154, 74, .55)
    }

    100% {
        box-shadow: 0 0 0 9px rgba(198, 154, 74, 0)
    }
}

@keyframes svcBoardScan {
    to {
        transform: translateY(100%)
    }
}

@keyframes svcCarDraw {
    0% {
        stroke-dashoffset: 760
    }

    100% {
        stroke-dashoffset: 0
    }
}

@keyframes svcWheelRotate {
    to {
        transform: rotate(360deg)
    }
}

@media (max-width:1050px) {
    .svc-header-inner {
        grid-template-columns: 1fr auto auto
    }

    .svc-main-nav {
        gap: 18px
    }

    .svc-hero-grid {
        gap: 55px
    }

    .svc-about-grid {
        gap: 70px
    }
}

@media (max-width:850px) {
    .svc-shell {
        width: min(calc(100% - 44px), 760px)
    }

    .svc-side-rail {
        display: none
    }

    .svc-main-nav {
        position: absolute;
        top: 62px;
        left: 22px;
        right: 22px;
        display: none;
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid rgba(229, 201, 141, .25);
        background: var(--svc-navy);
        box-shadow: 0 25px 55px rgba(0, 0, 0, .22)
    }

    .svc-main-nav.is-open {
        display: flex
    }

    .svc-main-nav a {
        padding: 13px
    }

    .svc-main-nav a::after {
        display: none
    }

    .svc-quote-link {
        display: none
    }

    .svc-menu-button {
        display: block
    }

    .svc-hero {
        min-height: auto;
        padding: 115px 0 75px
    }

    .svc-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr
    }

    .svc-about-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .svc-services-inner {
        max-width: none
    }

    .svc-service-row {
        grid-template-columns: 72px 1fr;
        gap: 15px;
        padding: 15px 40px 15px 0
    }

    .svc-service-row p {
        grid-column: 2
    }

    .svc-fleet-grid {
        grid-template-columns: 1fr
    }

    .svc-fleet-card {
        min-height: 310px
    }

    .svc-footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:560px) {
    .svc-shell {
        width: min(calc(100% - 28px), 520px)
    }

    .svc-header-inner {
        grid-template-columns: 1fr auto
    }

    .svc-logo-copy small {
        display: none
    }

    .svc-hero h1 {
        font-size: clamp(48px, 14vw, 68px)
    }

    .svc-hero-description {
        font-size: 9px
    }

    .svc-hero-actions {
        align-items: stretch;
        flex-direction: column
    }

    .svc-button {
        width: 100%
    }

    .svc-board-labels {
        display: none
    }

    .svc-board-row {
        padding: 10px 13px;
        grid-template-columns: 1fr 1fr;
        gap: 7px 14px
    }

    .svc-credentials {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .svc-about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }

    .svc-service-row {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 17px 34px 17px 0
    }

    .svc-service-row p {
        grid-column: auto
    }

    .svc-fleet-card dl {
        grid-template-columns: repeat(3, 1fr)
    }

    .svc-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .svc-footer-bottom {
        align-items: flex-start;
        flex-direction: column
    }

    .svc-trip-meter {
        right: 10px;
        bottom: 10px;
        width: 116px
    }
}

@media (prefers-reduced-motion:reduce) {

    .svc-page *,
    .svc-page ::after,
    .svc-page ::before {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important
    }

    .svc-reveal {
        opacity: 1;
        filter: none;
        transform: none
    }
}

.svc-page {
    font-size: 16px;
    line-height: 1.55
}

.svc-shell {
    width: min(calc(100% - 80px), 1240px)
}

.svc-header {
    height: 82px
}

.svc-header.is-scrolled {
    height: 72px
}

.svc-logo-mark {
    width: 38px;
    height: 38px
}

.svc-logo-copy strong {
    font-size: 19px
}

.svc-logo-copy small {
    font-size: 8px;
    letter-spacing: 2px
}

.svc-main-nav {
    gap: 32px
}

.svc-main-nav a {
    font-size: 11px;
    letter-spacing: .8px
}

.svc-quote-link {
    min-width: 145px;
    height: 42px;
    padding: 0 17px;
    font-size: 9px
}

.svc-side-rail {
    width: 44px
}

.svc-rail-brand {
    left: 8px;
    width: 28px;
    height: 28px;
    font-size: 7px
}

.svc-rail-nav a {
    min-height: 88px
}

.svc-rail-nav a span {
    width: 22px;
    height: 22px;
    font-size: 7px
}

.svc-rail-nav a em {
    font-size: 6px
}

.svc-hero {
    min-height: 690px;
    padding-top: 82px
}

.svc-hero-grid {
    min-height: 608px;
    grid-template-columns: 1fr .94fr;
    gap: clamp(60px, 8vw, 125px)
}

.svc-overline,
.svc-section-label {
    margin-bottom: 20px;
    font-size: 10px;
    letter-spacing: 1.9px
}

.svc-hero h1 {
    max-width: 620px;
    font-size: clamp(62px, 6vw, 94px);
    line-height: .96;
    letter-spacing: -3.2px
}

.svc-hero-description {
    max-width: 585px;
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.8
}

.svc-hero-actions {
    margin-top: 34px;
    gap: 16px
}

.svc-button {
    min-width: 168px;
    height: 48px;
    padding: 0 18px;
    font-size: 10px
}

.svc-departures {
    --svc-tilt-x: 0deg;
    --svc-tilt-y: 0deg;
    --svc-glow-x: 50%;
    --svc-glow-y: 50%;
    border-radius: 4px;
    transform: perspective(1200px) rotateX(var(--svc-tilt-x)) rotateY(var(--svc-tilt-y));
    transform-style: preserve-3d;
    transition: transform .18s ease-out, border-color .3s ease, box-shadow .3s ease
}

.svc-departures::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at var(--svc-glow-x) var(--svc-glow-y), rgba(229, 201, 141, .15), transparent 42%);
    transition: opacity .25s ease
}

.svc-departures:hover {
    border-color: rgba(229, 201, 141, .64);
    box-shadow: 0 38px 90px rgba(0, 0, 0, .28)
}

.svc-departures:hover::before {
    opacity: 1
}

.svc-departures>* {
    position: relative;
    z-index: 1
}

.svc-departures-head {
    min-height: 54px;
    padding: 0 20px;
    font-size: 10px
}

.svc-departures-head small {
    font-size: 8px
}

.svc-board-labels {
    min-height: 36px;
    padding: 0 20px;
    font-size: 8px
}

.svc-board-row {
    min-height: 56px;
    padding: 0 20px;
    font-size: 10px
}

.svc-about {
    padding: 120px 0
}

.svc-about-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(70px, 9vw, 145px)
}

.svc-section-intro h2 {
    max-width: 540px;
    font-size: clamp(42px, 4.2vw, 62px);
    line-height: 1.02;
    letter-spacing: -1.8px
}

.svc-about-content>p {
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 1.85
}

.svc-credentials {
    margin-top: 35px;
    gap: 34px
}

.svc-credentials strong {
    font-size: 27px
}

.svc-credentials span {
    font-size: 9px;
    line-height: 1.55
}

.svc-about-stats {
    margin-top: 42px;
    padding-top: 34px;
    gap: 26px
}

.svc-about-stats strong {
    font-size: 46px
}

.svc-about-stats span {
    font-size: 8px;
    line-height: 1.45
}

.svc-services {
    padding: 110px 0 120px
}

.svc-services-inner {
    max-width: 1060px
}

.svc-services-heading {
    margin-bottom: 40px
}

.svc-services-heading h2 {
    max-width: 900px;
    font-size: clamp(40px, 4.5vw, 64px)
}

.svc-service-row {
    min-height: 88px;
    grid-template-columns: 110px 1.05fr 1.55fr;
    gap: 32px;
    padding-right: 58px
}

.svc-service-code {
    font-size: 9px
}

.svc-service-row strong {
    font-size: 22px
}

.svc-service-row p {
    font-size: 11px;
    line-height: 1.65
}

.svc-service-arrow {
    right: 22px;
    font-size: 18px
}

.svc-service-row::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(198, 154, 74, .16), transparent 42%);
    opacity: 0;
    transform: scaleX(.88);
    transform-origin: left;
    transition: opacity .35s ease, transform .35s ease
}

.svc-service-row:hover::before {
    opacity: 1;
    transform: scaleX(1)
}

.svc-fleet {
    padding: 115px 0 125px
}

.svc-fleet-heading {
    margin-bottom: 42px
}

.svc-fleet-heading h2 {
    font-size: clamp(42px, 4.4vw, 64px)
}

.svc-fleet-grid {
    gap: 26px
}

.svc-fleet-card {
    --svc-tilt-x: 0deg;
    --svc-tilt-y: 0deg;
    --svc-glow-x: 50%;
    --svc-glow-y: 50%;
    min-height: 430px;
    padding: 28px;
    transform: perspective(1200px) rotateX(var(--svc-tilt-x)) rotateY(var(--svc-tilt-y));
    transform-style: preserve-3d;
    transition: color .35s ease, background .35s ease, transform .18s ease-out, box-shadow .35s ease, border-color .35s ease
}

.svc-fleet-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at var(--svc-glow-x) var(--svc-glow-y), rgba(229, 201, 141, .16), transparent 40%);
    transition: opacity .3s ease
}

.svc-fleet-card:hover {
    transform: perspective(1200px) rotateX(var(--svc-tilt-x)) rotateY(var(--svc-tilt-y)) translateY(-10px)
}

.svc-fleet-card:hover::before {
    opacity: 1
}

.svc-car-drawing {
    height: 155px
}

.svc-fleet-type {
    margin-top: 10px;
    font-size: 8px
}

.svc-fleet-card h3 {
    font-size: 27px
}

.svc-fleet-copy {
    min-height: 72px;
    margin: 15px 0 22px;
    font-size: 10px;
    line-height: 1.7
}

.svc-fleet-card dt {
    font-size: 7px
}

.svc-fleet-card dd {
    font-size: 10px
}

.svc-pricing {
    padding: 115px 0 125px
}

.svc-pricing h2 {
    font-size: clamp(42px, 4.6vw, 66px)
}

.svc-pricing p {
    max-width: 650px;
    margin: 20px auto 34px;
    font-size: 12px;
    line-height: 1.75
}

.svc-footer {
    padding: 78px 0 28px
}

.svc-footer-grid {
    padding-bottom: 52px;
    gap: 68px
}

.svc-footer strong {
    font-size: 10px
}

.svc-footer a,
.svc-footer p {
    font-size: 10px;
    line-height: 1.75
}

.svc-footer-quote a {
    min-width: 145px;
    height: 42px
}

.svc-footer-bottom p {
    font-size: 8px
}

.svc-trip-meter {
    width: 154px;
    padding: 15px;
    border-radius: 3px
}

.svc-trip-meter-head {
    font-size: 7px
}

.svc-trip-meter-values strong {
    font-size: 19px
}

.svc-trip-meter-values small,
.svc-trip-meter-values span {
    font-size: 9px
}

.svc-trip-meter p {
    font-size: 7px
}

.svc-reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 34px, 0) scale(.985);
    transition: opacity .8s cubic-bezier(.2, .8, .2, 1) var(--svc-reveal-delay, 0ms), transform .8s cubic-bezier(.2, .8, .2, 1) var(--svc-reveal-delay, 0ms), filter .8s ease var(--svc-reveal-delay, 0ms)
}

.svc-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1)
}

.svc-service-row.is-visible {
    animation: svcRowSettle .75s cubic-bezier(.2, .8, .2, 1) both;
    animation-delay: calc(var(--svc-row-index, 0) * 70ms)
}

.svc-fleet-card.is-visible {
    animation: svcCardSettle .85s cubic-bezier(.2, .8, .2, 1) both;
    animation-delay: calc(var(--svc-card-index, 0) * 100ms)
}

.svc-menu-button.is-open span:first-child {
    transform: translateY(2.5px) rotate(45deg)
}

.svc-menu-button.is-open span:last-child {
    transform: translateY(-2.5px) rotate(-45deg)
}

@keyframes svcRowSettle {
    from {
        opacity: 0;
        transform: translateX(-28px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes svcCardSettle {
    from {
        opacity: 0;
        transform: translateY(38px) scale(.96)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@media (max-width:1050px) {
    .svc-shell {
        width: min(calc(100% - 56px), 980px)
    }

    .svc-hero-grid {
        gap: 58px
    }

    .svc-service-row {
        grid-template-columns: 95px 1fr 1.35fr;
        gap: 24px
    }
}

@media (max-width:850px) {
    .svc-shell {
        width: min(calc(100% - 40px), 760px)
    }

    .svc-header {
        height: 72px
    }

    .svc-main-nav {
        top: 72px
    }

    .svc-main-nav a {
        font-size: 13px
    }

    .svc-hero {
        padding: 130px 0 90px
    }

    .svc-hero h1 {
        font-size: clamp(58px, 11vw, 82px)
    }

    .svc-hero-description {
        font-size: 14px
    }

    .svc-about-grid {
        gap: 55px
    }

    .svc-service-row {
        grid-template-columns: 92px 1fr;
        gap: 14px 20px;
        padding-block: 22px
    }

    .svc-service-row p {
        grid-column: 2;
        font-size: 12px
    }

    .svc-fleet-card {
        min-height: 390px
    }

    .svc-footer a,
    .svc-footer p {
        font-size: 11px
    }
}

@media (max-width:560px) {
    .svc-shell {
        width: min(calc(100% - 26px), 520px)
    }

    .svc-logo-copy strong {
        font-size: 16px
    }

    .svc-hero {
        padding: 115px 0 75px
    }

    .svc-hero h1 {
        font-size: clamp(50px, 15vw, 70px);
        letter-spacing: -2.3px
    }

    .svc-hero-description {
        font-size: 13px
    }

    .svc-departures-head {
        font-size: 9px
    }

    .svc-board-row {
        font-size: 10px
    }

    .svc-fleet-heading h2,
    .svc-pricing h2,
    .svc-section-intro h2,
    .svc-services-heading h2 {
        font-size: clamp(38px, 11vw, 52px)
    }

    .svc-about-content>p {
        font-size: 13px
    }

    .svc-service-row {
        grid-template-columns: 1fr;
        padding: 22px 40px 22px 0
    }

    .svc-service-row p {
        grid-column: auto
    }

    .svc-service-row strong {
        font-size: 21px
    }

    .svc-fleet-card {
        min-height: 400px;
        padding: 24px
    }

    .svc-footer-grid {
        gap: 36px
    }

    .svc-trip-meter {
        width: 138px
    }
}

@media (prefers-reduced-motion:reduce) {

    .svc-departures,
    .svc-fleet-card {
        transform: none !important
    }
}

:root {
    --compact-container: 1180px;
    --compact-section-space: 88px
}

.site-container {
    width: min(calc(100% - 40px), var(--compact-container))
}

.section-space {
    padding: var(--compact-section-space) 0
}

body {
    font-size: 15px
}

.site-header {
    height: 68px
}

.site-header.is-scrolled {
    height: 62px
}

.header-inner {
    gap: 20px
}

.brand {
    width: 145px
}

.brand-text {
    font-size: 26px
}

.brand-live-text {
    right: -42px;
    font-size: 8px
}

.main-nav {
    gap: 22px
}

.main-nav a {
    font-size: 11px
}

.nav-service-link {
    min-height: 38px;
    padding: 0 11px 0 8px
}

.nav-service-icon {
    width: 25px;
    height: 25px
}

.header-actions {
    gap: 15px
}

.header-phone {
    font-size: 10px
}

.header-book-btn {
    min-width: 122px;
    height: 36px;
    padding: 0 16px;
    font-size: 10px
}

.hero-section {
    min-height: 720px;
    padding-top: 68px
}

.hero-grid {
    min-height: 650px;
    grid-template-columns: .92fr 1.08fr;
    gap: 55px
}

.hero-copy {
    padding-bottom: 28px
}

.hero-eyebrow {
    margin-bottom: 18px;
    font-size: 9px
}

.hero-title {
    max-width: 560px;
    font-size: clamp(50px, 5vw, 78px);
    line-height: .94;
    letter-spacing: -4.4px
}

.hero-title em {
    margin-top: 14px
}

.hero-description {
    max-width: 470px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.65
}

.hero-actions {
    margin-top: 28px;
    gap: 16px
}

.primary-hero-btn {
    min-width: 205px;
    min-height: 46px;
    padding: 0 20px;
    font-size: 11px
}

.text-hero-btn {
    font-size: 11px
}

.hero-trust {
    margin-top: 35px;
    gap: 28px
}

.hero-trust strong {
    font-size: 15px
}

.hero-trust span {
    font-size: 8px
}

.hero-visual {
    padding-bottom: 22px
}

.vehicle-photo-wrap {
    width: min(100%, 560px)
}

.vehicle-frame {
    border-radius: 24px
}

.vehicle-photo {
    height: 475px
}

.vehicle-tag {
    left: 22px;
    bottom: 20px;
    font-size: 8px
}

.live-vehicle-card {
    left: -48px;
    bottom: 35px;
    width: 270px;
    padding: 10px;
    grid-template-columns: 78px 1fr;
    gap: 11px
}

.live-car-picture {
    height: 70px
}

.live-car-content strong {
    font-size: 12px
}

.route-card {
    top: 36px;
    right: -20px;
    width: 185px;
    padding: 15px
}

.booking-panel-section {
    padding-bottom: 18px
}

.booking-panel-section .booking-position {
    width: min(calc(100% - 36px), 1220px)
}

.booking-panel-section .booking-bar {
    min-height: 126px;
    padding: 26px 32px;
    grid-template-columns: 1.12fr 1.12fr .95fr .95fr 190px;
    border-radius: 24px
}

.booking-panel-section .booking-field {
    min-height: 52px;
    padding: 2px 20px
}

.booking-field-with-icon {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 11px
}

.booking-field-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px
}

.booking-field-icon svg {
    width: 18px;
    height: 18px
}

.booking-field-label,
.booking-panel-section .booking-field>span {
    margin-bottom: 8px;
    font-size: 8px
}

.booking-panel-section .booking-field input,
.booking-panel-section .booking-field select {
    font-size: 13px
}

.booking-panel-section .quote-btn {
    height: 54px;
    margin-left: 20px;
    font-size: 12px
}

.service-strip {
    padding: 60px 0 24px
}

.service-strip-inner {
    gap: 18px;
    font-size: 9px
}

.service-strip-icon {
    width: 25px;
    height: 25px
}

.service-strip-icon svg {
    width: 14px;
    height: 14px
}

.section-heading-row {
    margin-bottom: 40px;
    grid-template-columns: 1fr 330px;
    gap: 40px
}

.section-kicker {
    margin-bottom: 10px;
    font-size: 9px
}

.section-title {
    max-width: 720px;
    font-size: clamp(34px, 4vw, 56px);
    letter-spacing: -3px
}

.section-intro {
    font-size: 13px;
    line-height: 1.7
}

.car-row {
    gap: 16px
}

.car-card {
    border-radius: 16px
}

.car-image-wrap {
    height: auto
}

.car-image-wrap span {
    top: 14px;
    left: 14px;
    padding: 6px 9px;
    font-size: 7px
}

.car-card-body {
    padding: 18px
}

.car-card h3 {
    font-size: 17px
}

.car-card p {
    font-size: 11px;
    line-height: 1.55
}

.car-card-body a {
    width: 34px;
    height: 34px
}

.performance-section {
    padding: 82px 0 88px
}

.performance-grid {
    gap: 45px
}

.performance-item:not(:last-child)::after {
    right: -23px;
    height: 70px
}

.performance-value {
    min-height: 65px
}

.performance-value strong {
    font-size: clamp(48px, 4.8vw, 72px);
    letter-spacing: -4px
}

.performance-value sup {
    margin-top: 7px;
    font-size: clamp(17px, 1.7vw, 24px)
}

.performance-item p {
    margin-top: 12px;
    font-size: 13px
}

.business-travel-section {
    padding: 95px 0
}

.business-travel-heading {
    margin-bottom: 42px;
    gap: 45px
}

.business-kicker {
    font-size: 9px
}

.business-travel-heading h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1
}

.business-travel-intro {
    font-size: 13px
}

.business-service-grid {
    gap: 15px
}

.business-service-card {
    min-height: 250px;
    padding: 25px
}

.business-card-number {
    font-size: 14px
}

.business-service-card h3 {
    font-size: 20px
}

.business-service-card p {
    font-size: 12px;
    line-height: 1.65
}

.business-travel-cta {
    margin-top: 34px;
    padding-top: 24px
}

.about {
    padding: 95px 0
}

.about-grid {
    gap: 65px
}

.about h2 {
    font-size: clamp(40px, 5vw, 64px)
}

.about-panel {
    padding: 32px;
    border-radius: 20px
}

.about-panel p {
    font-size: 14px;
    line-height: 1.7
}

.contact-inner {
    gap: 65px
}

.contact-copy h2 {
    font-size: clamp(38px, 4.5vw, 58px)
}

.contact-copy>p:not(.section-kicker) {
    margin-top: 18px;
    font-size: 14px
}

.contact-detail {
    margin-top: 30px
}

.contact-form {
    padding: 28px;
    gap: 16px;
    border-radius: 20px
}

.contact-form input,
.contact-form textarea {
    padding: 11px 0
}

.faq-grid {
    gap: 65px
}

.faq-list summary {
    padding: 20px 2px;
    font-size: 15px
}

.faq-list p {
    padding-bottom: 20px;
    font-size: 13px
}

.site-footer {
    padding: 82px 0 28px
}

.footer-main {
    grid-template-columns: 1.35fr .75fr .85fr 1fr 1.15fr;
    gap: 42px;
    padding-bottom: 65px
}

.footer-brand {
    width: 165px;
    margin-bottom: 20px
}

.footer-brand-column>p,
.footer-newsletter>p {
    font-size: 13px;
    line-height: 1.65
}

.footer-column h3,
.footer-newsletter h3 {
    margin-bottom: 18px;
    font-size: 10px
}

.footer-newsletter h3 {
    font-size: 16px
}

.footer-column nav,
.footer-contact {
    gap: 13px
}

.footer-column a,
.footer-contact p,
.footer-legal a {
    font-size: 13px
}

.footer-bottom {
    padding-top: 25px
}

.footer-bottom>p,
.footer-legal a {
    font-size: 11px
}

@media (max-width:1100px) {
    :root {
        --compact-container: 960px;
        --compact-section-space: 78px
    }

    .site-container {
        width: min(calc(100% - 36px), var(--compact-container))
    }

    .header-phone {
        display: none
    }

    .hero-grid {
        gap: 38px
    }

    .vehicle-photo {
        height: 440px
    }

    .booking-panel-section .booking-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 0
    }

    .booking-panel-section .booking-field:nth-child(2),
    .booking-panel-section .booking-field:nth-child(4) {
        border-right: 0
    }

    .booking-panel-section .quote-btn {
        grid-column: 1/-1;
        width: 100%;
        margin-left: 0
    }

    .car-row {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .car-image-wrap {
        height: 265px
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .footer-newsletter {
        grid-column: 1/-1
    }
}

@media (max-width:900px) {
    :root {
        --compact-section-space: 68px
    }

    .site-header {
        height: 64px
    }

    .header-inner {
        grid-template-columns: 1fr auto auto
    }

    .brand {
        width: 135px
    }

    .brand-text {
        font-size: 23px
    }

    .main-nav {
        top: 64px
    }

    .main-nav a {
        font-size: 13px
    }

    .hero-section {
        min-height: auto;
        padding-top: 64px
    }

    .hero-grid {
        min-height: auto;
        padding: 72px 0 95px;
        grid-template-columns: 1fr;
        gap: 50px
    }

    .hero-copy {
        padding-bottom: 0
    }

    .hero-title {
        max-width: 620px
    }

    .hero-description {
        max-width: 560px
    }

    .hero-visual {
        justify-content: center
    }

    .vehicle-photo-wrap {
        width: min(92%, 600px)
    }

    .booking-panel-section {
        background: var(--cream)
    }

    .booking-panel-section .booking-position {
        width: min(calc(100% - 36px), 840px)
    }

    .booking-panel-section .booking-bar {
        margin-top: -45px
    }

    .about-grid,
    .business-travel-heading,
    .contact-inner,
    .faq-grid,
    .section-heading-row {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .performance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .business-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (max-width:600px) {
    :root {
        --compact-section-space: 58px
    }

    .site-container {
        width: min(calc(100% - 24px), 560px)
    }

    .brand {
        width: auto
    }

    .brand-text {
        font-size: 21px
    }

    .hero-grid {
        padding: 55px 0 78px;
        gap: 40px
    }

    .hero-title {
        font-size: clamp(44px, 13vw, 62px);
        letter-spacing: -3px
    }

    .hero-description {
        font-size: 13px
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column
    }

    .primary-hero-btn {
        width: 100%
    }

    .text-hero-btn {
        justify-content: center
    }

    .hero-trust {
        gap: 12px;
        justify-content: space-between
    }

    .hero-trust strong {
        font-size: 13px
    }

    .hero-trust span {
        font-size: 7px
    }

    .vehicle-photo-wrap {
        width: 100%
    }

    .vehicle-photo {
        height: 350px
    }

    .live-vehicle-card {
        left: 8px;
        bottom: -32px;
        width: calc(100% - 16px)
    }

    .route-card {
        display: none
    }

    .booking-panel-section .booking-position {
        width: min(calc(100% - 24px), 560px)
    }

    .booking-panel-section .booking-bar {
        margin-top: -20px;
        padding: 20px;
        grid-template-columns: 1fr;
        border-radius: 18px
    }

    .booking-panel-section .booking-field,
    .booking-panel-section .booking-field:first-child {
        min-height: auto;
        padding: 0 0 15px;
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .booking-panel-section .booking-field:nth-child(4) {
        border-bottom: 0
    }

    .booking-panel-section .quote-btn {
        height: 50px
    }

    .service-strip {
        padding-top: 38px
    }

    .service-strip-inner {
        align-items: stretch;
        flex-direction: column
    }

    .service-strip-inner>i {
        display: none
    }

    .service-strip-item {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid rgba(18, 20, 22, .08);
        border-radius: 12px;
        background: rgba(255, 255, 255, .58)
    }

    .section-title {
        font-size: clamp(32px, 10vw, 46px);
        letter-spacing: -2.2px
    }

    .business-service-grid,
    .car-row,
    .footer-main,
    .performance-grid {
        grid-template-columns: 1fr
    }

    .car-image-wrap {
        height: auto
    }

    .performance-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 20px
    }

    .performance-item {
        min-width: 0
    }

    .performance-item::after {
        display: none
    }

    .performance-value strong {
        font-size: 48px
    }

    .performance-value sup {
        font-size: 18px
    }

    .performance-item p {
        font-size: 13px;
        line-height: 1.5
    }

    @media (max-width:768px) {
        .stats-grid {
            grid-template-columns: 2fr 2fr
        }
    }

    @media (max-width:768px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px
        }

        .stat-item {
            text-align: left
        }
    }

    .business-service-card {
        min-height: 215px
    }

    .contact-form {
        padding: 22px;
        grid-template-columns: 1fr
    }

    .full-field {
        grid-column: auto
    }

    .footer-main {
        gap: 30px;
        padding-bottom: 45px
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 18px
    }
}

.luxury-cars .car-row {
    align-items: stretch
}

.luxury-cars .car-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff
}

.luxury-cars .car-image-wrap {
    flex: 0 0 250px;
    height: 250px;
    min-height: 250px;
    overflow: hidden
}

.luxury-cars .car-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center
}

.luxury-cars .car-card-body {
    flex: 1 1 auto;
    min-height: 172px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: #fff
}

.luxury-cars .car-card-body>div {
    min-width: 0;
    flex: 1 1 auto
}

.luxury-cars .car-card h3 {
    margin: 0 0 9px;
    font-size: 20px;
    line-height: 1.25
}

.luxury-cars .car-card p {
    margin: 0;
    min-height: 44px;
    font-size: 12px;
    line-height: 1.65
}

.luxury-cars .car-card-body>a {
    flex: 0 0 39px
}

@media (max-width:1100px) {
    .luxury-cars .car-image-wrap {
        flex-basis: 265px;
        height: 265px;
        min-height: 265px
    }

    .luxury-cars .car-card-body {
        min-height: 165px
    }
}

@media (max-width:600px) {
    .luxury-cars .car-image-wrap {
        flex-basis: 230px;
        height: 230px;
        min-height: 230px
    }

    .luxury-cars .car-card-body {
        min-height: 150px;
        padding: 20px
    }

    .luxury-cars .car-card h3 {
        font-size: 18px
    }

    .luxury-cars .car-card p {
        min-height: 40px;
        font-size: 12px
    }
}

.luxury-cars .car-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: #ece9e3
}

.luxury-cars .car-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important
}

.luxury-cars .car-card:hover .car-image-wrap img {
    transform: scale(1.02) !important
}

.luxury-cars .car-card:first-child .car-image-wrap {
    padding: 0
}

.luxury-cars .car-card:first-child .car-image-wrap img {
    object-fit: contain !important;
    object-position: center center !important
}

@media (max-width:600px) {
    .luxury-cars .car-image-wrap {
        padding: 10px
    }

    .luxury-cars .car-card:first-child .car-image-wrap {
        padding: 0
    }
}

.service-strip {
    padding: 20px 0 18px;
}

.service-strip-inner {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr) auto minmax(150px, 1fr);
    align-items: center;
    justify-content: center;
    gap: 24px
}

.service-strip-item {
    min-width: 0;
    min-height: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    text-decoration: none;
    color: #777
}

.service-strip-item .service-strip-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(199, 155, 85, .28);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(255, 255, 255, .55);
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease
}

.service-strip-item .service-strip-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round
}

.service-strip-item>span:last-child {
    display: block;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 1.25px;
    text-transform: uppercase
}

.service-strip-item:hover {
    color: var(--text)
}

.service-strip-item:hover .service-strip-icon {
    color: #fff;
    border-color: var(--gold);
    background: var(--gold);
    transform: translateY(-3px)
}

.service-strip-inner>i {
    width: 4px;
    height: 4px;
    align-self: center;
    border-radius: 50%;
    background: var(--gold)
}

@media (max-width:900px) {
    .service-strip-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 18px
    }

    .service-strip-inner>i {
        display: none
    }
}

@media (max-width:520px) {
    .service-strip {
        padding: 36px 0
    }

    .service-strip-inner {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .service-strip-item {
        min-height: 84px
    }
}

.landing-page .site-header,
.landing-page .site-header.is-scrolled,
.site-header,
.site-header.is-scrolled,
.svc-page .site-header,
.svc-page .site-header.is-scrolled {
    height: 100px;
    color: #151719;
    background: #fff;
    border-bottom: 1px solid rgba(14, 16, 18, .1);
    box-shadow: 0 8px 30px rgba(16, 18, 20, .06);
    -webkit-backdrop-filter: none;
    backdrop-filter: none
}

.landing-page .site-header .header-inner,
.site-header .header-inner,
.svc-page .site-header .header-inner {
    height: 100%;
    grid-template-columns: minmax(190px, 1fr) auto minmax(220px, 1fr);
    align-items: center;
    gap: 22px
}

.landing-page .site-header .brand,
.site-header .brand,
.svc-page .site-header .brand {
    justify-self: start;
    color: #0b0d0f
}

.landing-page .site-header .brand-text,
.site-header .brand-text,
.svc-page .site-header .brand-text {
    color: #0b0d0f
}

.landing-page .site-header .main-nav,
.site-header .main-nav,
.svc-page .site-header .main-nav {
    justify-self: center;
    align-items: center;
    gap: 22px
}

.landing-page .site-header .main-nav a,
.site-header .main-nav a,
.svc-page .site-header .main-nav a {
    color: rgba(17, 19, 21, .72)
}

.landing-page .site-header .main-nav a:hover,
.site-header .main-nav a:focus-visible,
.site-header .main-nav a:hover,
.svc-page .site-header .main-nav a:hover {
    color: #0b0d0f
}

.landing-page .site-header .header-actions,
.site-header .header-actions,
.svc-page .site-header .header-actions {
    justify-self: end;
    align-items: center
}

.landing-page .site-header .header-phone,
.site-header .header-phone,
.svc-page .site-header .header-phone {
    color: rgba(17, 19, 21, .62)
}

.landing-page .site-header .header-book-btn,
.site-header .header-book-btn,
.svc-page .site-header .header-book-btn {
    color: #fff;
    background: #0b0d0f;
    border-color: #0b0d0f
}

.landing-page .site-header .header-book-btn:hover,
.site-header .header-book-btn:hover,
.svc-page .site-header .header-book-btn:hover {
    color: #0b0d0f;
    background: var(--gold, #c79b55);
    border-color: var(--gold, #c79b55)
}

.landing-page .site-header .mobile-menu-button,
.site-header .mobile-menu-button,
.svc-page .site-header .mobile-menu-button {
    background: #0b0d0f;
    border-color: #0b0d0f
}

.landing-page .site-header .mobile-menu-button span,
.site-header .mobile-menu-button span,
.svc-page .site-header .mobile-menu-button span {
    background: #fff
}

.landing-page .hero-section {
    padding-top: 68px
}

.svc-page .svc-hero {
    padding-top: 68px
}

@media (max-width:1180px) {

    .landing-page .site-header .header-inner,
    .site-header .header-inner,
    .svc-page .site-header .header-inner {
        grid-template-columns: minmax(165px, 1fr) auto minmax(150px, 1fr);
        gap: 14px
    }

    .landing-page .site-header .main-nav,
    .site-header .main-nav,
    .svc-page .site-header .main-nav {
        gap: 14px
    }

    .landing-page .site-header .main-nav a,
    .site-header .main-nav a,
    .svc-page .site-header .main-nav a {
        font-size: 10px
    }

    .landing-page .site-header .header-phone,
    .site-header .header-phone,
    .svc-page .site-header .header-phone {
        display: none
    }
}

@media (max-width:900px) {

    .landing-page .site-header,
    .landing-page .site-header.is-scrolled,
    .site-header,
    .site-header.is-scrolled,
    .svc-page .site-header,
    .svc-page .site-header.is-scrolled {
        height: 64px
    }

    .landing-page .site-header .header-inner,
    .site-header .header-inner,
    .svc-page .site-header .header-inner {
        position: relative;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 10px
    }

    .landing-page .site-header .brand,
    .site-header .brand,
    .svc-page .site-header .brand {
        width: auto;
        max-width: calc(100vw - 165px)
    }

    .landing-page .site-header .brand-text,
    .site-header .brand-text,
    .svc-page .site-header .brand-text {
        overflow: hidden;
        font-size: clamp(18px, 4.4vw, 23px);
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .landing-page .site-header .mobile-menu-button,
    .site-header .mobile-menu-button,
    .svc-page .site-header .mobile-menu-button {
        display: inline-flex;
        justify-self: end;
        flex: 0 0 40px;
        width: 40px;
        height: 40px
    }

    .landing-page .site-header .header-actions,
    .site-header .header-actions,
    .svc-page .site-header .header-actions {
        justify-self: end
    }

    .landing-page .site-header .header-book-btn,
    .site-header .header-book-btn,
    .svc-page .site-header .header-book-btn {
        min-width: auto;
        height: 38px;
        padding: 0 13px;
        font-size: 9px;
        white-space: nowrap
    }

    .landing-page .site-header .main-nav,
    .site-header .main-nav,
    .svc-page .site-header .main-nav {
        position: absolute;
        z-index: 1002;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 64px);
        padding: 14px 18px 20px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        background: #fff;
        border-top: 1px solid rgba(14, 16, 18, .08);
        box-shadow: 0 18px 35px rgba(16, 18, 20, .12)
    }

    .landing-page .site-header .main-nav.is-open,
    .site-header .main-nav.is-open,
    .svc-page .site-header .main-nav.is-open {
        display: flex
    }

    .landing-page .site-header .main-nav a,
    .site-header .main-nav a,
    .svc-page .site-header .main-nav a {
        width: 100%;
        min-height: 48px;
        padding: 0 4px;
        display: flex;
        align-items: center;
        color: #151719;
        font-size: 13px;
        border-bottom: 1px solid rgba(14, 16, 18, .08)
    }

    .landing-page .site-header .main-nav a::after,
    .site-header .main-nav a::after,
    .svc-page .site-header .main-nav a::after {
        display: none
    }

    .landing-page .site-header .nav-service-link,
    .site-header .nav-service-link,
    .svc-page .site-header .nav-service-link {
        min-height: 52px;
        padding: 0 4px;
        border: 0;
        border-radius: 0
    }

    .landing-page .hero-section {
        padding-top: 64px
    }

    .svc-page .svc-hero {
        padding-top: 64px
    }
}

@media (max-width:560px) {
    .site-container {
        width: min(calc(100% - 24px), 540px)
    }

    .landing-page .site-header .header-book-btn,
    .site-header .header-book-btn,
    .svc-page .site-header .header-book-btn {
        display: none
    }

    .landing-page .site-header .header-inner,
    .site-header .header-inner,
    .svc-page .site-header .header-inner {
        grid-template-columns: minmax(0, 1fr) auto
    }

    .landing-page .site-header .brand,
    .site-header .brand,
    .svc-page .site-header .brand {
        max-width: calc(100vw - 80px)
    }

    .landing-page .site-header .main-nav,
    .site-header .main-nav,
    .svc-page .site-header .main-nav {
        left: -12px;
        right: -12px;
        width: auto
    }
}

@media (max-width:1280px) {
    .svc-shell {
        width: min(calc(100% - 56px), 1120px)
    }

    .svc-hero-grid {
        gap: 50px
    }

    .svc-departures {
        min-width: 0
    }
}

@media (max-width:1100px) {
    .svc-page {
        padding-left: 0 !important
    }

    .svc-side-rail {
        display: none !important
    }

    .svc-page .site-header,
    .svc-page .site-header.is-scrolled {
        left: 0 !important;
        width: 100% !important
    }

    .svc-shell {
        width: min(calc(100% - 40px), 920px)
    }

    .svc-about-grid,
    .svc-hero-grid {
        grid-template-columns: 1fr !important
    }

    .svc-hero-grid {
        gap: 42px !important
    }

    .svc-fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important
    }

    .svc-about-stats,
    .svc-credentials {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important
    }
}

@media (max-width:900px) {

    .svc-page .site-header,
    .svc-page .site-header.is-scrolled {
        height: 64px !important
    }

    .svc-page .header-inner {
        grid-template-columns: 1fr auto !important;
        gap: 16px !important
    }

    .svc-page .header-actions {
        display: none !important
    }

    .svc-page .mobile-menu-button {
        display: flex !important;
        justify-self: end !important
    }

    .svc-page .main-nav {
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: calc(100dvh - 64px) !important;
        padding: 20px !important;
        display: flex !important;
        align-items: stretch !important;
        flex-direction: column !important;
        gap: 0 !important;
        overflow-y: auto !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        background: #fff !important;
        border-top: 1px solid rgba(14, 16, 18, .08) !important;
        box-shadow: 0 18px 35px rgba(0, 0, 0, .1) !important;
        transform: translateY(-10px) !important;
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease !important
    }

    .svc-page .main-nav.is-open {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important
    }

    .svc-page .main-nav a {
        width: 100% !important;
        min-height: 48px !important;
        padding: 13px 4px !important;
        display: flex !important;
        align-items: center !important;
        color: #151719 !important;
        border-bottom: 1px solid rgba(14, 16, 18, .08) !important;
        font-size: 13px !important
    }

    .svc-page .main-nav a::after {
        display: none !important
    }

    .svc-hero {
        min-height: auto !important;
        padding-top: 64px !important
    }

    .svc-hero-grid {
        min-height: auto !important;
        padding-top: 70px !important;
        padding-bottom: 70px !important
    }

    .svc-departures {
        width: 100% !important
    }

    .svc-service-row {
        grid-template-columns: 86px 1fr auto !important;
        gap: 16px !important
    }

    .svc-service-row p {
        grid-column: 2/-1 !important
    }
}

@media (max-width:680px) {
    .svc-shell {
        width: min(calc(100% - 28px), 620px)
    }

    .svc-fleet-heading h2,
    .svc-hero-copy h1,
    .svc-pricing h2,
    .svc-section-intro h2,
    .svc-services-heading h2 {
        overflow-wrap: anywhere
    }

    .svc-hero-actions {
        align-items: stretch !important;
        flex-direction: column !important
    }

    .svc-button {
        width: 100% !important;
        justify-content: space-between !important
    }

    .svc-board-labels,
    .svc-board-row {
        grid-template-columns: 1.35fr .8fr .8fr !important
    }

    .svc-board-labels span:nth-child(3),
    .svc-board-row span:nth-child(3) {
        display: none !important
    }

    .svc-about-stats,
    .svc-credentials,
    .svc-fleet-grid {
        grid-template-columns: 1fr !important
    }

    .svc-service-row {
        grid-template-columns: 1fr auto !important;
        padding: 24px 0 !important
    }

    .svc-service-code {
        grid-column: 1 !important
    }

    .svc-service-row strong {
        grid-column: 1 !important;
        font-size: 20px !important
    }

    .svc-service-row p {
        grid-column: 1/-1 !important
    }

    .svc-service-arrow {
        grid-column: 2 !important;
        grid-row: 1/span 2 !important;
        align-self: center !important
    }

    .svc-trip-meter {
        display: none !important
    }
}

@media (max-width:420px) {
    .svc-page .site-container {
        width: calc(100% - 24px) !important
    }

    .svc-page .brand {
        width: auto !important;
        max-width: calc(100vw - 82px) !important
    }

    .svc-page .brand-text {
        font-size: clamp(19px, 6vw, 23px) !important
    }

    .svc-shell {
        width: calc(100% - 24px) !important
    }

    .svc-departures {
        padding: 18px 14px !important
    }

    .svc-board-labels,
    .svc-board-row {
        gap: 8px !important;
        font-size: 9px !important
    }
}

@media (min-width:1101px) {
    .svc-side-rail {
        width: 50px !important;
        overflow: hidden !important;

    }

    .svc-rail-nav {
        width: 100% !important;
        top: 48px !important;
        bottom: 12px !important;
        gap: 2px !important;
        overflow: hidden !important;
    }

    .svc-rail-nav a {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 48px !important;
        padding: 2px 3px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 2px !important;
        text-align: center !important;
        overflow: visible !important;
    }

    .svc-rail-nav .svc-rail-label {
        position: static !important;
        width: 100% !important;
        max-width: 64px !important;
        display: block !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        font-size: 8px !important;
        line-height: 1.1 !important;
        letter-spacing: .04em !important;
        text-align: center !important;
        writing-mode: horizontal-tb !important;
        transform: none !important
    }

    .svc-rail-nav .svc-rail-number {
        position: static !important;
        width: 30px !important;
        height: 26px !important;
        display: grid !important;
        place-items: center !important;
        margin: 0 auto !important;
        transform: none !important
    }
}

.svc-fleet-card {
    perspective: 1400px
}

.svc-car-drawing {
    position: relative;
    isolation: isolate;
    perspective: 1000px;
    overflow: visible
}

.svc-car-drawing::before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 50%;
    bottom: 14px;
    width: min(72%, 270px);
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(6, 21, 35, .24) 0, rgba(6, 21, 35, .08) 48%, transparent 75%);
    filter: blur(8px);
    opacity: .35;
    transform: translateX(-50%) scaleX(.78);
    transition: opacity .35s ease, transform .35s ease
}

.svc-car-drawing svg {
    display: block;
    transform-origin: 50% 55%;
    transform-style: preserve-3d;
    backface-visibility: visible;
    will-change: transform, filter, opacity;
    filter: drop-shadow(0 12px 13px rgba(6, 21, 35, .1))
}

.svc-fleet-card.is-visible .svc-car-drawing svg {
    animation: svcCarEnter3d 1.05s cubic-bezier(.18, .8, .2, 1) both;
    animation-delay: calc(180ms + (var(--svc-card-index, 0) * 120ms))
}

.svc-fleet-card.is-visible .svc-car-drawing::before {
    animation: svcCarShadowEnter .95s cubic-bezier(.18, .8, .2, 1) both;
    animation-delay: calc(180ms + (var(--svc-card-index, 0) * 120ms))
}

.svc-fleet-card.is-car-flipping .svc-car-drawing svg {
    animation: svcCarOneTurn 1.15s cubic-bezier(.45, .04, .2, 1) both !important
}

.svc-fleet-card.is-car-flipping .svc-car-drawing::before {
    animation: svcCarShadowSpin 1.15s ease-in-out both
}

.svc-fleet-card.is-car-flipping .svc-car-drawing circle,
.svc-fleet-card:hover .svc-car-drawing circle {
    animation: none !important;
    transform: none !important
}

.svc-fleet-card:hover .svc-car-drawing::before {
    opacity: .55;
    transform: translateX(-50%) scaleX(.94)
}

@keyframes svcCarEnter3d {
    0% {
        opacity: 0;
        transform: translate3d(-38px, 15px, -120px) rotateX(16deg) rotateY(-34deg) scale(.82);
        filter: blur(6px) drop-shadow(0 5px 6px rgba(6, 21, 35, .04))
    }

    62% {
        opacity: 1;
        transform: translate3d(7px, -3px, 14px) rotateX(-3deg) rotateY(7deg) scale(1.025);
        filter: blur(0) drop-shadow(0 16px 16px rgba(6, 21, 35, .14))
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0) scale(1);
        filter: blur(0) drop-shadow(0 12px 13px rgba(6, 21, 35, .1))
    }
}

@keyframes svcCarShadowEnter {
    0% {
        opacity: 0;
        transform: translateX(-50%) scaleX(.35)
    }

    70% {
        opacity: .48;
        transform: translateX(-50%) scaleX(1.02)
    }

    100% {
        opacity: .35;
        transform: translateX(-50%) scaleX(.78)
    }
}

@keyframes svcCarOneTurn {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0) scale(1);
        filter: drop-shadow(0 12px 13px rgba(6, 21, 35, .1))
    }

    25% {
        transform: translate3d(0, -5px, 18px) rotateX(2deg) rotateY(90deg) scale(1.035);
        filter: drop-shadow(15px 15px 15px rgba(6, 21, 35, .15))
    }

    50% {
        transform: translate3d(0, -8px, 26px) rotateX(0) rotateY(180deg) scale(1.06);
        filter: drop-shadow(0 20px 18px rgba(6, 21, 35, .18))
    }

    75% {
        transform: translate3d(0, -5px, 18px) rotateX(-2deg) rotateY(270deg) scale(1.035);
        filter: drop-shadow(-15px 15px 15px rgba(6, 21, 35, .15))
    }

    100% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(360deg) scale(1);
        filter: drop-shadow(0 12px 13px rgba(6, 21, 35, .1))
    }
}

@keyframes svcCarShadowSpin {

    0%,
    100% {
        opacity: .35;
        transform: translateX(-50%) scaleX(.78)
    }

    25%,
    75% {
        opacity: .24;
        transform: translateX(-50%) scaleX(.48)
    }

    50% {
        opacity: .52;
        transform: translateX(-50%) scaleX(1)
    }
}

@media (max-width:1100px) {
    .svc-car-drawing {
        height: 140px
    }

    .svc-car-drawing svg {
        max-width: 290px
    }
}

@media (max-width:767px) {
    .svc-fleet-grid {
        grid-template-columns: 1fr !important
    }

    .svc-fleet-card {
        min-height: auto
    }

    .svc-car-drawing {
        height: 128px
    }

    .svc-car-drawing svg {
        width: min(100%, 310px)
    }
}

@media (max-width:420px) {
    .svc-car-drawing {
        height: 112px
    }

    .svc-car-drawing svg {
        width: min(100%, 275px)
    }
}

@media (prefers-reduced-motion:reduce) {

    .svc-fleet-card.is-car-flipping .svc-car-drawing svg,
    .svc-fleet-card.is-car-flipping .svc-car-drawing::before,
    .svc-fleet-card.is-visible .svc-car-drawing svg,
    .svc-fleet-card.is-visible .svc-car-drawing::before {
        animation: none !important
    }
}

.svc-car-drawing-photo {
    height: 190px;
    margin: -4px -4px 24px;
    overflow: hidden;
    border-radius: 3px;
    background: #171513
}

.svc-car-drawing-photo::before {
    display: none
}

.svc-real-car-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 52%;
    transform-origin: 50% 58%;
    transform-style: preserve-3d;
    backface-visibility: visible;
    will-change: transform, opacity, filter
}

.svc-fleet-card:not(.is-visible) .svc-real-car-image {
    opacity: 0;
    transform: translate3d(-115%, 8px, -80px) rotateY(-12deg) scale(.94)
}

.svc-fleet-card.is-visible .svc-real-car-image {
    animation: svcRealCarPushIn 1.35s cubic-bezier(.16, .84, .24, 1) both;
    animation-delay: calc(140ms + (var(--svc-card-index, 0) * 120ms))
}

.svc-fleet-card.is-car-flipping .svc-real-car-image {
    animation: svcRealCarFlipOnce 1.15s cubic-bezier(.45, .04, .2, 1) both !important
}

@keyframes svcRealCarPushIn {
    0% {
        opacity: 0;
        transform: translate3d(-115%, 8px, -80px) rotateY(-12deg) scale(.94);
        filter: blur(4px) brightness(.78)
    }

    68% {
        opacity: 1;
        transform: translate3d(4%, -1px, 12px) rotateY(2deg) scale(1.015);
        filter: blur(0) brightness(1.04)
    }

    84% {
        transform: translate3d(-1.5%, 0, 4px) rotateY(-1deg) scale(1.004);
        filter: blur(0) brightness(1.01)
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotateY(0) scale(1);
        filter: blur(0) brightness(1)
    }
}

@keyframes svcRealCarFlipOnce {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0) scale(1);
        filter: brightness(1)
    }

    18% {
        transform: translate3d(0, -3px, 18px) rotateX(1deg) rotateY(48deg) scale(1.02);
        filter: brightness(1.04)
    }

    42% {
        transform: translate3d(0, -6px, 28px) rotateX(0) rotateY(180deg) scale(1.045);
        filter: brightness(.92)
    }

    66% {
        transform: translate3d(0, -4px, 20px) rotateX(-1deg) rotateY(92deg) scale(1.025);
        filter: brightness(1.02)
    }

    84% {
        transform: translate3d(0, -1px, 8px) rotateX(0) rotateY(-8deg) scale(1.008);
        filter: brightness(1.01)
    }

    100% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0) scale(1);
        filter: brightness(1)
    }
}

.svc-car-drawing .svc-car-visual {
    transform-origin: 50% 55%;
    transform-style: preserve-3d;
    backface-visibility: visible;
    will-change: transform, filter, opacity
}

.svc-fleet-card.is-visible .svc-car-drawing:not(.svc-car-drawing-photo) .svc-car-visual {
    animation: svcCarEnter3d 1.05s cubic-bezier(.18, .8, .2, 1) both;
    animation-delay: calc(180ms + (var(--svc-card-index, 0) * 120ms))
}

.svc-fleet-card.is-car-flipping .svc-car-drawing:not(.svc-car-drawing-photo) .svc-car-visual {
    animation: svcCarOneTurn 1.15s cubic-bezier(.45, .04, .2, 1) both !important
}

@media (max-width:1100px) {
    .svc-car-drawing-photo {
        height: 180px
    }
}

@media (max-width:767px) {
    .svc-car-drawing-photo {
        height: clamp(175px, 52vw, 255px);
        margin-bottom: 22px
    }

    .svc-real-car-image {
        object-position: center
    }
}

@media (max-width:420px) {
    .svc-car-drawing-photo {
        height: 172px
    }
}

@media (prefers-reduced-motion:reduce) {

    .svc-fleet-card.is-car-flipping .svc-real-car-image,
    .svc-fleet-card.is-visible .svc-real-car-image,
    .svc-fleet-card:not(.is-visible) .svc-real-car-image {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important
    }
}

.svc-fleet-grid {
    align-items: stretch !important
}

.svc-fleet-card {
    min-width: 0 !important;
    height: 100% !important;
    min-height: 605px !important;
    display: grid !important;
    grid-template-rows: 240px auto minmax(58px, auto) minmax(76px, 1fr) auto !important;
    align-content: stretch !important;
    padding: 30px 34px 32px !important
}

.svc-fleet-card .svc-car-drawing-photo {
    width: 100% !important;
    height: 240px !important;
    min-height: 240px !important;
    margin: 0 0 28px !important;
    overflow: hidden !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 3px !important;
    background: #171513 !important
}

.svc-fleet-card .svc-real-car-image {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important
}

.svc-fleet-card:first-child .svc-real-car-image {
    object-position: 50% 52% !important
}

.svc-fleet-card:nth-child(2) .svc-real-car-image {
    object-position: 50% 52% !important
}

.svc-fleet-card:nth-child(3) .svc-real-car-image {
    object-position: 50% 50% !important
}

.svc-fleet-card .svc-fleet-type {
    align-self: start !important;
    min-height: 16px !important;
    margin: 0 0 13px !important
}

.svc-fleet-card h3 {
    align-self: start !important;
    min-height: 58px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    font-size: clamp(27px, 2vw, 38px) !important;
    line-height: 1.12 !important
}

.svc-fleet-card .svc-fleet-copy {
    align-self: start !important;
    min-height: 76px !important;
    margin: 18px 0 24px !important;
    font-size: 12px !important;
    line-height: 1.65 !important
}

.svc-fleet-card dl {
    align-self: end !important;
    width: 100% !important;
    margin-top: auto !important;
    padding-top: 18px !important;
    grid-template-columns: .7fr .8fr 1.3fr !important
}

.svc-fleet-card dt {
    font-size: 8px !important
}

.svc-fleet-card dd {
    font-size: 13px !important
}

.svc-fleet-card:not(.is-visible) .svc-real-car-image {
    opacity: 0;
    transform: translate3d(-115%, 8px, -80px) rotateY(-12deg) scale(.94)
}

.svc-fleet-card.is-visible .svc-real-car-image {
    animation: svcRealCarPushIn 1.35s cubic-bezier(.16, .84, .24, 1) both !important;
    animation-delay: calc(140ms + (var(--svc-card-index, 0) * 140ms)) !important
}

.svc-fleet-card.is-car-flipping .svc-real-car-image {
    animation: svcRealCarFlipOnce 1.15s cubic-bezier(.45, .04, .2, 1) both !important
}

@media (max-width:1250px) {
    .svc-fleet-card {
        min-height: 565px !important;
        grid-template-rows: 210px auto minmax(54px, auto) minmax(82px, 1fr) auto !important;
        padding: 25px !important
    }

    .svc-fleet-card .svc-car-drawing-photo {
        height: 210px !important;
        min-height: 210px !important;
        margin-bottom: 24px !important
    }

    .svc-fleet-card h3 {
        min-height: 54px !important;
        font-size: clamp(24px, 2.15vw, 32px) !important
    }
}

@media (max-width:980px) and (min-width:681px) {
    .svc-fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important
    }

    .svc-fleet-card:last-child {
        grid-column: 1/-1;
        width: min(100%, calc(50% - 10px));
        justify-self: center
    }
}

@media (max-width:680px) {
    .svc-fleet-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important
    }

    .svc-fleet-card,
    .svc-fleet-card:last-child {
        width: 100% !important;
        min-height: 0 !important;
        grid-column: auto !important;
        grid-template-rows: clamp(190px, 58vw, 290px) auto auto auto auto !important;
        padding: 20px !important
    }

    .svc-fleet-card .svc-car-drawing-photo {
        height: clamp(190px, 58vw, 290px) !important;
        min-height: 0 !important;
        margin-bottom: 22px !important
    }

    .svc-fleet-card h3 {
        min-height: 0 !important;
        font-size: clamp(27px, 8vw, 38px) !important
    }

    .svc-fleet-card .svc-fleet-copy {
        min-height: 0 !important;
        margin: 15px 0 22px !important
    }
}

@media (max-width:420px) {
    .svc-fleet-card {
        padding: 16px !important
    }

    .svc-fleet-card dl {
        gap: 10px !important
    }
}

.svc-fleet-card.is-car-flipping .svc-real-car-image {
    animation: svcRealCarFlipOnce 1.05s cubic-bezier(.44, .05, .18, 1) both !important;
    transform-origin: 50% 55% !important;
    backface-visibility: visible !important
}

@media (prefers-reduced-motion:reduce) {
    .svc-fleet-card.is-car-flipping .svc-real-car-image {
        animation: none !important;
        transform: none !important
    }
}

@media (min-width:1251px) {
    .svc-fleet-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important
    }

    .svc-fleet-card {
        padding-inline: 24px !important
    }

    .svc-fleet-card h3 {
        font-size: clamp(24px, 1.65vw, 33px) !important
    }
}

@media (max-width:1250px) and (min-width:681px) {
    .svc-fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important
    }

    .svc-fleet-card:last-child {
        grid-column: auto !important;
        width: 100% !important;
        justify-self: stretch !important
    }
}

.svc-fleet-card .svc-car-drawing-photo {
    overflow: hidden !important;
    background: #f3efe6 !important;
    padding: 14px !important
}

.svc-fleet-card .svc-real-car-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: 0 0 !important
}

.svc-fleet-card.is-visible .svc-real-car-image,
.svc-fleet-card:hover .svc-real-car-image {
    object-fit: contain !important
}

@media (max-width:1250px) {
    .svc-fleet-card .svc-car-drawing-photo {
        padding: 12px !important
    }
}

@media (max-width:680px) {
    .svc-fleet-card .svc-car-drawing-photo {
        padding: 10px !important
    }
}

.svc-rail-nav a {
    gap: 0 !important;
    padding: 8px 4px !important
}

.svc-rail-nav .svc-rail-label {
    display: none !important
}

.svc-rail-nav a .svc-rail-number,
.svc-rail-number {
    position: relative !important;
    z-index: 2 !important;
    width: 34px !important;
    height: 34px !important;
    flex: 0 0 34px !important;
    margin: 0 auto !important;
    border-radius: 50% !important;
    border: 1px solid currentColor !important;
    background: 0 0 !important;
    overflow: visible !important;
    isolation: isolate !important
}

.svc-rail-number::after,
.svc-rail-number::before {
    content: "" !important;
    position: absolute !important;
    z-index: -1 !important;
    inset: -1px !important;
    border: 1px solid currentColor !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    pointer-events: none !important;
    animation: svcRailNumberWave 2.4s ease-out infinite !important
}

.svc-rail-number::after {
    animation-delay: 1.2s !important
}

.svc-rail-nav a.is-active .svc-rail-number::after,
.svc-rail-nav a.is-active .svc-rail-number::before,
.svc-rail-nav a:focus-visible .svc-rail-number::after,
.svc-rail-nav a:focus-visible .svc-rail-number::before,
.svc-rail-nav a:hover .svc-rail-number::after,
.svc-rail-nav a:hover .svc-rail-number::before {
    animation-duration: 1.65s !important
}

@keyframes svcRailNumberWave {
    0% {
        transform: scale(1);
        opacity: .62
    }

    65% {
        opacity: .18
    }

    100% {
        transform: scale(2.05);
        opacity: 0
    }
}

@media (max-height:720px) and (min-width:1101px) {

    .svc-rail-nav a .svc-rail-number,
    .svc-rail-number {
        width: 30px !important;
        height: 30px !important;
        flex-basis: 30px !important
    }
}

@media (prefers-reduced-motion:reduce) {

    .svc-rail-number::after,
    .svc-rail-number::before {
        animation: none !important;
        opacity: 0 !important
    }
}

.svc-rail-nav a .svc-rail-number,
.svc-rail-number {
    width: 34px !important;
    height: 30px !important;
    flex: 0 0 30px !important;
    border-radius: 0 !important;
    border: 1px solid currentColor !important;
    background: 0 0 !important
}

.svc-rail-number::after,
.svc-rail-number::before {
    inset: -1px !important;
    border-radius: 0 !important;
    border: 1px solid currentColor !important;
    animation-name: svcRailSquareWave !important
}

@keyframes svcRailSquareWave {
    0% {
        transform: scale(1);
        opacity: .62
    }

    55% {
        opacity: .22
    }

    100% {
        transform: scale(1.95, 1.75);
        opacity: 0
    }
}

@media (max-height:720px) and (min-width:1101px) {

    .svc-rail-nav a .svc-rail-number,
    .svc-rail-number {
        width: 30px !important;
        height: 26px !important;
        flex-basis: 26px !important
    }
}

.fleet-page {
    min-height: 100vh;
    background: #f3efe6
}

.fleet-page .fleet-gallery-main {
    padding-top: 76px;
    overflow: hidden;
    background: radial-gradient(circle at 15% 12%, rgba(199, 155, 85, .11), transparent 30%), #f3efe6
}

.fleet-page .fleet-gallery-intro {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: grid;
    place-items: center;
    isolation: isolate;
    background: #061523;
    color: #fff
}

.fleet-page .fleet-gallery-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .11;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='fleetNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23fleetNoise)' opacity='.4'/%3E%3C/svg%3E")
}

.fleet-page .fleet-gallery-intro-inner {
    position: relative;
    z-index: 2;
    padding-block: 95px;
    text-align: center
}

.fleet-page .fleet-gallery-kicker {
    margin-bottom: 18px;
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase
}

.fleet-page .fleet-gallery-intro h1 {
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(68px, 9vw, 142px);
    font-weight: 400;
    line-height: .86;
    letter-spacing: -.045em
}

.fleet-page .fleet-gallery-intro-inner>p:not(.fleet-gallery-kicker) {
    margin-top: 28px;
    color: rgba(255, 255, 255, .62);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .07em
}

.fleet-page .fleet-gallery-scroll {
    margin-top: 50px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, .48);
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase
}

.fleet-page .fleet-gallery-scroll i {
    width: 38px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .2)
}

.fleet-page .fleet-gallery-scroll i::after {
    content: "";
    width: 45%;
    height: 100%;
    display: block;
    background: #d1a341;
    animation: fleetScrollLine 1.8s ease-in-out infinite
}

.fleet-page .fleet-gallery-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none
}

.fleet-page .fleet-gallery-orb-one {
    width: 520px;
    height: 520px;
    top: -230px;
    right: -120px;
    border: 1px solid rgba(209, 163, 65, .18);
    animation: fleetOrbRotate 20s linear infinite
}

.fleet-page .fleet-gallery-orb-two {
    width: 330px;
    height: 330px;
    left: -100px;
    bottom: -180px;
    background: radial-gradient(circle, rgba(209, 163, 65, .16), transparent 70%);
    animation: fleetOrbFloat 7s ease-in-out infinite alternate
}

.fleet-page .fleet-vertical-gallery {
    width: min(calc(100% - 48px), 1360px);
    margin-inline: auto;
    padding: 120px 0 140px;
    display: grid;
    gap: 95px
}

.fleet-page .fleet-visual-item {
    --fleet-enter-x: -95px;
    opacity: 0;
    transform: translate3d(var(--fleet-enter-x), 70px, 0) scale(.94);
    transition: opacity .9s ease, transform 1.15s cubic-bezier(.16, .84, .24, 1)
}

.fleet-page .fleet-visual-item:nth-child(2n) {
    --fleet-enter-x: 95px
}

.fleet-page .fleet-visual-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1)
}

.fleet-page .fleet-visual-frame {
    --fleet-rotate-x: 0deg;
    --fleet-rotate-y: 0deg;
    --fleet-image-x: 0px;
    --fleet-image-y: 0px;
    position: relative;
    min-height: clamp(520px, 62vw, 820px);
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid rgba(10, 18, 25, .1);
    background: linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(232, 227, 216, .68));
    box-shadow: 0 42px 100px rgba(6, 21, 35, .12);
    transform: perspective(1400px) rotateX(var(--fleet-rotate-x)) rotateY(var(--fleet-rotate-y));
    transition: transform .28s ease, box-shadow .4s ease
}

.fleet-page .fleet-visual-frame::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 2;
    border: 1px solid rgba(6, 21, 35, .1);
    pointer-events: none
}

.fleet-page .fleet-visual-frame:hover {
    box-shadow: 0 54px 125px rgba(6, 21, 35, .18)
}

.fleet-page .fleet-visual-frame img {
    width: min(88%, 1120px);
    max-height: 76%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 32px 25px rgba(6, 13, 19, .2));
    transform: translate3d(var(--fleet-image-x), var(--fleet-image-y), 30px) scale(1);
    transition: transform .5s cubic-bezier(.2, .8, .2, 1), filter .5s ease
}

.fleet-page .fleet-visual-frame:hover img {
    transform: translate3d(var(--fleet-image-x), calc(var(--fleet-image-y) - 8px), 42px) scale(1.025);
    filter: drop-shadow(0 38px 32px rgba(6, 13, 19, .27))
}

.fleet-page .fleet-visual-shine {
    position: absolute;
    z-index: 3;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(112deg, transparent 32%, rgba(255, 255, 255, .05) 42%, rgba(255, 255, 255, .55) 50%, rgba(255, 255, 255, .06) 58%, transparent 68%);
    transform: translateX(-135%)
}

.fleet-page .fleet-visual-frame:hover .fleet-visual-shine {
    animation: fleetImageShine 1.25s ease
}

.fleet-page .fleet-visual-number {
    position: absolute;
    z-index: 4;
    top: 38px;
    left: 40px;
    color: #d1a341;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .18em
}

.fleet-page .fleet-visual-name {
    position: absolute;
    z-index: 4;
    right: 40px;
    bottom: 34px;
    max-width: 70%;
    color: #061523;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(30px, 4.4vw, 70px);
    line-height: .95;
    text-align: right
}

@keyframes fleetScrollLine {
    0% {
        transform: translateX(-110%)
    }

    100%,
    50% {
        transform: translateX(225%)
    }
}

@keyframes fleetOrbRotate {
    to {
        transform: rotate(360deg)
    }
}

@keyframes fleetOrbFloat {
    from {
        transform: translate3d(0, -10px, 0) scale(.96)
    }

    to {
        transform: translate3d(32px, 20px, 0) scale(1.07)
    }
}

@keyframes fleetImageShine {
    from {
        transform: translateX(-135%)
    }

    to {
        transform: translateX(135%)
    }
}

@media (max-width:900px) {
    .fleet-page .fleet-gallery-intro {
        min-height: 430px
    }

    .fleet-page .fleet-vertical-gallery {
        padding-block: 80px 100px;
        gap: 55px
    }

    .fleet-page .fleet-visual-frame {
        min-height: clamp(420px, 76vw, 620px)
    }

    .fleet-page .fleet-visual-frame img {
        width: 92%;
        max-height: 72%
    }
}

@media (max-width:600px) {
    .fleet-page .fleet-gallery-main {
        padding-top: 68px
    }

    .fleet-page .fleet-gallery-intro {
        min-height: 380px
    }

    .fleet-page .fleet-gallery-intro-inner {
        padding-block: 70px
    }

    .fleet-page .fleet-gallery-intro h1 {
        font-size: clamp(58px, 22vw, 92px)
    }

    .fleet-page .fleet-vertical-gallery {
        width: min(calc(100% - 28px), 1360px);
        gap: 32px;
        padding: 48px 0 70px
    }

    .fleet-page .fleet-visual-item,
    .fleet-page .fleet-visual-item:nth-child(2n) {
        --fleet-enter-x: 0px;
        transform: translate3d(0, 45px, 0) scale(.96)
    }

    .fleet-page .fleet-visual-item.is-visible {
        transform: translate3d(0, 0, 0) scale(1)
    }

    .fleet-page .fleet-visual-frame {
        min-height: clamp(330px, 105vw, 500px)
    }

    .fleet-page .fleet-visual-frame::before {
        inset: 10px
    }

    .fleet-page .fleet-visual-frame img {
        width: 96%;
        max-height: 67%
    }

    .fleet-page .fleet-visual-number {
        top: 22px;
        left: 22px
    }

    .fleet-page .fleet-visual-name {
        right: 22px;
        bottom: 22px;
        max-width: 82%;
        font-size: clamp(28px, 11vw, 48px)
    }
}

@media (prefers-reduced-motion:reduce) {
    .fleet-page .fleet-visual-item {
        opacity: 1;
        transform: none;
        transition: none
    }

    .fleet-page .fleet-gallery-orb,
    .fleet-page .fleet-gallery-scroll i::after,
    .fleet-page .fleet-visual-frame:hover .fleet-visual-shine {
        animation: none !important
    }

    .fleet-page .fleet-visual-frame,
    .fleet-page .fleet-visual-frame img {
        transform: none !important;
        transition: none !important
    }
}

.fleet-page .site-footer,
.fleet-page .site-footer .footer-bottom,
.fleet-page .site-footer .footer-main {
    opacity: 1 !important;
    visibility: visible !important
}

.fleet-page .site-footer .reveal,
.fleet-page .site-footer .reveal-up,
.fleet-page .site-footer [class*=delay-] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    transition: none !important
}

.fleet-page .site-footer .footer-brand-column,
.fleet-page .site-footer .footer-column,
.fleet-page .site-footer .footer-contact,
.fleet-page .site-footer .footer-newsletter {
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important
}

@media (max-width:900px) {

    body,
    html {
        width: 100%;
        overflow-x: hidden !important
    }

    body {
        min-width: 0
    }

    .site-container,
    .svc-shell {
        width: min(calc(100% - 32px), 720px) !important;
        margin-inline: auto !important
    }

    .section-space {
        padding-block: 78px !important
    }

    .fleet-page .site-header,
    .fleet-page .site-header.is-scrolled,
    .landing-page .site-header,
    .site-header,
    .site-header.is-scrolled,
    .svc-page .site-header,
    .svc-page .site-header.is-scrolled {
        left: 0 !important;
        width: 100% !important;
        height: 68px !important;
        background: rgba(255, 255, 255, .98) !important;
        border-bottom: 1px solid rgba(11, 13, 15, .1) !important;
        box-shadow: 0 8px 28px rgba(9, 11, 13, .07) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        backdrop-filter: blur(14px) !important
    }

    .header-inner {
        width: min(calc(100% - 28px), 720px) !important;
        height: 68px !important;
        margin-inline: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 14px !important
    }

    .brand,
    .brand-live {
        width: auto !important;
        max-width: calc(100% - 62px) !important;
        min-width: 0 !important;
        color: #0b0d0f !important
    }

    .brand-text {
        color: #0b0d0f !important;
        font-size: clamp(20px, 6vw, 27px) !important;
        line-height: 1 !important;
        white-space: nowrap !important
    }

    .brand-glow {
        display: none !important
    }

    .header-actions {
        display: none !important
    }

    .mobile-menu-button {
        position: relative !important;
        z-index: 1003 !important;
        width: 44px !important;
        height: 44px !important;
        flex: 0 0 44px !important;
        display: inline-flex !important;
        border: 1px solid rgba(11, 13, 15, .16) !important;
        border-radius: 50% !important;
        background: #0b0d0f !important
    }

    .mobile-menu-button span {
        width: 17px !important;
        background: #fff !important
    }

    .main-nav {
        position: fixed !important;
        z-index: 1002 !important;
        top: 68px !important;
        left: 14px !important;
        right: 14px !important;
        width: auto !important;
        max-height: calc(100dvh - 84px) !important;
        overflow-y: auto !important;
        padding: 16px !important;
        display: grid !important;
        gap: 4px !important;
        border: 1px solid rgba(11, 13, 15, .1) !important;
        border-radius: 18px !important;
        background: rgba(255, 255, 255, .99) !important;
        box-shadow: 0 24px 60px rgba(8, 10, 12, .18) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-12px) scale(.98) !important;
        transition: opacity .24s ease, transform .24s ease, visibility .24s ease !important
    }

    .main-nav.is-open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) scale(1) !important
    }

    .fleet-page .main-nav a,
    .landing-page .main-nav a,
    .main-nav a,
    .svc-page .main-nav a {
        min-height: 46px !important;
        padding: 0 14px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        border-radius: 11px !important;
        color: #25282b !important;
        font-size: 13px !important;
        text-align: left !important
    }

    .main-nav a::after {
        display: none !important
    }

    .main-nav a:hover,
    .main-nav a[aria-current=page] {
        background: #f3efe6 !important;
        color: #0b0d0f !important
    }

    .landing-page {
        padding-left: 0 !important
    }

    .page-side-rail {
        display: none !important
    }

    .hero-section {
        min-height: 0 !important;
        padding: 68px 0 0 !important;
        overflow: hidden !important;
        background: radial-gradient(circle at 50% 18%, rgba(199, 155, 85, .16), transparent 38%), #f8f6f1 !important;
        color: #0b0d0f !important
    }

    .hero-noise {
        opacity: .035 !important
    }

    .ambient-lines,
    .ambient-shape {
        opacity: .32 !important
    }

    .hero-grid {
        min-height: 0 !important;
        padding: 68px 0 54px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 46px !important
    }

    .hero-copy {
        width: 100% !important;
        max-width: 620px !important;
        margin-inline: auto !important;
        padding: 0 !important;
        text-align: center !important
    }

    .hero-eyebrow {
        margin-bottom: 22px !important;
        justify-content: center !important;
        color: #b88436 !important;
        font-size: 9px !important;
        letter-spacing: 1.8px !important
    }

    .eyebrow-line {
        width: 28px !important
    }

    .hero-title {
        max-width: 100% !important;
        font-size: clamp(52px, 15vw, 78px) !important;
        line-height: .92 !important;
        letter-spacing: -3.4px !important;
        text-align: center !important
    }

    .hero-title em {
        margin-top: 13px !important;
        font-size: .64em !important;
        letter-spacing: -1.2px !important
    }

    .hero-description {
        max-width: 520px !important;
        margin: 25px auto 0 !important;
        color: #707478 !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
        text-align: center !important
    }

    .hero-actions {
        margin-top: 30px !important;
        display: grid !important;
        justify-items: stretch !important;
        gap: 12px !important
    }

    .primary-hero-btn {
        width: min(100%, 440px) !important;
        min-width: 0 !important;
        min-height: 56px !important;
        margin-inline: auto !important;
        background: #0b0d0f !important;
        color: #fff !important
    }

    .text-hero-btn {
        justify-content: center !important;
        color: #4e5256 !important
    }

    .hero-trust {
        width: 100% !important;
        margin: 38px auto 0 !important;
        padding: 21px 4px 0 !important;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 8px !important;
        border-top: 1px solid rgba(11, 13, 15, .1) !important
    }

    .hero-trust div {
        justify-items: center !important;
        text-align: center !important
    }

    .hero-trust strong {
        color: #0b0d0f !important;
        font-size: 17px !important
    }

    .hero-trust span {
        color: #85898d !important;
        font-size: 7px !important;
        line-height: 1.35 !important;
        letter-spacing: .7px !important
    }

    .hero-visual {
        width: 100% !important;
        padding: 0 !important;
        justify-content: center !important
    }

    .vehicle-photo-wrap {
        width: 100% !important;
        max-width: 620px !important;
        margin-inline: auto !important;
        transform: none !important
    }

    .vehicle-frame {
        width: 100% !important;
        overflow: hidden !important;
        border-radius: 24px !important;
        box-shadow: 0 24px 55px rgba(8, 10, 12, .16) !important
    }

    .vehicle-photo {
        width: 100% !important;
        height: clamp(300px, 78vw, 490px) !important;
        object-fit: cover !important;
        object-position: center !important;
        transform: none !important
    }

    .route-card,
    .vehicle-overlay,
    .vehicle-tag {
        display: none !important
    }

    .live-vehicle-card {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: calc(100% - 24px) !important;
        margin: -38px auto 0 !important;
        padding: 12px !important;
        grid-template-columns: 80px minmax(0, 1fr) !important;
        border: 1px solid rgba(11, 13, 15, .09) !important;
        background: rgba(255, 255, 255, .97) !important;
        box-shadow: 0 18px 42px rgba(8, 10, 12, .13) !important;
        animation: none !important
    }

    .live-car-picture {
        height: 72px !important
    }

    .live-car-content strong {
        color: #151719 !important;
        font-size: 13px !important
    }

    .live-car-content small {
        color: #777b7f !important
    }

    .status-label {
        color: #b88436 !important
    }

    .booking-panel-section {
        position: relative !important;
        padding: 56px 0 76px !important;
        background: #f8f6f1 !important
    }

    .booking-position {
        position: static !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important
    }

    .booking-bar {
        width: 100% !important;
        min-height: 0 !important;
        padding: 18px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        border-radius: 20px !important;
        box-shadow: 0 20px 55px rgba(8, 10, 12, .1) !important
    }

    .booking-field {
        min-height: 70px !important;
        padding: 14px 4px !important;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(18, 20, 22, .1) !important
    }

    .booking-field:first-child {
        padding-left: 4px !important
    }

    .booking-field-with-icon {
        grid-template-columns: 42px minmax(0, 1fr) !important;
        gap: 12px !important
    }

    .booking-field input,
    .booking-field select {
        font-size: 14px !important
    }

    .quote-btn {
        width: 100% !important;
        min-width: 0 !important;
        height: 54px !important;
        margin: 18px 0 0 !important;
        padding-inline: 20px !important
    }

    .about-grid,
    .business-travel-heading,
    .contact-inner,
    .faq-grid,
    .section-heading-row {
        grid-template-columns: 1fr !important;
        gap: 28px !important
    }

    .business-travel-heading,
    .section-heading-row {
        text-align: center !important
    }

    .business-kicker,
    .business-travel-heading h2,
    .business-travel-intro,
    .section-intro,
    .section-kicker,
    .section-title {
        text-align: center !important
    }

    .business-travel-intro,
    .section-intro {
        max-width: 620px !important;
        margin-inline: auto !important
    }

    .service-strip {
        padding: 50px 0 !important
    }

    .service-strip-inner {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important
    }

    .service-strip-inner>i {
        display: none !important
    }

    .service-strip-item {
        min-height: 88px !important;
        padding: 14px 8px !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 9px !important;
        border: 1px solid rgba(18, 20, 22, .09) !important;
        border-radius: 15px !important;
        text-align: center !important
    }

    .business-service-grid,
    .luxury-cars .car-row,
    .performance-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important
    }

    .car-card {
        width: 100% !important
    }

    .car-image-wrap {
        height: clamp(250px, 68vw, 390px) !important
    }

    .car-image-wrap img {
        object-fit: contain !important;
        padding: 12px !important
    }

    .car-card-body {
        min-height: 0 !important;
        padding: 24px !important
    }

    .car-card-body,
    .car-card-body>div {
        text-align: left !important
    }

    .about,
    .business-travel-section,
    .contact,
    .faq-section {
        padding-block: 78px !important
    }

    .business-service-card {
        min-height: 180px !important;
        padding: 24px !important
    }

    .business-travel-cta {
        text-align: center !important
    }

    .about-copy,
    .about-panel,
    .contact-copy,
    .faq-grid>div:first-child {
        text-align: center !important
    }

    .about-panel .outline-btn,
    .contact-detail {
        margin-inline: auto !important
    }

    .contact-form {
        padding: 22px !important;
        grid-template-columns: 1fr !important
    }

    .contact-form .full-field {
        grid-column: auto !important
    }

    .faq-list details summary {
        gap: 15px !important;
        font-size: 14px !important;
        line-height: 1.45 !important
    }

    .site-footer {
        padding-top: 70px !important
    }

    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
        text-align: center !important
    }

    .footer-brand-column,
    .footer-column,
    .footer-contact,
    .footer-newsletter {
        width: 100% !important;
        text-align: center !important
    }

    .footer-brand {
        margin-inline: auto !important
    }

    .footer-newsletter {
        max-width: 520px !important;
        margin-inline: auto !important
    }

    .newsletter-form {
        max-width: 440px !important;
        margin-inline: auto !important
    }

    .footer-bottom {
        padding-block: 24px !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 14px !important;
        text-align: center !important
    }

    .footer-legal {
        justify-content: center !important;
        flex-wrap: wrap !important
    }

    .svc-page {
        padding-left: 0 !important
    }

    .svc-side-rail {
        display: none !important
    }

    .svc-page main {
        overflow: hidden !important
    }

    .svc-hero {
        min-height: 0 !important;
        padding: 118px 0 76px !important
    }

    .svc-about-grid,
    .svc-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 42px !important
    }

    .svc-about-content,
    .svc-fleet-heading,
    .svc-hero-copy,
    .svc-pricing-heading,
    .svc-section-intro,
    .svc-services-heading {
        text-align: center !important
    }

    .svc-fleet-heading h2,
    .svc-hero-copy h1,
    .svc-pricing-heading h2,
    .svc-section-intro h2,
    .svc-services-heading h2 {
        max-width: 100% !important;
        margin-inline: auto !important
    }

    .svc-overline,
    .svc-section-label {
        justify-content: center !important
    }

    .svc-about-content>p,
    .svc-hero-description {
        margin-inline: auto !important;
        text-align: center !important
    }

    .svc-hero-actions {
        justify-content: center !important;
        flex-wrap: wrap !important
    }

    .svc-departures {
        width: 100% !important;
        transform: none !important
    }

    .svc-about-stats,
    .svc-credentials {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important
    }

    .svc-service-row {
        grid-template-columns: 1fr auto !important;
        gap: 12px !important;
        padding: 24px 0 !important
    }

    .svc-service-code {
        grid-column: 1/-1 !important
    }

    .svc-service-row p {
        grid-column: 1/2 !important
    }

    .svc-fleet-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important
    }

    .svc-fleet-card {
        min-height: 0 !important;
        grid-template-rows: auto auto auto auto auto !important
    }

    .svc-fleet-card .svc-car-drawing-photo {
        height: clamp(230px, 66vw, 350px) !important;
        min-height: 0 !important
    }

    .svc-fleet-card .svc-fleet-copy,
    .svc-fleet-card h3 {
        min-height: 0 !important;
        text-align: left !important
    }

    .svc-pricing-grid {
        grid-template-columns: 1fr !important
    }

    .fleet-page .fleet-gallery-main {
        padding-top: 68px !important
    }

    .fleet-page .fleet-gallery-intro {
        min-height: 410px !important
    }

    .fleet-page .fleet-gallery-intro-inner {
        padding: 72px 0 !important;
        text-align: center !important
    }

    .fleet-page .fleet-gallery-intro h1,
    .fleet-page .fleet-gallery-intro p {
        text-align: center !important
    }

    .fleet-page .fleet-vertical-gallery {
        width: min(calc(100% - 28px), 720px) !important;
        padding: 54px 0 78px !important;
        gap: 34px !important
    }

    .fleet-page .fleet-visual-frame {
        min-height: clamp(340px, 104vw, 560px) !important
    }

    .fleet-page .fleet-visual-frame img {
        width: 94% !important;
        max-height: 67% !important
    }

    .fleet-page .fleet-visual-name {
        max-width: 80% !important;
        right: 22px !important;
        bottom: 22px !important;
        font-size: clamp(30px, 10vw, 50px) !important
    }

    .fleet-page .fleet-visual-number {
        top: 22px !important;
        left: 22px !important
    }
}

@media (max-width:480px) {

    .site-container,
    .svc-shell {
        width: min(calc(100% - 24px), 720px) !important
    }

    .header-inner {
        width: calc(100% - 22px) !important
    }

    .brand-text {
        font-size: 21px !important
    }

    .hero-grid {
        padding-top: 54px !important;
        gap: 38px !important
    }

    .hero-eyebrow {
        gap: 8px !important;
        font-size: 7.5px !important;
        letter-spacing: 1.25px !important
    }

    .eyebrow-line {
        width: 22px !important
    }

    .hero-title {
        font-size: clamp(47px, 15.5vw, 64px) !important;
        letter-spacing: -2.7px !important
    }

    .hero-description {
        font-size: 14px !important;
        line-height: 1.65 !important
    }

    .hero-trust strong {
        font-size: 15px !important
    }

    .hero-trust span {
        font-size: 6.5px !important
    }

    .vehicle-photo {
        height: clamp(280px, 82vw, 390px) !important
    }

    .live-vehicle-card {
        width: calc(100% - 16px) !important;
        grid-template-columns: 70px minmax(0, 1fr) !important
    }

    .service-strip-inner {
        grid-template-columns: 1fr !important
    }

    .svc-about-stats,
    .svc-credentials {
        grid-template-columns: 1fr !important
    }

    .newsletter-form {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important
    }

    .newsletter-form button {
        width: 100% !important
    }
}

@media (max-width:900px) {

    .about,
    .booking-panel-section,
    .booking-position,
    .business-travel-section,
    .contact,
    .faq-section,
    .fleet-gallery-intro,
    .fleet-gallery-main,
    .fleet-page main,
    .fleet-vertical-gallery,
    .hero-copy,
    .hero-grid,
    .hero-section,
    .hero-visual,
    .landing-page main,
    .luxury-cars,
    .performance-section,
    .service-strip,
    .svc-about,
    .svc-fleet,
    .svc-hero,
    .svc-page main,
    .svc-pricing,
    .svc-services,
    .vehicle-photo-wrap {
        height: auto !important;
        max-height: none !important
    }

    .fleet-gallery-intro,
    .hero-grid,
    .hero-section,
    .svc-hero {
        min-height: 0 !important
    }

    .hero-grid {
        padding-top: 42px !important;
        padding-bottom: 36px !important;
        gap: 30px !important
    }

    .hero-eyebrow {
        margin-bottom: 16px !important
    }

    .hero-title em {
        margin-top: 8px !important
    }

    .hero-description {
        margin-top: 18px !important
    }

    .hero-actions {
        margin-top: 22px !important
    }

    .hero-trust {
        margin-top: 27px !important;
        padding-top: 16px !important
    }

    .hero-visual {
        margin: 0 !important
    }

    .vehicle-photo-wrap {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .vehicle-frame {
        margin: 0 !important
    }

    .live-vehicle-card {
        margin-top: -28px !important;
        margin-bottom: 0 !important
    }

    .booking-panel-section {
        margin: 0 !important;
        padding-top: 38px !important;
        padding-bottom: 55px !important
    }

    .booking-bar,
    .booking-position {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .about,
    .business-travel-section,
    .contact,
    .faq-section,
    .luxury-cars,
    .section-space {
        padding-top: 58px !important;
        padding-bottom: 58px !important
    }

    .service-strip {
        margin: 0 !important;
        padding-top: 38px !important;
        padding-bottom: 38px !important
    }

    .business-travel-heading,
    .section-heading-row {
        margin-bottom: 32px !important
    }

    .section-kicker {
        margin-bottom: 10px !important
    }

    .section-title {
        margin-bottom: 0 !important
    }

    .business-travel-intro,
    .section-intro {
        margin-top: 10px !important
    }

    .business-service-grid,
    .car-row,
    .performance-grid {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .business-service-card,
    .car-card,
    .performance-item {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .performance-section {
        padding-top: 52px !important;
        padding-bottom: 52px !important
    }

    .business-travel-cta {
        margin-top: 30px !important
    }

    .about-panel,
    .contact-form,
    .faq-list {
        margin-top: 0 !important
    }

    .svc-hero {
        padding-top: 98px !important;
        padding-bottom: 58px !important
    }

    .svc-about-grid,
    .svc-hero-grid {
        gap: 30px !important
    }

    .svc-hero-description {
        margin-top: 18px !important
    }

    .svc-hero-actions {
        margin-top: 24px !important
    }

    .svc-about,
    .svc-fleet,
    .svc-pricing,
    .svc-services {
        padding-top: 58px !important;
        padding-bottom: 58px !important
    }

    .svc-fleet-heading,
    .svc-pricing-heading,
    .svc-section-intro,
    .svc-services-heading {
        margin-bottom: 30px !important
    }

    .svc-about-content p+p {
        margin-top: 14px !important
    }

    .svc-about-stats,
    .svc-credentials {
        margin-top: 26px !important
    }

    .svc-fleet-grid,
    .svc-pricing-grid,
    .svc-service-list {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .svc-service-row:last-child {
        margin-bottom: 0 !important
    }

    .svc-fleet-card {
        margin: 0 !important
    }

    .fleet-page .fleet-gallery-intro {
        min-height: 330px !important;
        padding: 0 !important
    }

    .fleet-page .fleet-gallery-intro-inner {
        padding-top: 54px !important;
        padding-bottom: 54px !important
    }

    .fleet-page .fleet-gallery-intro-inner>p:not(.fleet-gallery-kicker) {
        margin-top: 18px !important
    }

    .fleet-page .fleet-gallery-scroll {
        margin-top: 30px !important
    }

    .fleet-page .fleet-vertical-gallery {
        padding-top: 38px !important;
        padding-bottom: 58px !important;
        gap: 26px !important
    }

    .fleet-page .fleet-visual-item {
        margin: 0 !important
    }

    .site-footer {
        margin-top: 0 !important;
        padding-top: 52px !important
    }

    .footer-main {
        padding-bottom: 44px !important;
        gap: 28px !important
    }

    .footer-brand-column p,
    .footer-newsletter p {
        margin-top: 12px !important
    }

    .footer-column h3,
    .footer-newsletter h3 {
        margin-bottom: 12px !important
    }

    .footer-column nav {
        gap: 8px !important
    }

    .newsletter-form {
        margin-top: 16px !important
    }

    .footer-bottom {
        margin-top: 0 !important;
        padding-top: 20px !important;
        padding-bottom: 20px !important
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-up,
    .svc-reveal,
    [data-fleet-reveal] {
        will-change: auto !important
    }
}

@media (max-width:480px) {
    .hero-grid {
        padding-top: 34px !important;
        padding-bottom: 28px !important;
        gap: 24px !important
    }

    .hero-description {
        margin-top: 15px !important
    }

    .hero-actions {
        margin-top: 18px !important
    }

    .hero-trust {
        margin-top: 22px !important
    }

    .vehicle-photo {
        height: clamp(250px, 75vw, 340px) !important
    }

    .live-vehicle-card {
        margin-top: -22px !important
    }

    .booking-panel-section {
        padding-top: 30px !important;
        padding-bottom: 46px !important
    }

    .about,
    .business-travel-section,
    .contact,
    .faq-section,
    .luxury-cars,
    .section-space,
    .svc-about,
    .svc-fleet,
    .svc-pricing,
    .svc-services {
        padding-top: 46px !important;
        padding-bottom: 46px !important
    }

    .service-strip {
        padding-top: 30px !important;
        padding-bottom: 30px !important
    }

    .svc-hero {
        padding-top: 88px !important;
        padding-bottom: 46px !important
    }

    .fleet-page .fleet-gallery-intro {
        min-height: 290px !important
    }

    .fleet-page .fleet-gallery-intro-inner {
        padding-top: 44px !important;
        padding-bottom: 44px !important
    }

    .fleet-page .fleet-vertical-gallery {
        padding-top: 28px !important;
        padding-bottom: 48px !important;
        gap: 22px !important
    }

    .site-footer {
        padding-top: 44px !important
    }

    .footer-main {
        gap: 24px !important;
        padding-bottom: 36px !important
    }
}

.svc-fleet-card .svc-real-car-video {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: 0 0 !important;
    border: 0 !important;
    outline: 0 !important;
    pointer-events: none !important
}

.svc-fleet-card .svc-real-car-video,
.svc-fleet-card.is-visible .svc-real-car-video,
.svc-fleet-card:hover .svc-real-car-video {
    transform: none !important;
    animation: none !important;
    filter: none !important
}

.svc-fleet-card .svc-car-drawing-photo:has(.svc-real-car-video) {
    overflow: hidden !important;
    display: grid !important;
    place-items: center !important;
    background: #f3efe6 !important
}

.svc-real-car-video {
    aspect-ratio: 16/9
}

@media (max-width:680px) {
    .svc-fleet-card .svc-real-car-video {
        object-fit: contain !important
    }
}

.svc-fleet-card-video,
.svc-fleet-card-video:focus-within,
.svc-fleet-card-video:hover {
    color: #151719 !important;
    background: rgba(255, 255, 255, .14) !important;
    border-color: var(--svc-line, rgba(15, 24, 32, .14)) !important
}

.svc-fleet-card-video:hover {
    transform: perspective(1200px) rotateX(var(--svc-tilt-x, 0deg)) rotateY(var(--svc-tilt-y, 0deg)) translateY(-6px) !important;
    box-shadow: 0 24px 52px rgba(8, 20, 33, .11) !important
}

.svc-fleet-card-video .svc-fleet-copy,
.svc-fleet-card-video:hover .svc-fleet-copy {
    color: var(--svc-muted, #6f7378) !important
}

.svc-fleet-card-video dd,
.svc-fleet-card-video dl,
.svc-fleet-card-video dt,
.svc-fleet-card-video h3 {
    color: inherit !important
}

.svc-fleet-card-video .svc-car-video-frame {
    width: 100% !important;
    height: 240px !important;
    min-height: 240px !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
    overflow: hidden !important;
    display: block !important;
    border-radius: 3px !important;
    background: #e4e3e0 !important
}

.svc-fleet-card-video .svc-real-car-video {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    background: #e4e3e0 !important;
    border: 0 !important;
    outline: 0 !important;
    transform: none !important;
    animation: none !important;
    filter: none !important;
    pointer-events: none !important
}

.svc-fleet-card-video.is-visible .svc-real-car-video,
.svc-fleet-card-video:hover .svc-real-car-video {
    transform: none !important;
    animation: none !important;
    filter: none !important
}

@media (max-width:1250px) {
    .svc-fleet-card-video .svc-car-video-frame {
        height: 210px !important;
        min-height: 210px !important;
        margin-bottom: 24px !important
    }
}

@media (max-width:680px) {
    .svc-fleet-card-video .svc-car-video-frame {
        height: clamp(190px, 58vw, 290px) !important;
        min-height: 0 !important;
        margin-bottom: 22px !important
    }
}

.svc-fleet-card:has(.svc-real-car-video),
.svc-fleet-card:has(.svc-real-car-video).is-visible,
.svc-fleet-card:has(.svc-real-car-video):hover {
    background: #f7f4ed !important;
    color: #151719 !important;
    border-color: rgba(18, 20, 22, .15) !important
}

.svc-fleet-card:has(.svc-real-car-video) .svc-car-drawing-photo {
    width: 100% !important;
    overflow: hidden !important;
    display: grid !important;
    place-items: center !important;
    padding: 0 !important;
    background: #f3efe6 !important
}

.svc-fleet-card .svc-real-car-video {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 100% !important;
    max-height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center !important;
    background: #f3efe6 !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    pointer-events: none !important;
    transform: none !important;
    filter: none !important;
    animation: none !important
}

.svc-fleet-card.is-visible .svc-real-car-video,
.svc-fleet-card:hover .svc-real-car-video {
    transform: none !important;
    filter: none !important;
    animation: none !important
}

.svc-fleet-card:has(.svc-real-car-video) .svc-fleet-type {
    color: #c79030 !important
}

.svc-fleet-card:has(.svc-real-car-video) h3 {
    color: #151719 !important
}

.svc-fleet-card:has(.svc-real-car-video) .svc-fleet-copy,
.svc-fleet-card:has(.svc-real-car-video) dd,
.svc-fleet-card:has(.svc-real-car-video) dt {
    color: #676b6f !important
}

.svc-real-car-video {
    aspect-ratio: 16/9
}

@media (max-width:680px) {
    .svc-fleet-card .svc-real-car-video {
        object-fit: contain !important
    }
}

.svc-rail-nav a {
    overflow: visible !important
}

.svc-rail-nav a .svc-rail-number,
.svc-rail-number {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
    flex: 0 0 10px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: currentColor !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    letter-spacing: 0 !important;
    text-indent: -9999px !important;
    transform: scale(.62) !important;
    transform-origin: center !important;
    box-shadow: 0 0 0 0 currentColor, 0 0 0 0 rgba(255, 255, 255, .25) !important;
    animation: svcRailDotBreath 1.7s cubic-bezier(.45, 0, .2, 1) infinite !important;
    isolation: isolate !important
}

.svc-rail-nav a .svc-rail-number::before,
.svc-rail-number::before {
    content: "" !important;
    position: absolute !important;
    z-index: -1 !important;
    inset: -5px !important;
    border: 1px solid currentColor !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    transform: scale(.45) !important;
    pointer-events: none !important;
    animation: svcRailDotSignal 1.7s ease-out infinite !important
}

.svc-rail-nav a .svc-rail-number::after,
.svc-rail-number::after {
    content: "" !important;
    position: absolute !important;
    z-index: -2 !important;
    inset: -10px !important;
    border: 1px solid currentColor !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    transform: scale(.35) !important;
    pointer-events: none !important;
    animation: svcRailDotSignalOuter 1.7s ease-out infinite !important;
    animation-delay: .28s !important
}

.svc-rail-nav a:first-child .svc-rail-number {
    animation-delay: 0s !important
}

.svc-rail-nav a:nth-child(2) .svc-rail-number {
    animation-delay: .12s !important
}

.svc-rail-nav a:nth-child(3) .svc-rail-number {
    animation-delay: .24s !important
}

.svc-rail-nav a:nth-child(4) .svc-rail-number {
    animation-delay: .36s !important
}

.svc-rail-nav a:nth-child(5) .svc-rail-number {
    animation-delay: .48s !important
}

.svc-rail-nav a:first-child .svc-rail-number::after,
.svc-rail-nav a:first-child .svc-rail-number::before {
    animation-delay: 0s !important
}

.svc-rail-nav a:nth-child(2) .svc-rail-number::before {
    animation-delay: .12s !important
}

.svc-rail-nav a:nth-child(2) .svc-rail-number::after {
    animation-delay: .4s !important
}

.svc-rail-nav a:nth-child(3) .svc-rail-number::before {
    animation-delay: .24s !important
}

.svc-rail-nav a:nth-child(3) .svc-rail-number::after {
    animation-delay: .52s !important
}

.svc-rail-nav a:nth-child(4) .svc-rail-number::before {
    animation-delay: .36s !important
}

.svc-rail-nav a:nth-child(4) .svc-rail-number::after {
    animation-delay: .64s !important
}

.svc-rail-nav a:nth-child(5) .svc-rail-number::before {
    animation-delay: .48s !important
}

.svc-rail-nav a:nth-child(5) .svc-rail-number::after {
    animation-delay: .76s !important
}

.svc-rail-nav a.is-active .svc-rail-number,
.svc-rail-nav a:focus-visible .svc-rail-number,
.svc-rail-nav a:hover .svc-rail-number {
    transform: scale(.82) !important;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .11), 0 0 18px currentColor !important;
    animation-duration: 1.15s !important
}

.svc-rail-nav a.is-active .svc-rail-number::after,
.svc-rail-nav a.is-active .svc-rail-number::before,
.svc-rail-nav a:focus-visible .svc-rail-number::after,
.svc-rail-nav a:focus-visible .svc-rail-number::before,
.svc-rail-nav a:hover .svc-rail-number::after,
.svc-rail-nav a:hover .svc-rail-number::before {
    animation-duration: 1.15s !important
}

@keyframes svcRailDotBreath {

    0%,
    100% {
        transform: scale(.58);
        opacity: .72
    }

    38% {
        transform: scale(1.18);
        opacity: 1
    }

    62% {
        transform: scale(.78);
        opacity: .9
    }
}

@keyframes svcRailDotSignal {
    0% {
        transform: scale(.35);
        opacity: .72
    }

    68% {
        opacity: .18
    }

    100% {
        transform: scale(1.72);
        opacity: 0
    }
}

@keyframes svcRailDotSignalOuter {
    0% {
        transform: scale(.28);
        opacity: .5
    }

    70% {
        opacity: .12
    }

    100% {
        transform: scale(1.48);
        opacity: 0
    }
}

.svc-rail-nav::after,
.svc-rail-nav::before {
    pointer-events: none !important
}

@media (max-height:720px) and (min-width:1101px) {

    .svc-rail-nav a .svc-rail-number,
    .svc-rail-number {
        width: 8px !important;
        height: 8px !important;
        min-width: 8px !important;
        min-height: 8px !important;
        flex-basis: 8px !important
    }
}

@media (prefers-reduced-motion:reduce) {

    .svc-rail-number,
    .svc-rail-number::after,
    .svc-rail-number::before {
        animation: none !important
    }

    .svc-rail-number {
        transform: scale(.8) !important
    }
}

.luxury-cars .car-row .car-card:first-child .car-image-wrap {
    background: #ece9e3 !important
}

.luxury-cars .car-row .car-card:first-child .car-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #ece9e3 !important
}

.svc-rail-nav a {
    overflow: visible !important
}

.svc-rail-nav a .svc-rail-number,
.svc-rail-number {
    position: relative !important;
    inset: auto !important;
    width: 8px !important;
    height: 8px !important;
    min-width: 8px !important;
    min-height: 8px !important;
    flex: 0 0 8px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #bfc2c5 !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px !important;
    box-shadow: 0 0 0 0 rgba(191, 194, 197, .34) !important;
    transform: scale(.72) !important;
    transform-origin: center !important;
    animation: svcSoftDotBreath 1.65s cubic-bezier(.42, 0, .22, 1) infinite !important;
    isolation: isolate !important
}

.svc-rail-nav a .svc-rail-number::before,
.svc-rail-number::before {
    content: "" !important;
    position: absolute !important;
    z-index: -1 !important;
    left: 50% !important;
    top: 50% !important;
    width: 18px !important;
    height: 18px !important;
    border: 1px solid rgba(191, 194, 197, .72) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(.25) !important;
    pointer-events: none !important;
    animation: svcSoftSignalRing 1.65s ease-out infinite !important
}

.svc-rail-nav a .svc-rail-number::after,
.svc-rail-number::after {
    content: "" !important;
    position: absolute !important;
    z-index: -2 !important;
    left: 50% !important;
    top: 50% !important;
    width: 28px !important;
    height: 28px !important;
    border: 1px solid rgba(191, 194, 197, .44) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(.2) !important;
    pointer-events: none !important;
    animation: svcSoftSignalRingOuter 1.65s ease-out infinite .24s !important
}

.svc-rail-nav a:first-child .svc-rail-number,
.svc-rail-nav a:first-child .svc-rail-number::before {
    animation-delay: 0s !important
}

.svc-rail-nav a:nth-child(2) .svc-rail-number,
.svc-rail-nav a:nth-child(2) .svc-rail-number::before {
    animation-delay: .12s !important
}

.svc-rail-nav a:nth-child(2) .svc-rail-number::after {
    animation-delay: .36s !important
}

.svc-rail-nav a:nth-child(3) .svc-rail-number,
.svc-rail-nav a:nth-child(3) .svc-rail-number::before {
    animation-delay: .24s !important
}

.svc-rail-nav a:nth-child(3) .svc-rail-number::after {
    animation-delay: .48s !important
}

.svc-rail-nav a:nth-child(4) .svc-rail-number,
.svc-rail-nav a:nth-child(4) .svc-rail-number::before {
    animation-delay: .36s !important
}

.svc-rail-nav a:nth-child(4) .svc-rail-number::after {
    animation-delay: .6s !important
}

.svc-rail-nav a:nth-child(5) .svc-rail-number,
.svc-rail-nav a:nth-child(5) .svc-rail-number::before {
    animation-delay: .48s !important
}

.svc-rail-nav a:nth-child(5) .svc-rail-number::after {
    animation-delay: .72s !important
}

.svc-rail-nav a.is-active .svc-rail-number,
.svc-rail-nav a:focus-visible .svc-rail-number,
.svc-rail-nav a:hover .svc-rail-number {
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .13), 0 0 13px rgba(255, 255, 255, .52) !important;
    animation-duration: 1.12s !important
}

.svc-rail-nav a.is-active .svc-rail-number::after,
.svc-rail-nav a.is-active .svc-rail-number::before,
.svc-rail-nav a:focus-visible .svc-rail-number::after,
.svc-rail-nav a:focus-visible .svc-rail-number::before,
.svc-rail-nav a:hover .svc-rail-number::after,
.svc-rail-nav a:hover .svc-rail-number::before {
    border-color: rgba(255, 255, 255, .72) !important;
    animation-duration: 1.12s !important
}

@keyframes svcSoftDotBreath {

    0%,
    100% {
        transform: scale(.62);
        opacity: .66
    }

    42% {
        transform: scale(1.16);
        opacity: 1
    }

    68% {
        transform: scale(.82);
        opacity: .86
    }
}

@keyframes svcSoftSignalRing {
    0% {
        transform: translate(-50%, -50%) scale(.22);
        opacity: .7
    }

    68% {
        opacity: .16
    }

    100% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 0
    }
}

@keyframes svcSoftSignalRingOuter {
    0% {
        transform: translate(-50%, -50%) scale(.18);
        opacity: .48
    }

    72% {
        opacity: .1
    }

    100% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 0
    }
}

@media (max-height:720px) and (min-width:1101px) {

    .svc-rail-nav a .svc-rail-number,
    .svc-rail-number {
        width: 7px !important;
        height: 7px !important;
        min-width: 7px !important;
        min-height: 7px !important;
        flex-basis: 7px !important
    }
}

@media (prefers-reduced-motion:reduce) {

    .svc-rail-number,
    .svc-rail-number::after,
    .svc-rail-number::before {
        animation: none !important
    }

    .svc-rail-number {
        transform: scale(.85) !important
    }
}

.svc-rail-marker {
    position: relative !important;
    width: 36px !important;
    min-height: 44px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    overflow: visible !important
}

.svc-rail-marker .svc-rail-number,
.svc-rail-nav a .svc-rail-marker .svc-rail-number {
    position: relative !important;
    inset: auto !important;
    width: 34px !important;
    height: 30px !important;
    min-width: 34px !important;
    min-height: 30px !important;
    flex: 0 0 30px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    border: 1px solid currentColor !important;
    border-radius: 0 !important;
    background: 0 0 !important;
    color: currentColor !important;
    font-family: 'DM Mono', monospace !important;
    font-size: 8px !important;
    line-height: 1 !important;
    font-style: normal !important;
    letter-spacing: 0 !important;
    text-indent: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    animation: none !important
}

.svc-rail-marker .svc-rail-number::after,
.svc-rail-marker .svc-rail-number::before {
    content: none !important;
    display: none !important
}

.svc-rail-signal-dot {
    position: relative !important;
    z-index: 2 !important;
    width: 8px !important;
    height: 8px !important;
    flex: 0 0 8px !important;
    display: block !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #bfc2c5 !important;
    transform: scale(.68);
    transform-origin: center;
    animation: svcRailDotCompressRelax 1.65s cubic-bezier(.42, 0, .22, 1) infinite;
    isolation: isolate
}

.svc-rail-signal-dot::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(191, 194, 197, .72);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.24);
    pointer-events: none;
    animation: svcRailWifiRing 1.65s ease-out infinite
}

.svc-rail-signal-dot::after {
    content: "";
    position: absolute;
    z-index: -2;
    left: 50%;
    top: 50%;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(191, 194, 197, .42);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.18);
    pointer-events: none;
    animation: svcRailWifiRingOuter 1.65s ease-out infinite .24s
}

.svc-rail-nav a:first-child .svc-rail-signal-dot,
.svc-rail-nav a:first-child .svc-rail-signal-dot::before {
    animation-delay: 0s
}

.svc-rail-nav a:nth-child(2) .svc-rail-signal-dot,
.svc-rail-nav a:nth-child(2) .svc-rail-signal-dot::before {
    animation-delay: .12s
}

.svc-rail-nav a:nth-child(2) .svc-rail-signal-dot::after {
    animation-delay: .36s
}

.svc-rail-nav a:nth-child(3) .svc-rail-signal-dot,
.svc-rail-nav a:nth-child(3) .svc-rail-signal-dot::before {
    animation-delay: .24s
}

.svc-rail-nav a:nth-child(3) .svc-rail-signal-dot::after {
    animation-delay: .48s
}

.svc-rail-nav a:nth-child(4) .svc-rail-signal-dot,
.svc-rail-nav a:nth-child(4) .svc-rail-signal-dot::before {
    animation-delay: .36s
}

.svc-rail-nav a:nth-child(4) .svc-rail-signal-dot::after {
    animation-delay: .6s
}

.svc-rail-nav a:nth-child(5) .svc-rail-signal-dot,
.svc-rail-nav a:nth-child(5) .svc-rail-signal-dot::before {
    animation-delay: .48s
}

.svc-rail-nav a:nth-child(5) .svc-rail-signal-dot::after {
    animation-delay: .72s
}

.svc-rail-nav a.is-active .svc-rail-signal-dot,
.svc-rail-nav a:focus-visible .svc-rail-signal-dot,
.svc-rail-nav a:hover .svc-rail-signal-dot {
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .13), 0 0 13px rgba(255, 255, 255, .52);
    animation-duration: 1.12s
}

.svc-rail-nav a.is-active .svc-rail-signal-dot::after,
.svc-rail-nav a.is-active .svc-rail-signal-dot::before,
.svc-rail-nav a:focus-visible .svc-rail-signal-dot::after,
.svc-rail-nav a:focus-visible .svc-rail-signal-dot::before,
.svc-rail-nav a:hover .svc-rail-signal-dot::after,
.svc-rail-nav a:hover .svc-rail-signal-dot::before {
    border-color: rgba(255, 255, 255, .72);
    animation-duration: 1.12s
}

@keyframes svcRailDotCompressRelax {

    0%,
    100% {
        transform: scale(.6);
        opacity: .66
    }

    42% {
        transform: scale(1.18);
        opacity: 1
    }

    68% {
        transform: scale(.8);
        opacity: .86
    }
}

@keyframes svcRailWifiRing {
    0% {
        transform: translate(-50%, -50%) scale(.22);
        opacity: .7
    }

    68% {
        opacity: .16
    }

    100% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 0
    }
}

@keyframes svcRailWifiRingOuter {
    0% {
        transform: translate(-50%, -50%) scale(.18);
        opacity: .48
    }

    72% {
        opacity: .1
    }

    100% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 0
    }
}

@media (max-height:720px) and (min-width:1101px) {
    .svc-rail-marker {
        min-height: 50px !important;
        gap: 8px !important
    }

    .svc-rail-marker .svc-rail-number,
    .svc-rail-nav a .svc-rail-marker .svc-rail-number {
        width: 30px !important;
        height: 26px !important;
        min-width: 30px !important;
        min-height: 26px !important;
        flex-basis: 26px !important;
        font-size: 7px !important
    }

    .svc-rail-signal-dot {
        width: 7px !important;
        height: 7px !important;
        flex-basis: 7px !important
    }
}

@media (prefers-reduced-motion:reduce) {

    .svc-rail-signal-dot,
    .svc-rail-signal-dot::after,
    .svc-rail-signal-dot::before {
        animation: none !important
    }

    .svc-rail-signal-dot {
        transform: scale(.85) !important
    }
}

.svc-rail-circle-signal {
    position: relative !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    flex: 0 0 30px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    overflow: visible !important;
    border: 1px solid rgba(191, 194, 197, .68) !important;
    border-radius: 50% !important;
    background: 0 0 !important;
    transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease, transform .28s ease !important
}

.svc-rail-circle-signal .svc-rail-signal-dot {
    position: relative !important;
    z-index: 2 !important;
    width: 7px !important;
    height: 7px !important;
    min-width: 7px !important;
    min-height: 7px !important;
    display: block !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #bfc2c5 !important;
    transform: scale(.62);
    transform-origin: center;
    animation: svcScrollDotBreath 1.65s cubic-bezier(.42, 0, .22, 1) infinite;
    transition: background-color .28s ease, box-shadow .28s ease !important;
    isolation: isolate
}

.svc-rail-circle-signal .svc-rail-signal-dot::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    width: 17px;
    height: 17px;
    border: 1px solid rgba(191, 194, 197, .7);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.22);
    pointer-events: none;
    animation: svcScrollSignalRing 1.65s ease-out infinite;
    transition: border-color .28s ease
}

.svc-rail-circle-signal .svc-rail-signal-dot::after {
    content: "";
    position: absolute;
    z-index: -2;
    left: 50%;
    top: 50%;
    width: 27px;
    height: 27px;
    border: 1px solid rgba(191, 194, 197, .42);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.18);
    pointer-events: none;
    animation: svcScrollSignalRingOuter 1.65s ease-out infinite .24s;
    transition: border-color .28s ease
}

.svc-rail-nav a.is-active .svc-rail-circle-signal {
    border-color: #061523 !important;
    background: #061523 !important;
    box-shadow: 0 0 0 4px rgba(6, 21, 35, .14), 0 0 18px rgba(6, 21, 35, .28) !important;
    transform: scale(1.08) !important
}

.svc-rail-nav a.is-active .svc-rail-signal-dot {
    background: #061523 !important;
    border: 1px solid rgba(255, 255, 255, .86) !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .13), 0 0 10px rgba(6, 21, 35, .38) !important;
    animation-duration: 1.08s !important
}

.svc-rail-nav a.is-active .svc-rail-signal-dot::after,
.svc-rail-nav a.is-active .svc-rail-signal-dot::before {
    border-color: rgba(6, 21, 35, .88) !important;
    animation-duration: 1.08s !important
}

.svc-rail-nav a:focus-visible .svc-rail-circle-signal,
.svc-rail-nav a:hover .svc-rail-circle-signal {
    border-color: #061523 !important;
    background: #061523 !important;
    box-shadow: 0 0 0 4px rgba(6, 21, 35, .12), 0 0 15px rgba(6, 21, 35, .24) !important
}

.svc-rail-nav a:focus-visible .svc-rail-signal-dot,
.svc-rail-nav a:hover .svc-rail-signal-dot {
    background: #061523 !important;
    border: 1px solid rgba(255, 255, 255, .84) !important
}

.svc-rail-nav a:focus-visible .svc-rail-signal-dot::after,
.svc-rail-nav a:focus-visible .svc-rail-signal-dot::before,
.svc-rail-nav a:hover .svc-rail-signal-dot::after,
.svc-rail-nav a:hover .svc-rail-signal-dot::before {
    border-color: rgba(6, 21, 35, .84) !important
}

.svc-rail-nav a:first-child .svc-rail-signal-dot,
.svc-rail-nav a:first-child .svc-rail-signal-dot::before {
    animation-delay: 0s
}

.svc-rail-nav a:nth-child(2) .svc-rail-signal-dot,
.svc-rail-nav a:nth-child(2) .svc-rail-signal-dot::before {
    animation-delay: .12s
}

.svc-rail-nav a:nth-child(2) .svc-rail-signal-dot::after {
    animation-delay: .36s
}

.svc-rail-nav a:nth-child(3) .svc-rail-signal-dot,
.svc-rail-nav a:nth-child(3) .svc-rail-signal-dot::before {
    animation-delay: .24s
}

.svc-rail-nav a:nth-child(3) .svc-rail-signal-dot::after {
    animation-delay: .48s
}

.svc-rail-nav a:nth-child(4) .svc-rail-signal-dot,
.svc-rail-nav a:nth-child(4) .svc-rail-signal-dot::before {
    animation-delay: .36s
}

.svc-rail-nav a:nth-child(4) .svc-rail-signal-dot::after {
    animation-delay: .6s
}

.svc-rail-nav a:nth-child(5) .svc-rail-signal-dot,
.svc-rail-nav a:nth-child(5) .svc-rail-signal-dot::before {
    animation-delay: .48s
}

.svc-rail-nav a:nth-child(5) .svc-rail-signal-dot::after {
    animation-delay: .72s
}

@keyframes svcScrollDotBreath {

    0%,
    100% {
        transform: scale(.58);
        opacity: .66
    }

    42% {
        transform: scale(1.18);
        opacity: 1
    }

    68% {
        transform: scale(.8);
        opacity: .86
    }
}

@keyframes svcScrollSignalRing {
    0% {
        transform: translate(-50%, -50%) scale(.22);
        opacity: .68
    }

    68% {
        opacity: .15
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0
    }
}

@keyframes svcScrollSignalRingOuter {
    0% {
        transform: translate(-50%, -50%) scale(.18);
        opacity: .46
    }

    72% {
        opacity: .09
    }

    100% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0
    }
}

@media (max-height:720px) and (min-width:1101px) {
    .svc-rail-circle-signal {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        flex-basis: 30px !important
    }
}

@media (prefers-reduced-motion:reduce) {

    .svc-rail-circle-signal .svc-rail-signal-dot,
    .svc-rail-circle-signal .svc-rail-signal-dot::after,
    .svc-rail-circle-signal .svc-rail-signal-dot::before {
        animation: none !important
    }
}

.svc-rail-nav a.is-active .svc-rail-circle-signal {
    border: 2px solid #061523 !important;
    background: #061523 !important;
    box-shadow: 0 0 0 4px rgba(6, 21, 35, .16), 0 0 0 8px rgba(6, 21, 35, .06), 0 0 22px rgba(6, 21, 35, .34) !important;
    transform: scale(1.12) !important
}

.svc-rail-nav a.is-active .svc-rail-signal-dot {
    width: 9px !important;
    height: 9px !important;
    min-width: 9px !important;
    min-height: 9px !important;
    border: 2px solid rgba(255, 255, 255, .92) !important;
    background: #061523 !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .14), 0 0 13px rgba(6, 21, 35, .5) !important;
    animation: svcActiveCoreBeat 1.18s ease-in-out infinite !important
}

.svc-rail-nav a.is-active .svc-rail-signal-dot::before {
    width: 24px !important;
    height: 24px !important;
    border: 2px solid rgba(6, 21, 35, .88) !important;
    animation: svcActiveRadarPulse 1.42s ease-out infinite !important
}

.svc-rail-nav a.is-active .svc-rail-signal-dot::after {
    width: 30px !important;
    height: 30px !important;
    opacity: 1 !important;
    border: 1px solid rgba(6, 21, 35, .36) !important;
    border-top-color: #061523 !important;
    border-right-color: transparent !important;
    transform: translate(-50%, -50%) rotate(0) !important;
    animation: svcActiveRadarOrbit 1.2s linear infinite !important
}

.svc-rail-nav a:nth-child(4).is-active .svc-rail-circle-signal {
    border-width: 3px !important;
    box-shadow: 0 0 0 5px rgba(6, 21, 35, .19), 0 0 0 10px rgba(6, 21, 35, .07), 0 0 28px rgba(6, 21, 35, .46) !important;
    transform: scale(1.16) !important
}

.svc-rail-nav a:nth-child(4).is-active .svc-rail-signal-dot {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important
}

@keyframes svcActiveCoreBeat {

    0%,
    100% {
        transform: scale(.76)
    }

    46% {
        transform: scale(1.28)
    }

    70% {
        transform: scale(.94)
    }
}

@keyframes svcActiveRadarPulse {
    0% {
        transform: translate(-50%, -50%) scale(.3);
        opacity: .88
    }

    68% {
        opacity: .2
    }

    100% {
        transform: translate(-50%, -50%) scale(1.34);
        opacity: 0
    }
}

@keyframes svcActiveRadarOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0)
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@media (prefers-reduced-motion:reduce) {

    .svc-rail-nav a.is-active .svc-rail-signal-dot,
    .svc-rail-nav a.is-active .svc-rail-signal-dot::after,
    .svc-rail-nav a.is-active .svc-rail-signal-dot::before {
        animation: none !important
    }
}

.fleet-modern-main {
    padding-top: 76px;
    overflow: hidden;
    background: #f3efe6
}

.fleet-modern-hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    display: grid;
    align-items: center;
    isolation: isolate;
    color: #fff;
    background: radial-gradient(circle at 78% 18%, rgba(209, 163, 65, .16), transparent 29%), #061523
}

.fleet-modern-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .13;
    background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 72px 72px
}

.fleet-modern-orbit {
    position: absolute;
    z-index: -1;
    width: 600px;
    height: 600px;
    top: -210px;
    right: -180px;
    border: 1px solid rgba(209, 163, 65, .22);
    border-radius: 50%;
    animation: fleetOrbit 24s linear infinite
}

.fleet-modern-orbit::after,
.fleet-modern-orbit::before {
    content: "";
    position: absolute;
    border: 1px solid rgba(209, 163, 65, .13);
    border-radius: 50%
}

.fleet-modern-orbit::before {
    inset: 75px
}

.fleet-modern-orbit::after {
    inset: 165px
}

.fleet-modern-hero-inner {
    padding-block: 120px 150px;
    text-align: center
}

.fleet-modern-kicker {
    margin-bottom: 22px;
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase
}

.fleet-modern-hero h1 {
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(76px, 9vw, 145px);
    font-weight: 400;
    line-height: .83;
    letter-spacing: -.055em
}

.fleet-modern-hero h1 em {
    display: block;
    margin-top: 18px;
    color: #e5c78f;
    font-family: 'Playfair Display', serif;
    font-size: .52em;
    font-weight: 500
}

.fleet-modern-intro {
    max-width: 650px;
    margin: 30px auto 0;
    color: rgba(255, 255, 255, .62);
    font-size: 16px;
    line-height: 1.8
}

.fleet-modern-explore {
    width: fit-content;
    margin: 36px auto 0;
    padding-bottom: 9px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(229, 199, 143, .52);
    color: #fff;
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    text-transform: uppercase
}

.fleet-modern-explore span {
    color: #e5c78f;
    animation: fleetArrow 1.7s ease-in-out infinite
}

.fleet-modern-marquee {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.fleet-modern-marquee div {
    width: max-content;
    padding: 17px 0;
    display: flex;
    align-items: center;
    gap: 26px;
    color: rgba(255, 255, 255, .42);
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .13em;
    text-transform: uppercase;
    animation: fleetMarquee 26s linear infinite
}

.fleet-modern-marquee i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d1a341
}

.fleet-modern-collection {
    position: relative;
    padding: 140px 0 165px;
    background: linear-gradient(90deg, rgba(6, 21, 35, .025) 1px, transparent 1px), #f3efe6;
    background-size: 120px 100%
}

.fleet-modern-progress {
    position: sticky;
    z-index: 20;
    top: 110px;
    width: 58px;
    margin-left: 18px;
    float: left;
    display: grid;
    gap: 17px
}

.fleet-modern-progress a {
    position: relative;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(6, 21, 35, .2);
    border-radius: 50%;
    color: #777;
    text-decoration: none;
    transition: .3s ease
}

.fleet-modern-progress span {
    position: relative;
    z-index: 2;
    font-family: 'DM Mono', monospace;
    font-size: 7px
}

.fleet-modern-progress i {
    position: absolute;
    inset: 4px;
    border: 1px solid transparent;
    border-top-color: #d1a341;
    border-radius: 50%;
    opacity: 0
}

.fleet-modern-progress a.is-active {
    border-color: #061523;
    background: #061523;
    color: #fff;
    transform: scale(1.13);
    box-shadow: 0 0 0 5px rgba(6, 21, 35, .08)
}

.fleet-modern-progress a.is-active i {
    opacity: 1;
    animation: fleetSpin 1.2s linear infinite
}

.fleet-modern-list {
    display: grid;
    gap: 165px
}

.fleet-modern-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    align-items: center;
    gap: 80px;
    opacity: 0;
    transform: translateY(70px);
    transition: opacity .9s ease, transform 1.1s cubic-bezier(.16, .84, .24, 1)
}

.fleet-modern-card.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.fleet-modern-card-reverse .fleet-modern-visual {
    order: 2
}

.fleet-modern-card-reverse .fleet-modern-copy {
    order: 1
}

.fleet-modern-visual {
    --rx: 0deg;
    --ry: 0deg;
    --px: 50%;
    --py: 50%;
    position: relative;
    min-height: 560px;
    overflow: hidden;
    display: grid;
    place-items: center;
    isolation: isolate;
    border: 1px solid rgba(6, 21, 35, .1);
    background: radial-gradient(circle at var(--px) var(--py), rgba(255, 255, 255, .92), transparent 25%), #e9e5dc;
    box-shadow: 0 34px 90px rgba(6, 21, 35, .1);
    transform: perspective(1400px) rotateX(var(--rx)) rotateY(var(--ry));
    transition: transform .22s ease, box-shadow .4s ease
}

.fleet-modern-visual:hover {
    box-shadow: 0 50px 115px rgba(6, 21, 35, .17)
}

.fleet-modern-rings {
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    border: 1px solid rgba(6, 21, 35, .08);
    border-radius: 50%;
    transition: transform .7s ease
}

.fleet-modern-rings::after,
.fleet-modern-rings::before {
    content: "";
    position: absolute;
    border: 1px solid rgba(6, 21, 35, .06);
    border-radius: 50%
}

.fleet-modern-rings::before {
    inset: 13%
}

.fleet-modern-rings::after {
    inset: 27%
}

.fleet-modern-visual:hover .fleet-modern-rings {
    transform: scale(1.08) rotate(12deg)
}

.fleet-modern-visual img {
    position: relative;
    z-index: 3;
    width: 89%;
    max-height: 72%;
    object-fit: contain;
    filter: drop-shadow(0 34px 25px rgba(6, 13, 19, .23));
    transition: transform .45s ease, filter .45s ease
}

.fleet-modern-visual:hover img {
    transform: translateY(-8px) scale(1.035);
    filter: drop-shadow(0 42px 31px rgba(6, 13, 19, .29))
}

.fleet-modern-shine {
    position: absolute;
    z-index: 4;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(112deg, transparent 34%, rgba(255, 255, 255, .06) 43%, rgba(255, 255, 255, .62) 50%, rgba(255, 255, 255, .08) 57%, transparent 66%);
    transform: translateX(-140%)
}

.fleet-modern-visual:hover .fleet-modern-shine {
    animation: fleetSweep 1.25s ease
}

.fleet-modern-number {
    position: absolute;
    z-index: 5;
    top: 28px;
    left: 30px;
    color: #b28235;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .16em
}

.fleet-modern-copy {
    max-width: 500px
}

.fleet-modern-type {
    margin-bottom: 14px;
    color: #b28235;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase
}

.fleet-modern-copy h2 {
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(52px, 5.4vw, 86px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.045em
}

.fleet-modern-description {
    margin-top: 26px;
    color: #6f7378;
    font-size: 15px;
    line-height: 1.8
}

.fleet-modern-specs {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(6, 21, 35, .12);
    border-bottom: 1px solid rgba(6, 21, 35, .12)
}

.fleet-modern-specs div {
    min-width: 0;
    padding: 18px 14px 18px 0
}

.fleet-modern-specs div+div {
    padding-left: 14px;
    border-left: 1px solid rgba(6, 21, 35, .1)
}

.fleet-modern-specs dt {
    margin-bottom: 8px;
    color: #999;
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    text-transform: uppercase
}

.fleet-modern-specs dd {
    overflow-wrap: anywhere;
    font-size: 12px;
    line-height: 1.4
}

.fleet-modern-book {
    width: fit-content;
    margin-top: 32px;
    padding-bottom: 8px;
    display: inline-flex;
    gap: 18px;
    border-bottom: 1px solid rgba(6, 21, 35, .3);
    color: #061523;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700
}

.fleet-modern-book span {
    color: #b28235;
    transition: transform .25s ease
}

.fleet-modern-book:hover span {
    transform: translate(4px, -4px)
}

.fleet-modern-cta {
    position: relative;
    overflow: hidden;
    padding: 145px 0;
    color: #fff;
    background: #061523
}

.fleet-modern-cta-ring {
    position: absolute;
    width: 700px;
    height: 700px;
    right: -220px;
    top: 50%;
    border: 1px solid rgba(209, 163, 65, .16);
    border-radius: 50%;
    transform: translateY(-50%)
}

.fleet-modern-cta p {
    margin-bottom: 18px;
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase
}

.fleet-modern-cta h2 {
    max-width: 950px;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(58px, 7vw, 102px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.045em
}

.fleet-modern-cta a {
    width: fit-content;
    margin-top: 40px;
    padding: 14px 22px;
    display: inline-flex;
    gap: 26px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    transition: .3s ease
}

.fleet-modern-cta a:hover {
    border-color: #d1a341;
    background: #d1a341;
    color: #061523;
    transform: translateY(-3px)
}

@keyframes fleetOrbit {
    to {
        transform: rotate(360deg)
    }
}

@keyframes fleetArrow {
    50% {
        transform: translateY(5px)
    }
}

@keyframes fleetMarquee {
    to {
        transform: translateX(-50%)
    }
}

@keyframes fleetSpin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes fleetSweep {
    from {
        transform: translateX(-140%)
    }

    to {
        transform: translateX(140%)
    }
}

@media (max-width:1180px) {
    .fleet-modern-progress {
        display: none
    }

    .fleet-modern-card {
        gap: 50px
    }

    .fleet-modern-list {
        gap: 120px
    }
}

@media (max-width:900px) {
    .fleet-modern-main {
        padding-top: 68px
    }

    .fleet-modern-hero {
        min-height: 620px
    }

    .fleet-modern-hero-inner {
        padding-block: 92px 125px
    }

    .fleet-modern-collection {
        padding: 85px 0 105px
    }

    .fleet-modern-list {
        gap: 80px
    }

    .fleet-modern-card,
    .fleet-modern-card-reverse {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .fleet-modern-card-reverse .fleet-modern-copy,
    .fleet-modern-card-reverse .fleet-modern-visual {
        order: initial
    }

    .fleet-modern-visual {
        min-height: clamp(420px, 70vw, 610px)
    }

    .fleet-modern-copy {
        max-width: 680px;
        margin-inline: auto;
        text-align: center
    }

    .fleet-modern-specs {
        text-align: left
    }

    .fleet-modern-book {
        margin-inline: auto
    }

    .fleet-modern-cta {
        padding: 100px 0;
        text-align: center
    }

    .fleet-modern-cta a,
    .fleet-modern-cta h2 {
        margin-inline: auto
    }
}

@media (max-width:600px) {
    .fleet-modern-hero {
        min-height: 550px
    }

    .fleet-modern-hero-inner {
        padding: 70px 0 112px
    }

    .fleet-modern-hero h1 {
        font-size: clamp(58px, 18vw, 88px)
    }

    .fleet-modern-hero h1 em {
        margin-top: 12px;
        font-size: .58em
    }

    .fleet-modern-intro {
        margin-top: 22px;
        font-size: 14px
    }

    .fleet-modern-collection {
        padding: 52px 0 72px;
        background-size: 70px 100%
    }

    .fleet-modern-list {
        gap: 58px
    }

    .fleet-modern-visual {
        min-height: clamp(330px, 92vw, 455px)
    }

    .fleet-modern-visual img {
        width: 95%;
        max-height: 68%
    }

    .fleet-modern-copy h2 {
        font-size: clamp(46px, 14vw, 68px)
    }

    .fleet-modern-description {
        margin-top: 19px;
        font-size: 14px
    }

    .fleet-modern-specs {
        grid-template-columns: 1fr;
        text-align: center
    }

    .fleet-modern-specs div,
    .fleet-modern-specs div+div {
        padding: 14px 8px;
        border-left: 0
    }

    .fleet-modern-specs div+div {
        border-top: 1px solid rgba(6, 21, 35, .1)
    }

    .fleet-modern-cta {
        padding: 78px 0
    }

    .fleet-modern-cta h2 {
        font-size: clamp(50px, 15vw, 72px)
    }
}

@media (prefers-reduced-motion:reduce) {

    .fleet-modern-explore span,
    .fleet-modern-marquee div,
    .fleet-modern-orbit,
    .fleet-modern-progress a.is-active i,
    .fleet-modern-visual:hover .fleet-modern-shine {
        animation: none !important
    }

    .fleet-modern-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }

    .fleet-modern-visual {
        transform: none !important;
        transition: none !important
    }
}

.fleet-modern-main {
    --fleet-page-gutter: clamp(18px, 3vw, 48px)
}

.fleet-modern-hero-inner {
    transform: translateY(var(--hero-shift, 0));
    opacity: var(--hero-fade, 1);
    transition: opacity .12s linear;
    will-change: transform, opacity
}

.fleet-modern-orbit {
    translate: 0 var(--orbit-shift, 0);
    will-change: translate, transform
}

.fleet-modern-card {
    position: relative;
    min-width: 0
}

.fleet-modern-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    width: min(58vw, 760px);
    height: min(58vw, 760px);
    border: 1px solid rgba(6, 21, 35, .035);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(.84);
    opacity: 0;
    transition: opacity .85s ease .2s, transform 1.3s cubic-bezier(.16, .84, .24, 1) .2s
}

.fleet-modern-card.is-visible::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1)
}

.fleet-modern-visual {
    --image-x: 0px;
    --image-y: 0px;
    --scroll-shift: 0px;
    border-radius: 26px;
    transform: perspective(1400px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--scroll-shift));
    will-change: transform
}

.fleet-modern-visual::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 14px;
    border: 1px solid rgba(6, 21, 35, .08);
    border-radius: 18px;
    pointer-events: none
}

.fleet-modern-visual::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    opacity: .32;
    pointer-events: none;
    background-image: radial-gradient(circle at 20% 18%, rgba(255, 255, 255, .82), transparent 20%), linear-gradient(120deg, transparent 50%, rgba(6, 21, 35, .03))
}

.fleet-modern-visual img {
    transform: translate3d(var(--image-x), calc(var(--image-y) - 2px), 34px) scale(1)
}

.fleet-modern-visual:hover img {
    transform: translate3d(var(--image-x), calc(var(--image-y) - 11px), 46px) scale(1.045)
}

.fleet-modern-rings {
    opacity: .85;
    animation: fleetRingBreath 5.5s ease-in-out infinite
}

.fleet-modern-card:nth-child(2n) .fleet-modern-rings {
    animation-delay: 1.1s
}

.fleet-modern-number {
    padding: 8px 10px;
    border: 1px solid rgba(178, 130, 53, .28);
    border-radius: 999px;
    background: rgba(243, 239, 230, .76);
    backdrop-filter: blur(10px)
}

.fleet-modern-copy {
    min-width: 0
}

.fleet-modern-copy h2 {
    text-wrap: balance
}

.fleet-modern-description {
    max-width: 48ch
}

.fleet-modern-specs div {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease var(--spec-delay, 0ms), transform .55s ease var(--spec-delay, 0ms)
}

.fleet-modern-specs div.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.fleet-modern-book,
.fleet-modern-cta a,
.fleet-modern-explore {
    transform: translate(var(--magnet-x, 0), var(--magnet-y, 0));
    transition: transform .22s ease, background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease
}

.fleet-modern-book {
    position: relative;
    padding: 13px 18px;
    border: 1px solid rgba(6, 21, 35, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .44);
    backdrop-filter: blur(10px)
}

.fleet-modern-book:hover {
    border-color: #061523;
    background: #061523;
    color: #fff;
    box-shadow: 0 14px 28px rgba(6, 21, 35, .14)
}

.fleet-modern-progress {
    padding: 12px 8px;
    border: 1px solid rgba(6, 21, 35, .08);
    border-radius: 999px;
    background: rgba(243, 239, 230, .78);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 42px rgba(6, 21, 35, .08)
}

.fleet-modern-progress a::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(6, 21, 35, .1);
    border-radius: 50%;
    opacity: 0;
    transform: scale(.75)
}

.fleet-modern-progress a.is-active::after {
    animation: fleetProgressPulse 1.7s ease-out infinite
}

.fleet-modern-cta {
    isolation: isolate
}

.fleet-modern-cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .1;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 82px 82px
}

.fleet-modern-cta-ring {
    animation: fleetCtaOrbit 22s linear infinite
}

@keyframes fleetRingBreath {

    0%,
    100% {
        transform: scale(.94) rotate(0);
        opacity: .62
    }

    50% {
        transform: scale(1.06) rotate(6deg);
        opacity: .96
    }
}

@keyframes fleetProgressPulse {
    0% {
        opacity: .52;
        transform: scale(.72)
    }

    100% {
        opacity: 0;
        transform: scale(1.45)
    }
}

@keyframes fleetCtaOrbit {
    to {
        transform: translateY(-50%) rotate(360deg)
    }
}

@media (min-width:1400px) {
    .fleet-modern-hero-inner {
        padding-block: 145px 175px
    }

    .fleet-modern-collection {
        padding-top: 170px;
        padding-bottom: 190px
    }

    .fleet-modern-list {
        gap: 190px
    }

    .fleet-modern-card {
        gap: 105px
    }

    .fleet-modern-visual {
        min-height: 610px
    }
}

@media (max-width:1180px) {
    .fleet-modern-main {
        padding-top: 72px
    }

    .fleet-modern-hero {
        min-height: 650px
    }

    .fleet-modern-hero-inner {
        padding-block: 105px 138px
    }

    .fleet-modern-collection {
        padding: 110px 0 130px
    }

    .fleet-modern-card {
        grid-template-columns: minmax(0, 1.15fr) minmax(290px, .85fr);
        gap: 48px
    }

    .fleet-modern-visual {
        min-height: 500px
    }

    .fleet-modern-list {
        gap: 110px
    }

    .fleet-modern-copy h2 {
        font-size: clamp(48px, 5vw, 72px)
    }
}

@media (max-width:900px) {
    .fleet-modern-main {
        padding-top: 68px
    }

    .fleet-modern-hero {
        min-height: 600px
    }

    .fleet-modern-hero-inner {
        padding: 82px 0 120px
    }

    .fleet-modern-hero h1 {
        font-size: clamp(64px, 12vw, 104px)
    }

    .fleet-modern-intro {
        max-width: 560px;
        margin-top: 24px
    }

    .fleet-modern-collection {
        padding: 76px 0 94px
    }

    .fleet-modern-list {
        gap: 72px
    }

    .fleet-modern-card,
    .fleet-modern-card-reverse {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .fleet-modern-card-reverse .fleet-modern-copy,
    .fleet-modern-card-reverse .fleet-modern-visual {
        order: initial
    }

    .fleet-modern-visual {
        min-height: clamp(390px, 69vw, 560px);
        border-radius: 22px
    }

    .fleet-modern-copy {
        width: min(100%, 680px);
        margin-inline: auto;
        padding-inline: 14px;
        text-align: center
    }

    .fleet-modern-description {
        margin-inline: auto
    }

    .fleet-modern-specs {
        text-align: left
    }

    .fleet-modern-book {
        margin-inline: auto
    }

    .fleet-modern-cta {
        padding: 92px 0;
        text-align: center
    }

    .fleet-modern-cta a,
    .fleet-modern-cta h2 {
        margin-inline: auto
    }
}

@media (max-width:600px) {
    .fleet-modern-main {
        padding-top: 68px
    }

    .fleet-modern-hero {
        min-height: 520px
    }

    .fleet-modern-hero-inner {
        padding: 58px 0 102px
    }

    .fleet-modern-kicker {
        margin-bottom: 15px;
        font-size: 8px;
        letter-spacing: .16em
    }

    .fleet-modern-hero h1 {
        font-size: clamp(54px, 17vw, 78px);
        line-height: .86
    }

    .fleet-modern-hero h1 em {
        margin-top: 10px;
        font-size: .6em
    }

    .fleet-modern-intro {
        margin-top: 20px;
        padding-inline: 4px;
        font-size: 14px;
        line-height: 1.65
    }

    .fleet-modern-explore {
        margin-top: 26px;
        font-size: 9px
    }

    .fleet-modern-marquee div {
        padding-block: 14px;
        gap: 18px;
        font-size: 7.5px
    }

    .fleet-modern-collection {
        padding: 42px 0 64px;
        background-size: 64px 100%
    }

    .fleet-modern-list {
        gap: 48px
    }

    .fleet-modern-card {
        gap: 22px
    }

    .fleet-modern-card::before {
        width: 92vw;
        height: 92vw
    }

    .fleet-modern-visual {
        min-height: clamp(300px, 88vw, 405px);
        border-radius: 18px;
        transform: none !important
    }

    .fleet-modern-visual::before {
        inset: 9px;
        border-radius: 12px
    }

    .fleet-modern-visual img {
        width: 96%;
        max-height: 66%;
        transform: none !important
    }

    .fleet-modern-visual:hover img {
        transform: none !important
    }

    .fleet-modern-rings {
        width: 88%
    }

    .fleet-modern-number {
        top: 17px;
        left: 17px;
        padding: 6px 8px;
        font-size: 9px
    }

    .fleet-modern-copy {
        padding-inline: 4px
    }

    .fleet-modern-type {
        margin-bottom: 10px;
        font-size: 8px
    }

    .fleet-modern-copy h2 {
        font-size: clamp(42px, 13vw, 62px);
        line-height: .96
    }

    .fleet-modern-description {
        margin-top: 17px;
        font-size: 14px;
        line-height: 1.65
    }

    .fleet-modern-specs {
        margin-top: 24px;
        grid-template-columns: 1fr;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(6, 21, 35, .1);
        background: rgba(255, 255, 255, .38)
    }

    .fleet-modern-specs div,
    .fleet-modern-specs div+div {
        padding: 14px 12px;
        border-left: 0
    }

    .fleet-modern-specs div+div {
        border-top: 1px solid rgba(6, 21, 35, .1)
    }

    .fleet-modern-book {
        margin-top: 24px;
        padding: 12px 16px
    }

    .fleet-modern-cta {
        padding: 70px 0
    }

    .fleet-modern-cta p {
        margin-bottom: 14px;
        font-size: 8px
    }

    .fleet-modern-cta h2 {
        font-size: clamp(44px, 14vw, 64px);
        line-height: .96
    }

    .fleet-modern-cta a {
        margin-top: 28px;
        padding: 13px 19px
    }
}

@media (max-width:380px) {
    .fleet-modern-hero {
        min-height: 500px
    }

    .fleet-modern-hero h1 {
        font-size: clamp(48px, 16vw, 66px)
    }

    .fleet-modern-visual {
        min-height: 285px
    }

    .fleet-modern-copy h2 {
        font-size: clamp(39px, 12vw, 54px)
    }
}

@media (hover:none) {
    .fleet-modern-visual:hover {
        box-shadow: 0 34px 90px rgba(6, 21, 35, .1)
    }

    .fleet-modern-visual:hover .fleet-modern-rings,
    .fleet-modern-visual:hover img {
        transform: none
    }

    .fleet-modern-visual:hover .fleet-modern-shine {
        animation: none
    }
}

@media (prefers-reduced-motion:reduce) {

    .fleet-modern-book,
    .fleet-modern-card::before,
    .fleet-modern-cta a,
    .fleet-modern-explore,
    .fleet-modern-hero-inner,
    .fleet-modern-orbit,
    .fleet-modern-specs div,
    .fleet-modern-visual,
    .fleet-modern-visual img {
        transform: none !important;
        translate: none !important;
        transition: none !important
    }

    .fleet-modern-cta-ring,
    .fleet-modern-progress a.is-active::after,
    .fleet-modern-rings {
        animation: none !important
    }

    .fleet-modern-specs div {
        opacity: 1 !important
    }
}

@media (max-width:900px) {

    .fleet-modern-card,
    .fleet-modern-collection,
    .fleet-modern-copy,
    .fleet-modern-cta,
    .fleet-modern-hero,
    .fleet-modern-list,
    .fleet-modern-main,
    .fleet-modern-visual {
        height: auto !important;
        max-height: none !important
    }

    .fleet-modern-hero {
        min-height: 0 !important
    }

    .fleet-modern-hero-inner {
        padding-top: 68px !important;
        padding-bottom: 104px !important
    }

    .fleet-modern-kicker {
        margin-bottom: 14px !important
    }

    .fleet-modern-hero h1 em {
        margin-top: 8px !important
    }

    .fleet-modern-intro {
        margin-top: 18px !important
    }

    .fleet-modern-explore {
        margin-top: 24px !important
    }

    .fleet-modern-collection {
        padding-top: 58px !important;
        padding-bottom: 76px !important
    }

    .fleet-modern-list {
        gap: 58px !important
    }

    .fleet-modern-card,
    .fleet-modern-card-reverse {
        gap: 24px !important;
        margin: 0 !important
    }

    .fleet-modern-copy {
        padding-inline: 6px !important
    }

    .fleet-modern-description {
        margin-top: 16px !important
    }

    .fleet-modern-specs {
        margin-top: 22px !important
    }

    .fleet-modern-book {
        margin-top: 22px !important
    }

    .fleet-modern-cta {
        padding-top: 76px !important;
        padding-bottom: 76px !important
    }

    .fleet-modern-cta p {
        margin-bottom: 13px !important
    }

    .fleet-modern-cta a {
        margin-top: 26px !important
    }

    .fleet-modern-card {
        opacity: 0;
        transform: translate3d(0, 34px, 0) scale(.985);
        filter: blur(3px);
        transition: opacity .72s ease, transform .9s cubic-bezier(.16, .84, .24, 1), filter .72s ease
    }

    .fleet-modern-card.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0)
    }

    .fleet-modern-visual {
        --scroll-shift: 0px !important;
        transform: none !important;
        transition: box-shadow .35s ease, background-position .5s ease !important
    }

    .fleet-modern-visual img {
        transform: translateY(0) scale(.985) !important;
        transition: transform .85s cubic-bezier(.16, .84, .24, 1), filter .5s ease !important
    }

    .fleet-modern-card.is-visible .fleet-modern-visual img {
        animation: fleetMobileCarArrival .95s cubic-bezier(.16, .84, .24, 1) both
    }

    .fleet-modern-rings {
        animation: fleetMobileRingPulse 4.8s ease-in-out infinite !important
    }

    .fleet-modern-shine {
        opacity: 0;
        transform: translateX(-120%) !important
    }

    .fleet-modern-card.is-visible .fleet-modern-shine {
        animation: fleetMobileRevealSweep 1.15s ease .28s both !important
    }

    .fleet-modern-specs div {
        transform: translateY(10px) !important
    }

    .fleet-modern-specs div.is-visible {
        transform: translateY(0) !important
    }
}

@media (max-width:600px) {
    .fleet-modern-main {
        padding-top: 68px !important
    }

    .fleet-modern-hero-inner {
        padding-top: 44px !important;
        padding-bottom: 88px !important
    }

    .fleet-modern-hero h1 {
        font-size: clamp(50px, 15.5vw, 72px) !important;
        line-height: .88 !important
    }

    .fleet-modern-intro {
        max-width: 34ch !important;
        margin-top: 16px !important;
        font-size: 13.5px !important;
        line-height: 1.62 !important
    }

    .fleet-modern-explore {
        margin-top: 21px !important;
        padding-bottom: 7px !important;
        gap: 12px !important
    }

    .fleet-modern-marquee div {
        padding-block: 11px !important
    }

    .fleet-modern-collection {
        padding-top: 34px !important;
        padding-bottom: 50px !important
    }

    .fleet-modern-list {
        gap: 38px !important
    }

    .fleet-modern-card,
    .fleet-modern-card-reverse {
        gap: 17px !important
    }

    .fleet-modern-card::before {
        display: none !important
    }

    .fleet-modern-visual {
        min-height: clamp(270px, 77vw, 350px) !important;
        border-radius: 16px !important;
        box-shadow: 0 20px 48px rgba(6, 21, 35, .09) !important
    }

    .fleet-modern-visual::before {
        inset: 8px !important;
        border-radius: 10px !important
    }

    .fleet-modern-visual img {
        width: 94% !important;
        max-height: 64% !important
    }

    .fleet-modern-rings {
        width: 84% !important
    }

    .fleet-modern-number {
        top: 14px !important;
        left: 14px !important;
        padding: 5px 7px !important
    }

    .fleet-modern-copy {
        padding-inline: 2px !important
    }

    .fleet-modern-type {
        margin-bottom: 8px !important
    }

    .fleet-modern-copy h2 {
        font-size: clamp(38px, 11.5vw, 56px) !important;
        line-height: .98 !important
    }

    .fleet-modern-description {
        max-width: 36ch !important;
        margin: 14px auto 0 !important;
        font-size: 13.5px !important;
        line-height: 1.62 !important
    }

    .fleet-modern-specs {
        margin-top: 18px !important;
        border-radius: 14px !important
    }

    .fleet-modern-specs div,
    .fleet-modern-specs div+div {
        padding: 11px 10px !important
    }

    .fleet-modern-specs dt {
        margin-bottom: 5px !important
    }

    .fleet-modern-book {
        margin-top: 18px !important;
        padding: 11px 14px !important;
        font-size: 10px !important
    }

    .fleet-modern-cta {
        padding-top: 56px !important;
        padding-bottom: 56px !important
    }

    .fleet-modern-cta h2 {
        font-size: clamp(40px, 12.5vw, 58px) !important;
        line-height: .98 !important
    }

    .fleet-modern-cta a {
        margin-top: 22px !important;
        padding: 12px 17px !important
    }

    .fleet-modern-cta-ring {
        width: 390px !important;
        height: 390px !important;
        right: -230px !important;
        opacity: .65 !important
    }
}

@media (max-width:420px) {
    .fleet-modern-hero-inner {
        padding-top: 36px !important;
        padding-bottom: 82px !important
    }

    .fleet-modern-collection {
        padding-top: 28px !important;
        padding-bottom: 44px !important
    }

    .fleet-modern-list {
        gap: 32px !important
    }

    .fleet-modern-visual {
        min-height: clamp(250px, 74vw, 315px) !important
    }

    .fleet-modern-copy h2 {
        font-size: clamp(36px, 11vw, 50px) !important
    }

    .fleet-modern-description {
        font-size: 13px !important
    }

    .fleet-modern-specs {
        margin-top: 16px !important
    }

    .fleet-modern-book {
        margin-top: 16px !important
    }

    .fleet-modern-cta {
        padding-top: 50px !important;
        padding-bottom: 50px !important
    }
}

@keyframes fleetMobileCarArrival {
    0% {
        opacity: .35;
        transform: translate3d(0, 20px, 0) scale(.95);
        filter: blur(4px) drop-shadow(0 20px 18px rgba(6, 13, 19, .12))
    }

    65% {
        opacity: 1;
        transform: translate3d(0, -4px, 0) scale(1.015);
        filter: blur(0) drop-shadow(0 31px 24px rgba(6, 13, 19, .22))
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0) drop-shadow(0 26px 22px rgba(6, 13, 19, .2))
    }
}

@keyframes fleetMobileRingPulse {

    0%,
    100% {
        transform: scale(.95);
        opacity: .52
    }

    50% {
        transform: scale(1.04);
        opacity: .9
    }
}

@keyframes fleetMobileRevealSweep {
    0% {
        opacity: 0;
        transform: translateX(-120%)
    }

    25% {
        opacity: .55
    }

    100% {
        opacity: 0;
        transform: translateX(120%)
    }
}

@media (prefers-reduced-motion:reduce) {

    .fleet-modern-card,
    .fleet-modern-card.is-visible,
    .fleet-modern-card.is-visible .fleet-modern-shine,
    .fleet-modern-card.is-visible .fleet-modern-visual img,
    .fleet-modern-rings {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important
    }
}

.business-modern-main {
    padding-top: 76px;
    overflow: hidden;
    background: #f3efe6
}

.business-modern-hero {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    display: grid;
    align-items: center;
    isolation: isolate;
    color: #fff;
    background: linear-gradient(90deg, rgba(5, 10, 14, .58) 0, rgba(5, 10, 14, .42) 52%, rgba(5, 10, 14, .5) 100%), linear-gradient(180deg, rgba(5, 10, 14, .08) 0, rgba(5, 10, 14, .28) 100%), url('../images/premium-chauffeur-hero.png') center center/cover no-repeat
}

.business-modern-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    display: none;
    background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(to bottom, #000 70%, transparent)
}

.business-modern-orbit {
    display: none;
    position: absolute;
    z-index: -2;
    border: 1px solid rgba(209, 163, 65, .18);
    border-radius: 50%;
    pointer-events: none
}

.business-modern-orbit-one {
    width: 600px;
    height: 600px;
    right: -180px;
    top: -210px;
    animation: businessOrbit 24s linear infinite
}

.business-modern-orbit-two {
    width: 330px;
    height: 330px;
    left: -130px;
    bottom: -170px;
    background: radial-gradient(circle, rgba(209, 163, 65, .16), transparent 70%);
    animation: businessFloat 8s ease-in-out infinite alternate
}

.business-modern-hero-grid {
    padding: 118px 0 150px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(430px, .75fr);
    align-items: center;
    gap: 90px
}

.business-modern-kicker,
.business-modern-section-label {
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .19em;
    text-transform: uppercase
}

.business-modern-hero h1 {
    margin-top: 22px;
    max-width: 830px;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(72px, 8vw, 126px);
    font-weight: 400;
    line-height: .84;
    letter-spacing: -.055em
}

.business-modern-hero h1 em {
    display: block;
    margin-top: 15px;
    color: #e5c78f;
    font-family: 'Playfair Display', serif;
    font-size: .56em;
    font-weight: 500
}

.business-modern-lead {
    max-width: 600px;
    margin-top: 31px;
    color: rgba(255, 255, 255, .62);
    font-size: 16px;
    line-height: 1.8
}

.business-modern-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 22px
}

.business-cta-inner>a,
.business-fleet-copy>a,
.business-modern-primary,
.business-process-copy>a {
    --business-mx: 0px;
    --business-my: 0px;
    transform: translate(var(--business-mx), var(--business-my))
}

.business-modern-primary {
    min-height: 64px !important;
    padding: 0 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 45px !important;

    /* Keeps the same rounded pill design */
    border-radius: 999px !important;
    border: 1px solid rgba(216, 193, 139, 0.75) !important;

    background: linear-gradient(90deg,
            #26231d 0%,
            #51452f 15%,
            #9d814d 32%,
            #d8c18b 50%,
            #9d814d 68%,
            #51452f 85%,
            #26231d 100%) !important;

    color: #ffffff !important;
    text-decoration: none !important;

    box-shadow:
        inset 18px 0 28px rgba(0, 0, 0, 0.10),
        inset -18px 0 28px rgba(0, 0, 0, 0.10),
        0 12px 30px rgba(0, 0, 0, 0.18) !important;
}


.business-modern-primary:hover {
    background: linear-gradient(90deg,
            #302c24 0%,
            #655536 15%,
            #b29457 32%,
            #ead39c 50%,
            #b29457 68%,
            #655536 85%,
            #302c24 100%) !important;

    color: #ffffff !important;
    transform: translateY(-2px);

    box-shadow:
        inset 18px 0 28px rgba(0, 0, 0, 0.08),
        inset -18px 0 28px rgba(0, 0, 0, 0.08),
        0 15px 35px rgba(184, 154, 94, 0.25) !important;
}


.business-modern-primary:hover span {
    color: #ffffff !important;
}

.business-modern-primary:hover {
    border-radius: 999px !important;

    background: linear-gradient(90deg,
            #302c24 0%,
            #655536 15%,
            #b29457 32%,
            #ead39c 50%,
            #b29457 68%,
            #655536 85%,
            #302c24 100%) !important;

    color: #ffffff !important;
    transform: translateY(-2px);
}

.business-modern-secondary {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, .76);
    text-decoration: none;
    font-size: 11px
}

.business-modern-secondary span {
    color: #e5c78f;
    animation: businessArrow 1.7s ease-in-out infinite
}

.business-modern-trust {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 620px;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.business-modern-trust div {
    padding: 20px 18px 0 0
}

.business-modern-trust div+div {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, .1)
}

.business-modern-trust strong {
    display: block;
    font-size: 18px
}

.business-modern-trust span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .42);
    font-size: 8px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.business-fleet-visual,
.business-modern-control {
    --business-rx: 0deg;
    --business-ry: 0deg;
    --business-px: 50%;
    --business-py: 50%;
    transform: perspective(1400px) rotateX(var(--business-rx)) rotateY(var(--business-ry));
    transition: transform .22s ease, box-shadow .35s ease
}

.business-modern-control {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    background: radial-gradient(circle at var(--business-px) var(--business-py), rgba(255, 255, 255, .1), transparent 26%), rgba(255, 255, 255, .055);
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, .22)
}

.business-control-footer,
.business-control-head {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.business-control-head span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .72);
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase
}

.business-control-head i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3fc878;
    box-shadow: 0 0 0 0 rgba(63, 200, 120, .55);
    animation: businessLive 1.8s infinite
}

.business-control-head small {
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    text-transform: uppercase
}

.business-control-route {
    margin: 32px 0;
    display: grid;
    gap: 0
}

.business-control-route>div {
    position: relative;
    padding: 18px 18px 18px 54px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .035)
}

.business-control-route>div:first-child {
    border-radius: 16px 16px 0 0
}

.business-control-route>div:last-of-type {
    border-radius: 0 0 16px 16px
}

.business-control-route>div>span {
    position: absolute;
    left: 16px;
    top: 20px;
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 8px
}

.business-control-route strong {
    display: block;
    font-size: 14px
}

.business-control-route small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .42);
    font-size: 9px
}

.business-control-route>i {
    width: 1px;
    height: 14px;
    margin-left: 32px;
    background: linear-gradient(#d1a341, rgba(209, 163, 65, .12))
}

.business-control-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.business-control-footer div {
    display: grid;
    gap: 6px
}

.business-control-footer span {
    color: rgba(255, 255, 255, .38);
    font-size: 7px;
    text-transform: uppercase
}

.business-control-footer strong {
    font-size: 10px
}

.business-control-footer .is-on-time {
    color: #3fc878
}

.business-control-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    top: 20%;
    background: linear-gradient(90deg, transparent, rgba(229, 199, 143, .75), transparent);
    box-shadow: 0 0 14px rgba(229, 199, 143, .32);
    animation: businessScan 4.2s ease-in-out infinite
}

.business-modern-marquee {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.business-modern-marquee>div {
    width: max-content;
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 26px;
    color: rgba(255, 255, 255, .42);
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase;
    animation: businessMarquee 25s linear infinite
}

.business-modern-marquee i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d1a341
}

.business-modern-solutions {
    padding: 140px 0;
    background: linear-gradient(90deg, rgba(6, 21, 35, .026) 1px, transparent 1px), #f3efe6;
    background-size: 120px 100%
}

.business-modern-heading {
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 390px;
    align-items: end;
    gap: 70px
}

.business-modern-heading>div>p {
    margin-bottom: 13px;
    color: #b28235;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .17em;
    text-transform: uppercase
}

.business-cta-inner h2,
.business-fleet-copy h2,
.business-modern-heading h2,
.business-process-copy h2 {
    font-family: 'Libre Caslon Display', serif;
    font-weight: 400;
    letter-spacing: -.045em
}

.business-modern-heading h2 {
    font-size: clamp(54px, 6vw, 88px);
    line-height: .94
}

.business-modern-heading>p {
    color: #6f7378;
    font-size: 14px;
    line-height: 1.8
}

.business-modern-solution-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px
}

.business-modern-solution-grid article {
    position: relative;
    min-height: 365px;
    padding: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(6, 21, 35, .1);
    border-radius: 22px;
    background: rgba(255, 255, 255, .56);
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s ease, transform .85s cubic-bezier(.16, .84, .24, 1), background-color .3s ease, color .3s ease, box-shadow .3s ease
}

.business-modern-solution-grid article.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.business-modern-solution-grid article:hover {
    background: #061523;
    color: #fff;
    box-shadow: 0 30px 70px rgba(6, 21, 35, .14);
    transform: translateY(-8px)
}

.business-modern-solution-grid article>span {
    color: #b28235;
    font-family: 'DM Mono', monospace;
    font-size: 9px
}

.business-solution-icon {
    width: 48px;
    height: 48px;
    margin-top: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(6, 21, 35, .13);
    border-radius: 50%;
    color: #b28235;
    font-size: 19px;
    transition: transform .4s ease, border-color .3s ease
}

.business-modern-solution-grid article:hover .business-solution-icon {
    border-color: rgba(255, 255, 255, .22);
    transform: rotate(18deg) scale(1.08)
}

.business-modern-solution-grid h3 {
    margin-top: 24px;
    font-size: 23px
}

.business-modern-solution-grid p {
    margin-top: 13px;
    color: #6f7378;
    font-size: 13px;
    line-height: 1.7;
    transition: color .3s ease
}

.business-modern-solution-grid article:hover p {
    color: rgba(255, 255, 255, .58)
}

.business-modern-solution-grid a {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    color: inherit;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700
}

.business-modern-solution-grid b {
    color: #b28235;
    transition: transform .25s ease
}

.business-modern-solution-grid a:hover b {
    transform: translate(4px, -4px)
}

.business-modern-process {
    padding: 145px 0;
    color: #fff;
    background: #081018
}

.business-process-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 110px
}

.business-cta-inner,
.business-fleet-copy,
.business-fleet-visual,
.business-metrics-grid article,
.business-modern-heading,
.business-process-copy,
.business-process-timeline article {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity .75s ease, transform .9s cubic-bezier(.16, .84, .24, 1)
}

.business-cta-inner.is-visible,
.business-fleet-copy.is-visible,
.business-fleet-visual.is-visible,
.business-metrics-grid article.is-visible,
.business-modern-heading.is-visible,
.business-process-copy.is-visible,
.business-process-timeline article.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.business-process-copy h2 {
    margin-top: 17px;
    font-size: clamp(52px, 5.5vw, 82px);
    line-height: .95
}

.business-process-copy>p:not(.business-modern-section-label) {
    max-width: 500px;
    margin-top: 25px;
    color: rgba(255, 255, 255, .56);
    line-height: 1.8
}

.business-fleet-copy>a,
.business-process-copy>a {
    width: fit-content;
    margin-top: 34px;
    padding: 13px 19px;
    display: inline-flex;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    transition: .3s ease
}

.business-process-copy>a:hover {
    border-color: #d1a341;
    background: #d1a341;
    color: #061523
}

.business-process-timeline {
    position: relative;
    display: grid
}

.business-process-timeline article {
    position: relative;
    z-index: 2;
    padding: 27px 0 27px 75px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.business-process-timeline article>span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(229, 199, 143, .3);
    border-radius: 50%;
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    background: #081018
}

.business-process-timeline h3 {
    font-size: 19px
}

.business-process-timeline p {
    margin-top: 7px;
    color: rgba(255, 255, 255, .46);
    font-size: 12px;
    line-height: 1.6
}

.business-process-line {
    position: absolute;
    left: 95px;
    top: 47px;
    bottom: 47px;
    width: 1px;
    background: linear-gradient(#d1a341, rgba(209, 163, 65, .08));
    transform-origin: top;
    animation: businessTimelineLine 3.5s ease-in-out infinite
}

.business-modern-metrics {
    padding: 75px 0;
    background: #d1a341
}

.business-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.business-metrics-grid article {
    padding: 24px 30px;
    text-align: center
}

.business-metrics-grid article+article {
    border-left: 1px solid rgba(6, 21, 35, .18)
}

.business-metrics-grid strong {
    display: block;
    color: #061523;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(50px, 5vw, 78px);
    font-weight: 400;
    line-height: 1
}

.business-metrics-grid span {
    display: block;
    margin-top: 9px;
    color: rgba(6, 21, 35, .66);
    font-size: 8px;
    letter-spacing: .11em;
    text-transform: uppercase
}

.business-modern-fleet {
    padding: 145px 0;
    background: #f3efe6
}

.business-fleet-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
    align-items: center;
    gap: 90px
}

.business-fleet-visual {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    display: grid;
    place-items: center;
    isolation: isolate;
    border: 1px solid rgba(6, 21, 35, .1);
    border-radius: 26px;
    background: radial-gradient(circle at var(--business-px) var(--business-py), rgba(255, 255, 255, .92), transparent 25%), #e9e5dc;
    box-shadow: 0 36px 90px rgba(6, 21, 35, .11)
}

.business-fleet-visual::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 14px;
    border: 1px solid rgba(6, 21, 35, .08);
    border-radius: 18px
}

.business-fleet-rings {
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    border: 1px solid rgba(6, 21, 35, .08);
    border-radius: 50%;
    animation: businessRingPulse 5s ease-in-out infinite
}

.business-fleet-rings::after,
.business-fleet-rings::before {
    content: "";
    position: absolute;
    border: 1px solid rgba(6, 21, 35, .06);
    border-radius: 50%
}

.business-fleet-rings::before {
    inset: 13%
}

.business-fleet-rings::after {
    inset: 27%
}

.business-fleet-visual img {
    position: relative;
    z-index: 3;
    width: 91%;
    max-height: 72%;
    object-fit: contain;
    filter: drop-shadow(0 34px 25px rgba(6, 13, 19, .23));
    transition: transform .5s ease
}

.business-fleet-visual:hover img {
    transform: translateY(-8px) scale(1.035)
}

.business-fleet-visual>span {
    position: absolute;
    z-index: 4;
    left: 25px;
    top: 24px;
    padding: 7px 10px;
    border: 1px solid rgba(178, 130, 53, .28);
    border-radius: 999px;
    color: #b28235;
    background: rgba(243, 239, 230, .75);
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    text-transform: uppercase
}

.business-fleet-visual>i {
    position: absolute;
    z-index: 4;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(112deg, transparent 35%, rgba(255, 255, 255, .6) 50%, transparent 65%);
    transform: translateX(-140%)
}

.business-fleet-visual:hover>i {
    animation: businessSweep 1.25s ease
}

.business-fleet-copy h2 {
    margin-top: 15px;
    font-size: clamp(52px, 5.5vw, 84px);
    line-height: .94
}

.business-fleet-copy>p:not(.business-modern-section-label) {
    margin-top: 25px;
    color: #6f7378;
    line-height: 1.8
}

.business-fleet-copy ul {
    margin-top: 30px;
    display: grid;
    list-style: none;
    border-top: 1px solid rgba(6, 21, 35, .12)
}

.business-fleet-copy li {
    padding: 15px 0;
    display: flex;
    gap: 14px;
    border-bottom: 1px solid rgba(6, 21, 35, .1);
    color: #555a5e;
    font-size: 12px
}

.business-fleet-copy li span {
    color: #b28235;
    font-family: 'DM Mono', monospace;
    font-size: 8px
}

.business-fleet-copy>a {
    border-color: rgba(6, 21, 35, .2);
    color: #061523
}

.business-fleet-copy>a:hover {
    background: #061523;
    color: #fff
}

.business-modern-cta {
    position: relative;
    overflow: hidden;
    padding: 145px 0;
    color: #fff;
    background: #061523
}

.business-cta-orbit {
    position: absolute;
    width: 720px;
    height: 720px;
    right: -230px;
    top: 50%;
    border: 1px solid rgba(209, 163, 65, .16);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: businessCtaOrbit 23s linear infinite
}

.business-cta-orbit::after,
.business-cta-orbit::before {
    content: "";
    position: absolute;
    border: 1px solid rgba(209, 163, 65, .1);
    border-radius: 50%
}

.business-cta-orbit::before {
    inset: 90px
}

.business-cta-orbit::after {
    inset: 190px
}

.business-cta-inner {
    position: relative;
    z-index: 2
}

.business-cta-inner>p {
    margin-bottom: 18px;
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase
}

.business-cta-inner h2 {
    max-width: 1000px;
    font-size: clamp(60px, 7vw, 108px);
    line-height: .92
}

.business-cta-inner>a {
    width: fit-content;
    margin-top: 40px;
    padding: 14px 22px;
    display: inline-flex;
    gap: 28px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    transition: .3s ease
}

.business-cta-inner>a:hover {
    border-color: #d1a341;
    background: #d1a341;
    color: #061523
}

@keyframes businessOrbit {
    to {
        transform: rotate(360deg)
    }
}

@keyframes businessFloat {
    to {
        transform: translate3d(35px, -22px, 0) scale(1.08)
    }
}

@keyframes businessArrow {
    50% {
        transform: translateY(5px)
    }
}

@keyframes businessLive {
    from {
        box-shadow: 0 0 0 0 rgba(63, 200, 120, .55)
    }

    to {
        box-shadow: 0 0 0 9px rgba(63, 200, 120, 0)
    }
}

@keyframes businessScan {

    0%,
    100% {
        top: 20%;
        opacity: 0
    }

    25% {
        opacity: 1
    }

    70% {
        opacity: .8
    }

    90% {
        top: 82%;
        opacity: 0
    }
}

@keyframes businessMarquee {
    to {
        transform: translateX(-50%)
    }
}

@keyframes businessTimelineLine {

    0%,
    100% {
        transform: scaleY(.25);
        opacity: .45
    }

    50% {
        transform: scaleY(1);
        opacity: 1
    }
}

@keyframes businessRingPulse {

    0%,
    100% {
        transform: scale(.95);
        opacity: .55
    }

    50% {
        transform: scale(1.06);
        opacity: .92
    }
}

@keyframes businessSweep {
    from {
        transform: translateX(-140%)
    }

    to {
        transform: translateX(140%)
    }
}

@keyframes businessCtaOrbit {
    to {
        transform: translateY(-50%) rotate(360deg)
    }
}

@media (max-width:1180px) {
    .business-modern-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr);
        gap: 55px
    }

    .business-modern-solution-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .business-process-grid {
        gap: 65px
    }

    .business-fleet-grid {
        gap: 55px
    }
}

@media (max-width:900px) {
    .business-modern-main {
        padding-top: 68px
    }

    .business-modern-hero {
        min-height: 0
    }

    .business-modern-hero-grid {
        padding: 82px 0 115px;
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center
    }

    .business-modern-lead,
    .business-modern-trust {
        margin-inline: auto
    }

    .business-modern-actions {
        justify-content: center
    }

    .business-modern-control {
        width: min(100%, 620px);
        margin-inline: auto;
        text-align: left
    }

    .business-modern-fleet,
    .business-modern-process,
    .business-modern-solutions {
        padding: 85px 0
    }

    .business-modern-heading {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center
    }

    .business-modern-heading>p {
        max-width: 600px;
        margin-inline: auto
    }

    .business-fleet-grid,
    .business-process-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .business-fleet-copy,
    .business-process-copy {
        text-align: center
    }

    .business-fleet-copy>p:not(.business-modern-section-label),
    .business-process-copy>p:not(.business-modern-section-label) {
        margin-inline: auto
    }

    .business-fleet-copy>a,
    .business-process-copy>a {
        margin-inline: auto
    }

    .business-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .business-metrics-grid article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(6, 21, 35, .18)
    }

    .business-metrics-grid article:nth-child(4) {
        border-top: 1px solid rgba(6, 21, 35, .18)
    }

    .business-fleet-visual {
        min-height: clamp(420px, 70vw, 600px)
    }

    .business-modern-cta {
        padding: 95px 0;
        text-align: center
    }

    .business-cta-inner>a,
    .business-cta-inner h2 {
        margin-inline: auto
    }
}

@media (max-width:600px) {
    .business-modern-hero-grid {
        padding: 48px 0 92px;
        gap: 30px
    }

    .business-modern-kicker {
        font-size: 8px
    }

    .business-modern-hero h1 {
        margin-top: 15px;
        font-size: clamp(52px, 16vw, 76px);
        line-height: .88
    }

    .business-modern-hero h1 em {
        margin-top: 9px;
        font-size: .6em
    }

    .business-modern-lead {
        margin-top: 18px;
        font-size: 13.5px;
        line-height: 1.65
    }

    .business-modern-actions {
        margin-top: 24px;
        flex-direction: column;
        gap: 13px
    }

    .business-modern-primary {
        width: 100%;
        justify-content: space-between
    }

    .business-modern-trust {
        margin-top: 30px;
        grid-template-columns: 1fr
    }

    .business-modern-trust div,
    .business-modern-trust div+div {
        padding: 12px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .09)
    }

    .business-modern-control {
        padding: 18px;
        border-radius: 18px;
        transform: none !important
    }

    .business-control-route {
        margin: 22px 0
    }

    .business-control-footer {
        gap: 10px
    }

    .business-control-footer strong {
        font-size: 8px
    }

    .business-modern-fleet,
    .business-modern-process,
    .business-modern-solutions {
        padding: 55px 0
    }

    .business-modern-heading {
        margin-bottom: 30px
    }

    .business-fleet-copy h2,
    .business-modern-heading h2,
    .business-process-copy h2 {
        font-size: clamp(42px, 13vw, 62px);
        line-height: .97
    }

    .business-modern-solution-grid {
        grid-template-columns: 1fr;
        gap: 13px
    }

    .business-modern-solution-grid article {
        min-height: 290px;
        padding: 22px
    }

    .business-solution-icon {
        margin-top: 25px
    }

    .business-fleet-grid,
    .business-process-grid {
        gap: 30px
    }

    .business-process-timeline article {
        padding: 20px 0 20px 0;
        grid-template-columns: 42px 1fr;
        gap: 15px
    }

    .business-process-line {
        display: none
    }

    .business-metrics-grid {
        grid-template-columns: 1fr
    }

    .business-metrics-grid article,
    .business-metrics-grid article+article {
        padding: 22px;
        border-left: 0;
        border-top: 1px solid rgba(6, 21, 35, .18)
    }

    .business-metrics-grid article:first-child {
        border-top: 0
    }

    .business-fleet-visual {
        min-height: clamp(290px, 82vw, 390px);
        border-radius: 18px;
        transform: none !important
    }

    .business-fleet-visual::before {
        inset: 9px;
        border-radius: 11px
    }

    .business-fleet-visual img {
        width: 96%;
        max-height: 65%
    }

    .business-fleet-copy ul {
        margin-top: 22px;
        text-align: left
    }

    .business-modern-cta {
        padding: 65px 0
    }

    .business-cta-inner h2 {
        font-size: clamp(44px, 14vw, 64px);
        line-height: .97
    }

    .business-cta-inner>a {
        margin-top: 26px;
        padding: 12px 17px
    }
}

@media (hover:none) {

    .business-fleet-visual,
    .business-modern-control {
        transform: none !important
    }

    .business-modern-solution-grid article:hover {
        transform: none
    }
}

@media (prefers-reduced-motion:reduce) {

    .business-control-head i,
    .business-control-scan,
    .business-cta-orbit,
    .business-fleet-rings,
    .business-fleet-visual:hover>i,
    .business-modern-marquee>div,
    .business-modern-orbit,
    .business-modern-secondary span,
    .business-process-line {
        animation: none !important
    }

    [data-business-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }

    .business-fleet-visual,
    .business-modern-control,
    [data-business-magnetic] {
        transform: none !important;
        transition: none !important
    }
}

.business-live-map-section {
    padding: 145px 0;
    overflow: hidden;
    background: radial-gradient(circle at 18% 10%, rgba(209, 163, 65, .08), transparent 24%), #0a1118;
    color: #fff
}

.business-live-map-heading {
    margin-bottom: 58px;
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: end;
    gap: 70px;
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .75s ease, transform .9s cubic-bezier(.16, .84, .24, 1)
}

.business-live-map-heading.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.business-live-map-heading h2 {
    margin-top: 15px;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(54px, 6vw, 88px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.045em
}

.business-live-map-heading>p {
    color: rgba(255, 255, 255, .52);
    font-size: 14px;
    line-height: 1.8
}

.business-live-map-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
    gap: 22px
}

.business-live-map-panel,
.business-live-map-sidebar {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity .75s ease, transform .9s cubic-bezier(.16, .84, .24, 1)
}

.business-live-map-panel.is-visible,
.business-live-map-sidebar.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.business-live-map-panel {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .035);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .22)
}

.business-live-map-toolbar,
.business-live-sidebar-head {
    min-height: 64px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.business-live-map-toolbar>div,
.business-live-sidebar-head>div {
    display: flex;
    align-items: center;
    gap: 10px
}

.business-live-map-toolbar strong,
.business-live-sidebar-head strong {
    font-size: 11px
}

.business-live-map-toolbar small,
.business-live-sidebar-head small {
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    text-transform: uppercase
}

.business-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3fc878;
    box-shadow: 0 0 0 0 rgba(63, 200, 120, .55);
    animation: businessLiveMapDot 1.8s infinite
}

.business-live-map-canvas {
    --map-x: 50%;
    --map-y: 50%;
    position: relative;
    min-height: 570px;
    overflow: hidden;
    background: radial-gradient(circle at var(--map-x) var(--map-y), rgba(229, 199, 143, .09), transparent 24%), linear-gradient(135deg, rgba(255, 255, 255, .025), transparent 55%), #0d1821;
    transition: background-position .25s ease
}

.business-live-map-canvas::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 46px 46px
}

.business-live-map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.business-map-roads path {
    fill: none;
    stroke: rgba(255, 255, 255, .08);
    stroke-width: 2
}

.business-map-water path {
    fill: none;
    stroke: rgba(86, 152, 184, .20);
    stroke-width: 16;
    stroke-linecap: round
}

.business-live-route-shadow {
    fill: none;
    stroke: rgba(209, 163, 65, .13);
    stroke-width: 16;
    stroke-linecap: round
}

.business-live-route-path {
    fill: none;
    stroke: url(#businessRouteGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 12 10;
    filter: url(#businessMapGlow);
    animation: businessRouteDash 1.3s linear infinite
}

.business-live-stop circle:first-child {
    fill: rgba(209, 163, 65, .10);
    stroke: rgba(229, 199, 143, .40);
    stroke-width: 1;
    animation: businessStopPulse 2.2s ease-in-out infinite
}

.business-live-stop circle:nth-child(2) {
    fill: #e5c78f
}

.business-live-stop text {
    fill: rgba(255, 255, 255, .54);
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: .08em
}

.business-live-stop-two circle:first-child {
    animation-delay: .35s
}

.business-live-stop-three circle:first-child {
    animation-delay: .7s
}

.business-live-stop-four circle:first-child {
    animation-delay: 1.05s
}

.business-live-vehicle-marker {
    filter: url(#businessMapGlow)
}

.business-live-vehicle-marker>circle:first-child {
    fill: #d1a341;
    stroke: rgba(255, 255, 255, .80);
    stroke-width: 2
}

.business-live-vehicle-marker path {
    fill: #061523
}

.business-live-vehicle-marker circle:not(:first-child) {
    fill: #061523
}

.business-map-label {
    position: absolute;
    z-index: 5;
    padding: 9px 11px;
    display: grid;
    gap: 3px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    background: rgba(6, 21, 35, .78);
    backdrop-filter: blur(12px)
}

.business-map-label span {
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 7px
}

.business-map-label strong {
    font-size: 9px
}

.business-map-label-heathrow {
    left: 6%;
    bottom: 17%
}

.business-map-label-canary {
    right: 4%;
    top: 12%
}

.business-live-map-status {
    position: absolute;
    z-index: 5;
    left: 22px;
    right: 22px;
    bottom: 20px;
    padding: 15px 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: rgba(6, 21, 35, .84);
    backdrop-filter: blur(16px)
}

.business-live-map-status div {
    display: grid;
    gap: 5px
}

.business-live-map-status span {
    color: rgba(255, 255, 255, .38);
    font-size: 7px;
    text-transform: uppercase
}

.business-live-map-status strong {
    font-size: 10px
}

.business-live-map-scan {
    position: absolute;
    z-index: 4;
    left: 0;
    right: 0;
    top: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 199, 143, .8), transparent);
    box-shadow: 0 0 18px rgba(229, 199, 143, .28);
    animation: businessMapScan 5.2s ease-in-out infinite
}

.business-live-map-sidebar {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .035)
}

.business-live-map-sidebar article {
    padding: 19px 18px;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: background-color .25s ease, transform .25s ease
}

.business-live-map-sidebar article.is-active,
.business-live-map-sidebar article:hover {
    background: rgba(255, 255, 255, .055)
}

.business-live-map-sidebar article:hover {
    transform: translateX(4px)
}

.business-live-journey-time {
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 8px
}

.business-live-map-sidebar article strong {
    display: block;
    font-size: 11px
}

.business-live-map-sidebar article small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .4);
    font-size: 8px
}

.business-live-map-sidebar article b {
    color: rgba(255, 255, 255, .48);
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    text-transform: uppercase
}

.business-live-map-sidebar article.is-active b {
    color: #3fc878
}

.business-live-sidebar-summary {
    padding: 20px 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px
}

.business-live-sidebar-summary div {
    display: grid;
    gap: 6px;
    text-align: center
}

.business-live-sidebar-summary span {
    color: rgba(255, 255, 255, .38);
    font-size: 7px;
    text-transform: uppercase
}

.business-live-sidebar-summary strong {
    color: #e5c78f;
    font-size: 15px
}

@keyframes businessLiveMapDot {
    from {
        box-shadow: 0 0 0 0 rgba(63, 200, 120, .55)
    }

    to {
        box-shadow: 0 0 0 9px rgba(63, 200, 120, 0)
    }
}

@keyframes businessRouteDash {
    to {
        stroke-dashoffset: -22
    }
}

@keyframes businessStopPulse {

    0%,
    100% {
        transform: scale(.8);
        opacity: .45
    }

    50% {
        transform: scale(1.15);
        opacity: 1
    }
}

@keyframes businessMapScan {

    0%,
    100% {
        top: 12%;
        opacity: 0
    }

    18% {
        opacity: .8
    }

    78% {
        opacity: .55
    }

    92% {
        top: 86%;
        opacity: 0
    }
}

@media (max-width:1050px) {
    .business-live-map-layout {
        grid-template-columns: 1fr
    }

    .business-live-map-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .business-live-sidebar-head,
    .business-live-sidebar-summary {
        grid-column: 1/-1
    }
}

@media (max-width:900px) {
    .business-live-map-section {
        padding: 85px 0
    }

    .business-live-map-heading {
        margin-bottom: 36px;
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center
    }

    .business-live-map-heading>p {
        max-width: 620px;
        margin-inline: auto
    }

    .business-live-map-canvas {
        min-height: 500px
    }
}

@media (max-width:600px) {
    .business-live-map-section {
        padding: 54px 0
    }

    .business-live-map-heading {
        margin-bottom: 26px
    }

    .business-live-map-heading h2 {
        font-size: clamp(42px, 13vw, 60px);
        line-height: .97
    }

    .business-live-map-heading>p {
        font-size: 13.5px;
        line-height: 1.65
    }

    .business-live-map-panel,
    .business-live-map-sidebar {
        border-radius: 18px
    }

    .business-live-map-toolbar,
    .business-live-sidebar-head {
        min-height: 54px;
        padding: 0 15px
    }

    .business-live-map-canvas {
        min-height: 390px
    }

    .business-map-label {
        display: none
    }

    .business-live-map-status {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 12px;
        gap: 8px
    }

    .business-live-map-status span {
        font-size: 6px
    }

    .business-live-map-status strong {
        font-size: 8px
    }

    .business-live-map-sidebar {
        grid-template-columns: 1fr
    }

    .business-live-sidebar-head,
    .business-live-sidebar-summary {
        grid-column: auto
    }

    .business-live-map-sidebar article {
        padding: 15px;
        grid-template-columns: 38px 1fr auto
    }
}

@media (prefers-reduced-motion:reduce) {

    .business-live-dot,
    .business-live-map-scan,
    .business-live-route-path,
    .business-live-stop circle:first-child {
        animation: none !important
    }
}

.about-modern-main {
    padding-top: 76px;
    overflow: hidden;
    background: #f3efe6
}

.about-modern-hero {
    position: relative;
    min-height: 770px;
    overflow: hidden;
    display: grid;
    align-items: center;
    isolation: isolate;
    color: #fff;
    background: radial-gradient(circle at 78% 24%, rgba(209, 163, 65, .14), transparent 30%), #061523
}

.about-modern-hero-video {
    position: absolute;
    inset: 0;
    z-index: -5;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.3) contrast(.94) saturate(1.05);
    pointer-events: none;
    animation: aboutHeroVideoDrift 18s ease-in-out infinite alternate
}

.about-modern-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(4, 16, 27, 0.22) 0%,
            rgba(4, 16, 27, 0.08) 48%,
            rgba(4, 16, 27, 0.13) 100%),
        linear-gradient(180deg,
            rgba(3, 12, 20, 0.02),
            rgba(3, 12, 20, 0.10));
}

@keyframes aboutHeroVideoDrift {
    from {
        transform: scale(1.01)
    }

    to {
        transform: scale(1.075)
    }
}

.about-modern-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: .13;
    background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 74px 74px
}

.about-modern-orbit {
    position: absolute;
    z-index: -2;
    border: 1px solid rgba(209, 163, 65, .18);
    border-radius: 50%;
    pointer-events: none
}

.about-modern-orbit-one {
    width: 610px;
    height: 610px;
    right: -190px;
    top: -220px;
    animation: aboutOrbit 24s linear infinite
}

.about-modern-orbit-two {
    width: 340px;
    height: 340px;
    left: -130px;
    bottom: -175px;
    background: radial-gradient(circle, rgba(209, 163, 65, .16), transparent 70%);
    animation: aboutFloat 8s ease-in-out infinite alternate
}

.about-modern-hero-grid {
    padding: 115px 0 150px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .72fr);
    align-items: center;
    gap: 90px
}

.about-modern-kicker,
.about-modern-section-label {
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .19em;
    text-transform: uppercase
}

.about-modern-hero h1 {
    margin-top: 22px;
    max-width: 840px;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(58px, 6.5vw, 102px);
    font-weight: 400;
    line-height: .84;
    letter-spacing: -.055em
}

.about-modern-hero h1 em {
    display: block;
    margin-top: 15px;
    color: #e5c78f;
    font-family: 'Playfair Display', serif;
    font-size: .50em;
    font-weight: 500
}

.about-modern-lead {
    max-width: 620px;
    margin-top: 30px;
    color: cornsilk;
    font-size: 18px;
    line-height: 1.8;
    font-family: math;
    
}

.about-modern-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 22px
}

.about-modern-cta-inner>a,
.about-modern-primary,
.about-modern-process-copy>a {
    --about-mx: 0px;
    --about-my: 0px;
    transform: translate(var(--about-mx), var(--about-my))
}

.about-modern-primary {
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    gap: 28px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            #26231d 0%,
            #51452f 15%,
            #9d814d 32%,
            #d8c18b 50%,
            #9d814d 68%,
            #51452f 85%,
            #26231d 100%);
    color: #ffffff !important;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 18px 42px rgba(209, 163, 65, .18);
    transition: .28s ease
}

.about-modern-primary:hover {
    background: linear-gradient(90deg,
            #302c24 0%,
            #655536 15%,
            #b29457 32%,
            #ead39c 50%,
            #b29457 68%,
            #655536 85%,
            #302c24 100%);
    box-shadow: 0 22px 52px rgba(209, 163, 65, .28)
}

.about-modern-secondary {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, .76);
    text-decoration: none;
    font-size: 11px
}

.about-modern-secondary span {
    color: #e5c78f;
    animation: aboutArrow 1.7s ease-in-out infinite
}

.about-modern-hero-card,
.about-modern-story-visual {
    --about-rx: 0deg;
    --about-ry: 0deg;
    --about-px: 50%;
    --about-py: 50%;
    transform: perspective(1400px) rotateX(var(--about-rx)) rotateY(var(--about-ry));
    transition: transform .22s ease, box-shadow .35s ease
}

.about-modern-hero-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    background: radial-gradient(circle at var(--about-px) var(--about-py), rgba(255, 255, 255, .1), transparent 26%), rgba(255, 255, 255, .055);
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, .22)
}

.about-modern-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.about-modern-card-head span {
    color: rgba(255, 255, 255, .72);
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    text-transform: uppercase
}

.about-modern-card-head small {
    color: #e5c78f;
    font-size: 8px
}

.about-modern-standard-list {
    margin-top: 28px;
    display: grid
}

.about-modern-standard-list article {
    padding: 18px 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.about-modern-standard-list article>span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(229, 199, 143, .25);
    border-radius: 50%;
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 8px
}

.about-modern-standard-list strong {
    display: block;
    font-size: 13px
}

.about-modern-standard-list small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .42);
    font-size: 9px;
    line-height: 1.5
}

.about-modern-card-scan {
    position: absolute;
    left: 0;
    right: 0;
    top: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 199, 143, .76), transparent);
    box-shadow: 0 0 15px rgba(229, 199, 143, .28);
    animation: aboutScan 4.5s ease-in-out infinite
}

.about-modern-marquee {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.about-modern-marquee>div {
    width: max-content;
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 26px;
    color: rgba(255, 255, 255, .42);
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase;
    animation: aboutMarquee 25s linear infinite
}

.about-modern-marquee i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d1a341
}

.about-modern-story,
.about-modern-values {
    padding: 140px 0;
    background: #f3efe6
}

.about-modern-process-grid,
.about-modern-story-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 90px
}

.about-modern-cta-inner,
.about-modern-heading,
.about-modern-metrics-grid article,
.about-modern-process-copy,
.about-modern-process-list article,
.about-modern-story-copy,
.about-modern-story-visual,
.about-modern-value-grid article {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity .75s ease, transform .9s cubic-bezier(.16, .84, .24, 1)
}

.about-modern-cta-inner.is-visible,
.about-modern-heading.is-visible,
.about-modern-metrics-grid article.is-visible,
.about-modern-process-copy.is-visible,
.about-modern-process-list article.is-visible,
.about-modern-story-copy.is-visible,
.about-modern-story-visual.is-visible,
.about-modern-value-grid article.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.about-modern-cta-inner h2,
.about-modern-heading h2,
.about-modern-process-copy h2,
.about-modern-story-copy h2 {
    font-family: 'Libre Caslon Display', serif;
    font-weight: 400;
    letter-spacing: -.045em
}

.about-modern-story-copy h2 {
    margin-top: 15px;
    font-size: clamp(54px, 6vw, 88px);
    line-height: .94
}

.about-modern-story-copy>p:not(.about-modern-section-label) {
    margin-top: 24px;
    color: #6f7378;
    line-height: 1.8
}

.about-modern-story-visual {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    display: grid;
    place-items: center;
    isolation: isolate;
    border: 1px solid rgba(6, 21, 35, .1);
    border-radius: 26px;
    background: radial-gradient(circle at var(--about-px) var(--about-py), rgba(255, 255, 255, .92), transparent 25%), #e9e5dc;
    box-shadow: 0 36px 90px rgba(6, 21, 35, .11)
}

.about-modern-story-rings {
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    border: 1px solid rgba(6, 21, 35, .08);
    border-radius: 50%;
    animation: aboutRingPulse 5s ease-in-out infinite
}

.about-modern-story-rings::after,
.about-modern-story-rings::before {
    content: "";
    position: absolute;
    border: 1px solid rgba(6, 21, 35, .06);
    border-radius: 50%
}

.about-modern-story-rings::before {
    inset: 13%
}

.about-modern-story-rings::after {
    inset: 27%
}

.about-modern-story-visual img {
    position: relative;
    z-index: 3;
    width: 92%;
    max-height: 72%;
    object-fit: contain;
    filter: drop-shadow(0 34px 25px rgba(6, 13, 19, .23));
    transition: transform .5s ease
}

.about-modern-story-visual:hover img {
    transform: translateY(-8px) scale(1.035)
}

.about-modern-story-visual>span {
    position: absolute;
    z-index: 4;
    left: 25px;
    top: 24px;
    padding: 7px 10px;
    border: 1px solid rgba(178, 130, 53, .28);
    border-radius: 999px;
    color: #b28235;
    background: rgba(243, 239, 230, .75);
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    text-transform: uppercase
}

.about-modern-story-visual>i {
    position: absolute;
    z-index: 4;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(112deg, transparent 35%, rgba(255, 255, 255, .6) 50%, transparent 65%);
    transform: translateX(-140%)
}

.about-modern-story-visual:hover>i {
    animation: aboutSweep 1.25s ease
}

.about-modern-values {
    padding-top: 20px
}

.about-modern-heading {
    margin-bottom: 58px;
    display: grid;
    grid-template-columns: 1fr 390px;
    align-items: end;
    gap: 70px
}

.about-modern-heading h2 {
    margin-top: 14px;
    font-size: clamp(54px, 6vw, 88px);
    line-height: .94
}

.about-modern-heading>p {
    color: #6f7378;
    line-height: 1.8
}

.about-modern-value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px
}

.about-modern-value-grid article {
    min-height: 300px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(6, 21, 35, .1);
    border-radius: 22px;
    background: rgba(255, 255, 255, .56);
    transition: background-color .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease
}

.about-modern-value-grid article:hover {
    background: #061523;
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(6, 21, 35, .14)
}

.about-modern-value-grid article>span {
    color: #b28235;
    font-family: 'DM Mono', monospace;
    font-size: 9px
}

.about-modern-value-grid h3 {
    margin-top: auto;
    font-size: 22px
}

.about-modern-value-grid p {
    margin-top: 13px;
    color: #6f7378;
    font-size: 13px;
    line-height: 1.7;
    transition: color .3s ease
}

.about-modern-value-grid article:hover p {
    color: rgba(255, 255, 255, .58)
}

.about-modern-process {
    padding: 145px 0;
    color: #fff;
    background: #081018
}

.about-modern-process-grid {
    grid-template-columns: .8fr 1.2fr;
    align-items: start
}

.about-modern-process-copy h2 {
    margin-top: 16px;
    font-size: clamp(52px, 5.5vw, 82px);
    line-height: .95
}

.about-modern-process-copy>p:not(.about-modern-section-label) {
    max-width: 500px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .56);
    line-height: 1.8
}

.about-modern-process-copy>a {
    width: fit-content;
    margin-top: 34px;
    padding: 13px 19px;
    display: inline-flex;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    transition: .3s ease
}

.about-modern-process-copy>a:hover {
    border-color: #d1a341;
    background: #d1a341;
    color: #061523
}

.about-modern-process-list {
    position: relative;
    display: grid
}

.about-modern-process-list article {
    position: relative;
    z-index: 2;
    padding: 27px 0 27px 75px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.about-modern-process-list article>span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(229, 199, 143, .3);
    border-radius: 50%;
    color: #e5c78f;
    background: #081018;
    font-family: 'DM Mono', monospace;
    font-size: 8px
}

.about-modern-process-list h3 {
    font-size: 19px
}

.about-modern-process-list p {
    margin-top: 7px;
    color: rgba(255, 255, 255, .46);
    font-size: 12px;
    line-height: 1.6
}

.about-modern-process-line {
    position: absolute;
    left: 95px;
    top: 47px;
    bottom: 47px;
    width: 1px;
    background: linear-gradient(#d1a341, rgba(209, 163, 65, .08));
    animation: aboutTimeline 3.5s ease-in-out infinite
}

.about-modern-metrics {
    padding: 75px 0;
    background: #d1a341
}

.about-modern-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.about-modern-metrics-grid article {
    padding: 24px 30px;
    text-align: center
}

.about-modern-metrics-grid article+article {
    border-left: 1px solid rgba(6, 21, 35, .18)
}

.about-modern-metrics-grid strong {
    display: block;
    color: #061523;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(50px, 5vw, 78px);
    font-weight: 400;
    line-height: 1
}

.about-modern-metrics-grid span {
    display: block;
    margin-top: 9px;
    color: rgba(6, 21, 35, .66);
    font-size: 8px;
    letter-spacing: .11em;
    text-transform: uppercase
}

.about-modern-cta {
    position: relative;
    overflow: hidden;
    padding: 145px 0;
    color: #fff;
    background:
        linear-gradient(90deg,
            rgba(4, 16, 27, .64) 0%,
            rgba(4, 16, 27, .48) 52%,
            rgba(4, 16, 27, .34) 100%),
        url('../images/About-Us-Banner.png') center 42% / cover no-repeat;
}

.about-modern-cta-orbit {
    position: absolute;
    width: 720px;
    height: 720px;
    right: -230px;
    top: 50%;
    border: 1px solid rgba(209, 163, 65, .16);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: aboutCtaOrbit 23s linear infinite;
    display: none
}

.about-modern-cta-orbit::after,
.about-modern-cta-orbit::before {
    content: "";
    position: absolute;
    border: 1px solid rgba(209, 163, 65, .1);
    border-radius: 50%
}

.about-modern-cta-orbit::before {
    inset: 90px
}

.about-modern-cta-orbit::after {
    inset: 190px
}

.about-modern-cta-inner {
    position: relative;
    z-index: 2
}

.about-modern-cta-inner>p {
    margin-bottom: 18px;
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase
}

.about-modern-cta-inner h2 {
    max-width: 1040px;
    font-size: clamp(60px, 7vw, 108px);
    line-height: .92;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .35)
}

.about-modern-cta-qualified {
    width: fit-content;
    margin-top: 26px;
    padding: 9px 14px;
    display: block;
    border: 1px solid rgba(229, 199, 143, .55);
    border-radius: 999px;
    color: #f0cf91;
    background: rgba(6, 21, 35, .36);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase
}

.about-modern-cta-inner>a {
    width: fit-content;
    margin-top: 40px;
    padding: 14px 22px;
    display: inline-flex;
    gap: 28px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    transition: .3s ease
}

.about-modern-cta-inner>a:hover {
    border-color: #d1a341;
    background: #d1a341;
    color: #061523
}

@keyframes aboutOrbit {
    to {
        transform: rotate(360deg)
    }
}

@keyframes aboutFloat {
    to {
        transform: translate3d(35px, -22px, 0) scale(1.08)
    }
}

@keyframes aboutArrow {
    50% {
        transform: translateY(5px)
    }
}

@keyframes aboutScan {

    0%,
    100% {
        top: 15%;
        opacity: 0
    }

    25% {
        opacity: 1
    }

    80% {
        opacity: .7
    }

    92% {
        top: 84%;
        opacity: 0
    }
}

@keyframes aboutMarquee {
    to {
        transform: translateX(-50%)
    }
}

@keyframes aboutRingPulse {

    0%,
    100% {
        transform: scale(.95);
        opacity: .55
    }

    50% {
        transform: scale(1.06);
        opacity: .92
    }
}

@keyframes aboutSweep {
    from {
        transform: translateX(-140%)
    }

    to {
        transform: translateX(140%)
    }
}

@keyframes aboutTimeline {

    0%,
    100% {
        transform: scaleY(.25);
        opacity: .45
    }

    50% {
        transform: scaleY(1);
        opacity: 1
    }
}

@keyframes aboutCtaOrbit {
    to {
        transform: translateY(-50%) rotate(360deg)
    }
}

@media (max-width:1180px) {
    .about-modern-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr);
        gap: 55px
    }

    .about-modern-value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .about-modern-process-grid,
    .about-modern-story-grid {
        gap: 60px
    }
}

@media (max-width:900px) {
    .about-modern-main {
        padding-top: 68px
    }

    .about-modern-hero {
        min-height: 0
    }

    .about-modern-hero-grid {
        padding: 82px 0 115px;
        grid-template-columns: 1fr;
        gap: 42px;
        text-align: center
    }

    .about-modern-lead {
        margin-inline: auto
    }

    .about-modern-actions {
        justify-content: center
    }

    .about-modern-hero-card {
        width: min(100%, 620px);
        margin-inline: auto;
        text-align: left
    }

    .about-modern-process,
    .about-modern-story,
    .about-modern-values {
        padding: 85px 0
    }

    .about-modern-process-grid,
    .about-modern-story-grid {
        grid-template-columns: 1fr;
        gap: 42px
    }

    .about-modern-process-copy,
    .about-modern-story-copy {
        text-align: center
    }

    .about-modern-process-copy>p:not(.about-modern-section-label),
    .about-modern-story-copy>p:not(.about-modern-section-label) {
        margin-inline: auto
    }

    .about-modern-process-copy>a {
        margin-inline: auto
    }

    .about-modern-heading {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center
    }

    .about-modern-heading>p {
        max-width: 600px;
        margin-inline: auto
    }

    .about-modern-story-visual {
        min-height: clamp(420px, 70vw, 600px)
    }

    .about-modern-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .about-modern-metrics-grid article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(6, 21, 35, .18)
    }

    .about-modern-metrics-grid article:nth-child(4) {
        border-top: 1px solid rgba(6, 21, 35, .18)
    }

    .about-modern-cta {
        padding: 95px 0;
        text-align: center
    }

    .about-modern-cta-inner>a,
    .about-modern-cta-inner h2 {
        margin-inline: auto
    }
}

@media (max-width:600px) {
    .about-modern-hero-grid {
        padding: 48px 0 92px;
        gap: 30px
    }

    .about-modern-hero h1 {
        margin-top: 15px;
        font-size: clamp(42px, 13vw, 62px);
        line-height: .88
    }

    .about-modern-hero h1 em {
        margin-top: 9px;
        font-size: .6em
    }

    .about-modern-lead {
        margin-top: 18px;
        font-size: 13.5px;
        line-height: 1.65
    }

    .about-modern-actions {
        margin-top: 24px;
        flex-direction: column;
        gap: 13px
    }

    .about-modern-primary {
        width: 100%;
        justify-content: space-between
    }

    .about-modern-hero-card {
        padding: 18px;
        border-radius: 18px;
        transform: none !important
    }

    .about-modern-standard-list {
        margin-top: 20px
    }

    .about-modern-standard-list article {
        padding: 14px 0
    }

    .about-modern-process,
    .about-modern-story,
    .about-modern-values {
        padding: 55px 0
    }

    .about-modern-heading h2,
    .about-modern-process-copy h2,
    .about-modern-story-copy h2 {
        font-size: clamp(42px, 13vw, 62px);
        line-height: .97
    }

    .about-modern-process-grid,
    .about-modern-story-grid {
        gap: 30px
    }

    .about-modern-story-visual {
        min-height: clamp(290px, 82vw, 390px);
        border-radius: 18px;
        transform: none !important
    }

    .about-modern-story-visual img {
        width: 96%;
        max-height: 65%
    }

    .about-modern-heading {
        margin-bottom: 30px
    }

    .about-modern-value-grid {
        grid-template-columns: 1fr;
        gap: 13px
    }

    .about-modern-value-grid article {
        min-height: 240px;
        padding: 22px
    }

    .about-modern-process-list article {
        padding: 20px 0;
        grid-template-columns: 42px 1fr;
        gap: 15px
    }

    .about-modern-process-line {
        display: none
    }

    .about-modern-metrics-grid {
        grid-template-columns: 1fr
    }

    .about-modern-metrics-grid article,
    .about-modern-metrics-grid article+article {
        padding: 22px;
        border-left: 0;
        border-top: 1px solid rgba(6, 21, 35, .18)
    }

    .about-modern-metrics-grid article:first-child {
        border-top: 0
    }

    .about-modern-cta {
        padding: 65px 0
    }

    .about-modern-cta-inner h2 {
        font-size: clamp(44px, 14vw, 64px);
        line-height: .97
    }

    .about-modern-cta-inner>a {
        margin-top: 26px;
        padding: 12px 17px
    }
}

@media (hover:none) {

    .about-modern-hero-card,
    .about-modern-story-visual {
        transform: none !important
    }

    .about-modern-value-grid article:hover {
        transform: none
    }
}

@media (prefers-reduced-motion:reduce) {
    .about-modern-hero-video {
        animation: none !important;
        transform: none !important
    }

    .about-modern-card-scan,
    .about-modern-cta-orbit,
    .about-modern-marquee>div,
    .about-modern-orbit,
    .about-modern-process-line,
    .about-modern-secondary span,
    .about-modern-story-rings,
    .about-modern-story-visual:hover>i {
        animation: none !important
    }

    [data-about-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }

    [data-about-magnetic],
    [data-about-tilt] {
        transform: none !important;
        transition: none !important
    }
}

.journey-booking-main {
    padding-top: 76px;
    overflow: hidden;
    background: #f3efe6
}

.journey-booking-hero {
    position: relative;
    min-height: 315px;
    overflow: hidden;
    display: grid;
    align-items: center;
    isolation: isolate;
    color: #fff;
    background: radial-gradient(circle at 78% 24%, rgba(209, 163, 65, .15), transparent 30%), #061523
}

.journey-booking-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: .13;
    background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 72px 72px
}

.journey-booking-hero-inner {
    padding: 38px 0 42px;
    text-align: center
}

.journey-booking-kicker {
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .19em;
    text-transform: uppercase
}

.journey-booking-hero h1 {
    max-width: 820px;
    margin: 10px auto 0;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.045em
}

.journey-booking-hero h1 em {
    display: block;
    margin-top: 7px;
    color: #e5c78f;
    font-family: 'Playfair Display', serif;
    font-size: .5em;
    font-weight: 500
}

.journey-booking-hero-inner>p:not(.journey-booking-kicker) {
    max-width: 610px;
    margin: 13px auto 0;
    color: rgba(255, 255, 255, .61);
    font-size: 13px;
    line-height: 1.5
}

.journey-booking-trust {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    color: rgba(255, 255, 255, .55);
    font-size: 9px
}

.journey-booking-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.journey-booking-trust i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3fc878;
    box-shadow: 0 0 0 0 rgba(63, 200, 120, .55);
    animation: journeyLive 1.8s infinite
}

.journey-booking-section {
    padding: 95px 0 125px;
    background: linear-gradient(90deg, rgba(6, 21, 35, .025) 1px, transparent 1px), #f3efe6;
    background-size: 110px 100%
}

.journey-booking-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    align-items: start;
    gap: 28px
}

.journey-booking-sidebar {
    position: sticky;
    top: 95px;
    padding: 25px;
    border: 1px solid rgba(6, 21, 35, .09);
    border-radius: 22px;
    background: rgba(255, 255, 255, .58);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(6, 21, 35, .07)
}

.journey-booking-sidebar>p {
    color: #999;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase
}

.journey-booking-sidebar nav {
    margin-top: 20px;
    display: grid
}

.journey-booking-sidebar nav button {
    position: relative;
    width: 100%;
    padding: 14px 0;
    display: grid;
    grid-template-columns: 38px 1fr 12px;
    align-items: center;
    gap: 11px;
    border: 0;
    border-bottom: 1px solid rgba(6, 21, 35, .08);
    background: 0 0;
    color: #777b7f;
    text-align: left;
    cursor: default
}

.journey-booking-sidebar nav button.is-complete {
    cursor: pointer
}

.journey-booking-sidebar nav button>span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(6, 21, 35, .16);
    border-radius: 50%;
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    transition: .25s ease
}

.journey-booking-sidebar nav strong {
    display: block;
    color: #24282b;
    font-size: 11px
}

.journey-booking-sidebar nav small {
    display: block;
    margin-top: 3px;
    color: #9a9da0;
    font-size: 8px
}

.journey-booking-sidebar nav i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1a341;
    opacity: 0
}

.journey-booking-sidebar nav button.is-active>span {
    border-color: #061523;
    background: #061523;
    color: #fff;
    box-shadow: 0 0 0 5px rgba(6, 21, 35, .08)
}

.journey-booking-sidebar nav button.is-active i {
    opacity: 1;
    animation: journeyStepPulse 1.6s infinite
}

.journey-booking-sidebar nav button.is-complete>span {
    border-color: #d1a341;
    color: #b28235
}

.journey-booking-support {
    margin-top: 24px;
    padding: 17px;
    border-radius: 15px;
    background: #061523;
    color: #fff
}

.journey-booking-support small,
.journey-booking-support span {
    display: block;
    color: rgba(255, 255, 255, .48);
    font-size: 8px
}

.journey-booking-support a {
    display: block;
    margin: 7px 0;
    color: #e5c78f;
    text-decoration: none;
    font-size: 13px
}

.journey-booking-card {
    overflow: hidden;
    border: 1px solid rgba(6, 21, 35, .09);
    border-radius: 26px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 32px 85px rgba(6, 21, 35, .1)
}

.journey-booking-card-head {
    min-height: 102px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(6, 21, 35, .09);
    background: rgba(255, 255, 255, .72)
}

.journey-booking-card-head span {
    color: #b28235;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.journey-booking-card-head h2 {
    margin-top: 7px;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(34px, 3.5vw, 50px);
    font-weight: 400;
    line-height: 1
}

.journey-booking-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: 8px;
    text-transform: uppercase
}

.journey-booking-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3fc878;
    animation: journeyLive 1.8s infinite
}

#journey-booking-form {
    padding: 30px
}

.journey-form-step {
    display: none;
    animation: journeyStepIn .48s cubic-bezier(.16, .84, .24, 1)
}

.journey-form-step.is-active {
    display: block
}

.journey-trip-type {
    margin-bottom: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px
}

.journey-trip-type input {
    position: absolute;
    opacity: 0
}

.journey-trip-type span {
    min-height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(6, 21, 35, .12);
    border-radius: 13px;
    color: #666b6f;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease
}

.journey-trip-type input:checked+span {
    border-color: #061523;
    background: #061523;
    color: #fff;
    box-shadow: 0 12px 28px rgba(6, 21, 35, .12)
}

.journey-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px
}

.journey-form-grid-top {
    margin-top: 22px
}

.journey-field {
    display: grid;
    gap: 8px
}

.journey-field-wide {
    grid-column: 1/-1
}

.journey-field>span {
    color: #85898c;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase
}

.journey-field>span small {
    color: #b0b2b4;
    font-weight: 400
}

.journey-field>div {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    border: 1px solid rgba(6, 21, 35, .11);
    border-radius: 13px;
    background: rgba(255, 255, 255, .78);
    transition: .22s ease
}

.journey-field>div:focus-within {
    border-color: #b28235;
    box-shadow: 0 0 0 4px rgba(178, 130, 53, .08)
}

.journey-field>div b {
    display: grid;
    place-items: center;
    color: #b28235;
    font-family: 'DM Mono', monospace;
    font-size: 9px
}

.journey-field input,
.journey-field textarea {
    width: 100%;
    min-height: 49px;
    padding: 0 14px;
    border: 1px solid rgba(6, 21, 35, .11);
    border-radius: 13px;
    outline: 0;
    background: rgba(255, 255, 255, .78);
    color: #151719;
    font-size: 12px;
    transition: .22s ease
}

.journey-field>div input {
    border: 0;
    background: 0 0
}

.journey-field textarea {
    padding-block: 14px;
    resize: vertical
}

.journey-field input:focus,
.journey-field textarea:focus {
    border-color: #b28235;
    box-shadow: 0 0 0 4px rgba(178, 130, 53, .08)
}

.journey-checkbox {
    margin-top: 22px;
    padding: 16px;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 13px;
    border: 1px solid rgba(6, 21, 35, .09);
    border-radius: 14px;
    background: rgba(243, 239, 230, .55)
}

.journey-checkbox-top {
    margin-top: 24px
}

.journey-checkbox input {
    margin-top: 3px;
    accent-color: #061523
}

.journey-checkbox strong {
    display: block;
    font-size: 11px
}

.journey-checkbox small {
    display: block;
    margin-top: 5px;
    color: #85898d;
    font-size: 9px;
    line-height: 1.5
}

.journey-counter-grid {
    display: grid;
    gap: 13px
}

.journey-counter-card {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(6, 21, 35, .09);
    border-radius: 15px;
    background: rgba(255, 255, 255, .68)
}

.journey-counter-card span {
    display: block;
    font-size: 12px;
    font-weight: 700
}

.journey-counter-card small {
    display: block;
    margin-top: 5px;
    color: #929598;
    font-size: 9px
}

.journey-counter {
    display: grid;
    grid-template-columns: 38px 45px 38px;
    align-items: center;
    border: 1px solid rgba(6, 21, 35, .12);
    border-radius: 999px;
    overflow: hidden
}

.journey-counter button {
    height: 38px;
    border: 0;
    background: 0 0;
    color: #061523;
    font-size: 18px;
    cursor: pointer
}

.journey-counter button:hover {
    background: #061523;
    color: #fff
}

.journey-counter input {
    width: 45px;
    height: 38px;
    border: 0;
    outline: 0;
    background: 0 0;
    text-align: center;
    appearance: textfield
}

.journey-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px
}

.journey-vehicle-option {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-rows: 155px auto;
    border: 1px solid rgba(6, 21, 35, .1);
    border-radius: 18px;
    background: rgba(255, 255, 255, .7);
    cursor: pointer;
    transition: .3s ease
}

.journey-vehicle-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(6, 21, 35, .1)
}

.journey-vehicle-option input {
    position: absolute;
    opacity: 0
}

.journey-vehicle-image {
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #e9e5dc
}

.journey-vehicle-image img {
    width: 92%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 14px rgba(6, 13, 19, .2));
    transition: transform .4s ease
}

.journey-vehicle-option:hover img {
    transform: translateY(-4px) scale(1.035)
}

.journey-vehicle-copy {
    padding: 17px;
    display: grid;
    gap: 5px
}

.journey-vehicle-copy small {
    color: #b28235;
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    text-transform: uppercase
}

.journey-vehicle-copy strong {
    font-size: 14px
}

.journey-vehicle-copy em {
    color: #898d90;
    font-size: 9px;
    font-style: normal
}

.journey-vehicle-option>i {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(6, 21, 35, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .75)
}

.journey-vehicle-option input:checked~i {
    border: 6px solid #061523;
    background: #d1a341
}

.journey-vehicle-option:has(input:checked) {
    border-color: #061523;
    box-shadow: 0 0 0 3px rgba(6, 21, 35, .07)
}

.journey-review-banner {
    padding: 18px;
    border-radius: 15px;
    color: #fff;
    background: #061523
}

.journey-review-banner span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e5c78f;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    text-transform: uppercase
}

.journey-review-banner i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3fc878;
    animation: journeyLive 1.8s infinite
}

.journey-review-banner p {
    margin-top: 9px;
    color: rgba(255, 255, 255, .56);
    font-size: 10px
}

.journey-review-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px
}

.journey-review-grid article {
    padding: 17px;
    display: grid;
    gap: 7px;
    border: 1px solid rgba(6, 21, 35, .09);
    border-radius: 14px;
    background: rgba(255, 255, 255, .66)
}

.journey-review-grid span {
    color: #999;
    font-size: 7px;
    text-transform: uppercase
}

.journey-review-grid strong {
    font-size: 12px;
    line-height: 1.4
}

.journey-review-grid small {
    color: #898d90;
    font-size: 9px
}

.journey-booking-error {
    min-height: 18px;
    margin-top: 15px;
    color: #a53d3d;
    font-size: 10px
}

.journey-booking-controls {
    margin-top: 14px;
    padding-top: 22px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    border-top: 1px solid rgba(6, 21, 35, .09)
}

.journey-booking-back,
.journey-booking-next,
.journey-booking-submit {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease
}

.journey-booking-back {
    border: 1px solid rgba(6, 21, 35, .14);
    background: 0 0;
    color: #555
}

.journey-booking-back:disabled {
    opacity: .35;
    cursor: default
}

.journey-booking-next,
.journey-booking-submit {
    border: 0;
    background: #061523;
    color: #fff
}

.journey-booking-next:hover,
.journey-booking-submit:hover {
    background: #d1a341;
    color: #061523;
    transform: translateY(-2px)
}

.journey-booking-submit {
    display: none
}

.journey-booking-progress {
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(6, 21, 35, .09)
}

.journey-booking-progress i {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #b28235, #e5c78f);
    transition: width .4s ease
}

.journey-booking-success {
    padding: 65px 35px;
    text-align: center
}

.journey-success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #061523;
    color: #e5c78f;
    font-size: 26px;
    box-shadow: 0 0 0 9px rgba(6, 21, 35, .07)
}

.journey-booking-success p {
    color: #b28235;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    text-transform: uppercase
}

.journey-booking-success h2 {
    max-width: 650px;
    margin: 15px auto 0;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 400;
    line-height: 1
}

.journey-booking-success small {
    max-width: 650px;
    margin: 18px auto 0;
    display: block;
    color: #85898d;
    line-height: 1.65
}

.journey-booking-success a {
    margin-top: 25px;
    padding: 13px 19px;
    display: inline-flex;
    border-radius: 999px;
    background: #061523;
    color: #fff;
    text-decoration: none;
    font-size: 10px
}

@keyframes journeyOrbit {
    to {
        transform: rotate(360deg)
    }
}

@keyframes journeyFloat {
    to {
        transform: translate3d(35px, -22px, 0) scale(1.08)
    }
}

@keyframes journeyLive {
    from {
        box-shadow: 0 0 0 0 rgba(63, 200, 120, .55)
    }

    to {
        box-shadow: 0 0 0 9px rgba(63, 200, 120, 0)
    }
}

@keyframes journeyStepPulse {
    from {
        box-shadow: 0 0 0 0 rgba(209, 163, 65, .55)
    }

    to {
        box-shadow: 0 0 0 8px rgba(209, 163, 65, 0)
    }
}

@keyframes journeyStepIn {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:1000px) {
    .journey-booking-layout {
        grid-template-columns: 1fr
    }

    .journey-booking-sidebar {
        position: static;
        padding: 18px
    }

    .journey-booking-sidebar>p,
    .journey-booking-support {
        display: none
    }

    .journey-booking-sidebar nav {
        margin-top: 0;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 5px
    }

    .journey-booking-sidebar nav button {
        padding: 9px 4px;
        grid-template-columns: 1fr;
        justify-items: center;
        border-bottom: 0;
        border-radius: 12px;
        text-align: center
    }

    .journey-booking-sidebar nav button>div,
    .journey-booking-sidebar nav button>i {
        display: none
    }
}

@media (max-width:700px) {
    .journey-booking-main {
        padding-top: 68px
    }

    .journey-booking-hero {
        min-height: 0
    }

    .journey-booking-hero-inner {
        padding: 28px 0 32px
    }

    .journey-booking-hero h1 {
        font-size: clamp(38px, 11vw, 52px);
        line-height: .92
    }

    .journey-booking-hero h1 em {
        margin-top: 10px;
        font-size: .58em
    }

    .journey-booking-hero-inner>p:not(.journey-booking-kicker) {
        margin-top: 11px;
        font-size: 13px;
        line-height: 1.55
    }

    .journey-booking-trust {
        margin-top: 13px;
        gap: 10px 18px
    }

    .journey-booking-section {
        padding: 28px 0 55px;
        background-size: 65px 100%
    }

    .journey-booking-layout {
        gap: 12px
    }

    .journey-booking-sidebar {
        padding: 9px;
        border-radius: 16px;
        overflow-x: auto
    }

    .journey-booking-sidebar nav {
        min-width: 330px
    }

    .journey-booking-sidebar nav button>span {
        width: 29px;
        height: 29px
    }

    .journey-booking-card {
        border-radius: 18px
    }

    .journey-booking-card-head {
        min-height: 82px;
        padding: 18px
    }

    .journey-booking-card-head h2 {
        font-size: 32px
    }

    .journey-booking-live {
        display: none
    }

    #journey-booking-form {
        padding: 18px
    }

    .journey-trip-type {
        margin-bottom: 20px;
        grid-template-columns: 1fr;
        gap: 7px
    }

    .journey-trip-type span {
        min-height: 42px
    }

    .journey-form-grid {
        grid-template-columns: 1fr;
        gap: 13px
    }

    .journey-field-wide {
        grid-column: auto
    }

    .journey-counter-card {
        align-items: flex-start;
        flex-direction: column
    }

    .journey-counter {
        align-self: flex-end
    }

    .journey-vehicle-grid {
        grid-template-columns: 1fr
    }

    .journey-vehicle-option {
        grid-template-columns: 120px 1fr;
        grid-template-rows: 115px
    }

    .journey-vehicle-copy {
        align-content: center
    }

    .journey-review-grid {
        grid-template-columns: 1fr
    }

    .journey-booking-controls {
        grid-template-columns: auto 1fr;
        gap: 10px
    }

    .journey-booking-progress {
        grid-column: 1/-1;
        grid-row: 1
    }

    .journey-booking-back {
        grid-column: 1;
        grid-row: 2
    }

    .journey-booking-next,
    .journey-booking-submit {
        grid-column: 2;
        grid-row: 2
    }
}

@media (max-width:420px) {
    .journey-booking-hero-inner {
        padding: 24px 0 28px
    }

    .journey-booking-section {
        padding-top: 20px
    }

    .journey-booking-card-head h2 {
        font-size: 28px
    }

    #journey-booking-form {
        padding: 14px
    }

    .journey-vehicle-option {
        grid-template-columns: 105px 1fr
    }

    .journey-booking-back,
    .journey-booking-next,
    .journey-booking-submit {
        padding-inline: 13px;
        gap: 10px
    }
}

@media (prefers-reduced-motion:reduce) {

    .journey-booking-live i,
    .journey-booking-sidebar nav button.is-active i,
    .journey-booking-trust i,
    .journey-review-banner i {
        animation: none !important
    }

    .journey-form-step {
        animation: none !important
    }
}

.journey-booking-success {
    padding: clamp(24px, 4vw, 48px);
    background: #fff
}

.journey-success-top {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 22px;
    align-items: start
}

.journey-success-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(63, 200, 120, .13);
    color: #15934d;
    font-size: 32px;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(21, 147, 77, .18)
}

.journey-success-top p {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase
}

.journey-success-top h2 {
    max-width: 720px;
    font-family: Manrope, sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -3px
}

.journey-success-top small {
    max-width: 700px;
    margin-top: 16px;
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75
}

.journey-success-reference {
    margin-top: 32px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(199, 155, 85, .3);
    border-radius: 16px;
    background: #fbf8f2
}

.journey-success-reference span {
    color: #777;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase
}

.journey-success-reference strong {
    color: var(--ink);
    font-family: 'DM Mono', monospace;
    font-size: 16px
}

.journey-success-reference button {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer
}

.journey-success-summary {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden
}

.journey-success-summary article {
    min-width: 0;
    padding: 22px;
    display: grid;
    gap: 7px;
    background: #fff
}

.journey-success-summary article:not(:last-child) {
    border-right: 1px solid var(--line)
}

.journey-success-summary span {
    color: #999;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase
}

.journey-success-summary strong {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.journey-success-summary small {
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.journey-success-next {
    margin-top: 28px;
    padding: 28px;
    border-radius: 18px;
    background: var(--ink);
    color: #fff
}

.journey-success-next h3 {
    margin-bottom: 20px;
    font-size: 19px
}

.journey-success-next ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    list-style: none
}

.journey-success-next li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start
}

.journey-success-next li>b {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-size: 12px
}

.journey-success-next li span {
    display: grid;
    gap: 5px
}

.journey-success-next li strong {
    font-size: 12px
}

.journey-success-next li small {
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    line-height: 1.55
}

.journey-success-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px
}

.journey-success-actions a,
.journey-success-actions button {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer
}

.journey-success-primary {
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff
}

.journey-success-secondary {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink)
}

.journey-success-home {
    margin-left: auto;
    color: var(--muted)
}

@media (max-width:760px) {
    .journey-success-top {
        grid-template-columns: 54px 1fr;
        gap: 15px
    }

    .journey-success-icon {
        width: 54px;
        height: 54px;
        font-size: 25px
    }

    .journey-success-top h2 {
        font-size: 35px;
        letter-spacing: -2px
    }

    .journey-success-reference {
        grid-template-columns: 1fr auto
    }

    .journey-success-reference span {
        grid-column: 1/-1
    }

    .journey-success-next ol,
    .journey-success-summary {
        grid-template-columns: 1fr
    }

    .journey-success-summary article:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .journey-success-home {
        width: 100%;
        margin-left: 0
    }
}

.car-search-intro {
    margin-bottom: 26px
}

.car-search-kicker {
    display: block;
    margin-bottom: 9px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase
}

.car-search-intro h3 {
    max-width: 720px;
    font-family: Manrope, sans-serif;
    font-size: clamp(27px, 3vw, 40px);
    line-height: 1.05;
    letter-spacing: -1.7px
}

.car-search-intro p {
    max-width: 720px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75
}

.car-search-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px
}

.car-search-grid .journey-field select {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(18, 20, 22, .11);
    border-radius: 12px;
    outline: 0;
    background: #fff;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    appearance: none
}

.car-search-grid .journey-field select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(199, 155, 85, .1)
}

.car-availability-button {
    min-width: 220px;
    min-height: 50px;
    margin-top: 20px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, opacity .2s ease
}

.car-availability-button:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px)
}

.car-availability-button:disabled {
    cursor: wait;
    opacity: .75
}

.car-availability-button.is-searching b {
    animation: availabilityArrow 1s ease-in-out infinite alternate
}

@keyframes availabilityArrow {
    to {
        transform: translateX(5px)
    }
}

.car-search-message {
    min-height: 0;
    margin-top: 16px;
    padding: 0;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.55
}

.car-search-message.is-error,
.car-search-message.is-success {
    min-height: 44px;
    padding: 12px 14px
}

.car-search-message.is-error {
    border: 1px solid rgba(190, 52, 52, .17);
    background: rgba(190, 52, 52, .06);
    color: #9f2929
}

.car-search-message.is-success {
    border: 1px solid rgba(21, 147, 77, .17);
    background: rgba(21, 147, 77, .07);
    color: #11733d
}

.car-availability-result {
    margin-top: 22px;
    overflow: hidden;
    border: 1px solid rgba(18, 20, 22, .1);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(8, 10, 12, .08)
}

.car-result-status {
    min-height: 54px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(18, 20, 22, .08);
    background: #f7fbf8
}

.car-result-status>span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #11733d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase
}

.car-result-status>span i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(63, 200, 120, .11)
}

.car-result-status small {
    color: var(--muted);
    font-size: 11px
}

.car-result-layout {
    display: grid;
    grid-template-columns: minmax(280px, .95fr) 1.05fr
}

.car-result-image {
    min-height: 330px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, #ede9df, #f7f5f0)
}

.car-result-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px
}

.car-result-content {
    padding: clamp(24px, 4vw, 38px)
}

.car-result-content>small {
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase
}

.car-result-content h3 {
    margin-top: 8px;
    font-family: Manrope, sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    letter-spacing: -2px
}

.car-result-content>p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7
}

.car-result-specs {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(18, 20, 22, .09);
    border-radius: 14px
}

.car-result-specs div {
    padding: 14px
}

.car-result-specs div+div {
    border-left: 1px solid rgba(18, 20, 22, .09)
}

.car-result-specs span {
    display: block;
    margin-bottom: 5px;
    color: #8f9295;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase
}

.car-result-specs strong {
    font-size: 12px
}

.car-result-features {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.car-result-features span {
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--cream);
    color: #55595d;
    font-size: 10px;
    font-weight: 700
}

.car-select-button {
    min-height: 48px;
    margin-top: 22px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    border: 0;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease
}

.car-select-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 30px rgba(199, 155, 85, .23)
}

.review-selected-car,
.selected-car-mini,
.success-car-card {
    display: grid;
    grid-template-columns: 105px 1fr auto;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(18, 20, 22, .1);
    border-radius: 16px;
    background: #fff
}

.selected-car-mini {
    margin-bottom: 24px;
    padding: 10px 14px 10px 10px;
    background: #faf8f3
}

.review-selected-car img,
.selected-car-mini img,
.success-car-card img {
    width: 105px;
    height: 72px;
    object-fit: contain;
    border-radius: 11px;
    background: #eeeae1
}

.review-selected-car div,
.selected-car-mini div,
.success-car-card div {
    min-width: 0
}

.review-selected-car span,
.selected-car-mini span,
.success-car-card span {
    display: block;
    margin-bottom: 4px;
    color: var(--gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase
}

.review-selected-car strong,
.selected-car-mini strong,
.success-car-card strong {
    display: block;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.review-selected-car small,
.selected-car-mini small,
.success-car-card small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px
}

.selected-car-mini button {
    padding: 8px 11px;
    border: 1px solid rgba(18, 20, 22, .12);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    font-size: 9px;
    font-weight: 800
}

.passenger-capacity-note {
    margin-top: 15px;
    padding: 12px 14px;
    border: 1px solid rgba(199, 155, 85, .18);
    border-radius: 12px;
    background: rgba(199, 155, 85, .07);
    color: #68605a;
    font-size: 11px;
    line-height: 1.55
}

.review-selected-car {
    margin: 22px 0;
    padding: 12px;
    grid-template-columns: 125px 1fr;
    background: #faf8f3
}

.review-selected-car img {
    width: 125px;
    height: 82px
}

.success-car-card {
    margin-top: 24px;
    padding: 13px;
    grid-template-columns: 120px 1fr auto;
    background: #faf8f3
}

.success-car-card img {
    width: 120px;
    height: 84px
}

.success-car-card>b {
    padding: 8px 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    background: rgba(21, 147, 77, .09);
    color: #11733d;
    font-size: 9px;
    text-transform: uppercase
}

.success-car-card>b i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green)
}

@media (max-width:760px) {

    .car-result-layout,
    .car-search-grid {
        grid-template-columns: 1fr
    }

    .car-result-image {
        min-height: 235px
    }

    .car-result-status {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px
    }

    .selected-car-mini,
    .success-car-card {
        grid-template-columns: 88px 1fr
    }

    .selected-car-mini img,
    .success-car-card img {
        width: 88px;
        height: 64px
    }

    .selected-car-mini button,
    .success-car-card>b {
        grid-column: 1/-1;
        justify-self: start
    }

    .review-selected-car {
        grid-template-columns: 100px 1fr
    }

    .review-selected-car img {
        width: 100px;
        height: 72px
    }
}

@media (max-width:480px) {
    .car-result-specs {
        grid-template-columns: 1fr
    }

    .car-result-specs div+div {
        border-left: 0;
        border-top: 1px solid rgba(18, 20, 22, .09)
    }

    .car-availability-button,
    .car-select-button {
        width: 100%
    }
}

.booking-page-modern {
    --form-radius: 18px;
    --form-soft-shadow: 0 18px 50px rgba(8, 10, 12, .08);
    --form-deep-shadow: 0 30px 85px rgba(8, 10, 12, .13)
}

.journey-booking-card {
    --spot-x: 50%;
    --spot-y: 20%;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    box-shadow: var(--form-deep-shadow);
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease
}

.journey-booking-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(420px circle at var(--spot-x) var(--spot-y), rgba(199, 155, 85, .1), transparent 42%);
    opacity: .8
}

.journey-booking-card:hover {
    box-shadow: 0 36px 95px rgba(8, 10, 12, .16)
}

.journey-booking-card-head {
    position: relative;
    overflow: hidden
}

.journey-booking-card-head::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 155, 85, .65), transparent);
    transform: translateX(-100%);
    animation: bookingHeadSweep 5.5s ease-in-out infinite
}

@keyframes bookingHeadSweep {

    0%,
    55% {
        transform: translateX(-100%)
    }

    100%,
    78% {
        transform: translateX(100%)
    }
}

.journey-booking-card-head h2 {
    transition: transform .35s ease, letter-spacing .35s ease
}

.journey-booking-card:hover .journey-booking-card-head h2 {
    transform: translateX(3px)
}

.journey-booking-sidebar nav button {
    position: relative;
    overflow: hidden;
    transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease
}

.journey-booking-sidebar nav button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .55) 50%, transparent 65%);
    transform: translateX(-130%);
    transition: transform .65s ease;
    pointer-events: none
}

.journey-booking-sidebar nav button:hover::before {
    transform: translateX(130%)
}

.journey-booking-sidebar nav button:hover {
    transform: translateX(4px)
}

.journey-booking-sidebar nav button.is-active {
    box-shadow: 0 12px 28px rgba(8, 10, 12, .08)
}

.form-animate-in {
    opacity: 0;
    transform: translateY(14px);
    animation: formRiseIn .62s cubic-bezier(.2, .8, .2, 1) forwards
}

.form-delay-1 {
    animation-delay: .08s
}

.form-delay-2 {
    animation-delay: .16s
}

@keyframes formRiseIn {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.journey-form-step.is-active .journey-checkbox,
.journey-form-step.is-active .journey-counter-card,
.journey-form-step.is-active .journey-field,
.journey-form-step.is-active .review-selected-car {
    animation: fieldCascade .48s cubic-bezier(.2, .8, .2, 1) both
}

.journey-form-step.is-active .journey-counter-card:nth-child(2),
.journey-form-step.is-active .journey-field:nth-child(2) {
    animation-delay: .05s
}

.journey-form-step.is-active .journey-counter-card:nth-child(3),
.journey-form-step.is-active .journey-field:nth-child(3) {
    animation-delay: .1s
}

.journey-form-step.is-active .journey-field:nth-child(4) {
    animation-delay: .15s
}

@keyframes fieldCascade {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.99)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.journey-field.modern-field {
    position: relative;
    padding: 13px 14px 10px;
    border: 1px solid rgba(18, 20, 22, .1);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 249, 246, .96));
    box-shadow: 0 8px 24px rgba(8, 10, 12, .035);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease
}

.journey-field.modern-field:hover {
    transform: translateY(-2px);
    border-color: rgba(199, 155, 85, .3);
    box-shadow: 0 12px 30px rgba(8, 10, 12, .06)
}

.journey-field.modern-field.is-focused {
    transform: translateY(-2px);
    border-color: rgba(199, 155, 85, .75);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(199, 155, 85, .1), 0 14px 35px rgba(8, 10, 12, .07)
}

.journey-field.modern-field>span {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 7px;
    color: #8b8d90;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.15px;
    text-transform: uppercase;
    transition: color .24s ease, transform .24s ease
}

.journey-field.modern-field.has-value>span,
.journey-field.modern-field.is-focused>span {
    color: var(--gold);
    transform: translateX(2px)
}

.journey-field.modern-field input,
.journey-field.modern-field select,
.journey-field.modern-field textarea {
    width: 100%;
    border: 0 !important;
    outline: 0 !important;
    background: 0 0 !important;
    box-shadow: none !important;
    color: var(--text)
}

.journey-field.modern-field input::placeholder,
.journey-field.modern-field textarea::placeholder {
    color: #b0b2b4;
    transition: opacity .2s ease, transform .2s ease
}

.journey-field.modern-field.is-focused input::placeholder,
.journey-field.modern-field.is-focused textarea::placeholder {
    opacity: .65;
    transform: translateX(3px)
}

.journey-field.modern-field::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(.2, .8, .2, 1)
}

.journey-field.modern-field.is-focused::after {
    transform: scaleX(1)
}

.car-search-intro h3,
.journey-booking-card-head h2,
.journey-review-banner p {
    text-wrap: balance
}

.car-search-intro h3 {
    background: linear-gradient(95deg, #121416 0, #121416 55%, #8c6b35 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.car-availability-button,
.car-select-button,
.journey-booking-back,
.journey-booking-next,
.journey-booking-submit {
    position: relative;
    overflow: hidden;
    isolation: isolate
}

.car-availability-button::before,
.car-select-button::before,
.journey-booking-next::before,
.journey-booking-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, .26) 45%, transparent 63%);
    transform: translateX(-135%);
    transition: transform .7s ease
}

.car-availability-button:hover::before,
.car-select-button:hover::before,
.journey-booking-next:hover::before,
.journey-booking-submit:hover::before {
    transform: translateX(135%)
}

.car-availability-button b,
.car-select-button span,
.journey-booking-next span,
.journey-booking-submit span {
    transition: transform .22s ease
}

.car-availability-button:hover b,
.car-select-button:hover span,
.journey-booking-next:hover span,
.journey-booking-submit:hover span {
    transform: translateX(4px)
}

.car-availability-result:not([hidden]) {
    animation: resultReveal .58s cubic-bezier(.16, .84, .32, 1) both
}

@keyframes resultReveal {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.985);
        filter: blur(4px)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0)
    }
}

.car-result-image img {
    transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .5s ease
}

.car-availability-result:hover .car-result-image img {
    transform: scale(1.035) translateY(-2px)
}

.car-result-specs div {
    transition: background .22s ease, transform .22s ease
}

.car-result-specs div:hover {
    background: rgba(199, 155, 85, .06);
    transform: translateY(-2px)
}

.car-result-features span {
    transition: transform .2s ease, background .2s ease
}

.car-result-features span:hover {
    transform: translateY(-2px);
    background: rgba(199, 155, 85, .12)
}

.journey-counter-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.journey-counter-card:hover {
    transform: translateY(-3px);
    border-color: rgba(199, 155, 85, .26);
    box-shadow: var(--form-soft-shadow)
}

.journey-counter button {
    transition: transform .16s ease, background .16s ease
}

.journey-counter button:hover {
    transform: scale(1.08)
}

.journey-counter button:active {
    transform: scale(.94)
}

.journey-checkbox {
    border-radius: 15px;
    transition: transform .22s ease, background .22s ease, border-color .22s ease
}

.journey-checkbox:hover {
    transform: translateY(-2px);
    border-color: rgba(199, 155, 85, .28);
    background: rgba(199, 155, 85, .035)
}

.journey-checkbox input {
    accent-color: var(--gold)
}

.review-selected-car,
.selected-car-mini,
.success-car-card {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease
}

.review-selected-car:hover,
.selected-car-mini:hover,
.success-car-card:hover {
    transform: translateY(-3px);
    border-color: rgba(199, 155, 85, .28);
    box-shadow: 0 16px 38px rgba(8, 10, 12, .07)
}

.review-selected-car img,
.selected-car-mini img,
.success-car-card img {
    transition: transform .45s ease
}

.review-selected-car:hover img,
.selected-car-mini:hover img,
.success-car-card:hover img {
    transform: scale(1.05)
}

.journey-review-grid article {
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.journey-review-grid article::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    top: -35px;
    right: -35px;
    border-radius: 50%;
    background: rgba(199, 155, 85, .08);
    transition: transform .35s ease
}

.journey-review-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(199, 155, 85, .26);
    box-shadow: 0 14px 34px rgba(8, 10, 12, .06)
}

.journey-review-grid article:hover::after {
    transform: scale(1.5)
}

.journey-booking-progress {
    overflow: hidden
}

.journey-booking-progress i {
    position: relative;
    transition: width .55s cubic-bezier(.2, .8, .2, 1)
}

.journey-booking-progress i::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: progressShine 1.8s linear infinite
}

@keyframes progressShine {
    from {
        transform: translateX(-100%)
    }

    to {
        transform: translateX(100%)
    }
}

.journey-booking-success:not([hidden]) {
    animation: successReveal .7s cubic-bezier(.16, .84, .32, 1) both
}

@keyframes successReveal {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.985)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.journey-success-icon {
    animation: successPop .65s cubic-bezier(.2, 1.4, .4, 1) both
}

@keyframes successPop {
    0% {
        transform: scale(.3) rotate(-10deg);
        opacity: 0
    }

    70% {
        transform: scale(1.08) rotate(2deg);
        opacity: 1
    }

    100% {
        transform: scale(1) rotate(0)
    }
}

@media (max-width:760px) {
    .journey-field.modern-field {
        padding: 12px 12px 9px
    }

    .journey-booking-card:hover {
        transform: none
    }
}

@media (hover:none) {

    .journey-booking-card:hover,
    .journey-checkbox:hover,
    .journey-counter-card:hover,
    .journey-field.modern-field:hover,
    .journey-review-grid article:hover,
    .review-selected-car:hover,
    .selected-car-mini:hover,
    .success-car-card:hover {
        transform: none
    }
}

@media (prefers-reduced-motion:reduce) {

    .car-availability-result:not([hidden]),
    .form-animate-in,
    .journey-booking-success:not([hidden]),
    .journey-form-step.is-active .journey-checkbox,
    .journey-form-step.is-active .journey-counter-card,
    .journey-form-step.is-active .journey-field,
    .journey-form-step.is-active .review-selected-car,
    .journey-success-icon {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important
    }

    .journey-booking-card-head::after,
    .journey-booking-progress i::after {
        animation: none !important
    }
}

.hero-section {
    min-height: 770px;
    padding-top: 76px;
    overflow: hidden;
    color: var(--text);
    background: radial-gradient(circle at 92% 10%, rgba(199, 155, 85, .09), transparent 28%), linear-gradient(180deg, #fff 0, #fdfcf9 100%)
}

.hero-section::after {
    content: '';
    position: absolute;
    right: -170px;
    top: -250px;
    width: 470px;
    height: 820px;
    border: 1px solid rgba(199, 155, 85, .1);
    border-radius: 50%;
    transform: rotate(12deg);
    pointer-events: none;
    z-index: -1
}

.hero-noise {
    opacity: .025
}

.shape-one {
    border-color: rgba(199, 155, 85, .08)
}

.shape-two {
    opacity: .35
}

.ambient-lines {
    opacity: .09
}

.hero-grid {
    min-height: 690px;
    grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr);
    align-items: center;
    gap: clamp(55px, 5vw, 90px);
    padding-top: 10px;
    padding-bottom: 24px
}

.hero-copy {
    padding-bottom: 0
}

.hero-eyebrow {
    margin-bottom: 24px;
    color: #b67822;
    font-size: 10px;
    letter-spacing: 2.4px
}

.eyebrow-line {
    width: 38px;
    background: #d7a446
}

.hero-title {
    max-width: 600px;
    color: #07090b;
    font-family: Manrope, sans-serif;
font-size: clamp(54px, 5.2vw, 86px);
    font-weight: 600;
    line-height: .92;
    letter-spacing: -6px
}

.hero-title em {
    display: block;
    margin-top: 26px;
    color: #cb9038;
    font-family: 'Playfair Display', serif;
    font-size: .70em;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2.6px;
}

.hero-description {
    max-width: 590px;
    margin-top: 28px;
    color: #777c81;
    font-size: 15px;
    line-height: 1.8
}

.hero-booking-card {
    position: relative;
    z-index: 8;
    width: min(100%, 610px);
    margin-top: 30px
}

.hero-booking-card .booking-bar {
    min-height: 0;
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    border: 1px solid rgba(15, 17, 20, .06);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 50px rgba(25, 28, 32, .1);
    backdrop-filter: blur(16px)
}

.hero-booking-card .booking-field {
    min-width: 0;
    min-height: 78px;
    padding: 10px 14px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border: 1px solid #e8e5df;
    border-radius: 16px;
    background: #fbfaf7;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease
}

.hero-booking-card .booking-field:first-child {
    padding-left: 14px
}

.hero-booking-card .booking-field:focus-within,
.hero-booking-card .booking-field:hover {
    border-color: rgba(199, 155, 85, .52);
    box-shadow: 0 8px 22px rgba(25, 28, 32, .06);
    transform: translateY(-1px)
}

.hero-booking-card .booking-field-icon {
    width: 38px;
    height: 38px;
    margin: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(199, 155, 85, .3);
    border-radius: 11px;
    background: #fff;
    color: #c98f36
}

.hero-booking-card .booking-field-icon svg {
    width: 17px;
    height: 17px
}

.hero-booking-card .booking-field-content {
    min-width: 0;
    display: block
}

.hero-booking-card .booking-field>span,
.hero-booking-card .booking-field-label {
    margin-bottom: 5px;
    color: #a2a4a7;
    font-size: 7px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1.2px;
    text-transform: uppercase
}

.hero-booking-card .booking-field input,
.hero-booking-card .booking-field select {
    width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    outline: 0;
    background: 0 0;
    color: #222528;
    font-size: 12px;
    font-weight: 700
}

.hero-booking-card .quote-btn {
    grid-column: 1/-1;
    width: 100%;
    min-width: 0;
    height: 58px;
    margin: 0;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, #dfa943, #d4a03d);
    color: #121416;
    box-shadow: 0 10px 24px rgba(199, 155, 85, .2)
}

.hero-booking-card .quote-btn:hover {
    background: linear-gradient(90deg, #e4b14f, #dba642);
    color: #101214
}

.hero-visual {
    padding-bottom: 0;
    align-self: center
}

.vehicle-photo-wrap {
    width: min(100%, 660px)
}

.vehicle-frame {
    overflow: hidden;
    border-radius: 18px;
    background: #d8d9db;
    box-shadow: 0 28px 70px rgba(19, 22, 26, .18)
}

.vehicle-frame::before {
    border-color: rgba(255, 255, 255, .32)
}

.vehicle-photo {
    width: 100%;
    height: 610px;
    object-fit: cover;
    object-position: center center;
    filter: saturate(.78) contrast(1.04)
}

.vehicle-overlay {
    background: linear-gradient(180deg, transparent 58%, rgba(8, 10, 12, .55))
}

.vehicle-tag {
    left: 26px;
    bottom: 20px;
    color: rgba(255, 255, 255, .82);
    font-size: 8px;
    letter-spacing: 1.6px
}

.live-vehicle-card {
    left: -42px;
    bottom: 44px;
    width: 300px;
    padding: 11px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    border: 1px solid rgba(15, 17, 20, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .96);
    color: #202326;
    box-shadow: 0 18px 45px rgba(20, 23, 27, .16)
}

.live-car-picture {
    height: 70px;
    border-radius: 10px
}

.live-car-content strong {
    color: #222528;
    font-size: 12px
}

.live-car-content small {
    color: #999da1
}

.status-label {
    color: #c58d36
}

.route-card {
    top: 28px;
    right: -30px;
    width: 225px;
    padding: 20px;
    border: 1px solid rgba(15, 17, 20, .07);
    border-radius: 17px;
    background: rgba(255, 255, 255, .95);
    color: #222528;
    box-shadow: 0 18px 45px rgba(20, 23, 27, .13)
}

.route-card>span {
    color: #a4a6a9
}

.route-card strong {
    color: #2b2e31
}

.route-line {
    background: #ebe7df
}

.route-line i {
    background: #d5a145
}

.booking-panel-section {
    display: none !important
}

.site-header:not(.is-scrolled) {
    border-bottom-color: rgba(10, 12, 14, .08);
    background: rgba(255, 255, 255, .88)
}

.site-header:not(.is-scrolled) .brand-text {
    color: #111315
}

.site-header:not(.is-scrolled) .header-phone,
.site-header:not(.is-scrolled) .main-nav a {
    color: rgba(18, 20, 22, .68)
}

.site-header:not(.is-scrolled) .main-nav a:hover,
.site-header:not(.is-scrolled) .main-nav a[aria-current=page] {
    color: #111315
}

.site-header:not(.is-scrolled) .header-book-btn {
    border-color: rgba(18, 20, 22, .2);
    color: #111315
}

.site-header:not(.is-scrolled) .mobile-menu-button {
    border-color: rgba(18, 20, 22, .18)
}

.site-header:not(.is-scrolled) .mobile-menu-button span {
    background: #111315
}

@media (max-width:1200px) {
    .hero-grid {
        grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr);
        gap: 42px
    }

    .hero-title {
        font-size: clamp(58px, 6vw, 82px)
    }

    .vehicle-photo {
        height: 560px
    }

    .route-card {
        right: -8px
    }

    .live-vehicle-card {
        left: -20px
    }
}

@media (max-width:980px) {
    .hero-section {
        min-height: auto;
        padding-top: 96px
    }

    .hero-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 54px;
        padding-top: 36px;
        padding-bottom: 70px
    }

    .hero-copy {
        width: min(100%, 680px);
        margin-inline: auto
    }

    .hero-visual {
        width: min(100%, 680px);
        margin-inline: auto;
        justify-content: center
    }

    .vehicle-photo-wrap {
        width: 100%
    }

    .vehicle-photo {
        height: min(72vw, 590px)
    }
}

@media (max-width:640px) {
    .hero-section {
        padding-top: 80px
    }

    .hero-grid {
        gap: 38px;
        padding-top: 24px;
        padding-bottom: 50px
    }

    .hero-eyebrow {
        font-size: 8px;
        letter-spacing: 1.8px
    }

    .hero-title {
        font-size: clamp(48px, 16vw, 68px);
        letter-spacing: -4px
    }

    .hero-title em {
        margin-top: 18px;
        font-size: .6em
    }

    .hero-description {
        margin-top: 22px;
        font-size: 14px
    }

    .hero-booking-card {
        margin-top: 24px
    }

    .hero-booking-card .booking-bar {
        grid-template-columns: 1fr;
        padding: 10px
    }

    .hero-booking-card .quote-btn {
        grid-column: auto;
        height: 54px
    }

    .vehicle-frame {
        border-radius: 16px
    }

    .vehicle-photo {
        height: 118vw;
        max-height: 560px
    }

    .route-card {
        top: 14px;
        right: 10px;
        width: min(190px, 54vw);
        padding: 14px
    }

    .live-vehicle-card {
        left: 10px;
        bottom: 14px;
        width: min(280px, calc(100% - 20px))
    }
}

.hero-copy .hero-booking-card {
    width: min(100%, 620px) !important;
    margin-top: 30px !important
}

.hero-copy .hero-booking-card>.booking-bar {
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 14px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    align-items: stretch !important;
    gap: 10px !important;
    border: 1px solid rgba(20, 22, 24, .055) !important;
    border-radius: 26px !important;
    background: rgba(255, 255, 255, .98) !important;
    box-shadow: 0 20px 55px rgba(20, 22, 25, .11) !important;
    overflow: visible !important
}

.hero-copy .hero-booking-card>.booking-bar>.booking-field,
.hero-copy .hero-booking-card>.booking-bar>.booking-field:first-child {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 80px !important;
    margin: 0 !important;
    padding: 11px 14px !important;
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr) !important;
    grid-template-rows: auto !important;
    align-items: center !important;
    column-gap: 12px !important;
    border: 1px solid #e8e5df !important;
    border-radius: 16px !important;
    background: #fbfaf7 !important;
    overflow: hidden !important
}

.hero-copy .hero-booking-card .booking-field-icon {
    position: static !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    margin: 0 !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid rgba(199, 155, 85, .31) !important;
    border-radius: 11px !important;
    background: #fff !important;
    color: #c98f36 !important
}

.hero-copy .hero-booking-card .booking-field-content {
    min-width: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 6px !important;
    overflow: hidden !important
}

.hero-copy .hero-booking-card .booking-field>.booking-field-content>.booking-field-label {
    width: 100% !important;
    margin: 0 !important;
    display: block !important;
    color: #9da0a4 !important;
    font-size: 7px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 1.15px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important
}

.hero-copy .hero-booking-card .booking-field input,
.hero-copy .hero-booking-card .booking-field select {
    min-width: 0 !important;
    width: 100% !important;
    height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: 0 0 !important;
    color: #24272a !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 20px !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important
}

.hero-copy .hero-booking-card .booking-field select {
    padding-right: 16px !important
}

.hero-copy .hero-booking-card>.booking-bar>.quote-btn {
    grid-column: 1/-1 !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 60px !important;
    margin: 0 !important;
    padding: 0 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #dfa943, #d5a03c) !important;
    color: #121416 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 24px rgba(199, 155, 85, .2) !important
}

.hero-copy .hero-booking-card>.booking-bar>.quote-btn:hover {
    background: linear-gradient(90deg, #e5b34f, #dba744) !important;
    color: #101214 !important
}

@media (max-width:980px) and (min-width:641px) {
    .hero-copy .hero-booking-card {
        width: min(100%, 650px) !important
    }

    .hero-copy .hero-booking-card>.booking-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important
    }
}

@media (max-width:640px) {
    .hero-copy .hero-booking-card>.booking-bar {
        grid-template-columns: 1fr !important;
        gap: 9px !important;
        padding: 10px !important;
        border-radius: 21px !important
    }

    .hero-copy .hero-booking-card>.booking-bar>.booking-field,
    .hero-copy .hero-booking-card>.booking-bar>.booking-field:first-child {
        min-height: 72px !important
    }

    .hero-copy .hero-booking-card>.booking-bar>.quote-btn {
        grid-column: 1 !important;
        height: 56px !important
    }
}

@media (min-width:981px) {
    .hero-section {
        min-height: 770px !important;
        padding-top: 76px !important
    }

    .hero-grid {
        min-height: 690px !important;
        display: grid !important;
        grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr) !important;
        align-items: center !important;
        gap: clamp(55px, 5vw, 90px) !important;
        padding-top: 10px !important;
        padding-bottom: 24px !important
    }

    .hero-copy {
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        padding-bottom: 0 !important;
        text-align: left !important
    }

    .hero-eyebrow {
        justify-content: flex-start !important
    }

    .hero-description,
    .hero-title {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .hero-copy .hero-booking-card>.booking-bar {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important
    }

    .hero-copy .hero-booking-card>.booking-bar>.quote-btn {
        grid-column: 1/-1 !important
    }

    .hero-visual {
        width: auto !important;
        padding-bottom: 0 !important;
        justify-content: flex-end !important
    }

    .vehicle-photo-wrap {
        width: min(100%, 660px) !important;
        max-width: none !important
    }

    .vehicle-photo {
        height: 610px !important;
        object-fit: cover !important
    }

    .route-card,
    .vehicle-overlay,
    .vehicle-tag {
        display: block !important
    }

    .live-vehicle-card {
        position: absolute !important;
        animation: cardFloat 4s ease-in-out infinite !important
    }
}

.business-travel-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0 96px;
    background: #080a0b;
    color: #f5f2ec;
    isolation: isolate
}

.business-travel-section .business-travel-orb,
.business-travel-section::before {
    display: none
}

.business-travel-banner {
    display: grid;
    grid-template-columns: 56% 44%;
    min-height: 320px;
    overflow: hidden;
    border: 1px solid rgba(199, 155, 85, .16);
    background: #090b0c
}

.business-travel-banner-copy {
    min-width: 0;
    padding: 38px 42px 34px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #090b0c
}

.business-travel-section .business-kicker {
    margin: 0 0 24px;
    display: block;
    color: #c79b55;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .03em;
    text-transform: uppercase
}

.business-travel-section .business-kicker::before {
    display: none
}

.business-travel-section .business-kicker span {
    display: none
}

.business-travel-banner-copy h2 {
    max-width: 660px;
    margin: 0;
    color: #f5f2ec;
    font-family: 'Libre Caslon Display', 'Playfair Display', serif;
    font-size: clamp(44px, 4.25vw, 66px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.035em
}

.business-travel-section .business-travel-intro {
    max-width: 620px;
    margin: 25px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 16px;
    line-height: 1.7
}

.business-travel-banner-image {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    background: #121517
}

.business-travel-banner-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 10, 11, .18), transparent 34%), linear-gradient(180deg, transparent 60%, rgba(3, 5, 6, .42));
    pointer-events: none
}

.business-travel-banner-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    transition: transform 1s cubic-bezier(.2, .8, .2, 1)
}

.business-travel-banner:hover .business-travel-banner-image img {
    transform: scale(1.045)
}

.business-banner-caption {
    position: absolute;
    z-index: 2;
    left: 24px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .9);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase
}

.business-banner-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #d2aa69
}

.business-travel-section .business-service-grid {
    margin-top: 74px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: 0 0;
    box-shadow: none;
    backdrop-filter: none
}

.business-travel-section .business-service-card {
    --spot-x: 50%;
    --spot-y: 50%;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    position: relative;
    min-height: 258px;
    padding: 31px 30px 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, .08);
    background: #111315;
    color: #f5f2ec;
    transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    transition: transform .22s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease
}

.business-travel-section .business-service-card:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, .08)
}

.business-travel-section .business-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(290px circle at var(--spot-x) var(--spot-y), rgba(199, 155, 85, .17), transparent 66%);
    transition: opacity .3s ease
}

.business-travel-section .business-service-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #c79b55, #e5c78f);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1)
}

.business-travel-section .business-service-card:hover {
    z-index: 2;
    background: #171a1c;
    border-color: rgba(199, 155, 85, .28);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .32)
}

.business-travel-section .business-service-card:hover::before {
    opacity: 1
}

.business-travel-section .business-service-card:hover::after {
    transform: scaleX(1)
}

.business-card-top {
    position: relative;
    z-index: 2;
    min-height: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transform: translateZ(24px)
}

.business-travel-section .business-card-number {
    color: #d2aa69;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .02em
}

.business-card-line {
    width: 32px;
    height: 1px;
    margin-left: auto;
    background: rgba(255, 255, 255, .08);
    transition: width .35s ease, background .35s ease
}

.business-service-card:hover .business-card-line {
    width: 48px;
    background: rgba(199, 155, 85, .55)
}

.business-travel-section .business-card-content {
    position: relative;
    z-index: 2;
    margin: 31px 0 0;
    padding: 0;
    transform: translateZ(30px)
}

.business-travel-section .business-card-content h3 {
    max-width: 260px;
    margin: 0 0 13px;
    color: #f5f2ec;
    font-family: 'Libre Caslon Display', 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.015em
}

.business-travel-section .business-card-content p {
    max-width: 255px;
    margin: 0;
    color: rgba(255, 255, 255, .56);
    font-size: 12px;
    line-height: 1.65
}

.business-card-enquire {
    position: relative;
    z-index: 3;
    margin-top: auto;
    padding-top: 25px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #d2aa69;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    transform: translateZ(32px)
}

.business-card-enquire span:last-child {
    font-size: 17px;
    line-height: 1;
    transition: transform .25s ease
}

.business-card-enquire:hover span:last-child,
.business-service-card:hover .business-card-enquire span:last-child {
    transform: translateX(5px)
}

.business-travel-section .business-card-arrow {
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-color: rgba(199, 155, 85, .3);
    background: rgba(199, 155, 85, .08);
    color: #d2aa69
}

.business-travel-section .business-service-card:hover .business-card-arrow {
    background: #c79b55;
    color: #090b0c;
    border-color: #c79b55
}

.business-travel-section .business-travel-cta {
    display: none
}

@media (max-width:1180px) {
    .business-travel-banner {
        grid-template-columns: 52% 48%
    }

    .business-travel-banner-copy {
        padding: 34px 34px 32px 0
    }

    .business-travel-section .business-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .business-travel-section .business-service-card:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .08)
    }

    .business-travel-section .business-service-card:nth-child(2) {
        border-right: 1px solid rgba(255, 255, 255, .08)
    }
}

@media (max-width:820px) {
    .business-travel-section {
        padding: 72px 0 76px !important
    }

    .business-travel-banner {
        grid-template-columns: 1fr
    }

    .business-travel-banner-copy {
        padding: 38px 28px 36px
    }

    .business-travel-banner-copy h2 {
        font-size: clamp(40px, 9vw, 58px)
    }

    .business-travel-section .business-travel-intro {
        max-width: 590px;
        margin-top: 21px !important;
        font-size: 14px
    }

    .business-travel-banner-image,
    .business-travel-banner-image img {
        min-height: 290px
    }

    .business-travel-section .business-service-grid {
        margin-top: 44px !important;
        gap: 16px
    }
}

@media (max-width:600px) {
    .business-travel-section {
        padding: 48px 0 54px !important
    }

    .business-travel-section .site-container {
        width: min(calc(100% - 28px), 1360px)
    }

    .business-travel-banner-copy {
        padding: 30px 22px 28px
    }

    .business-travel-section .business-kicker {
        margin-bottom: 18px;
        font-size: 9px
    }

    .business-travel-banner-copy h2 {
        font-size: clamp(37px, 12vw, 49px);
        line-height: .98
    }

    .business-travel-banner-image,
    .business-travel-banner-image img {
        min-height: 235px
    }

    .business-banner-caption {
        left: 18px;
        bottom: 16px;
        font-size: 8px
    }

    .business-travel-section .business-service-grid {
        grid-template-columns: 1fr;
        margin-top: 30px !important;
        gap: 14px;
        border-radius: 0
    }

    .business-travel-section .business-service-card {
        min-height: 245px !important;
        padding: 27px 24px 23px !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        transform: none !important
    }

    .business-travel-section .business-card-content {
        margin-top: 28px;
        padding-top: 0 !important
    }

    .business-travel-section .business-card-arrow {
        opacity: 1;
        transform: none
    }
}

.hero-section {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    color: #fff !important;
    background: linear-gradient(90deg, rgba(7, 9, 11, .88) 0, rgba(7, 9, 11, .75) 28%, rgba(7, 9, 11, .5) 53%, rgba(7, 9, 11, .38) 72%, rgba(7, 9, 11, .56) 100%), linear-gradient(180deg, rgba(7, 9, 11, .16) 0, rgba(7, 9, 11, .1) 42%, rgba(7, 9, 11, .64) 100%), url("../images/premium-chauffeur-hero.png") center center/cover no-repeat !important
}

.hero-section::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: -1 !important;
    pointer-events: none !important;
    background: radial-gradient(circle at 76% 28%, rgba(199, 155, 85, .15), transparent 35%), radial-gradient(circle at 18% 80%, rgba(91, 42, 23, .17), transparent 42%) !important
}

.hero-section .hero-grid {
    position: relative !important;
    z-index: 3 !important
}

.hero-section .hero-noise {
    opacity: .055 !important
}

.hero-section .hero-eyebrow {
    color: #f0cf91 !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .55) !important
}

.hero-section .eyebrow-line {
    background: #d8a84d !important;
    box-shadow: 0 0 12px rgba(216, 168, 77, .18) !important
}

.hero-section .hero-title {
    color: #fff !important;
    text-shadow: 0 2px 7px rgba(0, 0, 0, .42), 0 12px 36px rgba(0, 0, 0, .32) !important
}

.hero-section .hero-title em {
    color: #e5c78f !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .42), 0 10px 28px rgba(0, 0, 0, .28) !important
}

.hero-section .hero-description {
    /* color: rgba(255, 255, 255, .91) !important; */
    text-shadow: 0 2px 8px rgba(0, 0, 0, .62), 0 8px 24px rgba(0, 0, 0, .28) !important
}

.hero-section .hero-copy .hero-booking-card>.booking-bar {
    border-color: rgba(255, 255, 255, .34) !important;
    background: linear-gradient(135deg, rgba(17, 19, 21, .84), rgba(31, 29, 27, .73)) !important;
    -webkit-backdrop-filter: blur(22px) saturate(115%) !important;
    backdrop-filter: blur(22px) saturate(115%) !important;
    box-shadow: 0 26px 65px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .1) !important
}

.hero-section .hero-copy .hero-booking-card .booking-field {
    border-color: rgba(255, 255, 255, .14) !important;
    background: rgba(255, 255, 255, .055) !important
}

.hero-section .hero-copy .hero-booking-card .booking-field:hover {
    border-color: rgba(229, 199, 143, .36) !important;
    background: rgba(255, 255, 255, .085) !important
}

.hero-section .hero-copy .hero-booking-card .booking-field-label {
    color: rgba(255, 255, 255, .62) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .28) !important
}

.hero-section .hero-copy .hero-booking-card .booking-field input,
.hero-section .hero-copy .hero-booking-card .booking-field select {
    color: #fff !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #e5c78f !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .25) !important
}

.hero-section .hero-copy .hero-booking-card .booking-field input::placeholder {
    color: rgba(255, 255, 255, .58) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .58) !important;
    opacity: 1 !important
}

.hero-section .hero-copy .hero-booking-card .booking-field-icon {
    border-color: rgba(229, 199, 143, .32) !important;
    background: rgba(255, 255, 255, .075) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07) !important
}

.hero-section .hero-copy .hero-booking-card .booking-field-icon svg {
    stroke: #e5c78f !important
}

.hero-section .hero-copy .hero-booking-card>.booking-bar>.quote-btn {
    background: linear-gradient(90deg, #dfa943, #d5a03c) !important;
    color: #101214 !important;
    -webkit-text-fill-color: #101214 !important;
    box-shadow: 0 12px 28px rgba(199, 155, 85, .25) !important
}

.hero-section .hero-copy .hero-booking-card>.booking-bar>.quote-btn:hover {
    background: linear-gradient(90deg, #e8bb60, #dda94b) !important;
    color: #101214 !important;
    -webkit-text-fill-color: #101214 !important
}

.hero-section .vehicle-frame {
    box-shadow: 0 35px 90px rgba(0, 0, 0, .34), 0 0 0 1px rgba(255, 255, 255, .08) !important
}

.hero-section .route-card {
    background: rgba(255, 255, 255, .93) !important;
    border-color: rgba(255, 255, 255, .55) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    backdrop-filter: blur(16px) !important
}

.hero-section .route-card>span {
    color: #8d9195 !important
}

.hero-section .route-card strong {
    color: #202326 !important
}

.hero-section .live-vehicle-card {
    background: rgba(255, 255, 255, .94) !important;
    border-color: rgba(255, 255, 255, .56) !important;
    color: #202326 !important;
    box-shadow: 0 20px 52px rgba(0, 0, 0, .24) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    backdrop-filter: blur(16px) !important
}

.hero-section .live-car-content strong {
    color: #202326 !important
}

.hero-section .live-car-content small {
    color: #888d91 !important
}

.hero-section .status-label {
    color: #b47d29 !important
}

.site-header:not(.is-scrolled) {
    border-bottom-color: rgba(255, 255, 255, .12) !important;
    background: rgba(7, 9, 11, .42) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    backdrop-filter: blur(16px) !important
}

.site-header:not(.is-scrolled) .brand-text,
.site-header:not(.is-scrolled) .header-phone,
.site-header:not(.is-scrolled) .main-nav a {
    color: rgba(255, 255, 255, .88) !important;
    -webkit-text-fill-color: currentColor !important
}

.site-header:not(.is-scrolled) .main-nav a:hover,
.site-header:not(.is-scrolled) .main-nav a[aria-current=page] {
    color: #fff !important
}

.header-actions .header-book-btn,
.site-header .header-actions a.header-book-btn,
.site-header.is-scrolled .header-actions a.header-book-btn,
.site-header:not(.is-scrolled) .header-actions a.header-book-btn,
a.header-book-btn {
    background: #0b0d0f !important;
    border-color: rgba(255, 255, 255, .22) !important;
    color: #fff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important
}

.header-actions .header-book-btn:hover,
.site-header .header-actions a.header-book-btn:hover {
    background: #c79b55 !important;
    border-color: #c79b55 !important;
    color: #fff !important;
    -webkit-text-fill-color: #ffffff !important
}

.site-header:not(.is-scrolled) .mobile-menu-button {
    border-color: rgba(255, 255, 255, .22) !important
}

.site-header:not(.is-scrolled) .mobile-menu-button span {
    background: #fff !important
}

@media (max-width:980px) {
    .hero-section {
        background: linear-gradient(180deg, rgba(7, 9, 11, .68) 0, rgba(7, 9, 11, .57) 44%, rgba(7, 9, 11, .88) 100%), url("../images/premium-chauffeur-hero.png") 58% center/cover no-repeat !important
    }
}

@media (max-width:640px) {
    .hero-section {
        background: linear-gradient(180deg, rgba(7, 9, 11, .74) 0, rgba(7, 9, 11, .64) 46%, rgba(7, 9, 11, .92) 100%), url("../images/premium-chauffeur-hero.png") 61% center/cover no-repeat !important
    }

    .hero-section .hero-description,
    .hero-section .hero-eyebrow,
    .hero-section .hero-title {
        text-shadow: 0 3px 16px rgba(0, 0, 0, .68) !important
    }
}

.hero-section .hero-copy .hero-booking-card .booking-field-with-icon {
    align-items: center !important
}

.hero-section .hero-copy .hero-booking-card .booking-heading-only {
    display: flex !important;
    align-items: center !important;
    min-height: 40px !important
}

.hero-section .hero-copy .hero-booking-card .booking-heading-only .booking-field-label {
    margin: 0 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 1.25px !important;
    text-transform: uppercase !important;
    opacity: 1 !important
}

.hero-section .hero-copy .hero-booking-card .booking-heading-only input[type=hidden] {
    display: none !important
}

.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field.is-open,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:first-child,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:focus,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:focus-within,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:hover {
    background: linear-gradient(145deg, rgba(30, 31, 32, .96), rgba(19, 20, 21, .96)) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .13) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 10px 24px rgba(0, 0, 0, .15) !important
}

.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field.is-open,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:focus-within {
    border-color: rgba(199, 155, 85, .55) !important
}

.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:first-child,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:first-child.is-open,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:first-child:focus-within,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:first-child:hover {
    background: linear-gradient(145deg, rgba(30, 31, 32, .96), rgba(19, 20, 21, .96)) !important;
    color: #fff !important
}

.hero-section .hero-copy .hero-booking-card .booking-click-field {
    cursor: text !important;
    align-items: center !important
}

.hero-section .hero-copy .hero-booking-card .booking-field-content {
    min-width: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 0 !important
}

.hero-section .hero-copy .hero-booking-card .booking-click-field .booking-field-label {
    display: block !important;
    margin: 0 !important;
    color: #fff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 1.25px !important;
    text-transform: uppercase !important;
    opacity: 1 !important;
    transition: color .25s ease !important
}

.hero-section .hero-copy .hero-booking-card .booking-click-field.is-open .booking-field-label,
.hero-section .hero-copy .hero-booking-card .booking-click-field:focus-within .booking-field-label {
    color: #e5c78f !important;
    -webkit-text-fill-color: #e5c78f !important
}

.hero-section .hero-copy .hero-booking-card .booking-input-reveal {
    display: block !important;
    width: 100% !important;
    max-height: 0 !important;
    margin-top: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transform: translateY(-5px) !important;
    pointer-events: none !important;
    transition: max-height .28s ease, opacity .22s ease, margin-top .28s ease, transform .28s ease !important
}

.hero-section .hero-copy .hero-booking-card .booking-click-field.is-open .booking-input-reveal,
.hero-section .hero-copy .hero-booking-card .booking-click-field:focus-within .booking-input-reveal {
    max-height: 42px !important;
    margin-top: 8px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important
}

.hero-section .hero-copy .hero-booking-card .booking-input-reveal input,
.hero-section .hero-copy .hero-booking-card .booking-input-reveal select {
    display: block !important;
    width: 100% !important;
    height: 29px !important;
    margin: 0 !important;
    padding: 0 2px 6px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(229, 199, 143, .55) !important;
    outline: 0 !important;
    background: 0 0 !important;
    color: #fff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 22px !important;
    opacity: 1 !important
}

.hero-section .hero-copy .hero-booking-card .booking-input-reveal input::placeholder {
    color: rgba(255, 255, 255, .55) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, .55) !important
}

.hero-section .hero-copy .hero-booking-card .booking-input-reveal select {
    cursor: pointer !important;
    appearance: auto !important;
    -webkit-appearance: auto !important
}

.hero-section .hero-copy .hero-booking-card .booking-click-field .booking-field-icon,
.hero-section .hero-copy .hero-booking-card .booking-click-field.is-open .booking-field-icon,
.hero-section .hero-copy .hero-booking-card .booking-click-field:focus-within .booking-field-icon,
.hero-section .hero-copy .hero-booking-card .booking-click-field:hover .booking-field-icon {
    background: rgba(199, 155, 85, .09) !important;
    border-color: rgba(199, 155, 85, .42) !important
}

.hero-section .hero-copy .hero-booking-card .booking-click-field .booking-field-icon svg {
    stroke: #d8a84d !important
}

.hero-section .hero-copy .hero-booking-card .booking-click-field {
    transition: min-height .28s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease !important
}

.hero-section .hero-copy .hero-booking-card .booking-click-field.is-open,
.hero-section .hero-copy .hero-booking-card .booking-click-field:focus-within {
    min-height: 92px !important
}

@media (max-width:640px) {

    .hero-section .hero-copy .hero-booking-card .booking-click-field.is-open,
    .hero-section .hero-copy .hero-booking-card .booking-click-field:focus-within {
        min-height: 88px !important
    }
}

.hero-section {
    background: linear-gradient(90deg, rgba(7, 9, 11, .58) 0, rgba(7, 9, 11, .46) 28%, rgba(7, 9, 11, .27) 55%, rgba(7, 9, 11, .2) 74%, rgba(7, 9, 11, .31) 100%), linear-gradient(180deg, rgba(7, 9, 11, .07) 0, rgba(7, 9, 11, .04) 43%, rgba(7, 9, 11, .3) 100%), url("../images/premium-chauffeur-hero.png") center center/cover no-repeat !important
}

.hero-section::after {
    background: radial-gradient(circle at 77% 28%, rgba(199, 155, 85, .1), transparent 38%), radial-gradient(circle at 18% 80%, rgba(91, 42, 23, .08), transparent 44%) !important
}

.hero-section .hero-noise {
    opacity: .025 !important
}

.hero-section .hero-title {
    text-shadow: 0 2px 7px rgba(0, 0, 0, .5), 0 12px 30px rgba(0, 0, 0, .28) !important
}

.hero-section .hero-description,
.hero-section .hero-eyebrow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, .58) !important
}

.hero-section .hero-copy .hero-booking-card>.booking-bar {
    background: linear-gradient(135deg, rgba(19, 20, 21, .68), rgba(31, 29, 27, .57)) !important
}

.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field.is-open,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:first-child,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:first-child,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:first-child.is-open,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:first-child:focus-within,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:first-child:hover,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:focus,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:focus-within,
.hero-section .hero-copy .hero-booking-card>.booking-bar>.booking-field:hover {
    background: linear-gradient(145deg, rgba(31, 32, 33, .82), rgba(20, 21, 22, .82)) !important
}

.site-header:not(.is-scrolled) {
    background: rgba(7, 9, 11, .28) !important
}

@media (max-width:980px) {
    .hero-section {
        background: linear-gradient(180deg, rgba(7, 9, 11, .45) 0, rgba(7, 9, 11, .34) 46%, rgba(7, 9, 11, .58) 100%), url("../images/premium-chauffeur-hero.png") 58% center/cover no-repeat !important
    }
}

@media (max-width:640px) {
    .hero-section {
        background: linear-gradient(180deg, rgba(7, 9, 11, .5) 0, rgba(7, 9, 11, .4) 48%, rgba(7, 9, 11, .64) 100%), url("../images/premium-chauffeur-hero.png") 61% center/cover no-repeat !important
    }
}

.hero-section {
    background: linear-gradient(90deg, rgba(7, 9, 11, .24) 0, rgba(7, 9, 11, .17) 30%, rgba(7, 9, 11, .08) 58%, rgba(7, 9, 11, .04) 78%, rgba(7, 9, 11, .1) 100%), linear-gradient(180deg, rgba(7, 9, 11, .015) 0, rgba(7, 9, 11, .01) 55%, rgba(7, 9, 11, .12) 100%), url("../images/premium-chauffeur-hero.png") center center/cover no-repeat !important
}

.hero-section::after {
    background: radial-gradient(circle at 76% 28%, rgba(199, 155, 85, .045), transparent 40%), radial-gradient(circle at 18% 80%, rgba(91, 42, 23, .025), transparent 45%) !important
}

.hero-section .hero-noise {
    opacity: .008 !important
}

.hero-section .hero-title {
    text-shadow: 0 2px 7px rgba(0, 0, 0, .55), 0 10px 28px rgba(0, 0, 0, .25) !important
}

.hero-section .hero-description,
.hero-section .hero-eyebrow {
    text-shadow: 0 2px 9px rgba(0, 0, 0, .62) !important
}

.hero-section .hero-copy .hero-booking-card>.booking-bar {
    background: linear-gradient(135deg, rgba(20, 21, 22, .52), rgba(28, 27, 26, .44)) !important
}

.site-header:not(.is-scrolled) {
    background: rgba(7, 9, 11, .14) !important
}

@media (max-width:980px) {
    .hero-section {
        background: linear-gradient(180deg, rgba(7, 9, 11, .22) 0, rgba(7, 9, 11, .15) 48%, rgba(7, 9, 11, .3) 100%), url("../images/premium-chauffeur-hero.png") 58% center/cover no-repeat !important
    }
}

@media (max-width:640px) {
    .hero-section {
        background: linear-gradient(180deg, rgba(7, 9, 11, .28) 0, rgba(7, 9, 11, .2) 48%, rgba(7, 9, 11, .36) 100%), url("../images/premium-chauffeur-hero.png") 61% center/cover no-repeat !important
    }
}

.hero-section.hero-diagonal-premium {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    background: linear-gradient(118deg, rgba(7, 9, 11, .2) 0, rgba(7, 9, 11, .12) 28%, rgba(7, 9, 11, .04) 52%, rgba(7, 9, 11, .015) 73%, rgba(7, 9, 11, .055) 100%), linear-gradient(180deg, rgba(7, 9, 11, .008) 0, rgba(7, 9, 11, 0) 58%, rgba(7, 9, 11, .06) 100%), url("../images/premium-chauffeur-hero.png") center center/cover no-repeat !important
}

.hero-section.hero-diagonal-premium::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: -2 !important;
    pointer-events: none !important;
    background: linear-gradient(132deg, transparent 0 30%, rgba(229, 199, 143, .035) 39%, rgba(255, 255, 255, .022) 48%, transparent 57% 100%) !important
}

.hero-diagonal-glow {
    position: absolute;
    z-index: -1;
    width: 72vw;
    height: 26vw;
    min-height: 240px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(55px);
    transform: rotate(-24deg);
    will-change: transform, opacity
}

.hero-diagonal-glow-one {
    top: 2%;
    left: -25%;
    opacity: .34;
    background: linear-gradient(90deg, rgba(199, 155, 85, .02), rgba(229, 199, 143, .1), rgba(255, 255, 255, .02), transparent);
    animation: diagonalGlowOne 12s ease-in-out infinite alternate
}

.hero-diagonal-glow-two {
    right: -28%;
    bottom: -5%;
    opacity: .28;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .018), rgba(199, 155, 85, .075), rgba(199, 155, 85, .012));
    animation: diagonalGlowTwo 15s ease-in-out infinite alternate
}

.hero-diagonal-line {
    position: absolute;
    z-index: 2;
    width: 64%;
    height: 1px;
    pointer-events: none;
    opacity: .26;
    background: linear-gradient(90deg, transparent, rgba(229, 199, 143, .1), rgba(255, 255, 255, .3), rgba(229, 199, 143, .075), transparent);
    transform: rotate(-27deg);
    filter: drop-shadow(0 0 8px rgba(229, 199, 143, .07))
}

.hero-diagonal-line-one {
    top: 31%;
    left: -10%;
    animation: diagonalLineMove 10s ease-in-out infinite
}

.hero-diagonal-line-two {
    right: -12%;
    bottom: 29%;
    opacity: .16;
    animation: diagonalLineMove 13s ease-in-out -4s infinite reverse
}

@keyframes diagonalGlowOne {
    from {
        transform: translate3d(-4%, -2%, 0) rotate(-24deg) scale(1);
        opacity: .24
    }

    to {
        transform: translate3d(15%, 10%, 0) rotate(-20deg) scale(1.08);
        opacity: .43
    }
}

@keyframes diagonalGlowTwo {
    from {
        transform: translate3d(5%, 7%, 0) rotate(-24deg) scale(.96);
        opacity: .18
    }

    to {
        transform: translate3d(-13%, -9%, 0) rotate(-28deg) scale(1.1);
        opacity: .37
    }
}

@keyframes diagonalLineMove {

    0%,
    100% {
        transform: translate3d(-2%, 0, 0) rotate(-27deg);
        opacity: .08
    }

    50% {
        transform: translate3d(13%, -10px, 0) rotate(-27deg);
        opacity: .31
    }
}

.hero-section.hero-diagonal-premium .hero-grid {
    position: relative !important;
    z-index: 5 !important
}

.hero-section.hero-diagonal-premium .hero-visual {
    min-height: 650px !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding-bottom: 0 !important;
    pointer-events: none
}

.hero-section.hero-diagonal-premium .vehicle-photo-wrap.hero-floating-status-wrap {
    position: relative !important;
    width: min(100%, 650px) !important;
    min-height: 610px !important;
    transform: translate(calc(var(--mouse-x, 0px) + var(--scroll-x, 0px)), calc(var(--mouse-y, 0px) + var(--scroll-y, 0px))) !important;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1) !important;
    pointer-events: none
}

.hero-section.hero-diagonal-premium .vehicle-frame,
.hero-section.hero-diagonal-premium .vehicle-overlay,
.hero-section.hero-diagonal-premium .vehicle-photo,
.hero-section.hero-diagonal-premium .vehicle-tag {
    display: none !important
}

.hero-section.hero-diagonal-premium .live-vehicle-card,
.hero-section.hero-diagonal-premium .route-card {
    pointer-events: auto
}

.hero-section.hero-diagonal-premium .route-card {
    top: 72px !important;
    right: 2px !important;
    background: rgba(255, 255, 255, .87) !important;
    border: 1px solid rgba(255, 255, 255, .65) !important;
    color: #24272a !important;
    box-shadow: 0 20px 52px rgba(30, 24, 16, .11) !important;
    backdrop-filter: blur(15px) saturate(115%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(115%) !important;
    animation: premiumRouteFloat 5.5s ease-in-out infinite !important
}

.hero-section.hero-diagonal-premium .route-card>span {
    color: #93979b !important
}

.hero-section.hero-diagonal-premium .route-card strong {
    color: #24272a !important
}

.hero-section.hero-diagonal-premium .live-vehicle-card {
    left: 10px !important;
    bottom: 64px !important;
    background: rgba(255, 255, 255, .89) !important;
    border: 1px solid rgba(255, 255, 255, .65) !important;
    box-shadow: 0 22px 58px rgba(30, 24, 16, .12) !important;
    backdrop-filter: blur(15px) saturate(115%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(115%) !important
}

@keyframes premiumRouteFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0)
    }

    50% {
        transform: translate3d(-7px, -9px, 0)
    }
}

.hero-background-caption {
    position: absolute;
    right: 12px;
    bottom: 190px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .94);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .42)
}

.hero-background-caption>span {
    width: 34px;
    height: 1px;
    background: #e1b45c;
    box-shadow: 0 0 12px rgba(225, 180, 92, .22)
}

.hero-background-caption strong {
    font: inherit
}

.hero-section.hero-diagonal-premium .hero-title {
    text-shadow: 0 2px 5px rgba(0, 0, 0, .48), 0 10px 25px rgba(0, 0, 0, .15) !important
}

.hero-section.hero-diagonal-premium .hero-title em {
    text-shadow: 0 2px 6px rgba(0, 0, 0, .31), 0 8px 20px rgba(0, 0, 0, .1) !important
}

.hero-section.hero-diagonal-premium .hero-description,
.hero-section.hero-diagonal-premium .hero-eyebrow {
    text-shadow: 0 2px 8px rgba(0, 0, 0, .4) !important
}

.hero-section.hero-diagonal-premium .hero-copy .hero-booking-card>.booking-bar {
    background: linear-gradient(132deg, rgba(17, 18, 19, .38), rgba(31, 28, 26, .28)) !important;
    border-color: rgba(255, 255, 255, .23) !important;
    box-shadow: 0 24px 55px rgba(0, 0, 0, .13), inset 0 1px 0 rgba(255, 255, 255, .075) !important;
    backdrop-filter: blur(15px) saturate(112%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(112%) !important
}

.hero-section.hero-diagonal-premium .hero-copy .hero-booking-card>.booking-bar>.booking-field,
.hero-section.hero-diagonal-premium .hero-copy .hero-booking-card>.booking-bar>.booking-field.is-open,
.hero-section.hero-diagonal-premium .hero-copy .hero-booking-card>.booking-bar>.booking-field:first-child,
.hero-section.hero-diagonal-premium .hero-copy .hero-booking-card>.booking-bar>.booking-field:focus,
.hero-section.hero-diagonal-premium .hero-copy .hero-booking-card>.booking-bar>.booking-field:focus-within,
.hero-section.hero-diagonal-premium .hero-copy .hero-booking-card>.booking-bar>.booking-field:hover {
    background: linear-gradient(145deg, rgba(29, 30, 31, .58), rgba(19, 20, 21, .49)) !important;
    border-color: rgba(255, 255, 255, .13) !important
}

.hero-section.hero-diagonal-premium .hero-copy .hero-booking-card>.booking-bar>.booking-field.is-open,
.hero-section.hero-diagonal-premium .hero-copy .hero-booking-card>.booking-bar>.booking-field:focus-within {
    border-color: rgba(199, 155, 85, .56) !important;
    box-shadow: inset 0 0 0 1px rgba(199, 155, 85, .06) !important
}

.site-header:not(.is-scrolled) {
    background: rgba(8, 9, 10, .1) !important;
    border-bottom-color: rgba(255, 255, 255, .13) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important
}

.hero-section.hero-diagonal-premium .hero-noise {
    opacity: .003 !important
}

.hero-section.hero-diagonal-premium .shape-two {
    opacity: .2 !important
}

@media (max-width:1200px) {
    .hero-section.hero-diagonal-premium .hero-visual {
        min-height: 570px !important
    }

    .hero-section.hero-diagonal-premium .vehicle-photo-wrap.hero-floating-status-wrap {
        min-height: 545px !important
    }

    .hero-background-caption {
        bottom: 165px
    }
}

@media (max-width:980px) {
    .hero-section.hero-diagonal-premium {
        background: linear-gradient(180deg, rgba(7, 9, 11, .13) 0, rgba(7, 9, 11, .055) 43%, rgba(7, 9, 11, .16) 100%), url("../images/premium-chauffeur-hero.png") 57% center/cover no-repeat !important
    }

    .hero-section.hero-diagonal-premium .hero-visual {
        min-height: 390px !important;
        margin-top: 8px !important
    }

    .hero-section.hero-diagonal-premium .vehicle-photo-wrap.hero-floating-status-wrap {
        width: 100% !important;
        min-height: 375px !important
    }

    .hero-section.hero-diagonal-premium .route-card {
        top: 25px !important;
        right: 3% !important
    }

    .hero-section.hero-diagonal-premium .live-vehicle-card {
        left: 3% !important;
        bottom: 34px !important
    }

    .hero-background-caption {
        display: none !important
    }
}

@media (max-width:640px) {
    .hero-section.hero-diagonal-premium {
        background: linear-gradient(180deg, rgba(7, 9, 11, .17) 0, rgba(7, 9, 11, .075) 45%, rgba(7, 9, 11, .19) 100%), url("../images/premium-chauffeur-hero.png") 60% center/cover no-repeat !important
    }

    .hero-section.hero-diagonal-premium .hero-visual {
        min-height: 300px !important
    }

    .hero-section.hero-diagonal-premium .vehicle-photo-wrap.hero-floating-status-wrap {
        min-height: 290px !important
    }

    .hero-section.hero-diagonal-premium .route-card {
        top: 12px !important;
        right: 0 !important;
        width: 195px !important
    }

    .hero-section.hero-diagonal-premium .live-vehicle-card {
        left: 0 !important;
        bottom: 15px !important;
        width: min(290px, 88vw) !important
    }

    .hero-diagonal-line {
        opacity: .12 !important
    }

    .hero-diagonal-glow {
        opacity: .2 !important
    }
}

@media (prefers-reduced-motion:reduce) {

    .hero-diagonal-glow,
    .hero-diagonal-line,
    .hero-section.hero-diagonal-premium .route-card {
        animation: none !important
    }
}

.hero-section .hero-background-caption,
.hero-section .live-vehicle-card,
.hero-section .route-card {
    display: none !important
}

.hero-section.hero-diagonal-premium .hero-visual {
    min-height: 620px !important;
    pointer-events: none !important
}

.hero-section.hero-diagonal-premium .vehicle-photo-wrap.hero-floating-status-wrap {
    min-height: 600px !important;
    width: 100% !important
}

.hero-wave {
    position: absolute;
    z-index: 1;
    left: -35%;
    width: 115%;
    height: 220px;
    pointer-events: none;
    opacity: .55;
    filter: blur(18px);
    transform: rotate(-18deg);
    will-change: transform, opacity;
    mix-blend-mode: screen
}

.hero-wave-one {
    top: 16%;
    background: linear-gradient(90deg, transparent 0, rgba(199, 155, 85, .03) 13%, rgba(229, 199, 143, .18) 31%, rgba(255, 255, 255, .08) 46%, rgba(229, 199, 143, .13) 60%, transparent 82%);
    border-radius: 50%;
    animation: heroWaveLeftToRight 10s ease-in-out infinite
}

.hero-wave-two {
    top: 42%;
    height: 170px;
    opacity: .38;
    background: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, .02) 18%, rgba(229, 199, 143, .1) 37%, rgba(255, 255, 255, .1) 50%, rgba(199, 155, 85, .08) 65%, transparent 84%);
    animation: heroWaveLeftToRight 13s ease-in-out -4s infinite
}

.hero-wave-three {
    top: 68%;
    height: 105px;
    opacity: .28;
    filter: blur(10px);
    background: linear-gradient(90deg, transparent 0, rgba(199, 155, 85, .03) 20%, rgba(229, 199, 143, .12) 42%, rgba(255, 255, 255, .15) 53%, rgba(229, 199, 143, .07) 66%, transparent 88%);
    animation: heroWaveLeftToRight 16s ease-in-out -7s infinite
}

@keyframes heroWaveLeftToRight {
    0% {
        transform: translate3d(-18%, 0, 0) rotate(-18deg) scaleX(.96);
        opacity: .14
    }

    28% {
        opacity: .48
    }

    55% {
        transform: translate3d(18%, -10px, 0) rotate(-16deg) scaleX(1.06);
        opacity: .58
    }

    82% {
        opacity: .34
    }

    100% {
        transform: translate3d(42%, 4px, 0) rotate(-18deg) scaleX(.98);
        opacity: .1
    }
}

.hero-section.hero-diagonal-premium::after {
    background: linear-gradient(125deg, transparent 0 25%, rgba(255, 255, 255, .015) 35%, rgba(229, 199, 143, .045) 45%, rgba(255, 255, 255, .02) 52%, transparent 64% 100%) !important
}

.hero-section.hero-diagonal-premium {
    background: linear-gradient(115deg, rgba(7, 9, 11, .16) 0, rgba(7, 9, 11, .08) 27%, rgba(7, 9, 11, .025) 50%, rgba(7, 9, 11, 0) 70%, rgba(7, 9, 11, .035) 100%), linear-gradient(180deg, rgba(7, 9, 11, 0) 0, rgba(7, 9, 11, 0) 60%, rgba(7, 9, 11, .04) 100%), url("../images/premium-chauffeur-hero.png") center center/cover no-repeat !important
}

.hero-diagonal-glow {
    opacity: .1 !important
}

.hero-diagonal-line {
    opacity: .08 !important
}

.hero-section.hero-diagonal-premium .hero-title {
    text-shadow: 0 2px 6px rgba(0, 0, 0, .48), 0 10px 22px rgba(0, 0, 0, .12) !important
}

.hero-section.hero-diagonal-premium .hero-description,
.hero-section.hero-diagonal-premium .hero-eyebrow {
    text-shadow: 0 2px 7px rgba(0, 0, 0, .4) !important
}

.hero-section.hero-diagonal-premium .hero-copy .hero-booking-card>.booking-bar {
    background: linear-gradient(135deg, rgba(18, 19, 20, .34), rgba(29, 27, 25, .24)) !important;
    border-color: rgba(255, 255, 255, .22) !important;
    backdrop-filter: blur(14px) saturate(110%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(110%) !important
}

@media (max-width:980px) {
    .hero-wave {
        width: 145%;
        left: -52%;
        opacity: .42
    }

    .hero-section.hero-diagonal-premium .hero-visual {
        min-height: 310px !important
    }

    .hero-section.hero-diagonal-premium .vehicle-photo-wrap.hero-floating-status-wrap {
        min-height: 300px !important
    }
}

@media (max-width:640px) {
    .hero-wave {
        width: 180%;
        left: -72%;
        height: 130px;
        opacity: .32
    }

    .hero-wave-one {
        top: 22%
    }

    .hero-wave-two {
        top: 48%
    }

    .hero-wave-three {
        top: 72%
    }

    .hero-section.hero-diagonal-premium .hero-visual,
    .hero-section.hero-diagonal-premium .vehicle-photo-wrap.hero-floating-status-wrap {
        min-height: 220px !important
    }
}

@media (prefers-reduced-motion:reduce) {
    .hero-wave {
        animation: none !important
    }
}

.hero-section.hero-diagonal-premium {
    position: relative !important;
    overflow: hidden !important
}

.river-wave-ribbon {
    position: absolute;
    z-index: 2;
    left: -55%;
    width: 155%;
    height: 170px;
    pointer-events: none;
    opacity: .34;
    filter: blur(12px);
    transform-origin: center;
    will-change: transform, opacity;
    mix-blend-mode: screen;
    background: radial-gradient(ellipse at 12% 50%, transparent 0 28%, rgba(229, 199, 143, .08) 36%, rgba(255, 255, 255, .09) 43%, rgba(229, 199, 143, .05) 51%, transparent 61%), radial-gradient(ellipse at 48% 48%, transparent 0 29%, rgba(255, 255, 255, .07) 37%, rgba(229, 199, 143, .11) 45%, rgba(255, 255, 255, .04) 53%, transparent 63%), radial-gradient(ellipse at 82% 52%, transparent 0 28%, rgba(229, 199, 143, .07) 36%, rgba(255, 255, 255, .1) 44%, rgba(229, 199, 143, .04) 52%, transparent 63%)
}

.river-wave-ribbon-one {
    top: 12%;
    transform: rotate(-17deg) skewX(-7deg);
    animation: riverWaveFlowOne 10s linear infinite
}

.river-wave-ribbon-two {
    top: 39%;
    height: 145px;
    opacity: .25;
    transform: rotate(-15deg) skewX(-9deg);
    animation: riverWaveFlowTwo 13s linear -4s infinite
}

.river-wave-ribbon-three {
    top: 66%;
    height: 125px;
    opacity: .21;
    transform: rotate(-18deg) skewX(-5deg);
    animation: riverWaveFlowThree 16s linear -8s infinite
}

@keyframes riverWaveFlowOne {
    0% {
        transform: translate3d(-22%, 18px, 0) rotate(-17deg) skewX(-7deg) scaleY(.82);
        opacity: .1
    }

    22% {
        opacity: .3
    }

    50% {
        transform: translate3d(8%, -15px, 0) rotate(-14deg) skewX(-10deg) scaleY(1.06);
        opacity: .4
    }

    78% {
        opacity: .27
    }

    100% {
        transform: translate3d(38%, 12px, 0) rotate(-17deg) skewX(-7deg) scaleY(.86);
        opacity: .08
    }
}

@keyframes riverWaveFlowTwo {
    0% {
        transform: translate3d(-28%, -8px, 0) rotate(-15deg) skewX(-9deg) scaleY(.9);
        opacity: .07
    }

    30% {
        opacity: .23
    }

    55% {
        transform: translate3d(5%, 17px, 0) rotate(-18deg) skewX(-5deg) scaleY(1.08);
        opacity: .31
    }

    82% {
        opacity: .19
    }

    100% {
        transform: translate3d(42%, -6px, 0) rotate(-15deg) skewX(-9deg) scaleY(.92);
        opacity: .05
    }
}

@keyframes riverWaveFlowThree {
    0% {
        transform: translate3d(-34%, 10px, 0) rotate(-18deg) skewX(-5deg) scaleY(.86);
        opacity: .05
    }

    32% {
        opacity: .18
    }

    60% {
        transform: translate3d(7%, -14px, 0) rotate(-14deg) skewX(-10deg) scaleY(1.1);
        opacity: .26
    }

    84% {
        opacity: .15
    }

    100% {
        transform: translate3d(46%, 8px, 0) rotate(-18deg) skewX(-5deg) scaleY(.88);
        opacity: .04
    }
}

.river-wave-ribbon::after {
    content: "";
    position: absolute;
    inset: 38% -15%;
    border-radius: 50%;
    background: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, .02) 22%, rgba(229, 199, 143, .12) 42%, rgba(255, 255, 255, .16) 50%, rgba(229, 199, 143, .08) 59%, transparent 80%);
    filter: blur(7px);
    animation: riverWaveShimmer 4.8s ease-in-out infinite
}

@keyframes riverWaveShimmer {

    0%,
    100% {
        transform: translateX(-8%) scaleX(.9);
        opacity: .22
    }

    50% {
        transform: translateX(11%) scaleX(1.08);
        opacity: .54
    }
}

.hero-wave {
    opacity: .12 !important;
    filter: blur(26px) !important
}

.hero-diagonal-line {
    opacity: .035 !important
}

.hero-diagonal-glow {
    opacity: .07 !important
}

.hero-section.hero-diagonal-premium {
    background: linear-gradient(112deg, rgba(7, 9, 11, .12) 0, rgba(7, 9, 11, .055) 30%, rgba(7, 9, 11, .015) 55%, rgba(7, 9, 11, 0) 72%, rgba(7, 9, 11, .025) 100%), url("../images/premium-chauffeur-hero.png") center center/cover no-repeat !important
}

.hero-section.hero-diagonal-premium .hero-grid {
    position: relative !important;
    z-index: 6 !important
}

@media (max-width:980px) {
    .river-wave-ribbon {
        width: 190%;
        left: -75%;
        height: 135px;
        opacity: .22
    }
}

@media (max-width:640px) {
    .river-wave-ribbon {
        width: 235%;
        left: -105%;
        height: 100px;
        opacity: .18;
        filter: blur(10px)
    }

    .river-wave-ribbon-one {
        top: 17%
    }

    .river-wave-ribbon-two {
        top: 46%
    }

    .river-wave-ribbon-three {
        top: 72%
    }
}

@media (prefers-reduced-motion:reduce) {

    .river-wave-ribbon,
    .river-wave-ribbon::after {
        animation: none !important
    }
}

.hero-section.hero-diagonal-premium {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    background: #9b9b98 !important
}

.hero-background-video {
    position: absolute;
    z-index: -5;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    filter: brightness(1.16) saturate(.94) contrast(.96);
    transform: scale(1.012)
}

.hero-video-gradient {
    position: absolute;
    z-index: -4;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(5, 8, 11, .26) 0, rgba(5, 8, 11, .14) 31%, rgba(5, 8, 11, .035) 58%, rgba(5, 8, 11, 0) 100%), linear-gradient(180deg, rgba(5, 8, 11, .07) 0, rgba(5, 8, 11, 0) 52%, rgba(5, 8, 11, .1) 100%)
}

.hero-section.hero-diagonal-premium::after {
    z-index: -3 !important;
    opacity: .72 !important
}

.hero-section.hero-diagonal-premium .river-wave-ribbon {
    z-index: 1 !important;
    opacity: .3;
    mix-blend-mode: screen
}

.hero-section.hero-diagonal-premium .hero-grid {
    position: relative !important;
    z-index: 6 !important
}

@media (max-width:980px) {
    .hero-background-video {
        object-position: 56% center;
        filter: brightness(1.12) saturate(.93) contrast(.97)
    }

    .hero-video-gradient {
        background: linear-gradient(180deg, rgba(5, 8, 11, .12) 0, rgba(5, 8, 11, .025) 48%, rgba(5, 8, 11, .16) 100%)
    }
}

@media (max-width:640px) {
    .hero-background-video {
        object-position: center center;
        filter: brightness(1.15) saturate(.92) contrast(.96)
    }

    .hero-video-gradient {
        background: linear-gradient(180deg, rgba(5, 8, 11, .1) 0, rgba(5, 8, 11, .02) 43%, rgba(5, 8, 11, .17) 100%)
    }
}

.svc-sanctuary {
    position: relative;
    overflow: hidden;
    padding: 92px 6px 110px;
    color: #101214;
    background: linear-gradient(180deg, #fff 0, #fbfaf7 100%)
}

.svc-sanctuary::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(209, 163, 65, .34), transparent);
    transform: translateX(-50%)
}

.svc-sanctuary-head {
    width: min(calc(100% - 48px), 680px);
    margin: 0 auto 35px;
    text-align: center
}

.svc-sanctuary-kicker {
    margin: 0 0 12px;
    color: #b68735;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.7px;
    text-transform: uppercase
}

.svc-sanctuary-head h2 {
    margin: 0;
    color: #070809;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(46px, 5vw, 78px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -2.6px
}

.svc-sanctuary-head h2 span {
    display: block
}

.svc-sanctuary-head>p:last-child {
    max-width: 520px;
    margin: 14px auto 0;
    color: #6f7378;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    line-height: 1.6
}

.svc-sanctuary-media {
    --sanctuary-progress: 0;
    position: relative;
    width: min(calc(100% - 12px), 1840px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 7px;
    background: #d8d1c7;
    box-shadow: 0 28px 70px rgba(16, 18, 20, .1), 0 5px 18px rgba(16, 18, 20, .04);
    transform: translateY(calc((1 - var(--sanctuary-progress)) * 18px));
    transition: box-shadow .45s ease
}

.svc-sanctuary-media:hover {
    box-shadow: 0 36px 90px rgba(16, 18, 20, .14), 0 8px 22px rgba(16, 18, 20, .06)
}

.svc-sanctuary-image-wrap {
    position: relative;
    height: clamp(520px, 49vw, 780px);
    overflow: hidden
}

.svc-sanctuary-image {
    --sanctuary-image-y: 0px;
    --sanctuary-image-scale: 1.045;
    width: 100%;
    height: 112%;
    object-fit: cover;
    object-position: center 52%;
    transform: translate3d(0, var(--sanctuary-image-y), 0) scale(var(--sanctuary-image-scale));
    transform-origin: center center;
    will-change: transform;
    transition: filter .55s ease
}

.svc-sanctuary-media:hover .svc-sanctuary-image {
    filter: saturate(1.04) contrast(1.02)
}

.svc-sanctuary-shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 55%, rgba(6, 8, 10, .18) 100%)
}

.svc-sanctuary-caption {
    position: absolute;
    left: 28px;
    bottom: 26px;
    z-index: 3;
    min-width: 310px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 13px;
    color: #fff;
    background: rgba(8, 10, 12, .48);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .16)
}

.svc-sanctuary-caption>span {
    color: #e3bd6d;
    font-family: 'Libre Caslon Display', serif;
    font-size: 29px;
    line-height: 1
}

.svc-sanctuary-caption div {
    display: grid;
    gap: 3px
}

.svc-sanctuary-caption strong {
    font-size: 11px;
    font-weight: 600
}

.svc-sanctuary-caption small {
    color: rgba(255, 255, 255, .66);
    font-size: 8px
}

.svc-sanctuary-details {
    padding-top: 45px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0
}

.svc-sanctuary-detail {
    position: relative;
    min-width: 0;
    padding: 22px 38px 10px
}

.svc-sanctuary-detail+.svc-sanctuary-detail {
    border-left: 1px solid rgba(18, 20, 22, .1)
}

.svc-sanctuary-detail>span {
    display: block;
    margin-bottom: 15px;
    color: #c69843;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: 1px
}

.svc-sanctuary-detail h3 {
    margin: 0;
    color: #111315;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(25px, 2.3vw, 34px);
    font-weight: 400;
    line-height: 1.02
}

.svc-sanctuary-detail p {
    max-width: 360px;
    margin: 13px 0 0;
    color: #73777b;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    line-height: 1.7
}

.svc-sanctuary .svc-reveal {
    transform: translateY(24px)
}

.svc-sanctuary .svc-reveal.is-visible {
    transform: translateY(0)
}

@media (max-width:1100px) {
    .svc-sanctuary {
        padding: 78px 18px 92px
    }

    .svc-sanctuary-media {
        width: 100%
    }

    .svc-sanctuary-image-wrap {
        height: clamp(480px, 58vw, 660px)
    }

    .svc-sanctuary-details {
        gap: 0
    }

    .svc-sanctuary-detail {
        padding-inline: 24px
    }
}

@media (max-width:760px) {
    .svc-sanctuary {
        padding: 64px 12px 74px
    }

    .svc-sanctuary-head {
        width: min(calc(100% - 20px), 600px);
        margin-bottom: 26px
    }

    .svc-sanctuary-head h2 {
        font-size: clamp(42px, 12vw, 64px);
        letter-spacing: -1.8px
    }

    .svc-sanctuary-head>p:last-child {
        max-width: 38ch;
        font-size: 11px
    }

    .svc-sanctuary-image-wrap {
        height: clamp(410px, 83vw, 560px)
    }

    .svc-sanctuary-image {
        height: 108%;
        object-position: 58% center
    }

    .svc-sanctuary-caption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        min-width: 0;
        padding: 13px;
        grid-template-columns: 29px minmax(0, 1fr)
    }

    .svc-sanctuary-caption>span {
        font-size: 25px
    }

    .svc-sanctuary-details {
        padding-top: 30px;
        grid-template-columns: 1fr
    }

    .svc-sanctuary-detail {
        padding: 24px 10px
    }

    .svc-sanctuary-detail+.svc-sanctuary-detail {
        border-left: 0;
        border-top: 1px solid rgba(18, 20, 22, .1)
    }

    .svc-sanctuary-detail p {
        max-width: 46ch
    }
}

@media (max-width:480px) {
    .svc-sanctuary {
        padding-inline: 8px
    }

    .svc-sanctuary-image-wrap {
        height: 420px
    }

    .svc-sanctuary-image {
        object-position: 62% center
    }

    .svc-sanctuary-caption strong {
        font-size: 10px
    }

    .svc-sanctuary-caption small {
        font-size: 7px
    }
}

@media (prefers-reduced-motion:reduce) {

    .svc-sanctuary-image,
    .svc-sanctuary-media {
        transform: none !important;
        transition: none !important
    }
}

.svc-page .svc-sanctuary {
    padding-top: 132px
}

@media (max-width:1100px) {
    .svc-page .svc-sanctuary {
        padding-top: 112px
    }
}

@media (max-width:760px) {
    .svc-page .svc-sanctuary {
        padding-top: 98px
    }
}

.svc-blacklane-experience {
    position: relative;
    overflow: hidden;
    padding: 132px 0 118px;
    color: #08090a;
    background: #fff
}

.svc-blacklane-intro {
    width: min(calc(100% - 40px), 720px);
    margin: 0 auto 54px;
    text-align: center
}

.svc-blacklane-intro h2 {
    margin: 0;
    color: #090a0b;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(52px, 5.8vw, 86px);
    font-weight: 400;
    line-height: .91;
    letter-spacing: -3px
}

.svc-blacklane-intro p {
    max-width: 590px;
    margin: 24px auto 0;
    color: #111315;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(14px, 1.3vw, 19px);
    font-weight: 500;
    line-height: 1.55
}

.svc-experience-shell {
    width: min(100%, 1840px);
    margin: 0 auto
}

.svc-experience-rail {
    display: flex;
    gap: 18px;
    width: 100%;
    padding: 0 22px 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 22px;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab
}

.svc-experience-rail::-webkit-scrollbar {
    display: none
}

.svc-experience-rail:active {
    cursor: grabbing
}

.svc-experience-card {
    flex: 0 0 calc((100% - 36px)/ 3);
    min-width: 0;
    scroll-snap-align: start
}

.svc-experience-media {
    position: relative;
    height: clamp(560px, 48vw, 760px);
    overflow: hidden;
    border-radius: 18px;
    background: #d8d1c8;
    box-shadow: 0 20px 52px rgba(15, 17, 19, .08);
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease
}

.svc-experience-card:hover .svc-experience-media {
    transform: translateY(-7px);
    box-shadow: 0 30px 72px rgba(15, 17, 19, .14)
}

.svc-experience-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.025);
    transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .45s ease
}

.svc-experience-card:first-child .svc-experience-image {
    object-position: 54% center
}

.svc-experience-card:nth-child(2) .svc-experience-image {
    object-position: center 52%
}

.svc-experience-card:nth-child(3) .svc-experience-image {
    object-position: center 55%
}

.svc-experience-card:hover .svc-experience-image {
    transform: scale(1.065);
    filter: saturate(1.03) contrast(1.02)
}

.svc-experience-shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 42%, rgba(5, 7, 9, .12) 72%, rgba(5, 7, 9, .3) 100%)
}

.svc-experience-copy {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    min-height: 142px;
    padding: 25px 24px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(110deg, rgba(16, 13, 12, .76), rgba(67, 59, 55, .57));
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
    transition: transform .35s ease, background .35s ease
}

.svc-experience-card:hover .svc-experience-copy {
    transform: translateY(-4px);
    background: linear-gradient(110deg, rgba(12, 11, 10, .83), rgba(57, 51, 48, .63))
}

.svc-experience-copy h3 {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(25px, 2vw, 34px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.8px
}

.svc-experience-copy p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .94);
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(12px, 1vw, 16px);
    line-height: 1.5
}

.svc-experience-controls {
    width: min(calc(100% - 44px), 1796px);
    margin: 16px auto 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px
}

.svc-experience-controls button {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(18, 20, 22, .13);
    border-radius: 50%;
    background: #fff;
    color: #111315;
    cursor: pointer;
    transition: background .22s ease, color .22s ease, transform .22s ease
}

.svc-experience-controls button:hover {
    background: #111315;
    color: #fff;
    transform: translateY(-2px)
}

.svc-experience-dots {
    display: flex;
    gap: 7px
}

.svc-experience-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(18, 20, 22, .2);
    transition: width .25s ease, border-radius .25s ease, background .25s ease
}

.svc-experience-dots i.is-active {
    width: 22px;
    border-radius: 999px;
    background: #c79b55
}

@media (max-width:1050px) {
    .svc-blacklane-experience {
        padding-top: 112px
    }

    .svc-experience-card {
        flex-basis: calc((100% - 18px)/ 2)
    }
}

@media (max-width:700px) {
    .svc-blacklane-experience {
        padding: 96px 0 78px
    }

    .svc-blacklane-intro {
        width: min(calc(100% - 32px), 560px);
        margin-bottom: 42px
    }

    .svc-blacklane-intro h2 {
        font-size: clamp(48px, 14vw, 70px);
        letter-spacing: -2px
    }

    .svc-blacklane-intro p {
        max-width: 31ch;
        margin-top: 25px;
        font-size: 15px;
        line-height: 1.5
    }

    .svc-experience-rail {
        gap: 16px;
        padding-left: 16px;
        padding-right: 16px;
        scroll-padding-inline: 16px
    }

    .svc-experience-card {
        flex: 0 0 82vw;
        max-width: 330px
    }

    .svc-experience-media {
        height: 570px;
        border-radius: 17px
    }

    .svc-experience-copy {
        left: 20px;
        right: 20px;
        bottom: 18px;
        min-height: 152px;
        padding: 22px 20px;
        border-radius: 14px
    }

    .svc-experience-copy h3 {
        font-size: 24px;
        line-height: 1.15
    }

    .svc-experience-copy p {
        margin-top: 7px;
        font-size: 14px;
        line-height: 1.48
    }

    .svc-experience-controls {
        width: calc(100% - 32px);
        margin-top: 12px;
        justify-content: space-between
    }
}

@media (max-width:390px) {
    .svc-experience-card {
        flex-basis: 80vw;
        max-width: 300px
    }

    .svc-experience-media {
        height: 535px
    }

    .svc-experience-copy {
        min-height: 145px;
        padding: 20px 18px
    }

    .svc-experience-copy h3 {
        font-size: 22px
    }

    .svc-experience-copy p {
        font-size: 13px
    }
}

@media (prefers-reduced-motion:reduce) {

    .svc-experience-controls button,
    .svc-experience-copy,
    .svc-experience-image,
    .svc-experience-media {
        transition: none !important
    }
}

.svc-blacklane-experience {
    overflow: hidden !important
}

.svc-experience-shell {
    width: 100% !important;
    max-width: none !important;
    overflow: visible
}

.svc-experience-rail {
    width: 100% !important;
    max-width: none !important;
    gap: 24px !important;
    padding: 0 max(24px, calc((100vw - 1500px)/ 2)) 24px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth;
    scroll-padding-left: max(24px, calc((100vw - 1500px)/ 2));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-y pinch-zoom;
    cursor: grab;
    user-select: none
}

.svc-experience-rail.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none !important;
    scroll-behavior: auto !important
}

.svc-experience-card {
    flex: 0 0 min(72vw, 1120px) !important;
    width: min(72vw, 1120px) !important;
    max-width: none !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always
}

.svc-experience-media {
    height: clamp(520px, 58vw, 720px) !important;
    min-height: 0 !important;
    border-radius: 20px !important
}

.svc-experience-image {
    pointer-events: none
}

.svc-experience-copy {
    left: 24px !important;
    right: 24px !important;
    bottom: 24px !important;
    min-height: 132px !important;
    padding: 24px 26px !important
}

.svc-experience-copy h3 {
    font-size: clamp(27px, 2.2vw, 38px) !important
}

.svc-experience-copy p {
    max-width: 900px;
    font-size: clamp(13px, 1.05vw, 17px) !important
}

.svc-experience-controls {
    width: min(calc(100% - 48px), 1500px) !important;
    margin: 18px auto 0 !important;
    justify-content: space-between !important
}

.svc-experience-controls button:disabled {
    opacity: .28;
    cursor: default;
    transform: none !important;
    background: #fff !important;
    color: #111315 !important
}

.svc-experience-dots {
    margin-inline: auto
}

.svc-experience-dots i {
    cursor: pointer
}

@media (max-width:1180px) {
    .svc-experience-rail {
        gap: 20px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        scroll-padding-left: 24px !important
    }

    .svc-experience-card {
        flex-basis: 78vw !important;
        width: 78vw !important
    }

    .svc-experience-media {
        height: clamp(500px, 65vw, 650px) !important
    }
}

@media (max-width:820px) {
    .svc-blacklane-experience {
        padding-top: 100px !important;
        padding-bottom: 82px !important
    }

    .svc-blacklane-intro {
        width: min(calc(100% - 32px), 620px) !important;
        margin-bottom: 38px !important
    }

    .svc-experience-rail {
        gap: 16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        scroll-padding-left: 16px !important
    }

    .svc-experience-card {
        flex: 0 0 86vw !important;
        width: 86vw !important;
        max-width: 620px !important
    }

    .svc-experience-media {
        height: min(66vh, 610px) !important;
        min-height: 470px !important;
        border-radius: 18px !important
    }

    .svc-experience-copy {
        left: 16px !important;
        right: 16px !important;
        bottom: 16px !important;
        min-height: 125px !important;
        padding: 20px !important
    }

    .svc-experience-controls {
        width: calc(100% - 32px) !important
    }
}

@media (max-width:560px) {
    .svc-blacklane-experience {
        padding-top: 92px !important;
        padding-bottom: 68px !important
    }

    .svc-blacklane-intro {
        width: calc(100% - 30px) !important;
        margin-bottom: 30px !important
    }

    .svc-blacklane-intro h2 {
        font-size: clamp(48px, 15vw, 64px) !important;
        line-height: .92 !important;
        letter-spacing: -1.8px !important
    }

    .svc-blacklane-intro p {
        max-width: 30ch !important;
        margin-top: 22px !important;
        font-size: 14px !important;
        line-height: 1.48 !important
    }

    .svc-experience-rail {
        gap: 14px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-bottom: 14px !important
    }

    .svc-experience-card {
        flex: 0 0 82vw !important;
        width: 82vw !important;
        max-width: 330px !important
    }

    .svc-experience-media {
        height: 560px !important;
        min-height: 0 !important;
        border-radius: 17px !important
    }

    .svc-experience-card:first-child .svc-experience-image {
        object-position: 57% center !important
    }

    .svc-experience-card:nth-child(2) .svc-experience-image {
        object-position: center !important
    }

    .svc-experience-card:nth-child(3) .svc-experience-image {
        object-position: center !important
    }

    .svc-experience-copy {
        left: 20px !important;
        right: 20px !important;
        bottom: 18px !important;
        min-height: 145px !important;
        padding: 21px 20px !important;
        border-radius: 14px !important
    }

    .svc-experience-copy h3 {
        font-size: 23px !important;
        line-height: 1.14 !important
    }

    .svc-experience-copy p {
        margin-top: 7px !important;
        font-size: 13px !important;
        line-height: 1.47 !important
    }

    .svc-experience-controls {
        width: calc(100% - 32px) !important;
        margin-top: 10px !important
    }

    .svc-experience-controls button {
        width: 42px !important;
        height: 42px !important
    }
}

@media (max-width:380px) {
    .svc-experience-card {
        flex-basis: 80vw !important;
        width: 80vw !important;
        max-width: 292px !important
    }

    .svc-experience-media {
        height: 515px !important
    }

    .svc-experience-copy {
        left: 14px !important;
        right: 14px !important;
        bottom: 14px !important;
        padding: 18px !important
    }

    .svc-experience-copy h3 {
        font-size: 21px !important
    }

    .svc-experience-copy p {
        font-size: 12px !important
    }
}

@media (min-width:901px) {
    .svc-blacklane-experience {
        overflow: visible !important;
        padding-bottom: 150px !important
    }

    .svc-experience-shell {
        width: min(calc(100% - 20px), 1820px) !important;
        max-width: 1820px !important;
        margin: 0 auto !important;
        overflow: visible !important
    }

    .svc-web-stack-rail {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        overflow: visible !important;
        scroll-snap-type: none !important;
        cursor: default !important;
        user-select: auto !important;
        touch-action: auto !important
    }

    .svc-web-stack-card {
        position: sticky !important;
        width: 100% !important;
        max-width: none !important;
        flex: none !important;
        height: auto !important;
        margin: 0 0 34vh !important;
        scroll-snap-align: none !important;
        transform-origin: center top
    }

    .svc-web-stack-card-1 {
        top: 86px !important;
        z-index: 31 !important
    }

    .svc-web-stack-card-2 {
        top: 106px !important;
        z-index: 32 !important;
        margin-top: -12vh !important
    }

    .svc-web-stack-card-3 {
        top: 126px !important;
        z-index: 33 !important;
        margin-top: -12vh !important;
        margin-bottom: 0 !important
    }

    .svc-web-stack-card .svc-experience-media {
        width: 100% !important;
        height: min(72vh, 700px) !important;
        min-height: 560px !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 24px 65px rgba(13, 15, 17, .12), 0 7px 20px rgba(13, 15, 17, .05) !important;
        transform: translateY(0) scale(1) !important;
        transition: transform .42s cubic-bezier(.2, .8, .2, 1), box-shadow .42s ease !important
    }

    .svc-web-stack-card .svc-experience-image {
        width: 100% !important;
        height: 106% !important;
        object-fit: cover !important;
        transform: scale(1.025) !important;
        transition: transform .75s cubic-bezier(.2, .8, .2, 1), filter .45s ease !important
    }

    .svc-web-stack-card-1 .svc-experience-image {
        object-position: center 48% !important
    }

    .svc-web-stack-card-2 .svc-experience-image {
        object-position: center 52% !important
    }

    .svc-web-stack-card-3 .svc-experience-image {
        object-position: center 55% !important
    }

    .svc-web-stack-card:hover .svc-experience-media {
        transform: translateY(-4px) scale(1.003) !important;
        box-shadow: 0 34px 80px rgba(13, 15, 17, .16), 0 10px 25px rgba(13, 15, 17, .07) !important
    }

    .svc-web-stack-card:hover .svc-experience-image {
        transform: scale(1.045) !important
    }

    .svc-web-stack-card .svc-experience-copy {
        left: 14px !important;
        right: 14px !important;
        bottom: 14px !important;
        min-height: 92px !important;
        padding: 18px 20px !important;
        display: flex !important;
        justify-content: center !important;
        flex-direction: column !important;
        border: 1px solid rgba(255, 255, 255, .62) !important;
        border-radius: 10px !important;
        background: linear-gradient(105deg, rgba(11, 10, 10, .76), rgba(65, 58, 55, .58)) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        backdrop-filter: blur(16px) !important;
        box-shadow: 0 13px 35px rgba(0, 0, 0, .15) !important
    }

    .svc-web-stack-card .svc-experience-copy h3 {
        font-size: clamp(20px, 1.6vw, 29px) !important;
        line-height: 1.08 !important;
        letter-spacing: -.5px !important
    }

    .svc-web-stack-card .svc-experience-copy p {
        max-width: 1100px !important;
        margin-top: 6px !important;
        font-size: clamp(11px, .88vw, 15px) !important;
        line-height: 1.45 !important
    }

    .svc-blacklane-experience .svc-experience-controls {
        display: none !important
    }

    .svc-web-stack-card-1,
    .svc-web-stack-card-2,
    .svc-web-stack-card-3 {
        transition: filter .35s ease, opacity .35s ease
    }
}

@media (min-width:901px) and (max-width:1250px) {
    .svc-web-stack-card {
        margin-bottom: 28vh !important
    }

    .svc-web-stack-card-2,
    .svc-web-stack-card-3 {
        margin-top: -8vh !important
    }

    .svc-web-stack-card .svc-experience-media {
        height: min(68vh, 620px) !important;
        min-height: 500px !important
    }
}

@media (max-width:900px) {
    .svc-blacklane-experience {
        overflow: hidden !important
    }

    .svc-web-stack-rail {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important
    }

    .svc-web-stack-card {
        position: relative !important;
        top: auto !important;
        z-index: auto !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .svc-blacklane-experience .svc-experience-controls {
        display: flex !important
    }
}

@media (min-width:901px) {
    .svc-blacklane-experience {
        overflow: visible !important;
        padding-bottom: 110px !important
    }

    .svc-replace-shell {
        position: relative !important;
        width: min(calc(100% - 20px), 1820px) !important;
        max-width: 1820px !important;
        height: 265vh !important;
        margin: 0 auto !important;
        overflow: visible !important
    }

    .svc-replace-stage {
        position: sticky !important;
        top: 86px !important;
        display: block !important;
        width: 100% !important;
        height: min(74vh, 720px) !important;
        min-height: 560px !important;
        padding: 0 !important;
        overflow: hidden !important;
        scroll-snap-type: none !important;
        cursor: default !important;
        user-select: auto !important;
        touch-action: auto !important;
        border-radius: 13px;
        background: #d9d1c8;
        box-shadow: 0 28px 76px rgba(13, 15, 17, .12), 0 8px 22px rgba(13, 15, 17, .05)
    }

    .svc-replace-stage .svc-web-stack-card {
        --card-y: 0%;
        --card-scale: 1;
        --card-opacity: 1;
        position: absolute !important;
        inset: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: var(--card-opacity) !important;
        transform: translate3d(0, var(--card-y), 0) scale(var(--card-scale)) !important;
        transform-origin: center top !important;
        will-change: transform, opacity;
        transition: none !important
    }

    .svc-replace-stage .svc-web-stack-card-1 {
        z-index: 33 !important
    }

    .svc-replace-stage .svc-web-stack-card-2 {
        z-index: 32 !important
    }

    .svc-replace-stage .svc-web-stack-card-3 {
        z-index: 31 !important
    }

    .svc-replace-stage .svc-experience-media {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        overflow: hidden !important;
        border-radius: 13px !important;
        transform: none !important;
        box-shadow: none !important;
        transition: none !important
    }

    .svc-replace-stage .svc-experience-image {
        width: 100% !important;
        height: 106% !important;
        object-fit: cover !important;
        transform: scale(1.02) !important;
        transition: transform .65s cubic-bezier(.2, .8, .2, 1) !important
    }

    .svc-replace-stage .svc-web-stack-card-1 .svc-experience-image {
        object-position: center 48% !important
    }

    .svc-replace-stage .svc-web-stack-card-2 .svc-experience-image {
        object-position: center 52% !important
    }

    .svc-replace-stage .svc-web-stack-card-3 .svc-experience-image {
        object-position: center 55% !important
    }

    .svc-replace-stage .svc-web-stack-card.is-current-replace-card .svc-experience-image {
        transform: scale(1.035) !important
    }

    .svc-replace-stage .svc-experience-copy {
        left: 14px !important;
        right: 14px !important;
        bottom: 14px !important;
        min-height: 92px !important;
        padding: 18px 20px !important;
        display: flex !important;
        justify-content: center !important;
        flex-direction: column !important;
        border: 1px solid rgba(255, 255, 255, .64) !important;
        border-radius: 10px !important;
        background: linear-gradient(105deg, rgba(10, 10, 11, .77), rgba(63, 56, 53, .58)) !important;
        -webkit-backdrop-filter: blur(17px) !important;
        backdrop-filter: blur(17px) !important;
        box-shadow: 0 14px 38px rgba(0, 0, 0, .16) !important;
        transform: none !important;
        transition: none !important
    }

    .svc-replace-stage .svc-experience-copy h3 {
        font-size: clamp(20px, 1.55vw, 29px) !important;
        line-height: 1.08 !important
    }

    .svc-replace-stage .svc-experience-copy p {
        max-width: 1120px !important;
        margin-top: 6px !important;
        font-size: clamp(11px, .88vw, 15px) !important;
        line-height: 1.45 !important
    }

    .svc-blacklane-experience .svc-experience-controls {
        display: none !important
    }
}

@media (max-width:900px) {
    .svc-replace-shell {
        height: auto !important
    }

    .svc-replace-stage {
        position: relative !important;
        top: auto !important;
        display: flex !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        border-radius: 0 !important;
        background: 0 0 !important;
        box-shadow: none !important;
        scroll-snap-type: x mandatory !important
    }

    .svc-replace-stage .svc-web-stack-card {
        position: relative !important;
        inset: auto !important;
        opacity: 1 !important;
        transform: none !important;
        margin: 0 !important
    }

    .svc-blacklane-experience .svc-experience-controls {
        display: flex !important
    }
}

@media (prefers-reduced-motion:reduce) and (min-width:901px) {
    .svc-replace-shell {
        height: auto !important
    }

    .svc-replace-stage {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        overflow: visible !important;
        box-shadow: none !important;
        background: 0 0 !important
    }

    .svc-replace-stage .svc-web-stack-card {
        position: relative !important;
        inset: auto !important;
        height: 620px !important;
        margin-bottom: 18px !important;
        opacity: 1 !important;
        transform: none !important
    }
}

@media (min-width:901px) {
    .svc-pinned-experience {
        position: relative !important;
        overflow: visible !important;
        padding-bottom: 90px !important
    }

    .svc-pin-scroll-shell {
        position: relative !important;
        height: 310vh !important;
        width: min(calc(100% - 20px), 1820px) !important;
        max-width: 1820px !important;
        margin: 0 auto !important;
        overflow: visible !important
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        position: sticky !important;
        top: 88px !important;
        width: 100% !important;
        height: min(calc(100vh - 120px), 720px) !important;
        min-height: 560px !important;
        display: block !important;
        overflow: hidden !important;
        padding: 0 !important;
        border-radius: 14px !important;
        background: #d8d0c6 !important;
        box-shadow: 0 30px 82px rgba(13, 15, 17, .13), 0 8px 24px rgba(13, 15, 17, .055) !important;
        isolation: isolate
    }

    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        --card-y: 0%;
        --card-scale: 1;
        --card-opacity: 1;
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: var(--card-opacity) !important;
        transform: translate3d(0, var(--card-y), 0) scale(var(--card-scale)) !important;
        transform-origin: center top !important;
        will-change: transform, opacity;
        transition: none !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-1 {
        z-index: 30 !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-2 {
        z-index: 20 !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-3 {
        z-index: 10 !important
    }

    .svc-pin-scroll-shell .svc-experience-media {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        overflow: hidden !important;
        border-radius: inherit !important;
        box-shadow: none !important;
        transform: none !important;
        transition: none !important
    }

    .svc-pin-scroll-shell .svc-experience-image {
        width: 100% !important;
        height: 105% !important;
        object-fit: cover !important;
        transform: scale(1.02) !important;
        transition: transform .65s cubic-bezier(.2, .8, .2, 1) !important
    }

    .svc-pin-scroll-shell .is-current-replace-card .svc-experience-image {
        transform: scale(1.035) !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-1 .svc-experience-image {
        object-position: center 48% !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-2 .svc-experience-image {
        object-position: center 52% !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-3 .svc-experience-image {
        object-position: center 55% !important
    }

    .svc-pin-scroll-shell .svc-experience-copy {
        left: 14px !important;
        right: 14px !important;
        bottom: 14px !important;
        min-height: 92px !important;
        padding: 18px 20px !important;
        border-radius: 10px !important;
        border: 1px solid rgba(255, 255, 255, .64) !important;
        background: linear-gradient(105deg, rgba(10, 10, 11, .78), rgba(65, 57, 54, .58)) !important;
        -webkit-backdrop-filter: blur(17px) !important;
        backdrop-filter: blur(17px) !important;
        box-shadow: 0 14px 38px rgba(0, 0, 0, .16) !important;
        transform: none !important;
        transition: none !important
    }

    .svc-pin-scroll-shell .svc-experience-copy h3 {
        font-size: clamp(20px, 1.55vw, 29px) !important;
        line-height: 1.08 !important
    }

    .svc-pin-scroll-shell .svc-experience-copy p {
        max-width: 1120px !important;
        margin-top: 6px !important;
        font-size: clamp(11px, .88vw, 15px) !important;
        line-height: 1.45 !important
    }

    .svc-pinned-experience .svc-experience-controls {
        display: none !important
    }
}

@media (min-width:901px) and (max-width:1250px) {
    .svc-pin-scroll-shell {
        height: 300vh !important
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        top: 82px !important;
        height: min(calc(100vh - 110px), 650px) !important;
        min-height: 510px !important
    }
}

@media (max-width:900px) {
    .svc-pin-scroll-shell {
        height: auto !important
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        min-height: 0 !important;
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        background: 0 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important
    }

    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        position: relative !important;
        inset: auto !important;
        height: auto !important;
        opacity: 1 !important;
        transform: none !important
    }

    .svc-pinned-experience .svc-experience-controls {
        display: flex !important
    }
}

@media (min-width:901px) {
    .svc-pinned-experience {
        overflow: visible !important;
        padding-bottom: 96px !important
    }

    .svc-pin-scroll-shell {
        position: relative !important;
        width: min(calc(100% - 20px), 1820px) !important;
        max-width: 1820px !important;
        height: calc(min(74vh, 720px) + 180px) !important;
        min-height: 740px !important;
        margin: 0 auto !important;
        overflow: visible !important
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        position: sticky !important;
        top: 88px !important;
        width: 100% !important;
        height: min(calc(100vh - 120px), 720px) !important;
        min-height: 560px !important;
        display: block !important;
        overflow: hidden !important;
        padding: 0 !important;
        border-radius: 14px !important;
        background: #d8d0c6 !important;
        box-shadow: 0 30px 82px rgba(13, 15, 17, .13), 0 8px 24px rgba(13, 15, 17, .055) !important;
        isolation: isolate
    }

    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        --card-y: 0%;
        --card-scale: 1;
        --card-opacity: 1;
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: var(--card-opacity) !important;
        transform: translate3d(0, var(--card-y), 0) scale(var(--card-scale)) !important;
        transform-origin: center top !important;
        will-change: transform, opacity;
        transition: none !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-1 {
        z-index: 30 !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-2 {
        z-index: 20 !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-3 {
        z-index: 10 !important
    }

    .svc-pin-scroll-shell .svc-experience-media {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        overflow: hidden !important;
        border-radius: inherit !important;
        box-shadow: none !important;
        transform: none !important;
        transition: none !important
    }

    .svc-pin-scroll-shell .svc-experience-image {
        width: 100% !important;
        height: 105% !important;
        object-fit: cover !important;
        transform: scale(1.02) !important;
        transition: transform .55s cubic-bezier(.2, .8, .2, 1) !important
    }

    .svc-pin-scroll-shell .is-current-replace-card .svc-experience-image {
        transform: scale(1.035) !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-1 .svc-experience-image {
        object-position: center 48% !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-2 .svc-experience-image {
        object-position: center 52% !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-3 .svc-experience-image {
        object-position: center 55% !important
    }

    .svc-pin-scroll-shell .svc-experience-copy {
        left: 14px !important;
        right: 14px !important;
        bottom: 14px !important;
        min-height: 92px !important;
        padding: 18px 20px !important;
        border: 1px solid rgba(255, 255, 255, .64) !important;
        border-radius: 10px !important;
        background: linear-gradient(105deg, rgba(10, 10, 11, .78), rgba(65, 57, 54, .58)) !important;
        -webkit-backdrop-filter: blur(17px) !important;
        backdrop-filter: blur(17px) !important;
        box-shadow: 0 14px 38px rgba(0, 0, 0, .16) !important;
        transform: none !important;
        transition: none !important
    }

    .svc-pin-scroll-shell .svc-experience-copy h3 {
        font-size: clamp(20px, 1.55vw, 29px) !important;
        line-height: 1.08 !important
    }

    .svc-pin-scroll-shell .svc-experience-copy p {
        max-width: 1120px !important;
        margin-top: 6px !important;
        font-size: clamp(11px, .88vw, 15px) !important;
        line-height: 1.45 !important
    }

    .svc-pinned-experience .svc-experience-controls {
        display: none !important
    }
}

@media (min-width:901px) and (max-width:1250px) {
    .svc-pin-scroll-shell {
        min-height: 690px !important
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        top: 82px !important;
        height: min(calc(100vh - 110px), 650px) !important;
        min-height: 510px !important
    }
}

@media (max-width:900px) {
    .svc-pin-scroll-shell {
        height: auto !important;
        min-height: 0 !important
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        min-height: 0 !important;
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        background: 0 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important
    }

    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        position: relative !important;
        inset: auto !important;
        height: auto !important;
        opacity: 1 !important;
        transform: none !important
    }

    .svc-pinned-experience .svc-experience-controls {
        display: flex !important
    }
}

@media (min-width:901px) {
    .svc-pin-scroll-shell {
        height: calc(min(74vh, 720px) + 105px) !important;
        min-height: 665px !important
    }

    .svc-pinned-experience {
        padding-bottom: 42px !important
    }
}

@media (min-width:901px) and (max-width:1250px) {
    .svc-pin-scroll-shell {
        min-height: 620px !important
    }
}

.svc-blacklane-experience {
    padding-top: 92px !important
}

.svc-blacklane-intro {
    width: min(calc(100% - 40px), 680px) !important;
    margin: 0 auto 36px !important;
    padding: 0 10px
}

.svc-blacklane-intro h2 {
    max-width: 620px;
    margin: 0 auto !important;
    font-size: clamp(54px, 4.8vw, 76px) !important;
    line-height: .93 !important;
    letter-spacing: -2.5px !important;
    text-wrap: balance
}

.svc-blacklane-intro p {
    max-width: 560px !important;
    margin: 20px auto 0 !important;
    color: #4f5357 !important;
    font-size: clamp(14px, 1.05vw, 17px) !important;
    line-height: 1.55 !important;
    text-wrap: balance
}

.svc-experience-shell,
.svc-pin-scroll-shell {
    margin-top: 0 !important
}

@media (min-width:1440px) {
    .svc-blacklane-experience {
        padding-top: 82px !important
    }

    .svc-blacklane-intro {
        margin-bottom: 32px !important
    }

    .svc-blacklane-intro h2 {
        font-size: 70px !important
    }
}

@media (max-width:1180px) {
    .svc-blacklane-experience {
        padding-top: 82px !important
    }

    .svc-blacklane-intro {
        width: min(calc(100% - 36px), 640px) !important;
        margin-bottom: 30px !important
    }

    .svc-blacklane-intro h2 {
        font-size: clamp(50px, 6vw, 66px) !important
    }

    .svc-blacklane-intro p {
        max-width: 500px !important;
        font-size: 14px !important
    }
}

@media (max-width:820px) {
    .svc-blacklane-experience {
        padding-top: 72px !important
    }

    .svc-blacklane-intro {
        width: min(calc(100% - 30px), 560px) !important;
        margin-bottom: 26px !important
    }

    .svc-blacklane-intro h2 {
        font-size: clamp(46px, 10vw, 60px) !important;
        line-height: .95 !important;
        letter-spacing: -1.8px !important
    }

    .svc-blacklane-intro p {
        max-width: 420px !important;
        margin-top: 16px !important;
        font-size: 13.5px !important;
        line-height: 1.5 !important
    }
}

@media (max-width:560px) {
    .svc-blacklane-experience {
        padding-top: 58px !important
    }

    .svc-blacklane-intro {
        width: calc(100% - 28px) !important;
        margin-bottom: 22px !important;
        padding-inline: 4px
    }

    .svc-blacklane-intro h2 {
        font-size: clamp(42px, 13vw, 54px) !important;
        line-height: .96 !important;
        letter-spacing: -1.4px !important
    }

    .svc-blacklane-intro p {
        max-width: 31ch !important;
        margin-top: 15px !important;
        font-size: 13px !important;
        line-height: 1.48 !important
    }
}

@media (max-width:380px) {
    .svc-blacklane-intro h2 {
        font-size: 40px !important
    }

    .svc-blacklane-intro p {
        font-size: 12.5px !important
    }
}

.fleet-showroom-main {
    padding-top: 76px;
    overflow: hidden;
    background: #15191b
}

.fleet-showroom-intro {
    position: relative;
    overflow: hidden;
    padding: 72px 0 62px;
    color: #fff;
    background: radial-gradient(circle at 70% 35%, rgba(205, 174, 108, .1), transparent 28%), #111517
}

.fleet-showroom-grid,
.fleet-showroom-intro-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 70px 70px
}

.fleet-showroom-intro-inner {
    position: relative;
    z-index: 2;
    text-align: center
}

.fleet-showroom-intro-inner>p {
    margin-bottom: 13px;
    color: #d0aa58;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1.9px;
    text-transform: uppercase
}

.fleet-showroom-intro-inner h1 {
    color: #fff;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(58px, 6vw, 92px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -3px
}

.fleet-showroom-intro-inner h1 em {
    color: #dfbc70;
    font-family: 'Playfair Display', serif;
    font-weight: 500
}

.fleet-showroom-intro-inner>span {
    max-width: 650px;
    margin: 20px auto 0;
    display: block;
    color: rgba(255, 255, 255, .48);
    font-size: 13px;
    line-height: 1.7
}

.fleet-showroom {
    position: relative;
    min-height: 690px;
    padding: 18px 20px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .055);
    background: radial-gradient(circle at 52% 47%, rgba(210, 225, 232, .17), transparent 24%), radial-gradient(circle at 52% 48%, rgba(87, 103, 111, .1), transparent 48%), #181c1e
}

.fleet-showroom:nth-of-type(2n) {
    background: radial-gradient(circle at 50% 44%, rgba(214, 225, 231, .15), transparent 25%), radial-gradient(circle at 50% 49%, rgba(85, 100, 109, .09), transparent 48%), #15191b
}

.fleet-showroom-grid {
    z-index: -4;
    opacity: .42
}

.fleet-showroom-glow {
    position: absolute;
    z-index: -3;
    left: 50%;
    top: 46%;
    width: min(62vw, 940px);
    height: min(45vw, 650px);
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(226, 237, 242, .24) 0, rgba(170, 190, 201, .1) 38%, transparent 72%);
    filter: blur(8px);
    transform: translate(-50%, -50%);
    pointer-events: none
}

.fleet-showroom-stage {
    width: min(100%, 1480px);
    min-height: 650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 195px minmax(0, 1fr) 320px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(90deg, rgba(255, 255, 255, .012), transparent 18%, transparent 79%, rgba(255, 255, 255, .014));
    box-shadow: inset 0 0 90px rgba(0, 0, 0, .13), 0 26px 68px rgba(0, 0, 0, .16);
    opacity: 0;
    transform: translateY(28px) scale(.99);
    filter: blur(4px);
    transition: opacity .7s ease, transform .9s cubic-bezier(.16, .84, .24, 1), filter .7s ease
}

.fleet-showroom.is-showroom-visible .fleet-showroom-stage {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0)
}

.fleet-showroom-index {
    position: relative;
    padding: 38px 18px 22px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(255, 255, 255, .015), rgba(0, 0, 0, .04))
}

.fleet-showroom-index-list {
    display: grid;
    gap: 10px
}

.fleet-showroom-index-list a {
    min-height: 96px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    text-decoration: none;
    opacity: .35;
    transition: opacity .25s ease, transform .25s ease
}

.fleet-showroom-index-list a:hover {
    opacity: .72;
    transform: translateX(3px)
}

.fleet-showroom-index-list a.is-active {
    opacity: 1
}

.fleet-showroom-index-list strong {
    color: rgba(255, 255, 255, .5);
    font-family: 'Libre Caslon Display', serif;
    font-size: 57px;
    font-weight: 400;
    line-height: .85;
    letter-spacing: -3px
}

.fleet-showroom-index-list a.is-active strong {
    color: #e0ba67
}

.fleet-showroom-index-list span {
    color: rgba(255, 255, 255, .62);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase
}

.fleet-showroom-index-list a.is-active span {
    color: #d9b55f
}

.fleet-showroom-mini-icons {
    margin-top: auto;
    display: grid;
    gap: 8px
}

.fleet-showroom-mini-icons i {
    width: 34px;
    display: block;
    color: rgba(255, 255, 255, .18);
    font-style: normal;
    font-size: 11px
}

.fleet-showroom-mini-icons i.is-active {
    color: #ddb961
}

.fleet-showroom-car-zone {
    position: relative;
    min-width: 0;
    display: grid;
    place-items: center;
    overflow: hidden
}

.fleet-showroom-halo {
    position: absolute;
    left: 50%;
    top: 46%;
    width: 86%;
    height: 64%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(239, 245, 248, .34) 0, rgba(195, 210, 219, .14) 34%, rgba(45, 54, 59, .03) 65%, transparent 74%);
    filter: blur(13px);
    transform: translate(-50%, -50%)
}

.fleet-showroom-halo::after,
.fleet-showroom-halo::before {
    content: '';
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .025);
    border-radius: 50%
}

.fleet-showroom-halo::before {
    inset: -22%
}

.fleet-showroom-halo::after {
    inset: -43%
}

.fleet-showroom-floor {
    position: absolute;
    left: 50%;
    bottom: 15%;
    width: 77%;
    height: 18%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, .69), rgba(0, 0, 0, .19) 56%, transparent 75%);
    filter: blur(7px);
    transform: translateX(-50%)
}

.fleet-showroom-car {
    --showroom-x: 0px;
    --showroom-y: 0px;
    --showroom-scroll-y: 0px;
    --showroom-ry: 0deg;
    position: relative;
    z-index: 4;
    width: min(94%, 870px);
    opacity: 0;
    transform: perspective(1300px) translate3d(var(--showroom-x), calc(var(--showroom-y) + var(--showroom-scroll-y) + 18px), 0) rotateY(var(--showroom-ry)) scale(.955);
    filter: blur(5px);
    transition: opacity .7s ease .15s, transform 1s cubic-bezier(.16, .84, .24, 1) .12s, filter .7s ease .15s;
    will-change: transform
}

.fleet-showroom.is-showroom-visible .fleet-showroom-car {
    opacity: 1;
    transform: perspective(1300px) translate3d(var(--showroom-x), calc(var(--showroom-y) + var(--showroom-scroll-y)), 0) rotateY(var(--showroom-ry)) scale(1);
    filter: blur(0)
}

.fleet-showroom-car img {
    width: 100%;
    max-height: 515px;
    object-fit: contain;
    filter: drop-shadow(0 34px 28px rgba(0, 0, 0, .44)) contrast(1.03) saturate(.88);
    animation: showroomCarFloat 5.2s ease-in-out infinite
}

@keyframes showroomCarFloat {

    0%,
    100% {
        translate: 0 0
    }

    50% {
        translate: 0 -5px
    }
}

.fleet-showroom-info {
    margin: 15px;
    padding: 28px 24px 22px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 12px;
    background: rgba(14, 18, 20, .74);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), 0 21px 58px rgba(0, 0, 0, .22);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity .65s ease .27s, transform .78s cubic-bezier(.16, .84, .24, 1) .27s
}

.fleet-showroom.is-showroom-visible .fleet-showroom-info {
    opacity: 1;
    transform: translateX(0)
}

.fleet-showroom-info header {
    padding-bottom: 23px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.fleet-showroom-info h2 {
    margin: 0;
    color: #f7f3ea;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(27px, 2vw, 34px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.5px;
    text-transform: uppercase
}

.fleet-showroom-info header p {
    margin-top: 9px;
    color: rgba(255, 255, 255, .4);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase
}

.fleet-showroom-capacity {
    padding: 22px 0;
    display: grid;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.fleet-showroom-capacity>div {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 9px;
    align-items: center
}

.fleet-spec-icon {
    color: rgba(255, 255, 255, .52);
    text-align: center;
    font-size: 13px
}

.fleet-showroom-capacity strong {
    color: rgba(255, 255, 255, .67);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15px
}

.fleet-showroom-features {
    padding: 21px 0;
    display: grid;
    gap: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.fleet-showroom-features span {
    color: rgba(255, 255, 255, .64);
    font-size: 10px;
    transition: color .22s ease, transform .22s ease
}

.fleet-showroom-features span:hover {
    color: #e5c170;
    transform: translateX(4px)
}

.fleet-showroom-booking {
    margin-top: 18px !important;
    padding-top: 19px;
    display: grid
}

.fleet-showroom-booking small {
    color: rgba(255, 255, 255, .35);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px
}

.fleet-showroom-booking>strong {
    margin-top: 4px;
    color: rgba(255, 255, 255, .75);
    font-size: 11px
}

.fleet-showroom-booking a {
    min-height: 49px;
    margin-top: 18px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #c99c42;
    border-radius: 5px;
    background: linear-gradient(180deg, #d9b55e, #c99b40);
    color: #151719;
    text-decoration: none;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .2px;
    box-shadow: 0 12px 27px rgba(199, 155, 67, .14);
    transition: transform .25s ease, filter .25s ease, box-shadow .25s ease
}

.fleet-showroom-booking a>span {
    font-size: 21px;
    transition: transform .25s ease
}

.fleet-showroom-booking a:hover {
    transform: translateY(-3px);
    filter: brightness(1.07);
    box-shadow: 0 17px 37px rgba(199, 155, 67, .22)
}

.fleet-showroom-booking a:hover>span {
    transform: translateX(4px)
}

.fleet-showroom-cta {
    position: relative;
    padding: 92px 0 100px;
    color: #111315;
    text-align: center;
    background: #f3efe6
}

.fleet-showroom-cta p {
    margin-bottom: 12px;
    color: #b98432;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase
}

.fleet-showroom-cta h2 {
    margin: 0 auto;
    max-width: 900px;
    font-family: 'Libre Caslon Display', serif;
    font-size: clamp(50px, 5vw, 76px);
    font-weight: 400;
    line-height: .96;
    letter-spacing: -2.5px
}

.fleet-showroom-cta h2 em {
    color: #bd8d3f;
    font-family: 'Playfair Display', serif;
    font-weight: 500
}

.fleet-showroom-cta a {
    width: fit-content;
    min-height: 49px;
    margin: 28px auto 0;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(18, 20, 22, .15);
    border-radius: 999px;
    color: #111315;
    text-decoration: none;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    transition: .25s ease
}

.fleet-showroom-cta a:hover {
    border-color: #c79b55;
    background: #c79b55;
    transform: translateY(-2px)
}

@media (min-width:1500px) {
    .fleet-showroom {
        min-height: 735px
    }

    .fleet-showroom-stage {
        min-height: 695px;
        grid-template-columns: 210px minmax(0, 1fr) 335px
    }

    .fleet-showroom-car {
        width: min(94%, 920px)
    }

    .fleet-showroom-car img {
        max-height: 545px
    }
}

@media (max-width:1180px) {
    .fleet-showroom {
        min-height: 630px;
        padding-inline: 14px
    }

    .fleet-showroom-stage {
        min-height: 600px;
        grid-template-columns: 155px minmax(0, 1fr) 285px
    }

    .fleet-showroom-index {
        padding-inline: 12px
    }

    .fleet-showroom-index-list a {
        grid-template-columns: 55px minmax(0, 1fr);
        min-height: 84px
    }

    .fleet-showroom-index-list strong {
        font-size: 46px
    }

    .fleet-showroom-index-list span {
        font-size: 7px
    }

    .fleet-showroom-car {
        width: min(96%, 760px)
    }

    .fleet-showroom-car img {
        max-height: 450px
    }

    .fleet-showroom-info {
        margin: 11px;
        padding: 23px 18px 18px
    }

    .fleet-showroom-info h2 {
        font-size: 27px
    }
}

@media (max-width:900px) {
    .fleet-showroom-main {
        padding-top: 68px
    }

    .fleet-showroom-intro {
        padding: 58px 0 48px
    }

    .fleet-showroom {
        min-height: 0;
        padding: 12px
    }

    .fleet-showroom-stage {
        min-height: 0;
        grid-template-columns: 1fr;
        border-radius: 14px
    }

    .fleet-showroom-index {
        min-height: 96px;
        padding: 13px 16px;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08)
    }

    .fleet-showroom-index-list {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 5px
    }

    .fleet-showroom-index-list a {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 3px;
        text-align: center
    }

    .fleet-showroom-index-list strong {
        font-size: 32px;
        letter-spacing: -1.5px
    }

    .fleet-showroom-index-list span {
        font-size: 5.5px
    }

    .fleet-showroom-mini-icons {
        display: none
    }

    .fleet-showroom-car-zone {
        min-height: 445px
    }

    .fleet-showroom-car {
        width: min(96%, 700px)
    }

    .fleet-showroom-car img {
        max-height: 390px
    }

    .fleet-showroom-info {
        margin: 0;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, .08);
        border-radius: 0;
        background: rgba(10, 13, 14, .64)
    }

    .fleet-showroom-capacity {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px
    }

    .fleet-showroom-capacity>div {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: center
    }

    .fleet-showroom-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px 18px
    }
}

@media (max-width:600px) {
    .fleet-showroom-intro {
        padding: 46px 0 40px
    }

    .fleet-showroom-intro-inner h1 {
        font-size: clamp(48px, 14vw, 64px);
        letter-spacing: -2px
    }

    .fleet-showroom-intro-inner>span {
        max-width: 34ch;
        margin-top: 16px;
        font-size: 12px
    }

    .fleet-showroom {
        padding: 7px
    }

    .fleet-showroom-stage {
        border-radius: 10px
    }

    .fleet-showroom-index {
        min-height: 76px;
        padding: 10px 8px
    }

    .fleet-showroom-index-list {
        gap: 2px
    }

    .fleet-showroom-index-list strong {
        font-size: 25px
    }

    .fleet-showroom-index-list span {
        font-size: 4.8px;
        line-height: 1.2
    }

    .fleet-showroom-car-zone {
        min-height: 310px
    }

    .fleet-showroom-car {
        width: 100%
    }

    .fleet-showroom-car img {
        max-height: 280px
    }

    .fleet-showroom-info {
        padding: 20px 15px 16px
    }

    .fleet-showroom-info h2 {
        font-size: 26px
    }

    .fleet-showroom-capacity {
        padding: 18px 0
    }

    .fleet-showroom-capacity strong {
        font-size: 7px
    }

    .fleet-showroom-features {
        padding: 18px 0;
        gap: 8px 12px
    }

    .fleet-showroom-features span {
        font-size: 8.5px
    }

    .fleet-showroom-booking a {
        width: 100%
    }

    .fleet-showroom-cta {
        padding: 62px 0 68px
    }

    .fleet-showroom-cta h2 {
        font-size: clamp(42px, 12vw, 56px);
        letter-spacing: -1.8px
    }
}

@media (max-width:390px) {
    .fleet-showroom-car-zone {
        min-height: 275px
    }

    .fleet-showroom-car img {
        max-height: 250px
    }

    .fleet-showroom-index-list strong {
        font-size: 22px
    }

    .fleet-showroom-info {
        padding-inline: 12px
    }
}

@media (hover:none) {

    .fleet-showroom-booking a:hover,
    .fleet-showroom-cta a:hover {
        transform: none
    }
}

@media (prefers-reduced-motion:reduce) {

    .fleet-showroom-car,
    .fleet-showroom-car img,
    .fleet-showroom-info,
    .fleet-showroom-stage {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
        transition: none !important
    }
}

.fleet-showroom-main {
    background: #181c1e !important
}

.fleet-showroom-intro {
    padding: 48px 0 42px !important;
    background: #171b1d !important
}

.fleet-showroom-intro-inner h1 {
    font-size: clamp(52px, 4.7vw, 76px) !important
}

.fleet-showroom {
    min-height: 700px !important;
    padding: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, .035) !important;
    background: radial-gradient(ellipse at 53% 47%, rgba(232, 239, 243, .31) 0, rgba(189, 202, 211, .16) 18%, rgba(87, 99, 106, .07) 39%, transparent 61%), linear-gradient(180deg, #1c2022 0, #171b1d 100%) !important
}

.fleet-showroom:nth-of-type(2n) {
    background: radial-gradient(ellipse at 53% 47%, rgba(232, 239, 243, .29) 0, rgba(188, 201, 210, .15) 18%, rgba(85, 97, 104, .06) 39%, transparent 61%), linear-gradient(180deg, #1b1f21 0, #171b1d 100%) !important
}

.fleet-showroom-grid {
    opacity: .2 !important;
    background-size: 92px 92px !important
}

.fleet-showroom-glow {
    top: 47% !important;
    width: 760px !important;
    height: 450px !important;
    background: radial-gradient(ellipse, rgba(239, 245, 248, .52) 0, rgba(213, 224, 230, .3) 21%, rgba(151, 169, 179, .13) 46%, transparent 72%) !important;
    filter: blur(16px) !important
}

.fleet-showroom-stage {
    width: 100% !important;
    max-width: none !important;
    min-height: 700px !important;
    grid-template-columns: 90px minmax(0, 1fr) 330px !important;
    border: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, .07) !important;
    border-right: 1px solid rgba(255, 255, 255, .06) !important;
    background: 0 0 !important;
    box-shadow: none !important
}

.fleet-showroom-index {
    padding: 17px 10px 20px !important;
    border-right: 1px solid rgba(255, 255, 255, .09) !important;
    background: rgba(8, 11, 12, .1) !important
}

.fleet-showroom-index-list {
    gap: 0 !important
}

.fleet-showroom-index-list a {
    min-height: 108px !important;
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    align-content: center !important;
    justify-items: start !important;
    opacity: .35 !important
}

.fleet-showroom-index-list a.is-active {
    opacity: 1 !important
}

.fleet-showroom-index-list strong {
    font-size: 54px !important;
    line-height: .78 !important;
    letter-spacing: -3px !important
}

.fleet-showroom-index-list span {
    margin-left: 6px !important;
    font-size: 8px !important;
    line-height: 1.25 !important
}

.fleet-showroom-index-list a.is-active span,
.fleet-showroom-index-list a.is-active strong {
    color: #e0bb67 !important
}

.fleet-showroom-mini-icons {
    margin-top: auto !important;
    gap: 7px !important
}

.fleet-showroom-mini-icons i {
    width: 28px !important;
    font-size: 9px !important
}

.fleet-showroom-car-zone {
    min-height: 700px !important
}

.fleet-showroom-halo {
    top: 45% !important;
    width: 78% !important;
    height: 62% !important;
    background: radial-gradient(ellipse, rgba(246, 249, 250, .54) 0, rgba(214, 225, 231, .28) 27%, rgba(150, 166, 175, .1) 52%, transparent 73%) !important;
    filter: blur(11px) !important
}

.fleet-showroom-floor {
    bottom: 18% !important;
    width: 65% !important;
    height: 15% !important;
    background: radial-gradient(ellipse, rgba(0, 0, 0, .72), rgba(0, 0, 0, .25) 58%, transparent 76%) !important
}

.fleet-showroom-car {
    width: min(96%, 980px) !important
}

.fleet-showroom-car img {
    width: 100% !important;
    max-height: 560px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 30px 25px rgba(0, 0, 0, .48)) contrast(1.05) saturate(.84) !important
}

.fleet-showroom-info {
    align-self: stretch !important;
    margin: 14px 16px 14px 0 !important;
    padding: 29px 24px 22px !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 11px !important;
    background: rgba(20, 24, 26, .48) !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .015), 0 16px 40px rgba(0, 0, 0, .15) !important
}

.fleet-showroom-info header {
    padding-bottom: 27px !important
}

.fleet-showroom-info h2 {
    font-size: 27px !important;
    line-height: 1 !important;
    letter-spacing: -.7px !important
}

.fleet-showroom-info header p {
    margin-top: 7px !important;
    color: rgba(255, 255, 255, .38) !important;
    font-size: 9px !important
}

.fleet-showroom-capacity {
    padding: 24px 0 !important;
    gap: 15px !important
}

.fleet-showroom-capacity>div {
    grid-template-columns: 26px 1fr !important;
    gap: 9px !important
}

.fleet-spec-icon {
    font-size: 14px !important;
    color: rgba(255, 255, 255, .52) !important
}

.fleet-showroom-capacity strong {
    color: rgba(255, 255, 255, .69) !important;
    font-size: 9px !important
}

.fleet-showroom-features {
    padding: 22px 0 !important;
    gap: 9px !important
}

.fleet-showroom-features span {
    font-size: 10px !important;
    color: rgba(255, 255, 255, .66) !important
}

.fleet-showroom-booking {
    padding-top: 19px !important
}

.fleet-showroom-booking small {
    font-size: 8px !important;
    color: rgba(255, 255, 255, .38) !important
}

.fleet-showroom-booking>strong {
    margin-top: 3px !important;
    font-size: 16px !important;
    color: #f2efe8 !important;
    font-weight: 600 !important
}

.fleet-price-unit {
    font-size: 9px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, .52) !important
}

.fleet-showroom-booking a {
    min-height: 52px !important;
    margin-top: 18px !important;
    border-radius: 5px !important;
    font-size: 9px !important;
    background: linear-gradient(90deg, #c89a3e, #e5c36e, #c99b3f) !important
}

@media (min-width:901px) {
    .fleet-showroom-intro {
        padding-top: 40px !important;
        padding-bottom: 36px !important
    }
}

@media (max-width:1180px) and (min-width:901px) {
    .fleet-showroom-stage {
        grid-template-columns: 82px minmax(0, 1fr) 285px !important;
        min-height: 630px !important
    }

    .fleet-showroom,
    .fleet-showroom-car-zone {
        min-height: 630px !important
    }

    .fleet-showroom-index-list a {
        min-height: 96px !important
    }

    .fleet-showroom-index-list strong {
        font-size: 45px !important
    }

    .fleet-showroom-car img {
        max-height: 485px !important
    }

    .fleet-showroom-info {
        padding: 22px 18px 18px !important
    }
}

@media (max-width:900px) {
    .fleet-showroom {
        padding: 8px !important
    }

    .fleet-showroom-stage {
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        border-radius: 12px !important
    }

    .fleet-showroom-index {
        padding: 10px 8px !important;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, .08) !important
    }

    .fleet-showroom-index-list {
        grid-template-columns: repeat(4, 1fr) !important
    }

    .fleet-showroom-index-list a {
        min-height: 58px !important;
        justify-items: center !important;
        text-align: center !important
    }

    .fleet-showroom-index-list strong {
        font-size: 29px !important
    }

    .fleet-showroom-index-list span {
        margin-left: 0 !important;
        font-size: 5px !important
    }

    .fleet-showroom-car-zone {
        min-height: 420px !important
    }

    .fleet-showroom-car img {
        max-height: 370px !important
    }

    .fleet-showroom-info {
        margin: 0 !important;
        border-radius: 0 0 11px 11px !important
    }
}

@media (max-width:600px) {
    .fleet-showroom-car-zone {
        min-height: 300px !important
    }

    .fleet-showroom-car img {
        max-height: 270px !important
    }

    .fleet-showroom-info {
        padding: 19px 14px 15px !important
    }

    .fleet-showroom-info h2 {
        font-size: 24px !important
    }

    .fleet-showroom-capacity strong {
        font-size: 7px !important
    }

    .fleet-showroom-features span {
        font-size: 8.5px !important
    }
}

.hero-stats-row {
    width: 100%;
    margin: 22px 0 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch
}

.hero-stat-box {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 0 10px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    line-height: 1
}

.hero-stat-box:first-child {
    padding-left: 0
}

.hero-stat-box:last-child {
    padding-right: 0
}

.hero-stat-box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 78%;
    background: rgba(255, 255, 255, .13)
}

.hero-stat-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #e7bd6b
}

.hero-stat-value strong {
    font-size: clamp(30px, 2.6vw, 44px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -2px
}

.hero-stat-value sup {
    margin: 3px 0 0 5px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1
}

.hero-stat-box p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 7px;
    line-height: 1.3
}

@media (max-width:600px) {
    .hero-stats-row {
        margin: 16px 0 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 18px
    }

    .hero-stat-box {
        padding: 0 8px
    }

    .hero-stat-box:nth-child(2)::after {
        display: none
    }

    .hero-stat-value strong {
        font-size: 36px
    }

    .hero-stat-value sup {
        margin-left: 3px;
        font-size: 11px
    }

    .hero-stat-box p {
        font-size: 7px
    }
}

@media (min-width:901px) {
    .fleet-showroom-main {
        overflow: visible !important
    }

    .fleet-showroom {
        position: sticky !important;
        top: 76px !important;
        width: 100% !important;
        min-height: calc(100vh - 76px) !important;
        scroll-margin-top: 76px;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        border-radius: 16px 16px 0 0 !important;
        box-shadow: 0 -20px 54px rgba(0, 0, 0, .28) !important
    }

    .fleet-showroom-car-zone,
    .fleet-showroom-stage {
        min-height: calc(100vh - 76px) !important
    }

    .fleet-showroom-01 {
        z-index: 21
    }

    .fleet-showroom-02 {
        z-index: 22
    }

    .fleet-showroom-03 {
        z-index: 23
    }

    .fleet-showroom-04 {
        z-index: 24
    }

    .fleet-showroom-cta {
        position: relative;
        z-index: 30
    }
}

@media (min-width:901px) and (max-height:850px) {
    .fleet-showroom-info {
        margin: 10px 16px 10px 0 !important;
        padding: 20px 24px 16px !important
    }

    .fleet-showroom-info header {
        padding-bottom: 17px !important
    }

    .fleet-showroom-capacity {
        padding: 17px 0 !important;
        gap: 11px !important
    }

    .fleet-showroom-features {
        padding: 15px 0 !important;
        gap: 7px !important
    }

    .fleet-showroom-booking {
        padding-top: 11px !important
    }

    .fleet-showroom-booking a {
        min-height: 48px !important;
        margin-top: 11px !important
    }
}

@media (min-width:901px) {
    .svc-pinned-experience {
        position: relative !important;
        overflow: visible !important;
        padding-bottom: clamp(44px, 5vw, 76px) !important
    }

    .svc-pin-scroll-shell {
        position: relative !important;
        width: min(calc(100% - 32px), 1760px) !important;
        max-width: 1760px !important;
        height: calc(100vh + clamp(520px, 72vh, 740px)) !important;
        min-height: 0 !important;
        margin: 0 auto !important;
        overflow: visible !important;
        contain: layout style
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        position: sticky !important;
        top: 88px !important;
        width: 100% !important;
        height: clamp(540px, calc(100vh - 120px), 720px) !important;
        min-height: 0 !important;
        overflow: hidden !important;
        border-radius: 16px !important;
        background: #171717 !important;
        transform: translateZ(0);
        backface-visibility: hidden;
        isolation: isolate
    }

    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        opacity: 1 !important;
        transform: translate3d(0, var(--card-y, 0), 0) scale(var(--card-scale, 1)) !important;
        transform-origin: 50% 0 !important;
        transition: none !important;
        will-change: transform, opacity;
        backface-visibility: hidden
    }

    .svc-pin-scroll-shell .svc-experience-image,
    .svc-pin-scroll-shell .svc-experience-media {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important
    }

    .svc-pin-scroll-shell .svc-experience-image {
        object-fit: cover !important;
        transform: translateZ(0) scale(1.001) !important;
        transition: none !important;
        backface-visibility: hidden
    }

    .svc-pin-scroll-shell .is-current-replace-card .svc-experience-image {
        transform: translateZ(0) scale(1.001) !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-1 .svc-experience-image {
        object-position: center 48% !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-2 .svc-experience-image {
        object-position: center 52% !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-3 .svc-experience-image {
        object-position: center 52% !important
    }

    .svc-pin-scroll-shell .svc-experience-copy {
        left: clamp(14px, 1.6vw, 28px) !important;
        right: clamp(14px, 1.6vw, 28px) !important;
        bottom: clamp(14px, 1.6vw, 24px) !important;
        min-height: 96px !important;
        padding: clamp(17px, 1.5vw, 24px) !important;
        transform: translateZ(0) !important;
        transition: none !important
    }
}

@media (min-width:901px) and (max-height:760px) {
    .svc-pin-scroll-shell .svc-replace-stage {
        top: 78px !important;
        height: calc(100vh - 98px) !important
    }
}

@media (max-width:900px) {

    .svc-pin-scroll-shell,
    .svc-pin-scroll-shell .svc-replace-stage {
        min-height: 0 !important
    }

    .svc-pin-scroll-shell .svc-experience-card {
        flex: 0 0 min(88vw, 620px) !important
    }

    .svc-pin-scroll-shell .svc-experience-media {
        height: clamp(390px, 68vh, 610px) !important;
        min-height: 390px !important
    }

    .svc-pin-scroll-shell .svc-experience-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important
    }
}

@media (max-width:560px) {
    .svc-pin-scroll-shell .svc-experience-card {
        flex-basis: calc(100vw - 32px) !important
    }

    .svc-pin-scroll-shell .svc-experience-media {
        height: clamp(360px, 62vh, 520px) !important;
        min-height: 360px !important
    }

    .svc-pin-scroll-shell .svc-experience-copy {
        left: 10px !important;
        right: 10px !important;
        bottom: 10px !important
    }
}

@media (prefers-reduced-motion:reduce) {

    .svc-pin-scroll-shell .svc-experience-image,
    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        transition: none !important
    }
}

@media (min-width:901px) {
    .svc-pinned-experience {
        overflow: visible !important;
        padding-bottom: 0 !important
    }

    .svc-pin-scroll-shell {
        position: relative !important;
        width: min(calc(100% - 32px), 1760px) !important;
        max-width: 1760px !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 auto !important;
        overflow: visible !important;
        contain: none !important
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        position: relative !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        display: block !important;
        overflow: visible !important;
        border-radius: 0 !important;
        background: 0 0 !important;
        box-shadow: none !important;
        transform: none !important;
        isolation: auto !important
    }

    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        position: sticky !important;
        inset: auto !important;
        top: 88px !important;
        width: 100% !important;
        height: clamp(540px, calc(100vh - 120px), 720px) !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
        overflow: hidden !important;
        border-radius: 16px !important;
        background: #171717 !important;
        box-shadow: 0 -16px 48px rgba(0, 0, 0, .18) !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-1 {
        z-index: 11 !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-2 {
        z-index: 12 !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-3 {
        z-index: 13 !important
    }

    .svc-pin-scroll-shell .svc-experience-image,
    .svc-pin-scroll-shell .svc-experience-media {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important
    }

    .svc-pin-scroll-shell .is-current-replace-card .svc-experience-image,
    .svc-pin-scroll-shell .svc-experience-image {
        object-fit: cover !important;
        transform: none !important;
        transition: none !important
    }

    .svc-pin-scroll-shell .svc-experience-copy {
        transform: none !important;
        opacity: 1 !important
    }
}

@media (min-width:901px) and (max-height:760px) {
    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        top: 78px !important;
        height: calc(100vh - 98px) !important
    }
}

@media (min-width:901px) {
    .svc-pinned-experience {
        position: relative !important;
        overflow: visible !important;
        padding-bottom: clamp(38px, 4vw, 64px) !important
    }

    .svc-pin-scroll-shell {
        position: relative !important;
        width: min(calc(100% - 32px), 1760px) !important;
        max-width: 1760px !important;
        height: calc(300vh - 360px) !important;
        min-height: 1620px !important;
        margin: 0 auto !important;
        overflow: visible !important;
        contain: layout style !important
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        position: sticky !important;
        top: 88px !important;
        width: 100% !important;
        height: clamp(540px, calc(100vh - 120px), 720px) !important;
        min-height: 0 !important;
        display: block !important;
        overflow: hidden !important;
        border-radius: 16px !important;
        background: #171717 !important;
        box-shadow: 0 28px 76px rgba(13, 15, 17, .14) !important;
        transform: translateZ(0) !important;
        isolation: isolate !important
    }

    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        position: absolute !important;
        inset: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        visibility: visible !important;
        opacity: var(--card-opacity, 1) !important;
        transform: translate3d(0, var(--card-y, 0), 0) scale(var(--card-scale, 1)) !important;
        transform-origin: center top !important;
        transition: none !important;
        will-change: transform, opacity !important;
        backface-visibility: hidden !important;
        overflow: hidden !important;
        border-radius: inherit !important;
        background: #171717 !important;
        box-shadow: none !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-1 {
        z-index: 3 !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-2 {
        z-index: 2 !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-3 {
        z-index: 1 !important;
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) !important
    }

    .svc-pin-scroll-shell .svc-experience-image,
    .svc-pin-scroll-shell .svc-experience-media {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important
    }

    .svc-pin-scroll-shell .is-current-replace-card .svc-experience-image,
    .svc-pin-scroll-shell .svc-experience-image {
        object-fit: cover !important;
        transform: translateZ(0) scale(1.001) !important;
        transition: none !important;
        backface-visibility: hidden !important
    }

    .svc-pin-scroll-shell .svc-experience-copy {
        opacity: 1 !important;
        transform: translateZ(0) !important;
        transition: none !important
    }
}

@media (min-width:901px) and (max-height:760px) {
    .svc-pin-scroll-shell {
        height: calc(300vh - 294px) !important;
        min-height: 1380px !important
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        top: 78px !important;
        height: calc(100vh - 98px) !important
    }
}

@media (min-width:901px) {
    .svc-pinned-experience {
        overflow: visible !important;
        padding-bottom: 0 !important
    }

    .svc-pin-scroll-shell {
        position: relative !important;
        width: min(calc(100% - 32px), 1760px) !important;
        max-width: 1760px !important;
        height: clamp(540px, calc(100vh - 120px), 720px) !important;
        min-height: 0 !important;
        margin: 0 auto !important;
        overflow: visible !important;
        contain: none !important
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        position: sticky !important;
        top: 88px !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        overflow: hidden !important;
        display: block !important;
        background: #171717 !important;
        border-radius: 16px !important;
        transform: translateZ(0) !important;
        isolation: isolate !important
    }

    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        margin: 0 !important;
        opacity: var(--card-opacity, 1) !important;
        visibility: visible !important;
        transform: translate3d(0, var(--card-y, 0), 0) scale(var(--card-scale, 1)) !important;
        transform-origin: center top !important;
        transition: none !important;
        will-change: transform, opacity !important;
        backface-visibility: hidden !important;
        border-radius: inherit !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-1 {
        z-index: 3 !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-2 {
        z-index: 2 !important
    }

    .svc-pin-scroll-shell .svc-web-stack-card-3 {
        z-index: 1 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translate3d(0, 0, 0) !important
    }

    .svc-pin-scroll-shell .svc-experience-image,
    .svc-pin-scroll-shell .svc-experience-media {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important
    }

    .svc-pin-scroll-shell .is-current-replace-card .svc-experience-image,
    .svc-pin-scroll-shell .svc-experience-image {
        object-fit: cover !important;
        transform: translateZ(0) scale(1.001) !important;
        transition: none !important
    }

    .svc-pin-scroll-shell .svc-experience-copy {
        opacity: 1 !important;
        transform: translateZ(0) !important;
        transition: none !important
    }

    .svc-pinned-experience+section {
        margin-top: 0 !important
    }
}

@media (min-width:901px) and (max-height:760px) {
    .svc-pin-scroll-shell {
        height: calc(100vh - 98px) !important
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        top: 78px !important
    }
}

/* =========================================================
   FINAL PINNED EXPERIENCE SCROLL
   Keep the gallery fixed until all three images have slid.
   These rules intentionally override the older experiments above.
   ========================================================= */
@media (min-width:901px) {
    .svc-pinned-experience {
        position: relative !important;
        overflow: visible !important;
        padding-bottom: clamp(40px, 5vw, 72px) !important;
    }

    .svc-pin-scroll-shell {
        position: relative !important;
        width: min(calc(100% - 32px), 1760px) !important;
        max-width: 1760px !important;
        height: calc(300vh - 240px) !important;
        min-height: 1680px !important;
        margin: 0 auto !important;
        overflow: visible !important;
        contain: layout style !important;
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        position: sticky !important;
        top: 88px !important;
        width: 100% !important;
        height: clamp(540px, calc(100vh - 120px), 720px) !important;
        overflow: hidden !important;
        border-radius: 16px !important;
        background: #171717 !important;
        transform: translateZ(0) !important;
        isolation: isolate !important;
    }

    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        opacity: var(--card-opacity, 1) !important;
        transform: translate3d(0, var(--card-y, 0), 0) !important;
        transition: none !important;
        will-change: transform !important;
        backface-visibility: hidden !important;
    }

    .svc-pin-scroll-shell .svc-web-stack-card-1 {
        z-index: 3 !important;
    }

    .svc-pin-scroll-shell .svc-web-stack-card-2 {
        z-index: 2 !important;
    }

    .svc-pin-scroll-shell .svc-web-stack-card-3 {
        z-index: 1 !important;
    }
}

@media (min-width:901px) and (max-height:760px) {
    .svc-pin-scroll-shell {
        height: calc(300vh - 196px) !important;
        min-height: 1380px !important;
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        top: 78px !important;
        height: calc(100vh - 98px) !important;
    }
}

.svc-blacklane-intro {
    width: min(calc(100% - 48px), 1500px) !important;
    max-width: 1500px !important;
    margin: 0 auto clamp(48px, 6vw, 86px) !important;
    padding: clamp(48px, 7vw, 104px) 0 clamp(36px, 5vw, 72px) !important;
    text-align: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important
}

.svc-blacklane-intro h2 {
    width: 100% !important;
    max-width: 1450px !important;
    margin: 0 auto !important;
    color: #111418 !important;
    font-family: 'Libre Caslon Display', Georgia, serif !important;
    font-size: clamp(78px, 9.3vw, 164px) !important;
    font-weight: 400 !important;
    line-height: .91 !important;
    letter-spacing: clamp(-7px, -.38vw, -3px) !important;
    text-align: center !important;
    text-wrap: balance
}

.svc-blacklane-intro h2 span {
    display: block;
    opacity: 0;
    transform: translate3d(0, 54px, 0);
    animation: svcIntroLineIn 1s cubic-bezier(.16, 1, .3, 1) forwards
}

.svc-blacklane-intro h2 span:nth-child(2) {
    animation-delay: .13s
}

.svc-blacklane-intro p {
    width: min(100%, 1420px) !important;
    max-width: 1420px !important;
    margin: clamp(42px, 4.5vw, 70px) auto 0 !important;
    color: #111418 !important;
    font-size: clamp(22px, 2.05vw, 36px) !important;
    font-weight: 500 !important;
    line-height: 1.28 !important;
    letter-spacing: -.025em !important;
    text-align: center !important;
    text-wrap: balance;
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    animation: svcIntroCopyIn .85s .34s cubic-bezier(.16, 1, .3, 1) forwards
}

@keyframes svcIntroLineIn {
    from {
        opacity: 0;
        transform: translate3d(0, 54px, 0);
        filter: blur(5px)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0)
    }
}

@keyframes svcIntroCopyIn {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0)
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@media (max-width:900px) {
    .svc-blacklane-intro {
        width: min(calc(100% - 32px), 760px) !important;
        margin-bottom: 38px !important;
        padding: 64px 0 32px !important
    }

    .svc-blacklane-intro h2 {
        font-size: clamp(52px, 14vw, 94px) !important;
        line-height: .94 !important;
        letter-spacing: clamp(-4px, -.55vw, -2px) !important
    }

    .svc-blacklane-intro p {
        max-width: 720px !important;
        margin-top: 30px !important;
        font-size: clamp(17px, 4.2vw, 25px) !important;
        line-height: 1.38 !important
    }
}

@media (max-width:560px) {
    .svc-blacklane-intro h2 span:first-child {
        white-space: nowrap;
        font-size: .83em
    }
}

@media (prefers-reduced-motion:reduce) {

    .svc-blacklane-intro h2 span,
    .svc-blacklane-intro p {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important
    }
}

.svc-blacklane-experience {
    padding-top: 12px !important
}

.svc-blacklane-intro {
    width: min(calc(100% - 48px), 1180px) !important;
    max-width: 1180px !important;
    margin: 0 auto clamp(26px, 3vw, 42px) !important;
    padding: clamp(24px, 3vw, 42px) 0 clamp(18px, 2.2vw, 30px) !important
}

.svc-blacklane-intro h2 {
    max-width: 1120px !important;
    font-size: clamp(62px, 6.4vw, 108px) !important;
    line-height: .92 !important;
    letter-spacing: clamp(-5px, -.3vw, -2.5px) !important
}

.svc-blacklane-intro p {
    max-width: 1120px !important;
    margin-top: clamp(20px, 2.2vw, 32px) !important;
    font-size: clamp(17px, 1.35vw, 24px) !important;
    line-height: 1.34 !important
}

@media (max-width:900px) {
    .svc-blacklane-experience {
        padding-top: 8px !important
    }

    .svc-blacklane-intro {
        margin-bottom: 24px !important;
        padding: 30px 0 18px !important
    }

    .svc-blacklane-intro h2 {
        font-size: clamp(44px, 11vw, 70px) !important
    }

    .svc-blacklane-intro p {
        max-width: 680px !important;
        margin-top: 19px !important;
        font-size: clamp(15px, 3.6vw, 19px) !important
    }
}

@media (max-width:560px) {
    .svc-blacklane-intro {
        width: calc(100% - 28px) !important;
        padding-top: 32px !important
    }

    .svc-blacklane-intro h2 span:first-child {
        white-space: normal !important;
        font-size: 1em !important
    }
}

@media (min-width:1101px) {
    .svc-blacklane-experience {
        padding-top: 76px !important
    }

    .svc-blacklane-intro {
        width: min(calc(100% - 64px), 1120px) !important;
        margin: 0 auto 28px !important;
        padding: 26px 0 16px !important
    }

    .svc-blacklane-intro h2 {
        max-width: 1050px !important;
        font-size: clamp(62px, 5.8vw, 100px) !important;
        line-height: .93 !important;
        letter-spacing: clamp(-4px, -.26vw, -2px) !important
    }

    .svc-blacklane-intro p {
        max-width: 1040px !important;
        margin-top: 18px !important;
        font-size: clamp(16px, 1.25vw, 22px) !important;
        line-height: 1.42 !important
    }

    .svc-pin-scroll-shell {
        width: min(calc(100% - 40px), 1760px) !important
    }

    #site-footer,
    #svc-about,
    #svc-fleet,
    #svc-sanctuary,
    #svc-services {
        scroll-margin-top: 78px
    }

    .svc-rail-nav a {
        background: 0 0 !important;
        transition: background-color .28s ease, color .28s ease !important
    }

    .svc-rail-nav a.is-active {
        background: #d1a341 !important;
        color: #061523 !important
    }
}

@media (min-width:901px) and (max-width:1100px) {
    .svc-blacklane-experience {
        padding-top: 72px !important
    }

    .svc-blacklane-intro {
        margin-bottom: 24px !important
    }
}

@media (max-width:900px) {
    .svc-blacklane-experience {
        padding-top: 68px !important
    }

    .svc-blacklane-intro {
        width: min(calc(100% - 28px), 720px) !important;
        margin: 0 auto 22px !important;
        padding: 28px 0 16px !important
    }

    .svc-blacklane-intro h2 {
        font-size: clamp(44px, 11vw, 70px) !important;
        line-height: .95 !important
    }

    .svc-blacklane-intro p {
        max-width: 650px !important;
        margin-top: 17px !important;
        font-size: clamp(15px, 3.7vw, 19px) !important;
        line-height: 1.45 !important
    }

    #site-footer,
    #svc-about,
    #svc-fleet,
    #svc-sanctuary,
    #svc-services {
        scroll-margin-top: 68px
    }
}

@media (max-width:560px) {
    .svc-blacklane-intro {
        width: calc(100% - 24px) !important;
        padding-top: 22px !important
    }

    .svc-blacklane-intro h2 {
        font-size: clamp(40px, 12vw, 58px) !important
    }

    .svc-blacklane-intro p {
        font-size: 15px !important
    }
}

@media (min-width:901px) {

    .svc-page .site-header,
    .svc-page .site-header.is-scrolled,
    .svc-page .site-header:not(.is-scrolled) {
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(255, 255, 255, .98) !important;
        border-bottom-color: rgba(14, 16, 18, .1) !important
    }

    .svc-page .site-header .main-nav,
    .svc-page .site-header.is-scrolled .main-nav,
    .svc-page .site-header:not(.is-scrolled) .main-nav {
        opacity: 1 !important;
        visibility: visible !important
    }

    .svc-page .site-header .main-nav a,
    .svc-page .site-header.is-scrolled .main-nav a,
    .svc-page .site-header:not(.is-scrolled) .main-nav a {
        opacity: 1 !important;
        visibility: visible !important;
        color: rgba(17, 19, 21, .72) !important;
        -webkit-text-fill-color: rgba(17, 19, 21, .72) !important
    }

    .svc-page .site-header .main-nav a[aria-current=page],
    .svc-page .site-header.is-scrolled .main-nav a[aria-current=page],
    .svc-page .site-header:not(.is-scrolled) .main-nav a[aria-current=page] {
        color: #0b0d0f !important;
        -webkit-text-fill-color: #0b0d0f !important;
        font-weight: 700 !important
    }
}

@media (min-width:981px) {
    .hero-stats-row {
        margin-top: 16px;
        margin-bottom: 7px
    }

    .hero-copy .hero-booking-card {
        margin-top: 7px !important
    }

    .hero-section.hero-diagonal-premium .hero-copy .hero-booking-card>.booking-bar {
        padding: 8px !important;
        gap: 7px !important;
        border-radius: 21px !important
    }

    .hero-section.hero-diagonal-premium .hero-copy .hero-booking-card>.booking-bar>.booking-field,
    .hero-section.hero-diagonal-premium .hero-copy .hero-booking-card>.booking-bar>.booking-field:first-child {
        min-height: 58px !important;
        padding: 7px 11px !important;
        grid-template-columns: 34px minmax(0, 1fr) !important;
        column-gap: 9px !important;
        border-radius: 14px !important
    }

    .hero-section.hero-diagonal-premium .hero-copy .hero-booking-card .booking-field-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        border-radius: 10px !important
    }

    .hero-section.hero-diagonal-premium .hero-copy .hero-booking-card .booking-field-icon svg {
        width: 15px !important;
        height: 15px !important
    }

    .hero-section.hero-diagonal-premium .hero-copy .hero-booking-card .booking-field-content {
        gap: 3px !important
    }

    .hero-section.hero-diagonal-premium .hero-copy .hero-booking-card>.booking-bar>.quote-btn {
        height: 44px !important;
        padding: 0 18px !important
    }
}

.hero-section .hero-booking-card,
.hero-section .hero-stats-row {
    display: none !important
}

.journey-mode-booking {
    width: min(740px, calc(100vw - 150px));
    margin-top: 16px;
    position: relative;
    z-index: 20;
    color: #111820
}

.journey-mode-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 15px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px)
}

.journey-mode-tab {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(8, 24, 37, .13);
    border-radius: 11px;
    background: 0 0;
    color: #6b7075;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: color .28s ease, background-color .28s ease, border-color .28s ease, transform .28s ease, box-shadow .28s ease
}

.journey-mode-tab:hover {
    color: #071725;
    border-color: rgba(7, 23, 37, .25);
    transform: translateY(-1px)
}

.journey-mode-tab.is-active {
    border-color: #071725;
    background: #071725;
    color: #fff;
    box-shadow: 0 12px 28px rgba(7, 23, 37, .2)
}

.journey-mode-form {
    margin-top: 7px;
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 15px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 26px 65px rgba(0, 0, 0, .2);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    transform-origin: top center
}

.journey-mode-form.is-changing {
    animation: journeyModeFormIn .42s cubic-bezier(.16, 1, .3, 1)
}

.journey-form-field {
    min-width: 0
}

.journey-form-field[hidden] {
    display: none !important
}

.journey-field-full {
    grid-column: 1/-1
}

.journey-form-field>label {
    min-height: 13px;
    margin: 0 0 3px 2px;
    display: block;
    color: #888e94;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase
}

.journey-form-field>label small {
    color: #aeb2b6;
    font-size: 7px;
    letter-spacing: .05em
}

.journey-input-shell {
    min-height: 40px;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    border: 1px solid #d9dde1;
    border-radius: 10px;
    background: rgba(255, 255, 255, .9);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease
}

.journey-input-shell:focus-within {
    border-color: #d4a642;
    box-shadow: 0 0 0 4px rgba(212, 166, 66, .12);
    transform: translateY(-1px)
}

.journey-input-shell>span {
    color: #bf8d29;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    font-weight: 700
}

.journey-input-plain {
    grid-template-columns: 1fr
}

.journey-input-shell input,
.journey-input-shell select {
    width: 100%;
    min-width: 0;
    height: 38px;
    border: 0;
    outline: 0;
    background: 0 0;
    color: #111820;
    font-size: 13px
}

.journey-input-shell input::placeholder {
    color: #92969a
}

.journey-mode-submit {
    border: 1px solid rgba(244, 203, 111, 0.95) !important;

    /* Gold center with blackish gradient on both sides */
    background: linear-gradient(90deg,
            #171719 0%,
            #5e4b28 14%,
            #e5b34c 32%,
            #f0ca72 50%,
            #e5b34c 68%,
            #5e4b28 86%,
            #171719 100%) !important;

    color: #09141d !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 12px 0 18px rgba(0, 0, 0, 0.14),
        inset -12px 0 18px rgba(0, 0, 0, 0.14),
        0 10px 24px rgba(223, 169, 67, 0.22) !important;
}

.journey-mode-submit:hover {
    background: linear-gradient(90deg,
            #0d0d0e 0%,
            #6d572e 14%,
            #e8b94f 32%,
            #f7d585 50%,
            #e8b94f 68%,
            #6d572e 86%,
            #0d0d0e 100%) !important;

    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 14px 0 20px rgba(0, 0, 0, 0.17),
        inset -14px 0 20px rgba(0, 0, 0, 0.17),
        0 14px 30px rgba(223, 169, 67, 0.3) !important;
}

.journey-mode-submit span:last-child {
    font-size: 21px;
    transition: transform .28s ease
}

.journey-mode-submit:hover span:last-child {
    transform: translateX(5px)
}

@keyframes journeyModeFormIn {
    from {
        opacity: .35;
        transform: translateY(-8px) scale(.985)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@media (max-width:1100px) {
    .journey-mode-booking {
        width: min(750px, calc(100vw - 64px))
    }
}

@media (max-width:760px) {
    .journey-mode-booking {
        width: 100%;
        margin-top: 22px
    }

    .journey-mode-tabs {
        gap: 7px;
        padding: 6px;
        border-radius: 17px
    }

    .journey-mode-tab {
        min-height: 44px;
        padding: 0 8px;
        border-radius: 13px;
        font-size: 12px
    }

    .journey-mode-form {
        padding: 12px;
        grid-template-columns: 1fr;
        gap: 10px;
        border-radius: 18px
    }

    .journey-field-full,
    .journey-mode-submit {
        grid-column: auto
    }
}

@media (max-width:430px) {
    .journey-mode-tabs {
        grid-template-columns: 1fr
    }

    .journey-mode-tab {
        min-height: 44px
    }
}

@media (prefers-reduced-motion:reduce) {

    .journey-input-shell,
    .journey-mode-form.is-changing,
    .journey-mode-submit,
    .journey-mode-submit span,
    .journey-mode-tab {
        animation: none !important;
        transition: none !important
    }
}

.journey-mode-tabs {
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    background: linear-gradient(145deg,
            #242628 0%,
            #111315 55%,
            #050606 100%) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 40px rgba(0, 0, 0, 0.35) !important;
}


.journey-mode-tab {
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: linear-gradient(145deg,
            #292b2d 0%,
            #151719 55%,
            #08090a 100%) !important;
    color: rgba(255, 255, 255, 0.72) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 5px 14px rgba(0, 0, 0, 0.2) !important;
}

.journey-mode-tab:hover {
    color: #ffffff !important;
    border-color: rgba(211, 188, 136, 0.65) !important;
    background: linear-gradient(145deg,
            #383a3d,
            #1a1c1e 55%,
            #0a0b0c) !important;
    transform: translateY(-2px);
}

.journey-mode-tab.is-active {
    border-color: rgba(244, 203, 111, 0.95) !important;

    /* Gold in center with blackish gradient on both sides */
    background: linear-gradient(90deg,
            #171719 0%,
            #5e4b28 14%,
            #e5b34c 32%,
            #f0ca72 50%,
            #e5b34c 68%,
            #5e4b28 86%,
            #171719 100%) !important;

    color: #09141d !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 12px 0 18px rgba(0, 0, 0, 0.14),
        inset -12px 0 18px rgba(0, 0, 0, 0.14),
        0 10px 24px rgba(223, 169, 67, 0.22) !important;
}

.journey-mode-form {
    border-color: rgba(255, 255, 255, .15) !important;
    background: linear-gradient(145deg, rgba(24, 25, 26, .76), rgba(9, 11, 13, .64)) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 28px 68px rgba(0, 0, 0, .28) !important
}

.journey-form-field>label {
    color: rgba(255, 255, 255, .7) !important
}

.journey-form-field>label small {
    color: rgba(255, 255, 255, .42) !important
}

.journey-input-shell {
    border-color: rgba(255, 255, 255, .14) !important;
    background: linear-gradient(145deg, rgba(28, 29, 30, .64), rgba(14, 16, 18, .55)) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035) !important
}

.journey-input-shell:hover {
    border-color: rgba(223, 169, 67, .4) !important;
    background: linear-gradient(145deg, rgba(34, 35, 36, .7), rgba(17, 19, 21, .62)) !important
}

.journey-input-shell:focus-within {
    border-color: rgba(223, 169, 67, .68) !important;
    box-shadow: 0 0 0 4px rgba(223, 169, 67, .1), inset 0 1px 0 rgba(255, 255, 255, .05) !important
}

.journey-input-shell>span {
    color: #dfa943 !important
}

.journey-input-shell input,
.journey-input-shell select {
    color: #fff !important;
    color-scheme: dark
}

.journey-input-shell input::placeholder {
    color: rgba(255, 255, 255, .48) !important
}

.journey-input-shell select option {
    background: #11161b;
    color: #fff
}

.journey-mode-submit {
    background: linear-gradient(90deg, #dfa943, #e7b84f) !important;
    color: #09141d !important
}

/* Compact booking form + fully clickable native date/time fields */
.journey-mode-booking {
    width: min(620px, calc(100vw - 150px));
    margin-top: 12px
}

.journey-mode-tabs {
    gap: 6px;
    padding: 4px;
    border-radius: 13px
}

.journey-mode-tab {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 10px
}

.journey-mode-form {
    margin-top: 6px;
    padding: 10px;
    gap: 7px 9px;
    border-radius: 13px
}

.journey-form-field>label {
    min-height: 11px;
    margin-bottom: 2px
}

.journey-input-shell {
    min-height: 36px;
    padding: 0 9px;
    border-radius: 9px
}

.journey-input-shell input,
.journey-input-shell select {
    height: 34px
}

.journey-picker-shell {
    cursor: pointer
}

.journey-picker-shell input {
    cursor: pointer
}

.journey-mode-submit {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 340px);
    min-height: 38px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 9px
}

@media (max-width:1100px) {
    .journey-mode-booking {
        width: min(620px, calc(100vw - 64px))
    }
}

@media (max-width:760px) {
    .journey-mode-booking {
        width: 100%;
        margin-top: 18px
    }

    .journey-mode-form {
        padding: 10px;
        gap: 8px
    }

    .journey-mode-submit {
        grid-column: auto;
        width: 100%
    }
}

/* One consistent image area and equal sizing for all four landing-page vehicles */
.luxury-cars .car-row {
    align-items: stretch;
    grid-auto-rows: 1fr
}

.luxury-cars .car-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column
}

.luxury-cars .car-image-wrap,
.luxury-cars .car-card:first-child .car-image-wrap {
    position: relative;
    width: 100%;

    height: auto !important;
    min-height: 0 !important;
    flex: none !important;

    padding: 0 !important;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    background: transparent !important;
}

.luxury-cars .car-image-wrap img,
.luxury-cars .car-card:first-child .car-image-wrap img {
    width: 100%;
    height: auto !important;

    display: block;
    object-fit: contain !important;
    object-position: center;

    background: transparent !important;
}

.luxury-cars .car-card:hover .car-image-wrap img {
    transform: scale(1.02) !important
}

.luxury-cars .car-card-body {
    width: 100%;
    box-sizing: border-box;
    flex: 1 1 auto
}

@media (max-width:1100px) {

    .luxury-cars .car-image-wrap,
    .luxury-cars .car-card:first-child .car-image-wrap {
        flex-basis: 265px;
        height: 265px;
        min-height: 265px
    }
}

@media (max-width:600px) {

    .luxury-cars .car-image-wrap,
    .luxury-cars .car-card:first-child .car-image-wrap {
        flex-basis: 230px;
        height: 230px;
        min-height: 230px;
        padding: 0
    }
}

.about-modern-story {
    padding: 100px 0 !important;
    background: #fff !important
}

.about-modern-story-grid {
    grid-template-columns: minmax(420px, .95fr) minmax(0, 1.15fr) !important;
    grid-template-areas: "visual copy";
    gap: clamp(55px, 7vw, 105px) !important
}

.about-modern-story-copy {
    grid-area: copy
}

.about-modern-story-copy .about-modern-section-label {
    color: #b28235 !important
}

.about-modern-story-copy h2 {
    max-width: 710px;
    margin-top: 10px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: clamp(36px, 3.4vw, 54px) !important;
    font-weight: 700 !important;
    line-height: 1.08 !important;
    letter-spacing: -.035em !important;
    color: #25282b
}

.about-modern-story-copy>p:not(.about-modern-section-label) {
    max-width: 720px;
    margin-top: 20px !important;
    color: #6c7074 !important;
    font-size: 16px;
    line-height: 1.75 !important
}

.about-modern-story-visual {
    grid-area: visual;
    min-height: 480px !important;
    overflow: visible !important;
    align-self: stretch;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important
}

.about-modern-story-rings {
    width: 70% !important;
    opacity: .42
}

.about-modern-story-visual img {
    width: 100% !important;
    max-height: 65% !important;
    margin-top: 105px
}

.about-modern-visual-title {
    position: absolute;
    z-index: 5;
    inset: 0 0 auto;
    display: grid;
    justify-items: center;
    color: #282a2c;
    text-align: center
}

.about-modern-visual-title strong {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -.035em
}

.about-modern-visual-title span {
    width: min(280px, 72%);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #b28235;
    font-size: 13px
}

.about-modern-visual-title span::after,
.about-modern-visual-title span::before {
    content: '';
    height: 1px;
    flex: 1;
    background: rgba(37, 40, 43, .18)
}

.about-modern-visual-title small {
    margin-top: 10px;
    color: #74777a;
    font-size: 13px;
    letter-spacing: .04em
}

.about-mainland-banner {
    width: 100%;
    overflow: hidden;
    background: #151719
}

.about-mainland-banner img {
    width: 100%;
    height: auto;
    display: block
}

@media (max-width:900px) {
    .about-modern-story-grid {
        grid-template-columns: 1fr !important;
        grid-template-areas: "visual" "copy";
        gap: 42px !important
    }

    .about-modern-story-copy {
        text-align: center
    }

    .about-modern-story-copy>p:not(.about-modern-section-label) {
        margin-inline: auto
    }
}

@media (max-width:600px) {
    .about-modern-story {
        padding: 58px 0 !important
    }

    .about-modern-story-visual {
        min-height: 350px !important
    }

    .about-modern-story-visual img {
        margin-top: 85px;
        max-height: 62% !important
    }

    .about-modern-story-copy h2 {
        font-size: clamp(34px, 10vw, 46px) !important
    }

    .about-modern-story-copy>p:not(.about-modern-section-label) {
        font-size: 14px;
        line-height: 1.65 !important
    }

    .about-mainland-banner img {
        width: 100%;
        min-width: 0;
        height: 180px;
        object-fit: cover;
        object-position: center
    }
}

.business-modern-solution-grid .business-reference-card {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    border: 1px solid rgba(209, 163, 65, .4) !important;
    border-radius: 5px !important;
    color: #f6f1e8 !important;
    background: radial-gradient(circle at 50% 0, rgba(209, 163, 65, .08), transparent 40%), #101214 !important;
    box-shadow: 0 22px 52px rgba(3, 8, 12, .2) !important
}

.business-reference-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #151719
}

.business-reference-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(.82) contrast(1.05) saturate(.82);
    transition: transform .55s ease, filter .55s ease
}

.business-reference-events .business-reference-image img {
    object-position: 42% center
}

.business-reference-roadshow .business-reference-image img {
    object-position: 65% center
}

.business-reference-card:hover .business-reference-image img {
    transform: scale(1.04);
    filter: brightness(.9) contrast(1.05) saturate(.9)
}

.business-reference-icon {
    position: absolute;
    z-index: 4;
    top: 196px;
    left: 50%;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border: 1px solid #c99a3d;
    border-radius: 50%;
    color: #d8aa4b;
    background: #111315;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    transform: translateX(-50%)
}

.business-reference-icon span {
    position: static !important;
    color: inherit !important;
    font-family: Georgia, serif;
    font-size: 29px !important;
    line-height: 1
}

.business-reference-body {
    flex: 1;
    padding: 52px 28px 28px;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center
}

.business-reference-body h3 {
    margin: 0;
    color: #f7f1e7 !important;
    font-family: 'Libre Caslon Display', Georgia, serif !important;
    font-size: clamp(23px, 1.8vw, 29px) !important;
    font-weight: 400 !important;
    line-height: 1.15 !important
}

.business-reference-body>i {
    width: 38px;
    height: 1px;
    margin: 18px auto 16px;
    display: block;
    background: #c99a3d
}

.business-reference-body p {
    max-width: 31ch;
    margin: 0 auto !important;
    color: rgba(255, 255, 255, .68) !important;
    font-size: 13px !important;
    line-height: 1.65 !important
}

.business-reference-body a {
    margin-top: auto !important;
    padding-top: 22px;
    color: #d8aa4b !important;
    font-size: 10px !important;
    letter-spacing: .06em;
    text-transform: uppercase
}

.business-reference-body a b {
    margin-left: 8px
}

@media (max-width:700px) {
    .business-modern-solution-grid .business-reference-card {
        min-height: 460px
    }

    .business-reference-image {
        height: 205px
    }

    .business-reference-icon {
        top: 173px;
        width: 64px;
        height: 64px
    }

    .business-reference-body {
        padding: 48px 22px 24px
    }
}

.business-modern-fleet {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 8vw, 130px) 0;
    background: radial-gradient(circle at 12% 18%, rgba(178, 130, 53, .1), transparent 30%), linear-gradient(135deg, #f7f3eb 0, #eee8dd 100%)
}

.business-modern-fleet::before {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    right: -220px;
    bottom: -220px;
    border: 1px solid rgba(178, 130, 53, .16);
    border-radius: 50%;
    pointer-events: none
}

.business-modern-fleet .business-fleet-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    gap: clamp(50px, 7vw, 105px)
}

.business-modern-fleet .business-fleet-visual {
    min-height: clamp(440px, 43vw, 580px);
    margin: 0;
    border: 1px solid rgba(178, 130, 53, .2);
    border-radius: 4px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(224, 218, 207, .88)), #e9e4db;
    box-shadow: 0 30px 75px rgba(6, 21, 35, .13)
}

.business-modern-fleet .business-fleet-visual::before {
    inset: 16px;
    border-color: rgba(178, 130, 53, .18);
    border-radius: 2px
}

.business-modern-fleet .business-fleet-rings {
    width: min(68%, 430px);
    border-color: rgba(178, 130, 53, .16)
}

.business-modern-fleet .business-fleet-visual img {
    width: min(94%, 780px);
    max-height: 74%;
    object-position: center;
    filter: drop-shadow(0 30px 22px rgba(6, 13, 19, .24))
}

.business-modern-fleet .business-fleet-visual>span {
    left: 30px;
    top: 30px;
    padding: 9px 13px;
    border-radius: 2px;
    letter-spacing: .12em;
    background: rgba(247, 243, 235, .88);
    backdrop-filter: blur(8px)
}

.business-modern-fleet .business-fleet-copy {
    max-width: 570px;
    padding: 8px 0;
    text-align: left
}

.business-modern-fleet .business-modern-section-label {
    margin: 0 0 18px;
    color: #a7772d;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .18em;
    line-height: 1.4;
    text-transform: uppercase
}

.business-modern-fleet .business-fleet-copy h2 {
    max-width: 11ch;
    margin: 0;
    color: #061523;
    font-family: 'Libre Caslon Display', Georgia, serif;
    font-size: clamp(44px, 4.25vw, 68px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .98
}

.business-modern-fleet .business-fleet-copy>p:not(.business-modern-section-label) {
    max-width: 54ch;
    margin: 24px 0 0;
    color: rgba(6, 21, 35, .66);
    font-size: 15px;
    line-height: 1.75
}

.business-modern-fleet .business-fleet-copy ul {
    margin: 32px 0 0;
    padding: 0;
    border-top: 1px solid rgba(6, 21, 35, .14)
}

.business-modern-fleet .business-fleet-copy li {
    min-height: 58px;
    padding: 17px 4px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid rgba(6, 21, 35, .12);
    color: rgba(6, 21, 35, .78);
    font-size: 13px;
    line-height: 1.45;
    transition: padding-left .3s ease, color .3s ease, background .3s ease
}

.business-modern-fleet .business-fleet-copy li:hover {
    padding-left: 12px;
    color: #061523;
    background: rgba(255, 255, 255, .28)
}

.business-modern-fleet .business-fleet-copy li span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(178, 130, 53, .38);
    border-radius: 50%;
    color: #a7772d;
    font-size: 8px
}

.business-modern-fleet .business-fleet-copy>a {
    width: fit-content;
    min-width: 190px;
    margin-top: 32px;
    padding: 15px 19px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid #061523;
    border-radius: 2px;
    color: #fff;
    background: #061523;
    font-size: 11px;
    line-height: 1;
    text-decoration: none;
    transition: color .3s ease, background .3s ease, transform .3s ease
}

.business-modern-fleet .business-fleet-copy>a:hover {
    color: #061523;
    background: 0 0;
    transform: translateY(-2px)
}

.business-modern-fleet .business-fleet-copy>a span {
    color: #d1a341;
    font-size: 15px
}

@media (max-width:900px) {
    .business-modern-fleet .business-fleet-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .business-modern-fleet .business-fleet-copy {
        max-width: 680px;
        margin-inline: auto;
        text-align: center
    }

    .business-modern-fleet .business-fleet-copy>p:not(.business-modern-section-label),
    .business-modern-fleet .business-fleet-copy h2 {
        margin-inline: auto
    }

    .business-modern-fleet .business-fleet-copy ul {
        text-align: left
    }

    .business-modern-fleet .business-fleet-copy>a {
        margin-inline: auto
    }
}

@media (max-width:600px) {
    .business-modern-fleet {
        padding: 58px 0 64px
    }

    .business-modern-fleet .business-fleet-grid {
        gap: 34px
    }

    .business-modern-fleet .business-fleet-visual {
        min-height: 320px;
        border-radius: 3px
    }

    .business-modern-fleet .business-fleet-visual::before {
        inset: 9px
    }

    .business-modern-fleet .business-fleet-visual>span {
        left: 18px;
        top: 18px
    }

    .business-modern-fleet .business-fleet-visual img {
        width: 98%;
        max-height: 68%
    }

    .business-modern-fleet .business-fleet-copy h2 {
        max-width: 12ch;
        font-size: clamp(38px, 11.5vw, 52px);
        line-height: 1
    }

    .business-modern-fleet .business-fleet-copy>p:not(.business-modern-section-label) {
        margin-top: 19px;
        font-size: 13.5px;
        line-height: 1.7
    }

    .business-modern-fleet .business-fleet-copy ul {
        margin-top: 25px
    }

    .business-modern-fleet .business-fleet-copy li {
        grid-template-columns: 34px minmax(0, 1fr);
        padding: 14px 2px;
        font-size: 12px
    }

    .business-modern-fleet .business-fleet-copy>a {
        width: 100%;
        margin-top: 26px
    }
}

/* UK mainland availability message */
.about-modern-marquee.about-mainland-text {
    position: relative;
    min-height: 150px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;

    /* Gold centre with blackish shading on both sides */
    background: linear-gradient(90deg,
            #26231d 0%,
            #393225 14%,
            #75613b 30%,
            #b89a5e 43%,
            #d8c18b 50%,
            #b89a5e 57%,
            #75613b 70%,
            #393225 86%,
            #26231d 100%) !important;

    border-top: 1px solid rgba(211, 188, 136, 0.45);
    border-bottom: 1px solid rgba(211, 188, 136, 0.45);

    box-shadow:
        inset 25px 0 55px rgba(0, 0, 0, 0.12),
        inset -25px 0 55px rgba(0, 0, 0, 0.12);
}

/* Moving blackish shine */
.about-modern-marquee.about-mainland-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: -45%;
    width: 35%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 0, 0, 0.10) transparent);
    transform: skewX(-18deg);
    animation: mainlandBlackShine 5s ease-in-out infinite;
}

.about-modern-marquee.about-mainland-text p {
    position: relative;
    z-index: 2;
    width: min(100%, 1380px);
    margin: 0 auto;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(22px, 2.5vw, 38px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.035em;
    text-transform: none;
    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(0, 0, 0, 0.25);
    transform: none !important;
}

.about-modern-marquee.about-mainland-text .mainland-highlight {
    display: block;
    color: #fff1c9;
    font-weight: 700;
    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.75),
        0 0 15px rgba(255, 241, 201, 0.25);
}

.about-modern-marquee.about-mainland-text p span {
    display: block;
}

@media (max-width: 600px) {
    .about-modern-marquee.about-mainland-text {
        min-height: 120px;
        padding: 20px 18px;
    }

    .about-modern-marquee.about-mainland-text p {
        position: relative;
        z-index: 2;
        width: min(100%, 1380px);
        margin: 0 auto;

        /* Smaller and blackish text */
        color: #191919;
        font-family: "DM Sans", sans-serif;
        font-size: clamp(10px, 1.5vw, 20px);
        font-weight: 500;
        line-height: 1.1;
        letter-spacing: -0.025em;
        text-transform: none;

        text-shadow:
            0 1px 1px rgba(255, 255, 255, 0.22),
            0 2px 7px rgba(0, 0, 0, 0.16);

        transform: none !important;
    }


    /* Make vehicle images fit their containers seamlessly */
    .luxury-cars .car-image-wrap,
    .luxury-cars .car-card:first-child .car-image-wrap {
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        background: #efeeea !important;
    }

    .luxury-cars .car-image-wrap img,
    .luxury-cars .car-card:first-child .car-image-wrap img {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        object-fit: fill !important;
        object-position: center center !important;
        background: #efeeea !important;
        transform: none !important;
    }

    .luxury-cars .car-card:hover .car-image-wrap img {
        transform: none !important;
    }


}

/* =====================================================
   GLOBAL TRIP METER (LEFT) + WHATSAPP (RIGHT)
   Markup: partials/global-trip-whatsapp.blade.php
===================================================== */

.cd-trip-meter,
.cd-whatsapp-float {
    position: fixed;
    bottom: 18px;
    z-index: 9999;
}

/* =====================================================
   TRIP METER — LEFT SIDE
===================================================== */

.cd-trip-meter {
    left: 18px;
    width: 132px;
    padding: 11px 12px 10px;
    box-sizing: border-box;

    color: #ffffff;
    background: rgba(6, 21, 35, 0.94);
    border: 1px solid rgba(209, 163, 65, 0.72);
    border-radius: 7px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Pages with a permanent left-side rail */
.landing-page .cd-trip-meter,
.svc-page .cd-trip-meter {
    left: calc(var(--page-rail-width, var(--svc-rail-width, 52px)) + 14px);
}

.cd-trip-meter__head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #e5c98d;
    font-family: "DM Mono", monospace;
    font-size: 7px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cd-trip-meter__head i {
    width: 6px;
    height: 6px;
    flex-shrink: 0;

    background: #d1a341;
    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(209, 163, 65, 0.14);

    animation: cdTripPulse 1.8s ease-in-out infinite;
}

.cd-trip-meter__time {
    margin-top: 7px;

    color: #ffffff;
    font-family: "DM Mono", monospace;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04em;
}

.cd-trip-meter p {
    margin: 6px 0 0;

    color: rgba(255, 255, 255, 0.58);
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* =====================================================
   WHATSAPP BUTTON — RIGHT SIDE
===================================================== */

.cd-whatsapp-float {
    position: fixed !important;
    right: 18px !important;
    bottom: 18px !important;

    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #071b16 !important;
    background: linear-gradient(145deg,
            #38e978 0%,
            #25d366 55%,
            #18ad54 100%) !important;

    border: 1px solid rgba(0, 0, 0, 0.25) !important;
    border-radius: 50% !important;

    box-sizing: border-box !important;
    overflow: hidden !important;
    text-decoration: none !important;
    line-height: 1 !important;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.25),
        0 0 0 5px rgba(37, 211, 102, 0.13);

    z-index: 99999 !important;

    animation: cdWhatsAppFloat 3s ease-in-out infinite;
    transition:
        box-shadow 0.25s ease,
        background 0.25s ease;

    will-change: transform;
}

.cd-whatsapp-float:hover,
.cd-whatsapp-float:focus-visible {
    color: #071b16 !important;

    animation-play-state: paused;
    transform: translateY(-4px) scale(1.06) !important;

    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.30),
        0 0 0 7px rgba(37, 211, 102, 0.16);
}

.cd-whatsapp-float:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.cd-whatsapp-float svg {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;
    flex-shrink: 0;

    fill: currentColor !important;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes cdWhatsAppFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -7px, 0);
    }
}

@keyframes cdTripPulse {

    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.88);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .landing-page .cd-trip-meter,
    .svc-page .cd-trip-meter,
    .cd-trip-meter {
        left: 12px;
        bottom: 12px;
    }

    .cd-whatsapp-float {
        right: 12px !important;
        bottom: 12px !important;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {
    .cd-trip-meter {
        left: 10px !important;
        bottom: 10px !important;
        width: 120px;
        padding: 10px;
    }

    .cd-trip-meter__time {
        font-size: 14px;
    }

    .cd-whatsapp-float {
        right: 12px !important;
        bottom: 12px !important;

        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
    }

    .cd-whatsapp-float svg {
        width: 25px !important;
        height: 25px !important;
        min-width: 25px !important;
        min-height: 25px !important;
    }
}

/* =====================================================
   REDUCED MOTION ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .cd-trip-meter__head i {
        animation: none;
    }

    .cd-whatsapp-float {
        animation: none;
        transition: none;
    }






}

/* =====================================================
   BUSINESS HERO CONTROL STACK — FINAL COMPACT DESIGN
   Only affects Journey Control and UK Mainland Coverage
===================================================== */
.business-control-stack {
    width: 100%;
    max-width: 430px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.business-control-stack .business-modern-control {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: #fff !important;
    background: rgba(10, 11, 11, .97) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 13px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .32) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.business-control-stack .business-control-head {
    min-height: 44px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid rgba(255, 255, 255, .07) !important;
}

.business-control-stack .business-control-head span {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    color: rgba(255, 255, 255, .4) !important;
    font: 500 8px "DM Mono", monospace !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.business-control-stack .business-control-head i {
    width: 6px !important;
    height: 6px !important;
    background: #34d679 !important;
    border-radius: 50% !important;
    box-shadow: 0 0 8px rgba(52, 214, 121, .65) !important;
}

.business-control-stack .business-control-head small {
    color: #34d679 !important;
    font: 500 7px "DM Mono", monospace !important;
    text-transform: uppercase !important;
}

.business-control-stack .business-control-route {
    margin: 0 !important;
    display: block !important;
}

.business-control-stack .business-control-route>div {
    position: relative !important;
    min-height: 65px !important;
    padding: 15px 16px 13px 82px !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .065) !important;
    border-radius: 0 !important;
}

.business-control-stack .business-control-route>div:last-of-type {
    border-bottom: 0 !important;
}

.business-control-stack .business-control-route>div>span {
    position: absolute !important;
    top: 18px !important;
    left: 16px !important;
    color: rgba(255, 255, 255, .3) !important;
    font: 400 7px "DM Mono", monospace !important;
}

.business-control-stack .business-control-route strong {
    display: block !important;
    color: rgba(255, 255, 255, .92) !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
}

.business-control-stack .business-control-route small {
    display: block !important;
    margin-top: 3px !important;
    color: rgba(255, 255, 255, .35) !important;
    font-size: 7px !important;
}

.business-control-stack .business-control-route>i {
    display: none !important;
}

.business-control-stack .business-control-footer {
    min-height: 59px !important;
    padding: 12px 16px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: center !important;
    gap: 10px !important;
    background: rgba(255, 255, 255, .018) !important;
    border-top: 1px solid rgba(255, 255, 255, .07) !important;
}

.business-control-stack .business-control-footer div {
    display: block !important;
}

.business-control-stack .business-control-footer span {
    display: block !important;
    color: rgba(255, 255, 255, .25) !important;
    font-size: 6px !important;
    text-transform: uppercase !important;
}

.business-control-stack .business-control-footer strong {
    display: block !important;
    margin-top: 4px !important;
    color: rgba(255, 255, 255, .85) !important;
    font-size: 9px !important;
}

.business-control-stack .business-control-footer .is-on-time {
    color: #35d779 !important;
}

.business-mainland-control {
    width: 100%;
    overflow: hidden;
    color: #fff;
    background: rgba(12, 12, 11, .97);
    border: 1px solid rgba(209, 163, 65, .28);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .27);
    box-sizing: border-box;
}

.business-mainland-head {
    min-height: 39px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(209, 163, 65, .17);
}

.business-mainland-head span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(209, 163, 65, .85);
    font: 500 8px "DM Mono", monospace;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.business-mainland-head i,
.business-mainland-note>i {
    width: 5px;
    height: 5px;
    min-width: 5px;
    background: #d1a341;
    border-radius: 50%;
}

.business-mainland-regions {
    min-height: 58px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: rgba(255, 255, 255, .012);
}

.business-mainland-regions>div {
    padding: 8px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.business-mainland-regions>div+div {
    border-left: 1px solid rgba(255, 255, 255, .07);
}

.business-mainland-regions strong {
    color: rgba(255, 255, 255, .84);
    font-size: 10px;
    font-weight: 500;
}

.business-mainland-regions small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .28);
    font-size: 6px;
}

.business-mainland-note {
    min-height: 31px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(209, 163, 65, .025);
    border-top: 1px solid rgba(255, 255, 255, .055);
}

.business-mainland-note span {
    color: rgba(255, 255, 255, .43);
    font-size: 7px;
}

.business-mainland-note b {
    margin: 0 3px;
    color: rgba(209, 163, 65, .55);
    font-weight: 400;
}

.about-modern-marquee.about-mainland-text {
    display: none !important;
}

@media (max-width: 991px) {
    .business-control-stack {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .business-control-stack {
        max-width: 100%;
        gap: 9px;
    }

    .business-control-stack .business-modern-control,
    .business-mainland-control {
        max-width: 100% !important;
    }
}

/* =====================================================
   FINAL ABOUT HERO DESIGN — KEEP THIS BLOCK LAST
===================================================== */
.about-modern-hero {
    min-height: calc(100vh - 76px) !important;
    display: grid !important;
    align-items: center !important;
}

.about-modern-hero-grid {
    width: 100% !important;
    padding: 64px 0 72px !important;
    display: grid !important;
    grid-template-columns: minmax(320px, .78fr) minmax(470px, .82fr) !important;
    align-items: center !important;
    gap: 64px !important;
}

.about-modern-hero-copy {
    max-width: 590px !important;
}

.about-modern-hero h1 {
    max-width: 590px !important;
    font-size: clamp(50px, 5vw, 78px) !important;
    line-height: .92 !important;
}

.about-modern-hero h1 em {
    margin-top: 14px !important;
    font-size: .52em !important;
    line-height: 1.08 !important;
}

.about-modern-lead {
    max-width: 560px !important;
    margin-top: 26px !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

.about-modern-hero .about-modern-hero-card {
    width: 100% !important;
    max-width: 540px !important;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: #fff !important;
    background: rgba(10, 11, 11, .96) !important;
    border: 1px solid rgba(255, 255, 255, .13) !important;
    border-radius: 14px !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32) !important;
    backdrop-filter: blur(13px) !important;
    -webkit-backdrop-filter: blur(13px) !important;
}

.about-modern-hero-card .about-modern-card-head {
    min-height: 50px !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
}

.about-modern-card-head span {
    font-size: 8px !important;
    letter-spacing: .08em !important;
}

.about-modern-card-head small {
    font-size: 8px !important;
}

.about-modern-hero-card .about-modern-standard-list {
    margin: 0 !important;
    padding: 0 20px !important;
    display: block !important;
}

.about-modern-hero-card .about-modern-standard-list article {
    min-height: 62px !important;
    padding: 12px 0 !important;
    display: grid !important;
    grid-template-columns: 34px 1fr !important;
    align-items: center !important;
    gap: 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .075) !important;
}

.about-modern-hero-card .about-modern-standard-list article>span {
    width: 28px !important;
    height: 28px !important;
    font-size: 7px !important;
}

.about-modern-hero-card .about-modern-standard-list strong {
    display: block !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
}

.about-modern-hero-card .about-modern-standard-list small {
    display: block !important;
    margin-top: 4px !important;
    color: rgba(255, 255, 255, .4) !important;
    font-size: 8px !important;
    line-height: 1.3 !important;
}

.about-modern-hero-card .about-uk-coverage {
    display: block !important;
    padding: 13px 20px 15px !important;
    background: rgba(209, 163, 65, .055) !important;
    border-top: 1px solid rgba(209, 163, 65, .24) !important;
}

.about-modern-hero-card .about-uk-coverage-title {
    display: block !important;
    margin: 0 0 10px !important;
    color: #cfa647 !important;
    font: 500 8px "DM Mono", monospace !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
}

.about-modern-hero-card .about-uk-coverage-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.about-modern-hero-card .about-uk-coverage-grid>div {
    min-width: 0 !important;
    padding: 10px 5px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: rgba(255, 255, 255, .045) !important;
    border: 1px solid rgba(255, 255, 255, .11) !important;
    border-radius: 7px !important;
}

.about-modern-hero-card .about-uk-coverage-grid strong {
    display: block !important;
    color: #fff !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
}

.about-modern-hero-card .about-uk-coverage-grid small {
    display: block !important;
    margin-top: 3px !important;
    color: rgba(255, 255, 255, .36) !important;
    font-size: 7px !important;
}

.about-modern-hero-card .about-uk-coverage-note {
    min-height: 31px !important;
    margin: 8px 0 0 !important;
    padding: 0 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    border: 1px solid rgba(209, 163, 65, .2) !important;
    border-radius: 6px !important;
}

.about-modern-hero-card .about-uk-coverage-note i {
    width: 5px !important;
    height: 5px !important;
    min-width: 5px !important;
    display: block !important;
    background: #d1a341 !important;
    border-radius: 50% !important;
}

.about-modern-hero-card .about-uk-coverage-note span {
    color: rgba(255, 255, 255, .5) !important;
    font-size: 8px !important;
}

.about-modern-main>.about-hero-bottom-line {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 8px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-sizing: border-box !important;
    background: #191712 !important;
    border-top: 1px solid rgba(209, 163, 65, .25) !important;
    z-index: 10 !important;
}

.about-modern-main>.about-hero-bottom-line>i {
    width: 5px !important;
    height: 5px !important;
    min-width: 5px !important;
    display: block !important;
    background: #d1a341 !important;
    border-radius: 50% !important;
}

.about-modern-main>.about-hero-bottom-line p {
    margin: 0 !important;
    color: rgba(255, 255, 255, .6) !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
}

.about-modern-main>.about-hero-bottom-line strong {
    color: #fff !important;
    font-weight: 500 !important;
}

.about-modern-main>.about-hero-bottom-line p span {
    display: inline !important;
    margin: 0 4px !important;
    color: rgba(209, 163, 65, .7) !important;
}

@media (max-width: 991px) {
    .about-modern-hero {
        min-height: auto !important;
    }

    .about-modern-hero-grid {
        padding: 70px 22px !important;
        grid-template-columns: 1fr !important;
        gap: 44px !important;
    }

    .about-modern-hero .about-modern-hero-card {
        max-width: 540px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 600px) {
    .about-modern-hero h1 {
        font-size: 44px !important;
    }

    .about-modern-hero-card .about-uk-coverage {
        padding: 12px !important;
    }

    .about-modern-main>.about-hero-bottom-line {
        min-height: 54px !important;
        padding: 8px 12px !important;
    }

    .about-modern-main>.about-hero-bottom-line p {
        font-size: 8px !important;
    }
}


/* Move left text and right card further inward */
@media (min-width: 1101px) {
    .about-modern-hero>.about-modern-hero-grid.site-container {
        width: calc(100% - 320px) !important;
        max-width: 1280px !important;
        margin-left: auto !important;
        margin-right: auto !important;

        grid-template-columns: minmax(0, 1fr) 500px !important;
        gap: 52px !important;
    }

    /* Left content inward */
    .about-modern-hero .about-modern-hero-copy {
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    /* Right card inward */
    .about-modern-hero .about-modern-hero-card {
        width: 500px !important;
        max-width: 500px !important;
        margin-left: auto !important;
        margin-right: 0 !important;
    }
}


.business-modern-main>.business-hero-bottom-line {
    position: relative !important;
    width: 100% !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 8px 20px !important;

    display: flex !important;
    align-items: center !important;
    gap: 10px !important;

    box-sizing: border-box !important;
    background: #191712 !important;
    border-top: 1px solid rgba(209, 163, 65, 0.25) !important;
}

.business-hero-bottom-line>i {
    width: 5px;
    height: 5px;
    min-width: 5px;
    background: #d1a341;
    border-radius: 50%;
}

.business-hero-bottom-line p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    line-height: 1.3;
}

.business-hero-bottom-line strong {
    color: #ffffff;
    font-weight: 500;
}

.business-hero-bottom-line p span {
    display: inline;
    margin: 0 4px;
    color: rgba(209, 163, 65, 0.7);
}

/* About hero content slightly upward */
@media (min-width: 901px) {
    .about-modern-hero>.about-modern-hero-grid.site-container {
        transform: translateY(-32px) !important;
    }
}

/* =========================================================
   SERVICES GALLERY — SAME STICKY STACK AS THE FLEET PAGE
   Final override: keep this block at the end of services.css.
   ========================================================= */
@media (min-width: 901px) {
    .svc-pinned-experience {
        position: relative !important;
        overflow: visible !important;
        padding-bottom: clamp(40px, 5vw, 72px) !important;
    }

    .svc-pin-scroll-shell {
        position: relative !important;
        width: min(calc(100% - 32px), 1760px) !important;
        max-width: 1760px !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 auto !important;
        overflow: visible !important;
        contain: none !important;
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        position: relative !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        display: block !important;
        overflow: visible !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        transform: none !important;
        isolation: auto !important;
        scroll-snap-type: none !important;
    }

    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        position: sticky !important;
        inset: auto !important;
        top: 88px !important;
        width: 100% !important;
        height: clamp(540px, calc(100vh - 120px), 720px) !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
        overflow: hidden !important;
        border-radius: 16px 16px 0 0 !important;
        background: #171717 !important;
        box-shadow: 0 -16px 48px rgba(0, 0, 0, .18) !important;
    }

    .svc-pin-scroll-shell .svc-web-stack-card-1 {
        z-index: 21 !important;
    }

    .svc-pin-scroll-shell .svc-web-stack-card-2 {
        z-index: 22 !important;
    }

    .svc-pin-scroll-shell .svc-web-stack-card-3 {
        z-index: 23 !important;
    }

    .svc-pin-scroll-shell .svc-experience-media,
    .svc-pin-scroll-shell .svc-experience-image {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
    }

    .svc-pin-scroll-shell .svc-experience-image,
    .svc-pin-scroll-shell .is-current-replace-card .svc-experience-image {
        object-fit: cover !important;
        transform: none !important;
        transition: none !important;
    }

    .svc-pin-scroll-shell .svc-experience-copy {
        opacity: 1 !important;
        transform: none !important;
    }

    .svc-pinned-experience .svc-experience-controls {
        display: none !important;
    }

    .svc-pinned-experience+section {
        position: relative !important;
        z-index: 30 !important;
        margin-top: 0 !important;
    }
}

@media (min-width: 901px) and (max-height: 760px) {
    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        top: 78px !important;
        height: calc(100vh - 98px) !important;
    }
}

/* =========================================================
   FINAL SINGLE-FRAME SERVICES GALLERY
   Three images share one frame; JS changes the active layer.
   No artificial page height, so following sections stay normal.
   ========================================================= */
@media (min-width: 901px) {
    .svc-pinned-experience {
        position: relative !important;
        overflow: visible !important;
        padding-bottom: clamp(40px, 5vw, 72px) !important;
    }

    .svc-pin-scroll-shell {
        position: relative !important;
        width: min(calc(100% - 32px), 1760px) !important;
        max-width: 1760px !important;
        height: clamp(540px, calc(100vh - 120px), 720px) !important;
        min-height: 0 !important;
        margin: 0 auto !important;
        overflow: visible !important;
        contain: none !important;
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        position: sticky !important;
        top: 88px !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        display: block !important;
        overflow: hidden !important;
        border-radius: 16px !important;
        background: #171717 !important;
        box-shadow: 0 28px 76px rgba(13, 15, 17, .14) !important;
        transform: translateZ(0) !important;
        isolation: isolate !important;
        scroll-snap-type: none !important;
    }

    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        position: absolute !important;
        inset: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        visibility: visible !important;
        opacity: var(--card-opacity, 1) !important;
        transform: translate3d(0, var(--card-y, 0%), 0) scale(var(--card-scale, 1)) !important;
        transform-origin: center top !important;
        transition: none !important;
        will-change: transform, opacity !important;
        backface-visibility: hidden !important;
        overflow: hidden !important;
        border-radius: inherit !important;
        background: #171717 !important;
        box-shadow: none !important;
    }

    .svc-pin-scroll-shell .svc-web-stack-card-1 {
        z-index: 3 !important;
    }

    .svc-pin-scroll-shell .svc-web-stack-card-2 {
        z-index: 2 !important;
    }

    .svc-pin-scroll-shell .svc-web-stack-card-3 {
        z-index: 1 !important;
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .svc-pin-scroll-shell .svc-experience-media,
    .svc-pin-scroll-shell .svc-experience-image {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
    }

    .svc-pin-scroll-shell .svc-experience-image,
    .svc-pin-scroll-shell .is-current-replace-card .svc-experience-image {
        object-fit: cover !important;
        transform: translateZ(0) scale(1.001) !important;
        transition: none !important;
    }

    .svc-pinned-experience .svc-experience-controls {
        display: none !important;
    }

    .svc-pinned-experience+section {
        position: relative !important;
        z-index: 5 !important;
        margin-top: 0 !important;
    }
}

@media (min-width: 901px) and (max-height: 760px) {
    .svc-pin-scroll-shell {
        height: calc(100vh - 98px) !important;
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        top: 78px !important;
    }
}

/* =========================================================
   SMOOTH NATIVE SCROLL OVERRIDE
   The visible frame stays pinned while normal browser scroll
   supplies only the distance needed for two image transitions.
   ========================================================= */
@media (min-width: 901px) {

    /* An overflow-hidden ancestor disables position: sticky and leaves the
       reserved scroll area looking like blank space. Body already prevents
       horizontal overflow, so main must remain vertically visible. */
    .svc-page {
        overflow: visible !important;
    }

    .svc-page main {
        overflow: visible !important;
    }

    .svc-pin-scroll-shell {
        height: calc(clamp(540px, calc(100vh - 120px), 720px) + 200vh) !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        position: sticky !important;
        top: 88px !important;
        height: clamp(540px, calc(100vh - 120px), 720px) !important;
    }

    .svc-pin-scroll-shell .svc-replace-stage .svc-web-stack-card {
        position: absolute !important;
        inset: 0 !important;
        transform: translate3d(0, var(--card-y, 0%), 0) scale(var(--card-scale, 1)) !important;
        opacity: var(--card-opacity, 1) !important;
        will-change: transform, opacity !important;
        backface-visibility: hidden !important;
    }

    .svc-pin-scroll-shell .svc-web-stack-card-3 {
        transform: translate3d(0, 0, 0) !important;
        opacity: 1 !important;
    }
}

@media (min-width: 901px) and (max-height: 760px) {
    .svc-pin-scroll-shell {
        height: calc(100vh - 98px + 200vh) !important;
    }

    .svc-pin-scroll-shell .svc-replace-stage {
        top: 78px !important;
        height: calc(100vh - 98px) !important;
    }
}



.cd-trip-meter {
    animation: cdTripMeterFloat 3.2s ease-in-out infinite;
    will-change: transform;
}

@keyframes cdTripMeterFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* Accessibility: user ne reduced motion enable ki ho */
@media (prefers-reduced-motion: reduce) {
    .cd-trip-meter {
        animation: none !important;
        transform: none !important;
    }
}

/* =========================================================
   FINAL GLOBAL MOBILE MENU
   Same compact centred dropdown on every page.
   Keep this block at the very end of the stylesheet.
   ========================================================= */
@media (max-width: 900px) {

    body .site-header,
    body .site-header.is-scrolled,
    body .site-header:not(.is-scrolled) {
        overflow: visible !important;
    }

    body .site-header .mobile-menu-button,
    body .site-header.is-scrolled .mobile-menu-button,
    body .site-header:not(.is-scrolled) .mobile-menu-button,
    body.landing-page .site-header .mobile-menu-button,
    body.svc-page .site-header .mobile-menu-button,
    body.fleet-page .site-header .mobile-menu-button {
        position: relative !important;
        z-index: 1005 !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        flex: 0 0 38px !important;
        margin: 0 !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        border: 1px solid #000 !important;
        border-radius: 50% !important;
        background: #000 !important;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        opacity: 1 !important;
        appearance: none !important;
    }

    /* Hide conflicting old lines and redraw a guaranteed white hamburger. */
    body .site-header .mobile-menu-button span {
        display: none !important;
    }

    body .site-header .mobile-menu-button::before,
    body .site-header .mobile-menu-button::after {
        content: "" !important;
        position: absolute !important;
        left: 50% !important;
        width: 17px !important;
        height: 2px !important;
        display: block !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: #fff !important;
        opacity: 1 !important;
        transform: translateX(-50%) !important;
    }

    body .site-header .mobile-menu-button::before {
        top: 13px !important;
        box-shadow: 0 5px 0 #fff !important;
    }

    body .site-header .mobile-menu-button::after {
        top: 23px !important;
    }

    body .site-header .main-nav,
    body .site-header.is-scrolled .main-nav,
    body .site-header:not(.is-scrolled) .main-nav,
    body.landing-page .site-header .main-nav,
    body.svc-page .site-header .main-nav,
    body.fleet-page .site-header .main-nav {
        position: fixed !important;
        z-index: 1003 !important;
        top: 68px !important;
        left: 50% !important;
        right: auto !important;
        width: min(220px, calc(100vw - 32px)) !important;
        min-width: 0 !important;
        max-width: 220px !important;
        max-height: calc(100dvh - 84px) !important;
        margin: 0 !important;
        padding: 10px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 3px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        border: 1px solid rgba(11, 13, 15, .10) !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, .99) !important;
        box-shadow: 0 18px 44px rgba(8, 10, 12, .18) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translate(-50%, -10px) !important;
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease !important;
    }

    body .site-header .main-nav.is-open,
    body .site-header.is-scrolled .main-nav.is-open,
    body .site-header:not(.is-scrolled) .main-nav.is-open,
    body.landing-page .site-header .main-nav.is-open,
    body.svc-page .site-header .main-nav.is-open,
    body.fleet-page .site-header .main-nav.is-open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate(-50%, 0) !important;
    }

    body .site-header .main-nav a,
    body .site-header.is-scrolled .main-nav a,
    body .site-header:not(.is-scrolled) .main-nav a {
        position: relative !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 40px !important;
        height: auto !important;
        margin: 0 !important;
        padding: 10px 11px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex: 0 0 auto !important;
        border: 0 !important;
        border-radius: 8px !important;
        background: transparent !important;
        color: #1d2023 !important;
        -webkit-text-fill-color: #1d2023 !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        text-align: left !important;
        text-decoration: none !important;
        white-space: normal !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    body .site-header .main-nav a::after {
        display: none !important;
    }

    body .site-header .main-nav a:hover,
    body .site-header .main-nav a:focus-visible,
    body .site-header .main-nav a[aria-current="page"] {
        background: #f3efe6 !important;
        color: #0b0d0f !important;
        -webkit-text-fill-color: #0b0d0f !important;
    }
}

@media (max-width: 420px) {

    body .site-header .main-nav,
    body .site-header.is-scrolled .main-nav,
    body .site-header:not(.is-scrolled) .main-nav {
        top: 64px !important;
        width: min(210px, calc(100vw - 24px)) !important;
        padding: 8px !important;
    }

    body .site-header .main-nav a {
        min-height: 38px !important;
        padding: 9px 10px !important;
        font-size: 11px !important;
    }
}

@media (min-width: 992px) {

    .about-modern-hero {
        min-height: 560px !important;
        height: auto !important;
    }

    .about-modern-hero-grid {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .about-modern-hero>.about-modern-hero-grid.site-container {
        transform: translateY(0) !important;
    }

    .about-modern-actions {
        margin-top: 22px !important;
    }

    .about-modern-lead {
        margin-top: 18px !important;
    }
}

/* =====================================================
   BOOK JOURNEY — UK LOCATION SEARCH + PICKERS + WRAPPING
   ===================================================== */
.journey-location-field {
    position: relative;
}

.journey-location-field.is-open {
    z-index: 40;
}

.journey-location-control {
    position: relative;
    overflow: visible !important;
}

.journey-address-dropdown {
    position: absolute;
    z-index: 80;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: 280px;
    overflow-y: auto;
    padding: 7px;
    border: 1px solid rgba(6, 21, 35, .12);
    border-radius: 13px;
    background: rgba(255, 255, 255, .99);
    box-shadow: 0 20px 46px rgba(6, 21, 35, .16);
}

.journey-address-dropdown[hidden] {
    display: none !important;
}

.journey-address-option {
    width: 100%;
    padding: 11px 12px;
    display: grid;
    gap: 4px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #151719;
    text-align: left;
    cursor: pointer;
}

.journey-address-option:hover,
.journey-address-option:focus {
    outline: 0;
    background: rgba(178, 130, 53, .10);
}

.journey-address-option strong {
    font-size: 11px;
    font-weight: 700;
}

.journey-address-option small {
    color: #85898c;
    font-size: 9px;
    line-height: 1.35;
}

.journey-address-state {
    min-height: 46px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #85898c;
    font-size: 10px;
    line-height: 1.45;
}

.journey-address-loader {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border: 2px solid rgba(178, 130, 53, .20);
    border-top-color: #b28235;
    border-radius: 50%;
    animation: journeyAddressSpin .7s linear infinite;
}

@keyframes journeyAddressSpin {
    to {
        transform: rotate(360deg);
    }
}

.journey-picker-field {
    cursor: pointer;
}

.journey-picker-field>span,
.journey-picker-field input {
    cursor: pointer;
}

.journey-instruction-field textarea {
    min-height: 49px;
    max-height: 116px;
    padding: 14px;
    overflow-y: hidden;
    resize: none;
    line-height: 1.45;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.journey-instruction-field>span small em {
    color: #b28235;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
}

@media (max-width: 640px) {
    .journey-address-dropdown {
        max-height: 240px;
    }
}

.site-header .brand {
    width: 170px;
    display: inline-flex;
    align-items: center;
}

.site-header .custom-header-logo {
    position: relative;
    z-index: 2;
    width: 125%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    display: block;
}


@media (max-width: 768px) {

    .site-header .brand {
        width: min(170px, 40vw);
    }

    .site-header .custom-header-logo {
        width: 125%;
        height: auto;
        max-width: 100%;
        max-height: 70px;
        object-fit: contain;
    }
}


@media (max-width: 480px) {

    .site-header .brand {
        width: min(170px, 38vw);
    }

    .site-header .custom-header-logo {
        width: 125%;
        max-width: 100%;
        max-height: 60px;
    }
}

.landing-site-header .main-nav a {
    font-size: 15px !important;
    line-height: 1.2;
}

.landing-site-header .header-phone {
    font-size: 13px !important;
    font-weight: 600;
}

.landing-site-header .header-book-btn,
.landing-site-header .header-actions a.header-book-btn {
    min-width: 150px;
    padding-inline: 22px;
    font-size: 13px !important;
}

#journey-mode-form .journey-form-field {
    position: relative;
}

#journey-mode-form .journey-form-field.is-address-open {
    z-index: 80;
}

.uk-address-suggestions {
    position: absolute;
    z-index: 2000;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 270px;
    overflow-y: auto;
    padding: 6px;
    border: 1px solid rgba(7, 23, 37, .14);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(7, 23, 37, .18);
}

.uk-address-suggestions[hidden] {
    display: none !important;
}

.uk-address-suggestion {
    width: 100%;
    min-height: 48px;
    padding: 9px 11px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 0;
    border-bottom: 1px solid rgba(7, 23, 37, .07);
    border-radius: 8px;
    background: transparent;
    color: #111820;
    text-align: left;
    cursor: pointer;
}

.uk-address-suggestion:last-child {
    border-bottom: 0;
}

.uk-address-suggestion:hover,
.uk-address-suggestion.is-active {
    background: #f5f1e8;
}

.uk-address-suggestion-address {
    min-width: 0;
    color: #18212a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.42;
}

.uk-address-suggestion-postcode {
    padding: 4px 7px;
    border-radius: 999px;
    background: #071725;
    color: #ffffff;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .04em;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .landing-site-header .main-nav a {
        font-size: 14px !important;
    }
}

@media (max-width: 640px) {
    .uk-address-suggestion {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .uk-address-suggestion-postcode {
        justify-self: start;
    }
}

/* =====================================================
   FLEET RATE TABLE — hourly + daily pricing
   Replaces the old "STARTING FROM" price on priced cars.
===================================================== */
.fleet-showroom-booking .fleet-rate-table {
    width: 100%;
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.fleet-showroom-booking .fleet-rate-row {
    min-height: 42px;
    padding: 0 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.fleet-showroom-booking .fleet-rate-label {
    min-width: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
}

.fleet-showroom-booking .fleet-rate-note {
    color: rgba(255, 255, 255, .55);
    font-size: .92em;
    font-weight: 400;
}

.fleet-showroom-booking .fleet-rate-price {
    flex: 0 0 auto;
    margin: 0 !important;
    color: #f2efe8 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .fleet-showroom-booking .fleet-rate-row {
        min-height: 40px;
    }

    .fleet-showroom-booking .fleet-rate-label {
        font-size: 12px;
    }

    .fleet-showroom-booking .fleet-rate-price {
        font-size: 16px !important;
    }
}

/* =====================================================
   FLEET SHOWROOM — MATCH CAR IMAGE BACKGROUND
   Only removes the visible colour difference around car images.
===================================================== */
.fleet-page .fleet-showroom-car-zone,
.fleet-page .fleet-showroom-car,
.fleet-page .fleet-showroom-car img {
    background: #000000 !important;
}

/* The existing light halo sits behind the smaller image and makes
   its rectangular edge visible. Hide only that halo. */
.fleet-page .fleet-showroom-halo {
    display: none !important;
}

/* =========================================================
   SERVICES — 4 ROWS / DESIRED SEQUENCE
   ========================================================= */

@media (min-width: 1101px) {

    .svc-service-list {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Hide SVC / 06 */
    .svc-service-row:nth-child(5) {
        display: none !important;
    }

    .svc-service-row:nth-child(4) {
        order: 1;
    }

    .svc-service-row:nth-child(3) {
        order: 2;
    }

    .svc-service-row:nth-child(2) {
        order: 3;
    }

    .svc-service-row:nth-child(1) {
        order: 4;
    }

    /* Make each service box slightly bigger */
    .svc-service-row {
        min-height: 80px !important;
        padding: 0 48px 0 0 !important;
        gap: 28px !important;

        border-left: 1px solid transparent;
        border-right: 1px solid transparent;

        transition:
            background .35s ease,
            color .35s ease,
            padding .35s ease,
            transform .35s ease,
            box-shadow .35s ease,
            border-color .35s ease !important;
    }

    /* Bigger title */
    .svc-service-row strong {
        font-size: 18px !important;
        transition: color .35s ease, transform .35s ease !important;
    }

    /* Better description */
    .svc-service-row p {
        font-size: 8px !important;
        line-height: 1.6 !important;
        transition: color .35s ease !important;
    }

    /* Gold service number */
    .svc-service-code {
        font-size: 8px !important;
        letter-spacing: .02em;
        transition: color .35s ease !important;
    }

    /* =====================================================
       HOVER — SAME FEEL AS FIRST IMAGE
       ===================================================== */

    .svc-service-row:hover {
        padding-left: 22px !important;
        padding-right: 48px !important;

        color: #fff !important;
        background: var(--svc-navy) !important;

        border-color: rgba(209, 163, 65, .18);

        transform: scale(1.012);

        box-shadow:
            0 12px 32px rgba(6, 21, 35, .12);

        z-index: 2;
    }

    .svc-service-row:hover strong {
        color: #fff !important;
        transform: translateX(3px);
    }

    .svc-service-row:hover .svc-service-code {
        color: #d1a341 !important;
    }

    .svc-service-row:hover p {
        color: rgba(255, 255, 255, .65) !important;
    }

    /* Arrow */
    .svc-service-arrow {
        right: 18px !important;
        color: #d1a341 !important;
        font-size: 18px !important;
    }

    .svc-service-row:hover .svc-service-arrow {
        opacity: 1 !important;
        transform: translate(0, 0) !important;
    }
}