:root {
    --brand-dark: #111315;
    --brand-soft-dark: #191c1f;
    --brand-lime: #c9ff3f;
    --brand-red: #ef3d3d;
    --brand-muted: #6c757d;
    --brand-bg: #f5f7f8;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--brand-bg);
    color: #101214;
}

a {
    text-decoration: none;
}

.fw-black {
    font-weight: 900;
}

.section-padding {
    padding: 90px 0;
}

.text-brand-lime {
    color: var(--brand-lime);
}

.bg-brand-dark {
    background: var(--brand-dark);
}

.btn-brand-lime {
    background: var(--brand-lime);
    color: #111;
    border: 0;
    font-weight: 800;
}

.btn-brand-lime:hover {
    background: #b8ef2d;
    color: #111;
}

.btn-brand-red {
    background: var(--brand-red);
    color: #fff;
    border: 0;
    font-weight: 800;
}

.btn-brand-red:hover {
    background: #d92f2f;
    color: #fff;
}

.navbar-front {
    z-index: 20;
}

.navbar-front .navbar-brand {
    letter-spacing: 8px;
}

/* =====================================================
   HERO - CLEAN FINAL
===================================================== */
.neo-hero {
    position: relative;
    overflow: hidden;
    padding: 122px 0 0;
    background:
        radial-gradient(circle at 48% 34%, rgba(201,255,63,.14), transparent 28%),
        radial-gradient(circle at 78% 26%, rgba(201,255,63,.08), transparent 24%),
        linear-gradient(180deg, #111315 0%, #111315 84%, #f5f7f8 84%, #f5f7f8 100%);
}

.neo-showcase-card {
    position: relative;
    min-height: 690px;
    overflow: visible;
    isolation: isolate;
    padding: 24px 0 90px;
}

/* Title utama */
.neo-showcase-copy {
    position: absolute;
    z-index: 12;
    left: 46.5%;
    top: 58px;
    width: 36%;
}

.neo-mini-label {
    color: rgba(255,255,255,.72);
    font-weight: 800;
    margin-bottom: 14px;
}

.neo-title {
    color: #fff;
    font-size: clamp(68px, 6vw, 104px);
    line-height: .9;
    letter-spacing: -3.5px;
    font-weight: 900;
    margin: 0;
    text-shadow: 0 24px 60px rgba(0,0,0,.32);
}

.neo-title span {
    color: var(--brand-lime);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.neo-title span::after {
    display: none;
}

/* Stats kanan - compact card */
.neo-side-panel {
    position: absolute;
    z-index: 13;
    right: 0;
    top: 158px;
    width: 310px;
}

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

.hero-side-stat {
    min-height: 118px;
    padding: 15px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 46px rgba(0,0,0,.16);
}

.hero-side-stat h3 {
    color: #fff;
    font-size: 24px;
    line-height: .98;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 0 0 8px;
}

.hero-side-stat p {
    color: rgba(255,255,255,.66);
    font-size: 11.5px;
    line-height: 1.35;
    margin: 0;
}

/* CTA di bawah title */
.neo-side-actions {
    position: absolute;
    z-index: 14;
    left: 46.5%;
    top: 512px;
    width: 380px;
    display: flex;
    gap: 12px;
}

.neo-side-actions .btn {
    min-height: 52px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
}

.neo-side-actions .btn:first-child {
    min-width: 200px;
}

.neo-side-actions .btn:last-child {
    min-width: 160px;
}

.neo-side-actions .btn-outline-light {
    background: rgba(17,19,21,.62);
    border: 1.5px solid rgba(255,255,255,.82);
    color: #fff;
}

.neo-side-actions .btn-outline-light:hover {
    background: #fff;
    color: #111315;
}

/* Hero bike slider - horizontal scroll */
.hero-bike-slider {
    position: absolute;
    z-index: 5;
    left: -34px;
    bottom: 28px;
    width: min(850px, 58%);
    height: 610px;
    pointer-events: none;
    overflow: visible;
}

.hero-bike-slide {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    opacity: 0;
    transform: translateX(120px) scale(.96);
    filter:
        blur(.45px)
        brightness(.82)
        drop-shadow(0 32px 58px rgba(0,0,0,.28));
    transition:
        opacity .85s ease,
        transform .85s cubic-bezier(.22, 1, .36, 1),
        filter .85s ease;
    will-change: opacity, transform, filter;
}

.hero-bike-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter:
        blur(0)
        brightness(1)
        drop-shadow(0 42px 70px rgba(0,0,0,.42));
}

.hero-bike-slide.is-leaving {
    opacity: 0;
    transform: translateX(-120px) scale(.96);
    filter:
        blur(.45px)
        brightness(.78)
        drop-shadow(0 28px 52px rgba(0,0,0,.24));
}

/* Search dinaikkan, tapi tidak menabrak CTA */
.neo-search {
    position: relative;
    z-index: 20;
    margin-top: -46px;
    background: rgba(21,25,29,.98);
    padding: 24px 28px;
    border-radius: 32px;
    box-shadow: 0 32px 90px rgba(0,0,0,.20);
}

.neo-search .row {
    align-items: end;
}

.neo-search .form-label {
    color: rgba(255,255,255,.74);
    font-size: 13px;
    font-weight: 750;
    margin-bottom: 9px;
}

.neo-search-input {
    min-height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
}

.neo-search-input:focus {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: rgba(201,255,63,.5);
    box-shadow: 0 0 0 .2rem rgba(201,255,63,.12);
}

.neo-search-input::placeholder {
    color: rgba(255,255,255,.48);
}

.neo-search-input option {
    color: #111;
}

.neo-search-btn {
    min-height: 56px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 900;
}

.neo-side-desc,
.neo-side-badge,
.neo-side-note,
.neo-note {
    display: none;
}

/* =====================================================
   BRAND RUNNING - LIGHT INFINITE LOGO MARQUEE
===================================================== */
.brand-running-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 50%, rgba(201,255,63,.16), transparent 24%),
        linear-gradient(180deg, #f5f7f8 0%, #ffffff 100%);
    border-top: 1px solid rgba(0,0,0,.04);
    border-bottom: 0 !important;
    padding: 34px 0 28px;
}

.brand-running-inner {
    position: relative;
    z-index: 2;
}

.brand-running-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
    color: rgba(17,19,21,.55);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.brand-running-label span {
    width: 34px;
    height: 1px;
    border-radius: 999px;
    background: rgba(17,19,21,.28);
}

.brand-running-mask {
    position: relative;
    overflow: hidden;
}

.brand-running-mask::before,
.brand-running-mask::after {
    content: "";
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.brand-running-mask::before {
    left: 0;
    background: linear-gradient(90deg, #f5f7f8, rgba(245,247,248,0));
}

.brand-running-mask::after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}

.brand-running-mask {
    padding: 10px 0 14px !important;
    margin: -10px 0 -14px !important;
}

.brand-running-track {
    padding: 4px 0 !important;
}

.brand-running-item:hover {
    transform: translateY(-3px) !important;
}

.brand-running-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    min-width: max-content;
    will-change: transform;
    animation: brandRun 96s linear infinite;
}

.brand-running-item {
    width: 150px;
    height: 74px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(17,19,21,.07);
    box-shadow: 0 18px 48px rgba(17,19,21,.06);
    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.brand-running-item img {
    max-width: 104px;
    max-height: 38px;
    object-fit: contain;
    opacity: .58;
    filter: grayscale(1);
    transition:
        opacity .25s ease,
        filter .25s ease,
        transform .25s ease;
}

.brand-running-item:hover {
    transform: translateY(-4px);
    background: #fff;
    border-color: rgba(201,255,63,.65);
    box-shadow: 0 24px 60px rgba(17,19,21,.10);
}

.brand-running-item:hover img {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.04);
}

.brand-running-track:hover {
    animation-play-state: paused;
}

@keyframes brandRun {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 575.98px) {
    .brand-running-section {
        padding: 28px 0 32px;
    }

    .brand-running-label {
        padding: 0 18px;
        text-align: center;
        font-size: 10.5px;
        line-height: 1.5;
    }

    .brand-running-mask::before,
    .brand-running-mask::after {
        width: 70px;
    }

    .brand-running-track {
        gap: 16px;
        animation-duration: 24s;
    }

    .brand-running-item {
        width: 118px;
        height: 62px;
        border-radius: 20px;
    }

    .brand-running-item img {
        max-width: 82px;
        max-height: 30px;
    }
}

/* =====================================================
   COMMON SECTION HEADING
===================================================== */
.section-heading h2 {
    font-size: clamp(36px, 4.2vw, 60px);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #101214;
    margin-bottom: 14px;
}

.section-heading p {
    color: #6b7280;
    max-width: 740px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
}

.section-pill {
    display: inline-flex;
    background: #15191d;
    color: #fff;
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* =====================================================
   SERVICES - LIGHT PREMIUM
===================================================== */
.premium-services {
    position: relative;
    overflow: hidden;
    margin-top: -1px;
    background:
        radial-gradient(circle at 12% 18%, rgba(201,255,63,.16), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(17,19,21,.05), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f5f7f8 100%);
    padding: 98px 0 108px;
    color: #111315;
}

.premium-services::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(17,19,21,.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(17,19,21,.03) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .5;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

.services-shell {
    position: relative;
    z-index: 2;
}

.services-pill {
    background: #111315;
    color: var(--brand-lime);
    border: 1px solid rgba(17,19,21,.08);
    box-shadow: 0 16px 38px rgba(17,19,21,.10);
}

.services-title {
    max-width: 760px;
    color: #111315;
    font-size: clamp(40px, 4.6vw, 72px);
    line-height: .98;
    font-weight: 950;
    letter-spacing: -2.4px;
    margin: 0 0 18px;
}

.services-subtitle {
    max-width: 700px;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

.services-intro-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(17,19,21,.07);
    box-shadow: 0 24px 70px rgba(17,19,21,.07);
}

.services-intro-icon {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: var(--brand-lime);
    color: #111315;
    font-size: 26px;
    box-shadow: 0 16px 34px rgba(201,255,63,.28);
}

.services-intro-card span {
    display: block;
    color: #111315;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 8px;
}

.services-intro-card p {
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

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

.premium-service-card {
    position: relative;
    min-height: 292px;
    overflow: hidden;
    padding: 28px;
    border-radius: 32px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(17,19,21,.07);
    box-shadow: 0 24px 70px rgba(17,19,21,.07);
    transition:
        transform .28s ease,
        border-color .28s ease,
        background .28s ease,
        box-shadow .28s ease;
}

.premium-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 0%, rgba(201,255,63,.22), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,.8), transparent 38%);
    opacity: 0;
    transition: opacity .28s ease;
}

.premium-service-card:hover {
    transform: translateY(-8px);
    background: #fff;
    border-color: rgba(201,255,63,.65);
    box-shadow: 0 34px 90px rgba(17,19,21,.11);
}

.premium-service-card:hover .premium-service-icon {
    background: var(--brand-lime);
    color: #111315;
    border-color: transparent;
}

.premium-service-card:hover::before {
    opacity: 1;
}

.premium-service-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 34px;
}

.premium-service-icon {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: #111315;
    color: var(--brand-lime);
    border: 1px solid rgba(17,19,21,.08);
    font-size: 27px;
    box-shadow: 0 18px 42px rgba(17,19,21,.10);
}

.premium-service-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(17,19,21,.055);
    border: 1px solid rgba(17,19,21,.06);
    color: rgba(17,19,21,.62);
    font-size: 12px;
    font-weight: 850;
}

.premium-service-content {
    position: relative;
    z-index: 2;
}

.premium-service-card h4 {
    color: #111315;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: -.4px;
    margin: 0 0 13px;
}

.premium-service-card p {
    color: #69717c;
    line-height: 1.7;
    margin: 0;
}

.premium-service-link {
    position: relative;
    z-index: 2;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(17,19,21,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #111315;
    font-size: 13px;
    font-weight: 850;
}

.premium-service-link i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #111315;
    color: var(--brand-lime);
    transition: .24s ease;
}

.premium-service-card:hover .premium-service-link i {
    background: var(--brand-lime);
    color: #111315;
    transform: rotate(12deg);
}

.services-bottom-strip {
    margin-top: 20px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(17,19,21,.07);
    box-shadow: 0 20px 60px rgba(17,19,21,.06);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.services-bottom-strip div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    border-radius: 18px;
    background: #fff;
    color: rgba(17,19,21,.72);
    font-size: 13px;
    font-weight: 800;
}

.services-bottom-strip i {
    color: #111315;
    font-size: 18px;
}

/* SERVICES RESPONSIVE */
@media (max-width: 991.98px) {
    .premium-services {
        padding: 84px 0;
    }

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

    .services-intro-card {
        margin-top: 8px;
    }

    .services-bottom-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .premium-services {
        padding: 72px 0;
    }

    .services-title {
        font-size: 2.55rem;
        letter-spacing: -1.3px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .premium-service-card {
        min-height: auto;
        padding: 24px;
        border-radius: 26px;
    }

    .premium-service-top {
        margin-bottom: 26px;
    }

    .services-intro-card {
        flex-direction: column;
        border-radius: 24px;
    }
}

/* =====================================================
   HOW IT WORKS - BOOKING MAP FLOW
===================================================== */
.how-section {
    position: relative;
    background:
        radial-gradient(circle at 12% 18%, rgba(239,61,61,.055), transparent 25%),
        radial-gradient(circle at 82% 20%, rgba(201,255,63,.11), transparent 24%),
        linear-gradient(180deg, #f7f3ec 0%, #ffffff 54%, #f6f7f8 100%);
    padding: 56px 0 116px;
    overflow: hidden;
}

.how-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 22% 28%, rgba(255,255,255,.85), transparent 20%),
        linear-gradient(90deg, rgba(17,19,21,.022) 1px, transparent 1px),
        linear-gradient(180deg, rgba(17,19,21,.018) 1px, transparent 1px);
    background-size: auto, 86px 86px, 86px 86px;
    opacity: .72;
}

.booking-map-board {
    position: relative;
    margin-top: 52px;
    min-height: 640px;
    padding: 46px 40px 40px;
    border-radius: 42px;
    background:
        linear-gradient(180deg, rgba(245,247,248,.92) 0%, rgba(255,255,255,.96) 100%);
    border: 1px solid rgba(17,19,21,.06);
    box-shadow: 0 34px 90px rgba(17,19,21,.07);
    overflow: hidden;
}

.booking-map-board::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17,19,21,.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(17,19,21,.026) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: .34;
    pointer-events: none;
}

.booking-map-badge {
    position: absolute;
    top: 24px;
    left: 28px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #111315;
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
    box-shadow: 0 14px 36px rgba(17,19,21,.14);
}

.booking-map-badge i {
    color: var(--brand-lime);
    font-size: 15px;
}

.booking-map-route {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.booking-route-shadow {
    fill: none;
    stroke: rgba(17,19,21,.08);
    stroke-width: 16;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.booking-route-main {
    fill: none;
    stroke: var(--brand-lime);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 2 18;
    animation: bookingRouteMove 2.8s linear infinite;
}

@keyframes bookingRouteMove {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -40;
    }
}

.booking-route-point {
    position: absolute;
    z-index: 2;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(17,19,21,.09);
    box-shadow: 0 10px 24px rgba(17,19,21,.08);
    display: grid;
    place-items: center;
}

.booking-route-point span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-lime);
}

.booking-route-point.point-start {
    left: 118px;
    top: 106px;
}

.booking-route-point.point-1 {
    left: 438px;
    top: 232px;
}

.booking-route-point.point-2 {
    left: 783px;
    top: 112px;
}

.booking-route-point.point-3 {
    right: 100px;
    top: 222px;
}

.booking-direction-chip {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(17,19,21,.07);
    box-shadow: 0 14px 34px rgba(17,19,21,.06);
    color: #5f6873;
    font-size: 12px;
    font-weight: 800;
}

.booking-direction-chip i {
    color: #111315;
    font-size: 14px;
}

.booking-direction-chip.chip-1 {
    left: 150px;
    top: 58px;
}

.booking-direction-chip.chip-2 {
    left: 515px;
    top: 280px;
}

.booking-direction-chip.chip-3 {
    right: 84px;
    top: 274px;
}

.how-flow {
    display: block;
}

.booking-step-card {
    position: absolute;
    z-index: 3;
    width: 290px;
    min-height: 210px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(17,19,21,.06);
    border-radius: 30px;
    padding: 28px 24px 22px;
    text-align: left;
    box-shadow: 0 22px 60px rgba(17,19,21,.08);
    transition:
        transform .26s ease,
        box-shadow .26s ease,
        border-color .26s ease;
}

.booking-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 76px rgba(17,19,21,.11);
    border-color: rgba(201,255,63,.6);
}

.booking-step-1 {
    border-color: rgba(201,255,63,.42);
}

.booking-step-1 .how-icon {
    background: var(--brand-lime);
    color: #111315;
}

.booking-step-2 {
    border-color: rgba(17,19,21,.08);
}

.booking-step-2 .how-icon {
    background: #111315;
    color: var(--brand-lime);
}

.booking-step-3 {
    border-color: rgba(34,197,94,.24);
}

.booking-step-3 .how-icon {
    background: rgba(34,197,94,.14);
    color: #15803d;
}

.booking-step-3 .booking-step-number {
    background: rgba(34,197,94,.12);
    color: #15803d;
}

.booking-step-1 {
    left: 36px;
    top: 148px;
}

.booking-step-2 {
    left: 50%;
    top: 176px;
    transform: translateX(-50%);
}

.booking-step-2:hover {
    transform: translateX(-50%) translateY(-8px);
}

.booking-step-3 {
    right: 36px;
    top: 108px;
}

.booking-step-number {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(17,19,21,.06);
    color: #111315;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

.how-card {
    border-radius: 30px;
}

.how-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: rgba(201,255,63,.24);
    color: #111315;
    display: grid;
    place-items: center;
    margin: 0 0 18px;
    font-size: 26px;
    box-shadow: 0 16px 34px rgba(201,255,63,.18);
}

.booking-step-card h5 {
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 10px;
    color: #111315;
}

.booking-step-card p {
    color: #6b7280;
    line-height: 1.65;
    margin: 0 0 18px;
}

.booking-step-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17,19,21,.045);
    color: #5f6873;
    font-size: 12px;
    font-weight: 800;
}

.booking-step-meta i {
    color: #111315;
    font-size: 14px;
}

.booking-map-cta {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 36px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px 18px 24px;
    border-radius: 26px;
    background: rgba(255,255,255,.90);
    border: 1px solid rgba(17,19,21,.07);
    box-shadow: 0 18px 54px rgba(17,19,21,.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.booking-map-cta span {
    display: block;
    color: #111315;
    font-size: 16px;
    font-weight: 950;
    margin-bottom: 4px;
}

.booking-map-cta p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.booking-map-cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.booking-map-cta .btn {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 900;
}

.btn-booking-soft {
    background: #111315;
    color: #fff;
    border: 0;
}

.btn-booking-soft:hover {
    background: #25282c;
    color: #fff;
}

/* HOW RESPONSIVE */
@media (max-width: 1199.98px) {
    .booking-map-board {
        min-height: 610px;
        padding-left: 28px;
        padding-right: 28px;
    }

    .booking-step-card {
        width: 260px;
    }

    .booking-step-1 {
        left: 24px;
    }

    .booking-step-3 {
        right: 24px;
    }

    .booking-route-point.point-2 {
        left: 728px;
    }
}

@media (max-width: 991.98px) {
    .booking-map-cta {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-map-cta-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .booking-map-cta-actions .btn {
        flex: 1;
    }

    .how-section {
        padding: 28px 0 90px;
    }

    .booking-map-board {
        min-height: auto;
        padding: 84px 20px 20px;
        border-radius: 30px;
    }

    .booking-map-board::before {
        background-size: 38px 38px;
    }

    .booking-map-route,
    .booking-route-point,
    .booking-direction-chip {
        display: none;
    }

    .how-flow {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .booking-step-card,
    .booking-step-1,
    .booking-step-2,
    .booking-step-3 {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        transform: none !important;
    }

    .booking-step-card:hover {
        transform: translateY(-6px) !important;
    }
}

@media (max-width: 575.98px) {
    .booking-map-cta {
        padding: 18px;
        border-radius: 22px;
    }

    .booking-map-cta-actions {
        flex-direction: column;
    }

    .booking-map-cta-actions .btn {
        width: 100%;
    }

    .how-section {
        padding-bottom: 78px;
    }

    .booking-map-badge {
        left: 18px;
        top: 18px;
        min-height: 38px;
        padding: 8px 14px;
        font-size: 11px;
    }

    .booking-map-board {
        margin-top: 38px;
        padding: 76px 14px 14px;
        border-radius: 24px;
    }

    .booking-step-card {
        min-height: auto;
        border-radius: 24px;
        padding: 24px 18px 18px;
    }

    .booking-step-number {
        width: 38px;
        height: 38px;
        top: 16px;
        right: 16px;
    }

    .how-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 22px;
    }

    .booking-step-card h5 {
        font-size: 18px;
    }

    .booking-step-card p {
        font-size: 14px;
    }
}

/* =====================================================
   COLLECTION - OUR FLEET MARQUEE
===================================================== */
.collection-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(201,255,63,.10), transparent 24%),
        radial-gradient(circle at 84% 20%, rgba(255,255,255,.05), transparent 24%),
        linear-gradient(180deg, #0f1113 0%, #15181c 100%);
    padding: 110px 0;
}

.collection-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .18;
}

.collection-panel {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.collection-panel::before {
    display: none;
}

.collection-header {
    position: relative;
    z-index: 2;
    max-width: 940px;
    margin: 0 auto;
    padding: 0 0 6px;
}

.collection-pill {
    background: rgba(255,255,255,.08);
    color: var(--brand-lime);
    border: 1px solid rgba(201,255,63,.20);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.collection-header h2 {
    font-weight: 950;
    font-size: clamp(38px, 4.8vw, 66px);
    line-height: .98;
    letter-spacing: -2px;
    margin: 0 0 18px;
}

.collection-header p {
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.75;
    max-width: 760px;
    margin: 0 auto;
}

.collection-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.collection-tabs button,
.collection-tabs a {
    min-height: 44px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.04);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    transition: .25s ease;
}

.collection-tabs button.is-active {
    background: #fff;
    color: #111315;
    border-color: #fff;
}

.collection-tabs a {
    text-decoration: none;
}

.collection-tabs a:hover,
.collection-tabs button:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(201,255,63,.38);
    color: #fff;
}

.collection-tabs button.is-active:hover {
    background: #fff;
    color: #111315;
}

.collection-tabs a i {
    margin-left: 6px;
}

.collection-marquee {
    position: relative;
    z-index: 2;
    margin-top: 46px;
    overflow: hidden;
    padding: 8px 0 10px;
}

.collection-marquee::before,
.collection-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.collection-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #111315 0%, rgba(17,19,21,0) 100%);
}

.collection-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #111315 0%, rgba(17,19,21,0) 100%);
}

.collection-track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    width: max-content;
    animation: fleetMarquee 34s linear infinite;
    will-change: transform;
}

.collection-track:hover {
    animation-play-state: paused;
}

@keyframes fleetMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.collection-card {
    width: 320px;
    flex: 0 0 320px;
    background: rgba(255,255,255,.96);
    color: #111315;
    border-radius: 28px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 50px rgba(0,0,0,.14);
    transition:
        transform .26s ease,
        box-shadow .26s ease,
        border-color .26s ease;
}

.collection-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,255,63,.62);
    box-shadow: 0 30px 70px rgba(0,0,0,.20);
}

.collection-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.collection-brand {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: #f2f4f5;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.collection-type {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17,19,21,.05);
    color: #666f7a;
    font-size: 12px;
    font-weight: 800;
}

.collection-card h5 {
    font-weight: 950;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -1px;
    min-height: 64px;
    margin: 0 0 16px;
}

.collection-image-wrap {
    height: 170px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 10%, rgba(201,255,63,.16), transparent 40%),
        linear-gradient(180deg, #fafafa 0%, #f2f4f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 14px;
}

.collection-card img {
    width: 100%;
    height: 138px;
    object-fit: contain;
    transition: transform .28s ease;
}

.collection-card:hover img {
    transform: scale(1.04);
}

.collection-meta {
    border-top: 1px solid rgba(17,19,21,.08);
    padding-top: 14px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #5f6873;
}

.collection-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
}

.collection-price {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.collection-price-main {
    font-size: 26px;
    line-height: .95;
    letter-spacing: -1px;
    font-weight: 950;
    color: #111315;
    white-space: nowrap;
}

.collection-price-unit {
    font-size: 12px;
    line-height: 1;
    color: #777;
    font-weight: 600;
    padding-bottom: 0;
    white-space: nowrap;
}

.collection-book-btn {
    min-width: 116px;
    min-height: 48px;
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: #111315;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.collection-book-btn:hover {
    background: var(--brand-lime);
    color: #111315;
    transform: translateY(-1px);
}

/* COLLECTION RESPONSIVE */
@media (max-width: 991.98px) {
    .collection-section {
        padding: 84px 0;
    }

    .collection-panel {
        padding: 42px 24px;
        border-radius: 30px;
    }

    .collection-card {
        width: 280px;
        flex-basis: 280px;
    }

    .collection-card h5 {
        font-size: 24px;
        min-height: 54px;
    }

    .collection-image-wrap {
        height: 170px;
    }

    .collection-card img {
        height: 142px;
    }

    .collection-bottom strong {
        font-size: 24px;
    }
}

@media (max-width: 575.98px) {
    .collection-section {
        padding: 74px 0;
    }

    .collection-panel {
        padding: 34px 18px;
        border-radius: 24px;
    }

    .collection-header h2 {
        letter-spacing: -1.2px;
    }

    .collection-header p {
        font-size: 15px;
    }

    .collection-marquee::before,
    .collection-marquee::after {
        width: 44px;
    }

    .collection-track {
        gap: 14px;
        animation-duration: 26s;
    }

    .collection-card {
        width: 248px;
        flex-basis: 248px;
        padding: 16px;
        border-radius: 22px;
    }

    .collection-card h5 {
        font-size: 20px;
        min-height: 48px;
    }

    .collection-image-wrap {
        height: 140px;
        border-radius: 18px;
    }

    .collection-card img {
        height: 108px;
    }

    .collection-bottom {
        align-items: center;
        flex-direction: row;
        gap: 12px;
    }

    .collection-price-main {
        font-size: 16px;
    }

    .collection-price-unit {
        font-size: 11.5px;
        padding-bottom: 0;
    }

    .collection-book-btn {
        min-width: 102px;
        min-height: 44px;
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* =====================================================
   WHY CHOOSE US
===================================================== */
.why-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(201,255,63,.16), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(17,19,21,.05), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f5f7f8 100%);
    padding: 110px 0;
}

.why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(17,19,21,.026) 1px, transparent 1px),
        linear-gradient(180deg, rgba(17,19,21,.022) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .32;
    mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.why-section .container {
    position: relative;
    z-index: 2;
}

.why-visual-wrap {
    position: relative;
    margin-top: 40px;
    min-height: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-image {
    width: min(820px, 100%);
    height: 430px;
    object-fit: cover;
    object-position: center;
    border-radius: 36px;
    border: 1px solid rgba(17,19,21,.07);
    box-shadow: 0 34px 90px rgba(17,19,21,.11);
}

.why-point {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800;
    box-shadow: 0 18px 50px rgba(0,0,0,.08);
    z-index: 3;
}

.point-1 { left: 7%; top: 18%; }
.point-2 { left: 13%; bottom: 18%; }
.point-3 { right: 8%; top: 20%; }
.point-4 { right: 13%; bottom: 18%; }
.point-5 { top: 5%; left: 42%; }
.point-6 { bottom: 6%; left: 45%; }

/* =====================================================
   REVIEWS
===================================================== */
.reviews-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 12%, rgba(201,255,63,.13), transparent 26%),
        radial-gradient(circle at 86% 18%, rgba(17,19,21,.045), transparent 24%),
        linear-gradient(180deg, #f5f7f8 0%, #ffffff 100%);
    padding: 110px 0;
}

.reviews-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(17,19,21,.024) 1px, transparent 1px),
        linear-gradient(180deg, rgba(17,19,21,.02) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .28;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.reviews-section .container {
    position: relative;
    z-index: 2;
}

.reviews-title {
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 900;
    letter-spacing: -1.5px;
}

.review-card {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(17,19,21,.07);
    border-radius: 28px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 24px 70px rgba(17,19,21,.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: .25s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 82px rgba(17,19,21,.10);
    border-color: rgba(201,255,63,.55);
}

.review-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #111315;
    color: var(--brand-lime);
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 18px;
}

.review-stars {
    color: #ffb800;
    margin-bottom: 14px;
}

.review-card p {
    color: #555d66;
    line-height: 1.65;
}

/* =====================================================
   BLOG
===================================================== */
.blog-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 18%, rgba(201,255,63,.10), transparent 25%),
        radial-gradient(circle at 84% 20%, rgba(255,255,255,.06), transparent 24%),
        linear-gradient(180deg, #111315 0%, #171a1d 100%);
    padding: 110px 0;
    color: #fff;
}

.blog-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .2;
}

.blog-section .container {
    position: relative;
    z-index: 2;
}

.blog-section .section-heading h2 {
    color: #fff;
}

.blog-section .section-heading p {
    color: rgba(255,255,255,.68);
}

.blog-card {
    height: 100%;
    padding: 24px;
    border-radius: 30px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.11);
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    background: rgba(255,255,255,.095);
    border-color: rgba(201,255,63,.32);
    box-shadow: 0 34px 90px rgba(0,0,0,.26);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,.14);
    padding-bottom: 18px;
    margin-bottom: 22px;
}

.blog-date strong {
    color: #fff;
    font-size: 44px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -1px;
}

.blog-date span {
    color: rgba(255,255,255,.58);
    font-size: 13px;
}

.blog-card h4 {
    color: #fff;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-card p {
    color: rgba(255,255,255,.66);
    line-height: 1.65;
}

.blog-card a {
    color: var(--brand-lime);
    font-weight: 800;
    text-decoration: none;
}

.blog-card a:hover {
    color: #fff;
}

.blog-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 22px;
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,.10);
    filter: saturate(.92) contrast(1.02);
}

/* =====================================================
   FAQ - PREMIUM DARK PANEL
===================================================== */
.faq-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 12%, rgba(201,255,63,.10), transparent 24%),
        linear-gradient(180deg, #111315 0%, #171a1d 100%);
    padding: 110px 0;
}

.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .18;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-panel {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    padding: 64px;
    color: #fff;
    background:
        linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.78)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,.05);
    box-shadow: 0 38px 100px rgba(0,0,0,.25);
}

.faq-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 18%, rgba(201,255,63,.18), transparent 28%),
        linear-gradient(90deg, rgba(17,19,21,.96) 0%, rgba(17,19,21,.76) 48%, rgba(17,19,21,.54) 100%);
    z-index: 1;
}

.faq-panel > * {
    position: relative;
    z-index: 2;
}

.faq-copy {
    position: sticky;
    top: 110px;
}

.faq-pill {
    background: rgba(255,255,255,.09);
    color: var(--brand-lime);
    border: 1px solid rgba(201,255,63,.24);
}

.faq-copy h2 {
    color: #fff;
    font-size: clamp(40px, 4.6vw, 68px);
    line-height: .98;
    letter-spacing: -2px;
    font-weight: 950;
    margin: 0 0 18px;
    text-shadow: 0 20px 54px rgba(0,0,0,.38);
}

.faq-copy p {
    color: rgba(255,255,255,.70);
    font-size: 17px;
    line-height: 1.75;
    max-width: 440px;
    margin: 0;
}

.faq-help-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 30px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.faq-help-icon {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--brand-lime);
    color: #111315;
    font-size: 22px;
}

.faq-help-card strong {
    display: block;
    color: #fff;
    font-weight: 950;
    margin-bottom: 5px;
}

.faq-help-card span {
    display: block;
    color: rgba(255,255,255,.66);
    font-size: 14px;
    line-height: 1.55;
}

.faq-cta {
    margin-top: 22px;
    min-height: 48px;
    padding: 12px 22px;
    font-weight: 900;
}

.faq-accordion {
    display: grid;
    gap: 14px;
    margin: 0;
}

.faq-accordion .accordion-item {
    overflow: hidden;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 24px;
    color: #fff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 48px rgba(0,0,0,.14);
}

.faq-accordion .accordion-button {
    gap: 14px;
    background: transparent;
    color: #fff;
    box-shadow: none;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    padding: 22px 24px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(201,255,63,.10);
    color: #fff;
    padding-bottom: 18px;
}

.faq-accordion .accordion-button::after {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    margin-left: auto;
    border-radius: 50%;
    background-color: rgba(255,255,255,.10);
    background-size: 14px;
    background-position: center;
    filter: invert(1);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-color: var(--brand-lime);
    filter: none;
}

.faq-number {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.10);
    color: var(--brand-lime);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .06em;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-number {
    background: var(--brand-lime);
    color: #111315;
}

.faq-accordion .accordion-body {
    padding: 14px 24px 24px 80px;
    color: rgba(255,255,255,.70);
    line-height: 1.75;
    font-size: 15px;
}

/* FAQ RESPONSIVE */
@media (max-width: 991.98px) {
    .faq-section {
        padding: 84px 0;
    }

    .faq-panel {
        padding: 42px 24px;
        border-radius: 30px;
    }

    .faq-copy {
        position: relative;
        top: auto;
    }

    .faq-copy p {
        max-width: 100%;
    }

    .faq-accordion {
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .faq-section {
        padding: 74px 0;
    }

    .faq-panel {
        padding: 34px 18px;
        border-radius: 24px;
    }

    .faq-copy h2 {
        letter-spacing: -1.2px;
    }

    .faq-help-card {
        flex-direction: column;
    }

    .faq-accordion .accordion-button {
        align-items: flex-start;
        padding: 18px;
        font-size: 15px;
    }

    .faq-number {
        width: 36px;
        height: 36px;
    }

    .faq-accordion .accordion-body {
        padding: 0 18px 20px 18px;
    }
}

/* =====================================================
   FOOTER - SIMPLE ELEGANT
===================================================== */
.neo-footer {
    background: #fff;
    color: #111315;
    padding: 78px 0 28px;
    border-top: 1px solid rgba(17,19,21,.06);
}

.neo-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.neo-footer-brand {
    max-width: 360px;
}

.neo-footer-logo {
    font-size: 42px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 18px;
    color: #111315;
    margin-bottom: 22px;
}

.neo-footer-brand p {
    color: #555f6a;
    line-height: 1.75;
    margin: 0 0 22px;
    max-width: 330px;
}

.neo-footer h6 {
    color: #111315;
    font-size: 15px;
    font-weight: 950;
    margin-bottom: 22px;
}

.neo-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neo-footer li {
    margin-bottom: 13px;
}

.neo-footer a {
    color: #111315;
    font-size: 14px;
    font-weight: 500;
    transition: .22s ease;
}

.neo-footer a:hover {
    color: #6f8f00;
}

.neo-socials {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.neo-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(17,19,21,.16);
    display: grid;
    place-items: center;
    color: #111315;
    background: #fff;
}

.neo-socials a:hover {
    background: #111315;
    color: var(--brand-lime);
    border-color: #111315;
}

.neo-footer-bottom {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid rgba(17,19,21,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    color: #111315;
    font-size: 14px;
}

.neo-payment {
    display: flex;
    gap: 8px;
}

.neo-payment span {
    background: #111315;
    color: #fff;
    border-radius: 6px;
    padding: 8px 11px;
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 991.98px) {
    .neo-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
    }
}

@media (max-width: 575.98px) {
    .neo-footer {
        padding: 58px 0 24px;
    }

    .neo-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .neo-footer-logo {
        font-size: 36px;
        letter-spacing: 14px;
    }

    .neo-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =====================================================
   HERO RESPONSIVE FINAL OVERRIDE
===================================================== */
@media (max-width: 1399.98px) {
    .neo-showcase-copy {
        left: 45%;
        width: 36%;
        top: 62px;
    }

    .neo-title {
        font-size: clamp(62px, 5.8vw, 96px);
    }

    .neo-side-panel {
        width: 285px;
        top: 160px;
    }

    .hero-side-stat {
        min-height: 112px;
        padding: 13px 12px;
    }

    .hero-side-stat h3 {
        font-size: 22px;
    }

    .hero-side-stat p {
        font-size: 11px;
    }

    .neo-side-actions {
        left: 45%;
        top: 500px;
        width: 360px;
    }
}

@media (max-width: 1199.98px) {
    .neo-showcase-card {
        min-height: 660px;
    }

    .neo-showcase-copy {
        left: 41%;
        width: 38%;
        top: 78px;
    }

    .neo-title {
        font-size: clamp(54px, 5.4vw, 78px);
    }

    .neo-side-panel {
        width: 240px;
        top: 160px;
    }

    .hero-side-stats {
        gap: 10px;
    }

    .hero-side-stat {
        min-height: 104px;
        padding: 12px;
    }

    .hero-side-stat h3 {
        font-size: 20px;
    }

    .hero-side-stat p {
        font-size: 10.5px;
    }

    .neo-side-actions {
        left: 41%;
        top: 462px;
        width: 330px;
    }

    .hero-bike-slider {
        width: min(760px, 56%);
        height: 560px;
    }
}

@media (max-width: 991.98px) {
    .navbar-front {
        background: rgba(17, 19, 21, .95);
    }

    .neo-hero {
        padding-top: 108px;
        padding-bottom: 56px;
        background:
            radial-gradient(circle at 50% 12%, rgba(201,255,63,.10), transparent 28%),
            linear-gradient(180deg, #111315 0%, #111315 82%, #f5f7f8 82%, #f5f7f8 100%);
    }

    .neo-showcase-card {
        min-height: auto;
        display: flex;
        flex-direction: column;
        padding: 20px 0 40px;
    }

    .neo-showcase-copy {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        order: 1;
        margin-bottom: 22px;
    }

    .neo-title {
        font-size: clamp(44px, 10vw, 64px);
        letter-spacing: -1.6px;
    }

    .neo-side-panel {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        order: 2;
        margin-top: 20px;
    }

    .hero-side-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-side-stat {
        min-height: 104px;
    }

    .neo-side-actions {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        order: 3;
        flex-direction: row;
        margin-top: 18px;
    }

    .neo-side-actions .btn {
        flex: 1;
    }

    .hero-bike-slider {
        position: relative;
        left: auto;
        bottom: auto;
        order: 4;
        width: 100%;
        max-width: 720px;
        height: 480px;
        margin: 32px auto 0;
    }

    .hero-bike-slide {
        left: 50%;
        transform: translateX(calc(-50% + 90px)) scale(.96);
    }

    .hero-bike-slide.is-active {
        transform: translateX(-50%) scale(1);
    }

    .hero-bike-slide.is-leaving {
        transform: translateX(calc(-50% - 90px)) scale(.96);
    }

    .neo-search {
        margin-top: 0;
    }
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 72px 0;
    }

    .neo-title {
        font-size: 3.2rem;
        line-height: .96;
        letter-spacing: -1.4px;
    }

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

    .hero-side-stat {
        min-height: auto;
    }

    .hero-side-stat h3 {
        font-size: 24px;
    }

    .neo-side-actions {
        flex-direction: column;
    }

    .neo-side-actions .btn {
        width: 100%;
    }

    .hero-bike-slider {
        width: 118%;
        height: 390px;
        margin-left: -9%;
    }

    .hero-bike-slide {
        transform: translateX(calc(-50% + 70px)) scale(.96);
    }

    .hero-bike-slide.is-active {
        transform: translateX(-50%) scale(1);
    }

    .hero-bike-slide.is-leaving {
        transform: translateX(calc(-50% - 70px)) scale(.96);
    }

    .neo-search {
        padding: 18px;
        border-radius: 24px;
    }

    .brand-running-track {
        gap: 42px;
    }

    .collection-panel {
        padding: 32px 18px;
    }

    .collection-row {
        grid-template-columns: 1fr;
    }

    .faq-panel {
        padding: 38px 18px;
    }

    .neo-footer-logo {
        font-size: 32px;
        letter-spacing: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bike-slide {
        transition: none;
    }

    .brand-running-track {
        animation: none;
    }
}

/* =====================================================
   HERO FINAL TUNING
   - stats vertical
   - search card menyatu dengan hero
===================================================== */

/* hero dibuat full dark sampai area search */
.neo-hero {
    padding: 122px 0 120px !important;
    background:
        radial-gradient(circle at 46% 34%, rgba(201,255,63,.14), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(201,255,63,.08), transparent 22%),
        linear-gradient(180deg, #0f1113 0%, #101214 100%) !important;
}

/* container hero utama */
.neo-showcase-card {
    min-height: 690px !important;
    padding-bottom: 40px !important;
}

/* title agak rapi dan tetap ke kanan */
.neo-showcase-copy {
    left: 46% !important;
    top: 60px !important;
    width: 31% !important;
    z-index: 12 !important;
}

.neo-mini-label {
    margin-bottom: 12px !important;
    font-size: 14px !important;
}

.neo-title {
    font-size: clamp(72px, 6.2vw, 108px) !important;
    line-height: 0.92 !important;
    letter-spacing: -3px !important;
}

.neo-title span {
    color: var(--brand-lime) !important;
}

.neo-title span::after {
    display: none !important;
}

/* =========================
   STATS KANAN = VERTICAL
========================= */
.neo-side-panel {
    position: absolute !important;
    right: 6px !important;
    top: 160px !important;
    width: 250px !important;
    z-index: 13 !important;
    display: block !important;
}

.hero-side-stats {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
}

.hero-side-stat {
    min-height: unset !important;
    padding: 16px 16px !important;
    border-radius: 20px !important;
    background: rgba(255,255,255,.07) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 14px 38px rgba(0,0,0,.18) !important;
}

.hero-side-stat h3 {
    font-size: 22px !important;
    line-height: 1 !important;
    margin: 0 0 8px !important;
    color: #fff !important;
    font-weight: 900 !important;
    letter-spacing: -0.8px !important;
}

.hero-side-stat p {
    font-size: 12px !important;
    line-height: 1.45 !important;
    color: rgba(255,255,255,.72) !important;
    margin: 0 !important;
}

/* CTA tetap di bawah title, bukan di panel stats */
.neo-side-actions {
    position: absolute !important;
    left: 46% !important;
    top: 555px !important;
    width: 360px !important;
    z-index: 14 !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 14px !important;
}

.neo-side-actions .btn {
    min-height: 54px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    padding: 12px 24px !important;
}

.neo-side-actions .btn:first-child {
    min-width: 200px !important;
}

.neo-side-actions .btn:last-child {
    min-width: 160px !important;
}

.neo-side-actions .btn-outline-light {
    background: rgba(17,19,21,.48) !important;
    border: 1px solid rgba(255,255,255,.65) !important;
    color: #fff !important;
}

/* motor tetap dominan */
.hero-bike-slider {
    left: -34px !important;
    bottom: 25px !important;
    width: min(820px, 56%) !important;
    height: 610px !important;
    z-index: 5 !important;
}

/* =========================
   SEARCH MENYATU DENGAN HERO
========================= */
.neo-search {
    position: relative !important;
    z-index: 20 !important;
    margin-top: -6px !important;
    padding: 26px 28px !important;
    border-radius: 30px !important;
    background: rgba(20, 24, 28, 0.80) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow:
        0 24px 70px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.05) !important;
}

.neo-search .form-label {
    color: rgba(255,255,255,.82) !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
}

.neo-search-input {
    min-height: 56px !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,.10) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    color: #fff !important;
    box-shadow: none !important;
}

.neo-search-input::placeholder {
    color: rgba(255,255,255,.55) !important;
}

.neo-search-input:focus {
    background: rgba(255,255,255,.12) !important;
    border-color: rgba(201,255,63,.45) !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgba(201,255,63,.12) !important;
}

.neo-search select.neo-search-input,
.neo-search input.neo-search-input {
    color: #fff !important;
}

.neo-search-btn {
    min-height: 56px !important;
    border-radius: 16px !important;
    font-weight: 800 !important;
    font-size: 16px !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1399.98px) {
    .neo-showcase-copy {
        left: 45% !important;
        width: 31% !important;
    }

    .neo-side-panel {
        width: 230px !important;
        right: 0 !important;
    }

    .neo-side-actions {
        left: 45% !important;
        top: 535px !important;
    }

    .hero-side-stat h3 {
        font-size: 20px !important;
    }

    .hero-side-stat p {
        font-size: 11.5px !important;
    }
}

@media (max-width: 1199.98px) {
    .neo-showcase-copy {
        left: 42% !important;
        width: 34% !important;
        top: 72px !important;
    }

    .neo-title {
        font-size: clamp(60px, 5.6vw, 86px) !important;
    }

    .neo-side-panel {
        width: 210px !important;
        top: 170px !important;
    }

    .neo-side-actions {
        left: 42% !important;
        top: 500px !important;
        width: 330px !important;
    }

    .hero-bike-slider {
        width: min(720px, 54%) !important;
    }
}

@media (max-width: 991.98px) {
    .neo-hero {
        padding-bottom: 56px !important;
        background:
            radial-gradient(circle at 50% 12%, rgba(201,255,63,.10), transparent 26%),
            linear-gradient(180deg, #111315 0%, #111315 100%) !important;
    }

    .neo-showcase-card {
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .neo-showcase-copy {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        order: 1 !important;
    }

    .hero-bike-slider {
        position: relative !important;
        left: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 700px !important;
        height: auto !important;
        order: 2 !important;
        margin: 24px auto 0 !important;
    }

    .neo-side-panel {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        order: 3 !important;
        margin-top: 24px !important;
    }

    .hero-side-stats {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .neo-side-actions {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        order: 4 !important;
        margin-top: 18px !important;
        flex-wrap: wrap !important;
    }

    .neo-search {
        margin-top: 28px !important;
    }
}

@media (max-width: 575.98px) {
    .neo-title {
        font-size: 3.2rem !important;
    }

    .hero-side-stats {
        grid-template-columns: 1fr !important;
    }

    .neo-side-actions .btn {
        width: 100% !important;
    }
}

/* =====================================================
   HERO FINAL POSITION FIX
   - stats lebih ke kanan
   - semua komponen hero sedikit naik
   - search card lebih naik
   - ada space di bawah search card
===================================================== */

.neo-hero {
    padding: 108px 0 34px !important;
    background:
        radial-gradient(circle at 49% 32%, rgba(201,255,63,.14), transparent 27%),
        radial-gradient(circle at 79% 24%, rgba(201,255,63,.09), transparent 23%),
        linear-gradient(180deg, #111315 0%, #111315 100%) !important;
}

.neo-showcase-card {
    min-height: 650px !important;
    padding: 8px 0 118px !important;
    overflow: visible !important;
}

/* copy/title dinaikkan sedikit */
.neo-showcase-copy {
    left: 45.6% !important;
    top: 34px !important;
    width: 34% !important;
    z-index: 12 !important;
}

.neo-mini-label {
    margin-bottom: 10px !important;
    font-size: 14px !important;
}

.neo-title {
    font-size: clamp(74px, 6.25vw, 110px) !important;
    line-height: .90 !important;
    letter-spacing: -3.4px !important;
}

/* stats digeser lebih kanan dan tetap vertical */
.neo-side-panel {
    right: -18px !important;
    top: 128px !important;
    width: 235px !important;
    z-index: 13 !important;
}

.hero-side-stats {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.hero-side-stat {
    min-height: 92px !important;
    padding: 14px 16px !important;
    border-radius: 20px !important;
    background: rgba(255,255,255,.07) !important;
    border: 1px solid rgba(255,255,255,.13) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 16px 34px rgba(0,0,0,.16) !important;
}

.hero-side-stat h3 {
    font-size: 21px !important;
    line-height: 1 !important;
    margin: 0 0 7px !important;
    font-weight: 900 !important;
    letter-spacing: -.6px !important;
}

.hero-side-stat p {
    font-size: 12px !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    color: rgba(255,255,255,.72) !important;
}

/* tombol ikut naik */
.neo-side-actions {
    left: 45.6% !important;
    top: 468px !important;
    width: 360px !important;
    gap: 12px !important;
    z-index: 14 !important;
}

.neo-side-actions .btn {
    min-height: 52px !important;
    padding: 12px 22px !important;
    font-size: 15px !important;
}

/* motor ikut naik sedikit */
.hero-bike-slider {
    left: -22px !important;
    bottom: 56px !important;
    width: min(820px, 56%) !important;
    height: 575px !important;
}

/* search vehicle dinaikkan + dibuat lebih premium */
.neo-search {
    position: relative !important;
    z-index: 20 !important;
    margin-top: -88px !important;
    margin-bottom: 22px !important; /* space bawah search */
    padding: 24px 28px !important;
    border-radius: 30px !important;
    background: rgba(19, 22, 26, 0.78) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow:
        0 24px 70px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.neo-search .row {
    align-items: end !important;
}

.neo-search .form-label {
    color: rgba(255,255,255,.80) !important;
    margin-bottom: 10px !important;
}

.neo-search-input {
    min-height: 56px !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    color: #fff !important;
}

.neo-search-input::placeholder {
    color: rgba(255,255,255,.52) !important;
}

.neo-search-input:focus {
    background: rgba(255,255,255,.10) !important;
    border-color: rgba(201,255,63,.45) !important;
    color: #fff !important;
    box-shadow: 0 0 0 .2rem rgba(201,255,63,.10) !important;
}

.neo-search-btn {
    min-height: 56px !important;
    border-radius: 16px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

/* biar section brand setelah hero tidak terlalu mepet */
.brand-running-section {
    margin-top: 0 !important;
}

/* =========================
   DESKTOP MEDIUM
========================= */
@media (max-width: 1399.98px) {
    .neo-showcase-copy {
        left: 45.2% !important;
        width: 34.5% !important;
    }

    .neo-side-panel {
        right: -8px !important;
        width: 225px !important;
    }

    .neo-side-actions {
        left: 45.2% !important;
        top: 462px !important;
    }

    .hero-bike-slider {
        width: min(780px, 55%) !important;
    }
}

@media (max-width: 1199.98px) {
    .neo-hero {
        padding: 104px 0 28px !important;
    }

    .neo-showcase-card {
        min-height: 610px !important;
        padding-bottom: 106px !important;
    }

    .neo-showcase-copy {
        left: 43% !important;
        top: 34px !important;
        width: 35% !important;
    }

    .neo-title {
        font-size: clamp(60px, 5.5vw, 86px) !important;
    }

    .neo-side-panel {
        right: 0 !important;
        top: 130px !important;
        width: 210px !important;
    }

    .neo-side-actions {
        left: 43% !important;
        top: 430px !important;
        width: 330px !important;
    }

    .hero-bike-slider {
        left: -14px !important;
        bottom: 48px !important;
        width: min(700px, 54%) !important;
        height: 510px !important;
    }

    .neo-search {
        margin-top: -74px !important;
    }
}

/* =====================================================
   HERO MICRO FIX
   - turunkan lagi isi hero
   - stats sejajar dengan label Premium rental experience
===================================================== */

/* turunkan area hero keseluruhan sedikit */
.neo-hero {
    padding-top: 132px !important;
    padding-bottom: 46px !important;
}

/* turunkan motor */
.hero-bike-slider {
    bottom: 18px !important;
}

/* turunkan title/copy */
.neo-showcase-copy {
    top: 72px !important;
}

/* stats pertama sejajar dengan label Premium rental experience */
.neo-side-panel {
    top: 72px !important;
}

/* tombol ikut turun sedikit agar tetap proporsional */
.neo-side-actions {
    top: 540px !important;
}

/* search turun sedikit juga, jangan terlalu nempel ke hero */
.neo-search {
    margin-top: -52px !important;
    margin-bottom: 34px !important;
}

/* =====================================================
   SEARCH LABEL ABOVE SEARCH CARD
===================================================== */

.neo-search-wrap {
    position: relative;
    z-index: 20;
    margin-top: 20px;
}

.neo-search-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px 4px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.neo-search-label::before {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(201,255,63,.72);
    border-radius: 999px;
}

/* karena margin-top sekarang di wrapper, search card-nya jangan dorong sendiri */
.neo-search-wrap .neo-search {
    margin-top: 0 !important;
}

/* =====================================================
   SEARCH WRAP MOVE UP
===================================================== */

.neo-search-wrap {
    margin-top: -26px !important;
}

/* =====================================================
   HERO STATS COUNT UP
===================================================== */

.hero-side-stat h3 {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.js-count-up {
    display: inline-block;
    min-width: 1.6em;
}

/* =====================================================
   BRAND + SERVICES TRUE SHARED BACKGROUND
===================================================== */

.brand-services-zone {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 8%, rgba(201,255,63,.16), transparent 26%),
        radial-gradient(circle at 88% 14%, rgba(17,19,21,.045), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f5f7f8 100%);
}

.brand-services-zone::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(17,19,21,.026) 1px, transparent 1px),
        linear-gradient(180deg, rgba(17,19,21,.022) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .35;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
}

/* Dua section ini sekarang tidak boleh punya background sendiri */
.brand-services-zone .brand-running-section,
.brand-services-zone .premium-services {
    position: relative;
    z-index: 2;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Hilangkan pseudo background bawaan yang bikin area beda */
.brand-services-zone .brand-running-section::before,
.brand-services-zone .brand-running-section::after,
.brand-services-zone .premium-services::before,
.brand-services-zone .premium-services::after {
    display: none !important;
}

/* Brand section dibuat compact dan menyatu */
.brand-services-zone .brand-running-section {
    padding: 34px 0 32px !important;
    margin: 0 !important;
}

/* Services langsung lanjut dari brand tanpa garis/pembeda */
.brand-services-zone .premium-services {
    margin: 0 !important;
    padding-top: 74px !important;
    padding-bottom: 108px !important;
}

/* Mask kiri kanan ikut pakai warna dasar yang sama, bukan putih solid terpisah */
.brand-services-zone .brand-running-mask::before {
    background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,0)) !important;
}

.brand-services-zone .brand-running-mask::after {
    background: linear-gradient(270deg, rgba(245,247,248,.92), rgba(245,247,248,0)) !important;
}

/* Ruang hover logo tetap aman */
.brand-services-zone .brand-running-mask {
    padding: 14px 0 16px !important;
    margin: -14px 0 -16px !important;
}

/* Shadow logo dibuat lebih subtle supaya tidak membentuk garis horizontal */
.brand-services-zone .brand-running-item {
    box-shadow: 0 12px 30px rgba(17,19,21,.045) !important;
}

.brand-services-zone .brand-running-item:hover {
    box-shadow: 0 18px 44px rgba(17,19,21,.08) !important;
}

/* =====================================================
   MOBILE POLISH FINAL OVERRIDE
   - rapikan hero mobile
   - rapikan why choose us mobile
   - desktop tetap aman
===================================================== */

@media (max-width: 991.98px) {
    .navbar-front {
        background: rgba(15, 17, 19, .96) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    .navbar-front .navbar-brand {
        letter-spacing: 5px !important;
    }

    .navbar-front .navbar-collapse {
        margin-top: 14px !important;
        padding: 16px !important;
        border-radius: 22px !important;
        background: rgba(255,255,255,.055) !important;
        border: 1px solid rgba(255,255,255,.08) !important;
    }

    .navbar-front .navbar-nav {
        gap: 4px !important;
    }

    .navbar-front .nav-link {
        padding: 10px 0 !important;
    }

    .navbar-front .d-flex {
        align-items: stretch !important;
    }

    .navbar-front .d-flex .btn {
        width: 100% !important;
    }

    .neo-hero {
        overflow: hidden !important;
        padding: 104px 0 54px !important;
        background:
            radial-gradient(circle at 50% 20%, rgba(201,255,63,.14), transparent 28%),
            radial-gradient(circle at 48% 62%, rgba(201,255,63,.10), transparent 34%),
            linear-gradient(180deg, #0f1113 0%, #101214 100%) !important;
    }

    .neo-showcase-card {
        min-height: auto !important;
        padding: 10px 0 0 !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: visible !important;
    }

    .neo-showcase-copy {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        order: 1 !important;
        z-index: 5 !important;
        text-align: left !important;
        margin: 0 !important;
        padding: 0 2px !important;
    }

    .neo-mini-label {
        margin-bottom: 10px !important;
        font-size: 12px !important;
        line-height: 1.45 !important;
    }

    .neo-title {
        max-width: 340px !important;
        font-size: clamp(46px, 13vw, 58px) !important;
        line-height: .92 !important;
        letter-spacing: -2px !important;
        margin: 0 !important;
    }

    .hero-bike-slider {
        position: relative !important;
        left: 50% !important;
        bottom: auto !important;
        order: 2 !important;
        width: 132% !important;
        max-width: none !important;
        height: 300px !important;
        margin: -2px 0 0 !important;
        transform: translateX(-50%) !important;
        z-index: 3 !important;
    }

    .hero-bike-slide {
        left: 50% !important;
        bottom: 0 !important;
        width: 100% !important;
        max-height: 300px !important;
        object-fit: contain !important;
        transform: translateX(calc(-50% + 70px)) scale(.96) !important;
    }

    .hero-bike-slide.is-active {
        transform: translateX(-50%) scale(1) !important;
    }

    .hero-bike-slide.is-leaving {
        transform: translateX(calc(-50% - 70px)) scale(.96) !important;
    }

    .neo-side-actions {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        order: 3 !important;
        z-index: 6 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        margin: 14px 0 0 !important;
    }

    .neo-side-actions .btn,
    .neo-side-actions .btn:first-child,
    .neo-side-actions .btn:last-child {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 48px !important;
        padding: 11px 14px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    .neo-side-panel {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        order: 4 !important;
        z-index: 6 !important;
        margin: 14px 0 0 !important;
    }

    .hero-side-stats {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .hero-side-stat {
        min-height: 104px !important;
        padding: 14px !important;
        border-radius: 18px !important;
        background: rgba(255,255,255,.075) !important;
    }

    .hero-side-stat h3 {
        font-size: 21px !important;
        line-height: 1 !important;
        margin-bottom: 7px !important;
    }

    .hero-side-stat p {
        font-size: 11.5px !important;
        line-height: 1.38 !important;
    }

    .neo-search-wrap {
        margin-top: 22px !important;
    }

    .neo-search-label {
        margin-left: 2px !important;
        margin-bottom: 12px !important;
        font-size: 10.5px !important;
        letter-spacing: .1em !important;
        line-height: 1.45 !important;
    }

    .neo-search {
        margin: 0 !important;
        padding: 18px !important;
        border-radius: 24px !important;
        background: rgba(20,24,28,.88) !important;
    }

    .neo-search .row {
        --bs-gutter-y: 14px !important;
    }

    .neo-search .form-label {
        font-size: 12px !important;
        margin-bottom: 7px !important;
    }

    .neo-search-input,
    .neo-search-btn {
        min-height: 52px !important;
        border-radius: 15px !important;
        font-size: 14px !important;
    }

    .brand-running-section {
        padding-top: 28px !important;
    }
}

@media (max-width: 575.98px) {
    .neo-hero .container-xl {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .neo-title {
        max-width: 310px !important;
        font-size: clamp(42px, 13.6vw, 54px) !important;
    }

    .hero-bike-slider {
        width: 144% !important;
        height: 270px !important;
        margin-top: 2px !important;
    }

    .hero-bike-slide {
        max-height: 270px !important;
    }

    .neo-side-actions {
        grid-template-columns: 1fr !important;
    }

    .hero-side-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px !important;
    }

    .hero-side-stat {
        min-height: 112px !important;
        padding: 13px !important;
    }

    .hero-side-stat h3 {
        font-size: 20px !important;
    }

    .hero-side-stat p {
        font-size: 11px !important;
    }

    .neo-search {
        padding: 16px !important;
        border-radius: 22px !important;
    }
}

/* =====================================================
   WHY CHOOSE US MOBILE FIX
===================================================== */

@media (max-width: 767.98px) {
    .why-section {
        padding: 72px 0 !important;
    }

    .why-section .section-heading h2 {
        font-size: clamp(34px, 10vw, 44px) !important;
        line-height: 1.05 !important;
        letter-spacing: -1.2px !important;
    }

    .why-section .section-heading p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        padding: 0 8px !important;
    }

    .why-visual-wrap {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        min-height: unset !important;
        margin-top: 30px !important;
        padding: 0 !important;
    }

    .why-image {
        order: 1 !important;
        width: 100% !important;
        height: clamp(300px, 78vw, 390px) !important;
        border-radius: 30px !important;
        object-fit: cover !important;
        object-position: center !important;
        box-shadow: 0 24px 64px rgba(17,19,21,.12) !important;
    }

    .why-point,
    .point-1,
    .point-2,
    .point-3,
    .point-4,
    .point-5,
    .point-6 {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        order: 2 !important;
        max-width: calc(50% - 6px) !important;
        min-height: 42px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 10px 13px !important;
        border-radius: 999px !important;
        font-size: 12px !important;
        line-height: 1.15 !important;
        font-weight: 850 !important;
        white-space: normal !important;
        box-shadow: 0 12px 34px rgba(17,19,21,.08) !important;
    }
}

@media (max-width: 420px) {
    .why-point,
    .point-1,
    .point-2,
    .point-3,
    .point-4,
    .point-5,
    .point-6 {
        max-width: 100% !important;
        width: calc(50% - 5px) !important;
        font-size: 11.5px !important;
        padding: 9px 10px !important;
    }
}

/* =====================================================
   FIX MOBILE - HIDE BOOKING ROUTE DOTS
===================================================== */

@media (max-width: 991.98px) {
    .booking-map-route,
    .booking-route-point,
    .booking-direction-chip {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* =====================================================
   FAQ MOBILE - ANSWER SPACING POLISH
===================================================== */

@media (max-width: 767.98px) {
    .faq-section .accordion-body,
    .faq-section .faq-answer,
    .faq-section .accordion-collapse .accordion-body {
        padding-top: 18px !important;
    }

    .faq-section .accordion-button {
        padding-bottom: 18px !important;
    }

    .faq-section .accordion-item:has(.accordion-collapse.show) .accordion-button {
        padding-bottom: 20px !important;
    }

    .faq-section .accordion-body p,
    .faq-section .faq-answer p {
        margin-top: 0 !important;
        line-height: 1.75 !important;
    }
}

/* =====================================================
   BRAND MARQUEE TRUE INFINITE FIX
   - aman untuk WQHD / ultrawide / zoom out
===================================================== */
.brand-running-track {
    min-width: max-content;
    animation-duration: 96s !important;
}

@media (max-width: 575.98px) {
    .brand-running-track {
        gap: 18px !important;
        animation-duration: 48s !important;
    }
}
