    :root {
        /* Light base */
        --bg: #F6F7FB;
        --white: #ffffff;
        --grey: #F1F3F7;

        --text: #1F2937;
        --muted: #6B7280;

        --stroke: rgba(17, 24, 39, .10);
        --shadow: 0 18px 55px rgba(17, 24, 39, .10);
        --shadow2: 0 10px 25px rgba(17, 24, 39, .08);

        /* Brand */
        --primary: #5B2C83;
        /* premium violet */
        --primary2: #1C4E80;
        /* accent blue */
        --accent: #C8A951;
        /* gold */

        --radius: 18px;
        --max: 1220px;
    }

    /* =========================================================
   BASE
========================================================= */
    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    html,
    body {
        margin: 0;
        padding: 0;
        font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial;
        color: var(--text);
        background: var(--bg);
        overflow-x: hidden;
    }

    body.menu-open {
        overflow: hidden;
        touch-action: none;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    button {
        font: inherit;
    }

    .container-max {
        max-width: var(--max);
    }

    section {
        padding: 34px 0;
    }

    /* ===============================
       TOP BAR
    =============================== */
    .th-topbar {
        width: 100%;
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
        position: relative;
        z-index: 1001;
    }

    .th-topbar .th-wrap {
        max-width: 1240px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 15px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .th-social-group {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .th-social {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, .12);
        color: #374151;
        line-height: 1;
        flex: 0 0 38px;
        transition: var(--ease);
    }

    .th-social i {
        font-size: 15px;
        line-height: 1;
        display: block;
    }

    .th-social:hover {
        color: var(--primary);
        border-color: var(--primary);
        transform: translateY(-1px);
    }

    .th-contact-group {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .th-contact {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 8px 14px;
        border-radius: 30px;
        border: 1px solid rgba(0, 0, 0, .1);
        background: #fff;
        color: #333;
        font-size: 14px;
        font-weight: 600;
        transition: var(--ease);
        white-space: nowrap;
        min-height: 38px;
    }

    .th-contact i {
        color: var(--primary);
        font-size: 13px;
    }

    .th-contact:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

    /* ===============================
       HEADER
    =============================== */
    .th-header {
        position: sticky;
        top: 0;
        z-index: 1005;
        background: rgba(255, 255, 255, .94);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(17, 24, 39, .06);
        width: 100%;
    }

    .th-header.is-scrolled {
        box-shadow: var(--shadow-sm);
    }

    .th-header__wrap {
        min-height: 78px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 22px;
    }

    .th-brand {
        display: inline-flex;
        align-items: center;
        flex: 0 0 auto;
        max-width: 240px;
    }

    .th-brand__logo {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: 70px;
        object-fit: contain;
    }

    .th-burger {
        display: none;
        width: 46px;
        height: 46px;
        border: 1px solid rgba(17, 24, 39, .08);
        border-radius: 14px;
        background: #fff;
        box-shadow: var(--shadow-xs);
        position: relative;
        cursor: pointer;
        padding: 0;
        flex: 0 0 auto;
    }

    .th-burger span {
        position: absolute;
        left: 13px;
        width: 20px;
        height: 2px;
        background: #111827;
        border-radius: 999px;
        transition: var(--ease);
    }

    .th-burger span:nth-child(1) {
        top: 15px;
    }

    .th-burger span:nth-child(2) {
        top: 22px;
    }

    .th-burger span:nth-child(3) {
        top: 29px;
    }

    .th-header.is-open .th-burger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .th-header.is-open .th-burger span:nth-child(2) {
        opacity: 0;
    }

    .th-header.is-open .th-burger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .th-nav {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-left: auto;
    }

    .th-item {
        position: relative;
    }

    .th-link,
    .th-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 46px;
        padding: 0 16px;
        border-radius: 14px;
        border: 1px solid transparent;
        background: transparent;
        color: #364152;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: var(--ease);
        white-space: nowrap;
    }

    .th-link:hover,
    .th-toggle:hover {
        background: #faf8fc;
        border-color: rgba(91, 44, 131, .10);
        color: #111827;
    }

    .th-link.is-active {
        color: var(--primary);
        background: linear-gradient(135deg, rgba(91, 44, 131, .08), rgba(200, 169, 81, .08));
        border-color: rgba(91, 44, 131, .12);
    }

    .th-toggle i {
        font-size: 12px;
        transition: transform .2s ease;
    }

    .th-item.is-open .th-toggle i {
        transform: rotate(180deg);
    }

    .th-dropdown {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        min-width: 270px;
        padding: 10px;
        background: #fff;
        border: 1px solid rgba(17, 24, 39, .07);
        border-radius: 18px;
        box-shadow: var(--shadow-md);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--ease);
        z-index: 20;
    }

    .th-item:hover .th-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .th-item.is-open .th-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .th-dropdown a {
        display: block;
        padding: 12px 14px;
        border-radius: 14px;
        color: #1f2937;
        font-weight: 750;
        transition: var(--ease);
    }

    .th-dropdown a:hover {
        background: linear-gradient(135deg, rgba(91, 44, 131, .06), rgba(200, 169, 81, .06));
        color: var(--primary);
    }

    .th-dropdown a strong {
        display: block;
        font-size: 14px;
        font-weight: 500;
    }

    .th-dropdown a small {
        display: block;
        margin-top: 4px;
        color: #6b7280;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.4;
    }

    .th-cta {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: 14px;
        padding-left: 16px;
        border-left: 1px solid rgba(17, 24, 39, .07);
    }

    .th-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 46px;
        padding: 0 18px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 850;
        transition: var(--ease);
        white-space: nowrap;
    }

    .th-btn--light {
        background: #fff;
        color: #111827;
        border: 1px solid rgba(17, 24, 39, .08);
        box-shadow: var(--shadow-xs);
    }

    .th-btn--light:hover {
        border-color: rgba(91, 44, 131, .14);
        color: var(--primary);
    }

    .th-btn--primary {
        color: #fff;
        border: 0;
        background: linear-gradient(135deg, var(--primary), #73479b 60%, var(--accent));
        box-shadow: 0 12px 26px rgba(91, 44, 131, .22);
    }

    .th-btn--primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 32px rgba(91, 44, 131, .28);
    }

    .th-backdrop {
        display: none;
    }

    /* ===============================
       TABLET TOPBAR
    =============================== */
    @media (max-width: 768px) {
        .th-topbar .th-wrap {
            justify-content: center;
            gap: 10px 12px;
            padding: 10px 12px;
        }

        .th-social-group,
        .th-contact-group {
            justify-content: center;
        }

        .th-contact {
            font-size: 13px;
            padding: 8px 12px;
        }
    }

    /* ===============================
       SMALL MOBILE TOPBAR
    =============================== */
    @media (max-width: 480px) {
        .th-topbar .th-wrap {
            flex-direction: row;
            justify-content: center;
            gap: 8px;
        }

        .th-social-group {
            width: 100%;
            justify-content: center;
            order: 1;
        }

        .th-contact-group {
            width: 100%;
            justify-content: center;
            order: 2;
            gap: 8px;
        }

        .th-contact {
            width: auto;
            max-width: 100%;
            font-size: 12px;
            padding: 8px 10px;
        }

        .th-social {
            width: 36px;
            height: 36px;
            min-width: 36px;
            min-height: 36px;
            flex: 0 0 36px;
        }
    }

    /* ===============================
       MOBILE / TABLET HEADER
    =============================== */
    @media (max-width: 1100px) {
        body {
            padding-top: 72px;
        }

        .th-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1008;
            background: rgba(255, 255, 255, .98);
        }

        .th-header__wrap {
            min-height: 72px;
        }

        .th-burger {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .th-nav {
            position: fixed;
            top: 72px;
            right: 0;
            width: min(92vw, 380px);
            height: calc(100dvh - 72px);
            max-height: calc(100dvh - 72px);
            background: #fff;
            border-left: 1px solid rgba(17, 24, 39, .08);
            box-shadow: 0 20px 50px rgba(17, 24, 39, .14);
            padding: 14px 14px 18px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 10px;
            transform: translateX(100%);
            transition: transform .28s ease;
            overflow-y: auto;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
            z-index: 1009;
            margin-left: 0;
            border-top: 1px solid rgba(17, 24, 39, .05);
        }

        .th-header.is-open .th-nav {
            transform: translateX(0);
        }

        .th-item {
            width: 100%;
        }

        .th-link,
        .th-toggle {
            width: 100%;
            justify-content: space-between;
            min-height: 52px;
            background: #fbfbfc;
            border: 1px solid rgba(17, 24, 39, .08);
            border-radius: 14px;
            padding: 0 16px;
            font-size: 15px;
        }

        .th-dropdown {
            position: static;
            min-width: 100%;
            margin-top: 8px;
            display: none;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            border-radius: 14px;
            border: 1px solid rgba(17, 24, 39, .06);
            padding: 8px;
            background: #fcfcfd;
        }

        .th-item:hover .th-dropdown {
            display: none;
        }

        .th-item.is-open .th-dropdown {
            display: block;
        }

        .th-cta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin: 2px 0 0;
            padding: 12px 0 0;
            border-left: 0;
            border-top: 1px solid rgba(17, 24, 39, .08);
            flex-shrink: 0;
        }

        .th-btn {
            width: 100%;
            min-height: 46px;
            padding: 0 12px;
        }

        .th-backdrop {
            display: block;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(17, 24, 39, .42);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity .28s ease, visibility .28s ease;
            z-index: 1007;
        }

        .th-header.is-open .th-backdrop {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
    }

    @media (max-width: 767px) {


        .th-brand__logo {
            max-height: 50px;
        }
    }

    @media (max-width: 480px) {
        body {
            padding-top: 68px;
        }

        .container-max {
            padding-left: 12px;
            padding-right: 12px;
        }


        .th-brand__logo {
            max-height: 60px;
        }

        .th-header__wrap {
            min-height: 68px;
        }

        .th-nav {
            top: 68px;
            width: 100vw;
            max-width: 100vw;
            height: calc(100dvh - 68px);
            max-height: calc(100dvh - 68px);
            border-left: none;
            padding: 12px 12px 16px;
            border-radius: 0;
        }

        .th-backdrop {
            top: 68px;
        }

        .th-link,
        .th-toggle {
            min-height: 50px;
            font-size: 14px;
        }

        .th-btn {
            min-height: 44px;
            font-size: 13px;
        }

        .th-cta {
            grid-template-columns: 1fr 1fr;
            padding-top: 12px;
        }
    }

    /* HERO */

    .heroCard {
        border-radius: 26px;
        overflow: hidden;
        background: #fff;
        border: 1px solid var(--stroke);
        box-shadow: 0 35px 80px rgba(0, 0, 0, .12);
    }

    .crumbsPage {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 12px;
        color: var(--grey);
        font-weight: 800;
        font-size: .92rem;
    }

    .crumbsPage a {
        color: inherit;
    }

    .crumbsPage span.sep {
        opacity: .55;
    }

    .heroMedia {
        position: relative;
        min-height: 460px;
        background: linear-gradient(110deg, rgba(17, 24, 39, .88) 0%, rgba(17, 24, 39, .72) 35%, rgba(17, 24, 39, .45) 65%, rgba(17, 24, 39, .15) 100%), url("/images/tempo-traveller.jpg");
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .heroMedia .p-4,
    .heroMedia .p-md-5 {
        position: relative;
        z-index: 2;
        max-width: 580px;
    }

    .heroKicker {
        display: inline-flex;
        gap: 10px;
        align-items: center;
        padding: 10px 16px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .26);
        color: #fff;
        font-weight: 800;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, .10);
    }

    .hero h1 {
        font-weight: 950;
        letter-spacing: -1px;
        font-size: clamp(34px, 2.5vw, 60px);
        line-height: 1.02;
        margin: 16px 0 14px;
        color: #fff;
    }

    .hero h1 span {
        background: linear-gradient(135deg, #f7d56f, var(--accent));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .hero p {
        color: rgba(255, 255, 255, .92);
        font-size: 1.08rem;
        max-width: 54ch;
        line-height: 1.7;
    }

    .heroActions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 20px;
        font-size: 15px;
    }

    .btnPrime,
    .btnSoftHero {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 50px;
        padding: 10px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 800;
        transition: all .25s ease;
    }

    .btnPrime {
        background: linear-gradient(135deg, var(--primary), var(--primary2));
        color: #fff;
        border: none;
        box-shadow: 0 16px 28px rgba(91, 44, 131, .28);
    }

    .btnPrime:hover {
        transform: translateY(-2px);
        color: #fff;
    }

    .btnSoftHero {
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .26);
        color: #fff;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .btnSoftHero:hover {
        transform: translateY(-2px);
        color: #fff;
    }

    .trustRow {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 22px;
    }

    .pill {
        display: inline-flex;
        gap: 8px;
        align-items: center;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        color: #fff;
        font-weight: 700;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
    }

    /* ========================================================= HERO FORM ========================================================= */
    .heroForm {
        position: relative;
        background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .96));
        border: 1px solid rgba(17, 24, 39, .08);
        border-radius: 24px;
        padding: 22px;
        box-shadow: 0 20px 50px rgba(17, 24, 39, .10), 0 8px 20px rgba(17, 24, 39, .05);
        overflow: hidden;
    }

    .heroForm::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 70px;
        /* reduced so it doesn't cover subtitle */
        background:
            radial-gradient(circle at top left, rgba(91, 44, 131, .08), transparent 60%),
            radial-gradient(circle at top right, rgba(28, 78, 128, .06), transparent 60%);
        pointer-events: none;
    }

    .heroForm>* {
        position: relative;
        z-index: 1;
    }

    .heroFormTop {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 30px;
    }

    .heroForm h2 {
        margin: 0;
        font-weight: 900;
        font-size: 1.45rem;
        color: #0f172a;
        letter-spacing: -.3px;
    }


    .b.ok {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 12px;
        border-radius: 999px;
        background: #f0fdf4;
        border: 1px solid #bbf7d0;
        color: #166534;
        font-weight: 800;
        font-size: .84rem;
        white-space: nowrap;
    }

    .heroForm .row.g-2 {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;
    }

    .heroForm .form-control,
    .heroForm .form-select {
        min-height: 56px;
        background: rgba(255, 255, 255, .96);
        border: 1px solid rgba(148, 163, 184, .28);
        color: var(--text);
        border-radius: 16px;
        padding: 14px 16px;
        font-size: 1rem;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .70);
        transition: all .25s ease;
    }

    .heroForm .form-control::placeholder {
        color: #94a3b8;
    }

    .heroForm .form-control:hover,
    .heroForm .form-select:hover {
        border-color: rgba(91, 44, 131, .28);
        background: #fff;
    }

    .heroForm .form-control:focus,
    .heroForm .form-select:focus {
        background: #fff;
        border-color: rgba(91, 44, 131, .55);
        box-shadow: 0 0 0 4px rgba(91, 44, 131, .12), 0 10px 24px rgba(91, 44, 131, .08);
        outline: none;
    }

    /* form buttons */
    .heroForm .btn {
        min-height: 54px;
        border-radius: 16px;
        font-weight: 800;
        font-size: 1rem;
        transition: all .25s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
    }

    .btnPrimeForm {
        background: linear-gradient(135deg, var(--primary), var(--primary2));
        color: #fff;
        border: none;
        box-shadow: 0 14px 28px rgba(91, 44, 131, .22);
    }

    .btnPrimeForm:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(91, 44, 131, .28);
        color: #fff;
    }

    .btnSoftForm {
        background: #fff;
        color: #111827;
        border: 1px solid rgba(17, 24, 39, .10);
        box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
    }

    .btnSoftForm:hover {
        transform: translateY(-2px);
        border-color: rgba(91, 44, 131, .22);
        color: var(--primary);
    }

    /* stats */
    .statGrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 18px;
    }

    .stat {
        position: relative;
        background: linear-gradient(180deg, #ffffff, #f8fafc);
        border: 1px solid rgba(148, 163, 184, .20);
        border-radius: 18px;
        padding: 16px 12px;
        text-align: center;
        box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
        transition: all .25s ease;
        overflow: hidden;
    }

    .stat::before {
        content: "";
        position: absolute;
        top: 0;
        left: 16px;
        right: 16px;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--primary), var(--primary2), var(--accent));
    }

    .stat:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(15, 23, 42, .08);
    }

    .stat strong {
        display: block;
        font-size: 1.30rem;
        line-height: 1;
        font-weight: 900;
        color: #0f172a;
        margin-bottom: 8px;
    }

    .stat small {
        display: block;
        color: #64748b;
        font-weight: 700;
        line-height: 1.5;
        font-size: .8rem;
    }

    /* ========================================================= RESPONSIVE ========================================================= */
    @media (max-width: 991.98px) {
        .heroMedia {
            min-height: 420px;
        }

        .heroForm {
            border-radius: 20px;
            padding: 18px;
        }

        .heroFormTop {
            flex-wrap: wrap;
        }

        .hero h1 {
            font-size: clamp(32px, 7vw, 48px);
        }
    }

    @media (max-width: 767.98px) {
        .hero {
            padding: 20px 0;
        }

        .heroCard {
            border-radius: 22px;
        }

        .heroMedia {
            min-height: 400px;
        }

        .heroKicker,
        .pill {
            font-size: .88rem;
        }

        .statGrid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 575.98px) {
        .heroMedia {
            min-height: 370px;
        }

        .hero h1 {
            font-size: clamp(30px, 9vw, 42px);
            line-height: 1.08;
        }

        .hero p {
            font-size: .98rem;
        }

        .heroForm .form-control,
        .heroForm .form-select,
        .heroForm .btn {
            min-height: 52px;
            border-radius: 14px;
        }

        .heroForm h2 {
            font-size: 1.20rem;
        }

        .b.ok {
            font-size: .74rem;
        }
    }

    /* =========================================================
   CTA STRIP
========================================================= */
    .ctaStripCard {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #ffffff 0%, #fcfcfe 52%, #f7f8fc 100%);
        border: 1px solid rgba(17, 24, 39, .08);
        border-radius: 26px;
        padding: 22px 28px;
        box-shadow:
            0 24px 65px rgba(17, 24, 39, .08),
            0 8px 24px rgba(17, 24, 39, .05);
    }

    .ctaStripCard::before {
        content: "";
        position: absolute;
        top: -120px;
        left: -100px;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(91, 44, 131, .10) 0%, rgba(91, 44, 131, 0) 70%);
        pointer-events: none;
    }

    .ctaStripCard::after {
        content: "";
        position: absolute;
        right: -90px;
        bottom: -120px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(28, 78, 128, .08) 0%, rgba(28, 78, 128, 0) 70%);
        pointer-events: none;
    }

    .ctaStripContent,
    .ctaStripActions {
        position: relative;
        z-index: 2;
    }

    /* left side */
    .ctaStripBadge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        border-radius: 999px;
        background: rgba(91, 44, 131, .06);
        border: 1px solid rgba(91, 44, 131, .14);
        color: #334155;
        font-weight: 800;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
    }

    .ctaStripBadgeIcon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary), var(--primary2));
        color: #fff;
        font-size: .82rem;
    }

    .ctaStripContent h2 {
        margin: 10px 0 6px;
        font-size: clamp(26px, 2vw, 36px);
        line-height: 1.15;
        letter-spacing: -.8px;
        font-weight: 950;
        color: #0f172a;
    }

    .ctaStripContent h2 span {
        background: linear-gradient(135deg, var(--primary), var(--primary2), var(--accent));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .ctaStripContent p {
        margin: 0;
        max-width: 60ch;
        color: #667085;
        font-size: .96rem;
        line-height: 1.6;
    }

    .ctaStripMeta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 14px;
    }

    .ctaStripMetaItem {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid rgba(17, 24, 39, .08);
        box-shadow: 0 8px 20px rgba(17, 24, 39, .05);
        color: #334155;
        font-size: .85rem;
        font-weight: 700;
    }

    .ctaStripMetaItem i {
        color: var(--primary);
    }

    /* right side */
    .ctaStripActions {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .ctaMainBtn {
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 12px 18px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 900;
        font-size: .95rem;
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--primary2));
        box-shadow: 0 18px 34px rgba(91, 44, 131, .24);
        transition: all .25s ease;
    }

    .ctaMainBtn:hover {
        transform: translateY(-3px);
        color: #fff;
        box-shadow: 0 24px 42px rgba(91, 44, 131, .30);
    }

    .ctaMainBtnIcon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, .16);
        border: 1px solid rgba(255, 255, 255, .16);
        flex: 0 0 auto;
    }

    /* ===== important change: 2 buttons in single row ===== */
    .ctaMiniActions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .ctaMiniBtn {
        min-height: 44px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        border-radius: 12px;
        text-decoration: none;
        background: #fff;
        border: 1px solid rgba(17, 24, 39, .08);
        box-shadow: 0 10px 22px rgba(17, 24, 39, .05);
        color: #0f172a;
        font-weight: 800;
        font-size: .9rem;
        transition: all .25s ease;
        white-space: nowrap;
    }

    .ctaMiniBtn:hover {
        transform: translateY(-2px);
        color: var(--primary);
        border-color: rgba(91, 44, 131, .18);
        box-shadow: 0 16px 28px rgba(17, 24, 39, .07);
    }

    .ctaMiniBtnIcon {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(91, 44, 131, .10), rgba(28, 78, 128, .08));
        color: var(--primary);
        flex: 0 0 auto;
    }

    /* responsive */
    @media (min-width: 992px) {
        .ctaStripActions {
            padding-left: 12px;
        }
    }

    @media (max-width: 991.98px) {
        .ctaStripCard {
            padding: 20px 18px;
        }

        .ctaStripContent h2 {
            max-width: 100%;
        }
    }

    @media (max-width: 767.98px) {
        .ctaStripSec {
            padding: 10px 0 6px;
        }

        .ctaStripCard {
            border-radius: 22px;
            padding: 18px;
        }

        .ctaStripBadge {
            font-size: .88rem;
            padding: 9px 14px;
        }

        .ctaStripContent h2 {
            margin: 12px 0 8px;
            font-size: 24px;
            line-height: 1.15;
        }

        .ctaStripContent p {
            font-size: .94rem;
            line-height: 1.65;
        }

        .ctaStripMeta {
            gap: 10px;
            margin-top: 14px;
        }

        .ctaStripMetaItem {
            width: 100%;
            justify-content: flex-start;
            border-radius: 14px;
        }

        .ctaMainBtn {
            min-height: 52px;
            border-radius: 14px;
            font-size: .95rem;
        }

        .ctaMiniActions {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }

        .ctaMiniBtn {
            min-height: 48px;
            padding: 10px 12px;
            border-radius: 12px;
            font-size: .85rem;
            gap: 8px;
        }

        .ctaMiniBtnIcon {
            width: 32px;
            height: 32px;
            border-radius: 10px;
        }
    }

    @media (max-width: 480px) {
        .ctaMiniActions {
            grid-template-columns: 1fr;
        }
    }

    /* =========================================================
   SECTION HEAD + READ MORE
========================================================= */
    .ttIntro {
        position: relative;
        overflow: hidden;
    }

    .ttIntro::before {
        content: "";
        position: absolute;
        top: -90px;
        left: -120px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        pointer-events: none;
    }


    .secHead {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 18px;
        padding: 28px 0 24px;
        border-bottom: 1px solid rgba(17, 24, 39, .08);
    }

    .secHead__content {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .secKicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
        padding: 8px 14px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(91, 44, 131, .10), rgba(200, 169, 81, .12));
        border: 1px solid rgba(91, 44, 131, .10);
        color: #5B2C83;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .2px;
        width: fit-content;
    }

    .secKicker__dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: linear-gradient(135deg, #5B2C83, #C8A951);
        box-shadow: 0 0 0 5px rgba(91, 44, 131, .08);
        flex: 0 0 auto;
    }

    .secHead h2 {
        margin: 0 0 14px;
        font-weight: 950;
        line-height: 1.08;
        letter-spacing: -.8px;
        font-size: clamp(28px, 3.6vw, 46px);
        color: #111827;
        max-width: 100%;
    }

    .secHead h2 span {
        color: #5B2C83;
        position: relative;
        white-space: normal;
    }

    .secHead h2 span::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 3px;
        height: 10px;
        border-radius: 999px;
        background: rgba(200, 169, 81, .22);
        z-index: -1;
    }

    .secHead p {
        margin: 0;
        color: var(--muted);
        font-size: 16.2px;
        line-height: 1.85;
        max-width: 100%;
    }

    .secPoints {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 14px;
        margin-top: 18px;
    }

    .secPoint {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 10px 14px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid rgba(17, 24, 39, .08);
        box-shadow: 0 8px 24px rgba(17, 24, 39, .05);
        color: #1f2937;
        font-size: 13.5px;
        font-weight: 800;
    }

    .secPoint i {
        color: #5B2C83;
        font-size: 14px;
    }

    .secHead__action {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        z-index: 2;
    }

    .btnSoft {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 20px;
        border: 0;
        border-radius: 16px;
        background: linear-gradient(135deg, #5B2C83, #6a3498);
        color: #fff;
        font-weight: 800;
        font-size: 14px;
        box-shadow: 0 10px 20px rgba(91, 44, 131, .22);
        transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    }

    .btnSoft:hover {
        transform: translateY(-2px);
        box-shadow: 0 22px 40px rgba(91, 44, 131, .28);
    }

    .btnSoft i {
        font-size: 13px;
        transition: transform .22s ease;
    }

    .btnSoft.is-open i {
        transform: rotate(180deg);
    }

    /* read-more */
    .rmText {
        max-height: 5.7em;
        overflow: hidden;
        position: relative;
        transition: max-height .28s ease;
    }

    .rmText::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 2.2em;
        background: linear-gradient(to bottom, rgba(246, 247, 251, 0), rgba(246, 247, 251, .98));
        pointer-events: none;
    }

    .rmText.is-open {
        max-height: 500px;
    }

    .rmText.is-open::after {
        display: none;
    }


    @media (max-width: 991.98px) {
        .secHead {
            gap: 18px;
            padding: 20px 0 18px;
        }

        .secHead h2 {
            font-size: clamp(24px, 7vw, 36px);
        }

        .secHead__action {
            justify-content: flex-start;
        }

        .btnSoft {
            padding: 10px;
            border-radius: 14px;
        }
    }

    @media (max-width: 575.98px) {
        .ttIntro {
            padding-top: 10px;
        }

        .secKicker {
            font-size: 12px;
            padding: 7px 12px;
        }

        .secHead p {
            font-size: 15px;
            line-height: 1.75;
        }

        .secPoints {
            gap: 10px;
        }

        .secPoint {
            width: 100%;
            justify-content: flex-start;
            border-radius: 14px;
        }
    }

    /* =========================================================
   FLEET / TOUR CARDS (grid)
========================================================= */
    .gridFleet {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 14px;
    }

    .fleetCard {
        grid-column: span 12;
        background: #fff;
        border: 1px solid var(--stroke);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow2);
        transition: transform .18s ease, border-color .18s ease;
    }

    .fleetCard:hover {
        transform: translateY(-4px);
        border-color: rgba(91, 44, 131, .22);
    }

    @media(min-width:768px) {
        .fleetCard {
            grid-column: span 6;
        }
    }

    @media(min-width:1100px) {
        .fleetCard {
            grid-column: span 4;
        }
    }

    .fleetMedia {
        aspect-ratio: 16/10;
        background: rgba(17, 24, 39, .04);
        position: relative;
    }

    .fleetMedia img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* badges on image */
    .badgeRow {
        position: absolute;
        left: 12px;
        right: 12px;
        top: 12px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
    }

    .b {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        font-weight: 900;
        font-size: .84rem;
        border: 1px solid var(--stroke);
        background: rgba(255, 255, 255, .88);
        backdrop-filter: blur(8px);
    }

    .b i {
        color: var(--accent);
    }

    .b.ok i {
        color: #16A34A;
    }

    .b.rate i {
        color: var(--accent);
    }


    /* Fleet */

    .fleetBody {
        position: relative;
        padding: 20px 18px 18px;
        background: #fff;
    }

    .fleetTitle {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
        align-items: start;
        margin-bottom: 16px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(17, 24, 39, .08);
    }

    .fleetTitle h3 {
        margin: 0;
        font-size: 1.18rem;
        line-height: 1.28;
        letter-spacing: -.3px;
        font-weight: 900;
        color: #111827;
    }

    .price {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 10px;
        border-radius: 20px;
        background: #f8f4eb;
        border: 1px solid rgba(200, 169, 81, .35);
        color: #111827;
        font-size: .78rem;
        font-weight: 950;
        white-space: nowrap;
        box-shadow: none;
    }

    /* meta now looks like professional info boxes */
    .meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin: 0 0 14px;
    }

    .meta span {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 50px;
        padding: 10px 12px;
        border-radius: 16px;
        background: #f8fafc;
        border: 1px solid rgba(17, 24, 39, .07);
        color: #374151;
        font-size: .88rem;
        font-weight: 800;
        line-height: 1.3;
    }

    .meta span i {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: rgba(91, 44, 131, .10);
        color: var(--primary);
        font-size: .84rem;
    }

    /* chips changed from round pills to clean feature list tags */
    .chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 0 0 16px;
    }

    .chip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #4b5563;
        font-size: .86rem;
        font-weight: 800;
        line-height: 1.2;
    }

    .chip::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        flex: 0 0 7px;
    }

    /* buttons more clean and professional */
    .fleetBtns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding-top: 14px;
        border-top: 1px solid rgba(17, 24, 39, .08);
    }

    .btnMini {
        min-height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 14px;
        border-radius: 14px;
        border: 1px solid rgba(17, 24, 39, .10);
        background: #fff;
        color: #111827;
        font-size: .94rem;
        font-weight: 900;
        text-decoration: none;
        box-shadow: none;
        transition: all .22s ease;
    }

    .btnMini:hover {
        transform: translateY(-2px);
        border-color: rgba(91, 44, 131, .20);
        box-shadow: 0 10px 22px rgba(17, 24, 39, .06);
        color: #111827;
    }

    .btnMini.primary {
        border: 1px solid transparent;
        background: linear-gradient(135deg, #5B2C83 0%, #6b38a0 55%, #7a48b4 100%);
        color: #fff;
        box-shadow: 0 12px 24px rgba(91, 44, 131, .16);
    }

    .btnMini.primary:hover {
        color: #fff;
        box-shadow: 0 16px 30px rgba(91, 44, 131, .22);
    }

    .btnMini i {
        font-size: .9rem;
    }

    @media (max-width: 575.98px) {
        .fleetBody {
            padding: 16px 14px 16px;
        }

        .fleetTitle {
            gap: 10px;
        }

        .price {
            justify-self: start;
        }

        .meta {
            grid-template-columns: 1fr;
        }

        .fleetBtns {
            grid-template-columns: 1fr;
        }
    }

    /* =========================================================
   SPOTLIGHT (Maharaja / Urbania feature)
========================================================= */
    .spot {
        border-radius: 26px;
        overflow: hidden;
        border: 1px solid var(--stroke);
        background: #fff;
        box-shadow: var(--shadow);
    }

    .spotImg {
        min-height: 320px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .spotImg:after {
        content: "";
        position: absolute;
        inset: 0;
    }

    .spotContent {
        position: relative;
        padding: 18px;
    }

    .listTick {
        display: grid;
        gap: 10px;
        margin-top: 12px;
    }

    .tick {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        padding: 10px 12px;
        border-radius: 16px;
        border: 1px solid var(--stroke);
        background: rgba(17, 24, 39, .02);
        color: #374151;
        font-weight: 850;
    }

    .tick i {
        color: #16A34A;
        margin-top: 2px;
    }

    .Kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        width: fit-content;
        padding: 8px 14px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(91, 44, 131, .10), rgba(28, 78, 128, .08));
        border: 1px solid rgba(91, 44, 131, .12);
        color: var(--primary, #5B2C83);
        font-weight: 800;
        font-size: .90rem;
        margin-bottom: 14px;
    }

    .Kicker i {
        color: var(--accent, #C8A951);
    }

    /* MOBILE FIX */
    @media (max-width:576px) {

        .heroActions {
            flex-direction: row;
            /* column remove */
            gap: 10px;
        }

        .heroActions a {
            flex: 1;
            /* dono button equal width */
            text-align: center;
            justify-content: center;
        }

    }

    /* ROutes */

    .routeShowcase {
        position: relative;
        overflow: hidden;
    }

    .routeShowcase::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at top left, rgba(91, 44, 131, 0.09), transparent 28%),
            radial-gradient(circle at bottom right, rgba(200, 169, 81, 0.08), transparent 25%);
        pointer-events: none;
    }

    .routeShowcase .container {
        position: relative;
        z-index: 1;
    }

    .routeCards {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .routeXCard {
        border-radius: 24px;
        overflow: hidden;
        background: #fff;
        border: 1px solid rgba(17, 24, 39, .08);
        box-shadow: 0 18px 50px rgba(17, 24, 39, .08);
        transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .routeXCard:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(17, 24, 39, .14);
        border-color: rgba(91, 44, 131, .18);
    }

    .routeXMedia {
        position: relative;
        min-height: 260px;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 18px;
    }

    .routeXOverlay {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(15, 23, 42, .16) 0%, rgba(15, 23, 42, .28) 35%, rgba(15, 23, 42, .78) 100%),
            linear-gradient(135deg, rgba(91, 44, 131, .22), rgba(200, 169, 81, .10));
    }

    .routeXBadge,
    .routeXTitleWrap {
        position: relative;
        z-index: 1;
    }

    .routeXBadge {
        align-self: flex-start;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 13px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .92);
        color: var(--primary);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .06em;
        box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
    }

    .routeXTitleWrap h3 {
        margin: 0 0 8px;
        color: #fff;
        font-size: 20px;
        line-height: 1.08;
        font-weight: 900;
        letter-spacing: -.02em;
        max-width: 95%;
    }

    .routeXTitleWrap p {
        margin: 0;
        color: rgba(255, 255, 255, .88);
        font-size: 15px;
        line-height: 1.65;
        max-width: 95%;
    }

    .routeXBody {
        padding: 18px 18px 20px;
    }

    .routeXMeta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 18px;
    }

    .routeXMeta span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 12px;
        border-radius: 999px;
        background: #faf8ff;
        border: 1px solid rgba(91, 44, 131, .10);
        color: #344054;
        font-size: 13px;
        font-weight: 800;
    }

    .routeXMeta i {
        color: var(--primary);
    }

    .routeXBtns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .btnMini {
        min-height: 50px;
        padding: 12px 16px;
        border-radius: 14px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 9px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 800;
        border: 1px solid rgba(17, 24, 39, .10);
        background: #fff;
        color: var(--text);
        transition: all .25s ease;
    }

    .btnMini:hover {
        transform: translateY(-2px);
        color: var(--primary);
        border-color: rgba(91, 44, 131, .18);
        box-shadow: 0 14px 28px rgba(17, 24, 39, .08);
    }

    .btnMini.primary {
        background: linear-gradient(135deg, var(--primary), #7b46af);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 14px 28px rgba(91, 44, 131, .24);
    }

    .btnMini.primary:hover {
        color: #fff;
        box-shadow: 0 18px 34px rgba(91, 44, 131, .32);
    }

    @media (max-width: 1199px) {
        .routeCards {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 991px) {
        .routeShowcase {
            padding: 64px 0;
        }

        .routeXMedia {
            min-height: 240px;
        }

        .routeXTitleWrap h3 {
            font-size: 24px;
        }
    }

    @media (max-width: 767px) {
        .routeCards {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .routeXMedia {
            min-height: 220px;
            padding: 16px;
        }

        .routeXTitleWrap h3 {
            font-size: 15px;
            max-width: 100%;
        }

        .routeXTitleWrap p {
            font-size: 14px;
            max-width: 100%;
        }

        .btnMini {
            width: 100%;
        }
    }

    /* =========================================================
   REVIEWS (scroll)
========================================================= */

    .reviewSection {
        position: relative;
        overflow: hidden;
    }

    .reviewWrap {
        position: relative;
        z-index: 1;
    }

    .reviewHead {
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(320px, .8fr);
        gap: 26px;
        align-items: stretch;
        margin-bottom: 28px;
    }

    .reviewHead__content h2 {
        margin: 0 0 14px;
        font-size: clamp(30px, 3.7vw, 48px);
        line-height: 1.08;
        font-weight: 950;
        letter-spacing: -.8px;
        color: #111827;
        max-width: 820px;
    }

    .reviewHead__content h2 span {
        color: #5B2C83;
    }

    .reviewHead__content p {
        margin: 0;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.85;
        max-width: 780px;
    }

    .reviewScore {
        background: linear-gradient(180deg, #ffffff, #fcfbff);
        border: 1px solid rgba(17, 24, 39, .08);
        border-radius: 24px;
        padding: 22px;
        box-shadow: 0 18px 45px rgba(17, 24, 39, .08);
    }

    .reviewScore__top {
        display: flex;
        align-items: center;
        gap: 16px;
        padding-bottom: 16px;
        margin-bottom: 16px;
        border-bottom: 1px solid rgba(17, 24, 39, .08);
    }

    .reviewScore__num {
        width: 82px;
        height: 82px;
        border-radius: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #5B2C83, #7640a8);
        color: #fff;
        font-size: 30px;
        font-weight: 900;
        box-shadow: 0 16px 34px rgba(91, 44, 131, .25);
        flex: 0 0 auto;
    }

    .reviewScore__meta strong {
        display: block;
        font-size: 18px;
        color: #111827;
        margin-top: 6px;
        margin-bottom: 4px;
    }

    .reviewScore__meta span {
        color: var(--muted);
        font-size: 14px;
    }

    .reviewStars {
        display: flex;
        align-items: center;
        gap: 4px;
        color: #C8A951;
        font-size: 14px;
    }

    .reviewScore__bars {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .rBar span {
        display: block;
        font-size: 13px;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 7px;
    }

    .rBarTrack {
        height: 10px;
        border-radius: 999px;
        background: #edeaf4;
        overflow: hidden;
    }

    .rBarTrack div {
        height: 100%;
        border-radius: 999px;
        background: linear-gradient(90deg, #5B2C83, #C8A951);
    }

    .reviewGrid {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 22px;
    }

    .reviewCard {
        background: #fff;
        border: 1px solid rgba(17, 24, 39, .08);
        border-radius: 24px;
        padding: 22px;
        box-shadow: 0 16px 40px rgba(17, 24, 39, .06);
        transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .reviewCard:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 50px rgba(17, 24, 39, .11);
        border-color: rgba(91, 44, 131, .16);
    }

    .reviewCard--featured {
        background: linear-gradient(180deg, rgba(91, 44, 131, .03), rgba(255, 255, 255, 1));
    }

    .reviewTop {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 14px;
    }

    .reviewUser {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .reviewAvatar {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #5B2C83, #C8A951);
        color: #fff;
        font-size: 20px;
        font-weight: 900;
        box-shadow: 0 12px 24px rgba(91, 44, 131, .18);
        flex: 0 0 auto;
    }

    .reviewUser h3 {
        margin: 0 0 4px;
        font-size: 18px;
        line-height: 1.2;
        font-weight: 900;
        color: #111827;
    }

    .reviewUser p {
        margin: 0;
        color: var(--muted);
        font-size: 13.5px;
        line-height: 1.5;
    }

    .reviewBadge {
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(91, 44, 131, .08);
        color: #5B2C83;
        border: 1px solid rgba(91, 44, 131, .10);
        font-size: 12px;
        font-weight: 800;
        white-space: nowrap;
    }

    .reviewStars--card {
        margin-bottom: 14px;
        font-size: 15px;
    }

    .reviewCard blockquote {
        margin: 0;
        color: #334155;
        font-size: 15.5px;
        line-height: 1.85;
        font-weight: 500;
    }

    .reviewFoot {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
        padding-top: 16px;
        border-top: 1px dashed rgba(17, 24, 39, .10);
    }

    .reviewFoot span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 12px;
        border-radius: 999px;
        background: #faf8ff;
        border: 1px solid rgba(91, 44, 131, .10);
        color: #1f2937;
        font-size: 13px;
        font-weight: 800;
    }

    .reviewFoot i {
        color: #5B2C83;
    }

    @media (max-width:1199.98px) {
        .reviewGrid {
            grid-template-columns: 1fr 1fr;
        }

        .reviewCard--featured {
            grid-column: span 2;
        }
    }

    @media (max-width:991.98px) {
        .reviewSection {
            padding: 64px 0;
        }

        .reviewHead {
            grid-template-columns: 1fr;
        }

        .reviewHead__content h2 {
            font-size: clamp(28px, 7vw, 40px);
        }
    }

    @media (max-width:767.98px) {
        .reviewGrid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .reviewCard--featured {
            grid-column: span 1;
        }

        .reviewScore {
            padding: 18px;
            border-radius: 20px;
        }

        .reviewScore__top {
            align-items: flex-start;
        }

        .reviewScore__num {
            width: 70px;
            height: 70px;
            font-size: 26px;
            border-radius: 18px;
        }

        .reviewCard {
            padding: 18px;
            border-radius: 20px;
        }

        .reviewUser h3 {
            font-size: 17px;
        }

        .reviewCard blockquote {
            font-size: 14.5px;
            line-height: 1.75;
        }
    }


    /* =========================================================
   GALLERY MINI
   ========================================================= */

    .galleryMini {
        position: relative;
    }

    .galleryMiniWrap {
        position: relative;
    }

    .galleryMiniHead {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 28px;
        margin-bottom: 24px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    }

    .galleryMiniHead__content {
        max-width: 780px;
    }

    .galleryMiniHead h2 {
        margin: 0 0 12px;
        font-size: clamp(28px, 3.5vw, 44px);
        line-height: 1.05;
        letter-spacing: -0.8px;
        font-weight: 950;
        color: #111827;
    }

    .galleryMiniHead h2 span {
        color: #5B2C83;
    }

    .galleryMiniHead p {
        margin: 0;
        color: var(--muted, #64748b);
        font-size: 15.5px;
        line-height: 1.75;
        max-width: 720px;
    }

    .galleryMiniHead__action {
        flex: 0 0 auto;
    }

    .galleryMiniGrid {
        display: grid;
        grid-template-columns: 1.6fr 1fr 1fr;
        grid-template-rows: auto;
        gap: 16px;
        grid-auto-rows: 180px;
        /* desktop base row height */
    }

    .galleryMiniItem {
        position: relative;
        display: block;
        border-radius: 20px;
        overflow: hidden;
        background: #ffffff;
        border: 1px solid rgba(17, 24, 39, 0.07);
        box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
        transition: all 0.26s ease;
    }

    .galleryMiniItem:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 38px rgba(17, 24, 39, 0.09);
        border-color: rgba(91, 44, 131, 0.18);
    }

    .galleryMiniItem img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 0.38s ease;
    }

    .galleryMiniItem:hover img {
        transform: scale(1.06);
    }

    /* Large featured item */
    .galleryMiniItem--lg {
        grid-column: 1;
        grid-row: span 2;
        min-height: 376px;
        /* ≈ 2 rows */
    }

    /* Overlay */
    .galleryMiniOverlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: 20px 18px 16px;
        background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.15) 70%);
        color: white;
        pointer-events: none;
    }

    .galleryMiniOverlay strong {
        display: block;
        font-size: 21px;
        font-weight: 900;
        line-height: 1.18;
        margin-bottom: 6px;
        letter-spacing: -0.4px;
    }

    .galleryMiniOverlay small {
        display: block;
        font-size: 13.5px;
        line-height: 1.45;
        opacity: 0.92;
    }

    /* ────────────────────────────────────────────────
   TABLET (≤991px)
──────────────────────────────────────────────── */
    @media (max-width: 991.98px) {
        .galleryMini {
            padding: 32px 0 16px;
        }

        .galleryMiniHead {
            flex-direction: column;
            align-items: flex-start;
            gap: 18px;
        }

        .galleryMiniHead__action {
            width: 100%;
        }

        .galleryMiniGrid {
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            grid-auto-rows: 160px;
        }

        .galleryMiniItem {
            border-radius: 18px;
        }

        .galleryMiniItem--lg {
            grid-column: 1 / -1;
            grid-row: auto;
            min-height: 280px;
        }
    }

    /* ────────────────────────────────────────────────
   MOBILE (≤767px)
──────────────────────────────────────────────── */
    @media (max-width: 767.98px) {
        .galleryMini {
            padding: 28px 0 12px;
        }

        .galleryMiniHead h2 {
            font-size: 30px;
        }

        .galleryMiniHead p {
            font-size: 14.5px;
            line-height: 1.7;
        }

        .galleryMiniGrid {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            grid-auto-rows: 110px;
        }

        .galleryMiniItem {
            border-radius: 16px;
        }

        .galleryMiniItem--lg {
            min-height: 220px;
        }

        .galleryMiniOverlay {
            padding: 14px 12px 12px;
        }

        .galleryMiniOverlay strong {
            font-size: 17px;
            margin-bottom: 4px;
        }

        .galleryMiniOverlay small {
            font-size: 12px;
        }
    }

    /* ────────────────────────────────────────────────
   EXTRA SMALL (<480px)
──────────────────────────────────────────────── */
    @media (max-width: 479.98px) {
        .galleryMini {
            padding: 24px 0 10px;
        }

        .galleryMiniGrid {
            gap: 10px;
            grid-auto-rows: 94px;
        }

        .galleryMiniItem--lg {
            min-height: 188px;
        }

        .galleryMiniOverlay {
            padding: 12px 10px 10px;
        }

        .galleryMiniOverlay strong {
            font-size: 15.5px;
        }

        .galleryMiniOverlay small {
            font-size: 11.5px;
            line-height: 1.4;
        }

        /* Optional: subtitle hide on very small screens */
        .galleryMiniOverlay small {
            display: none;
        }
    }

    /* =========================================================
   PREMIUM VEHICLE GALLERY
========================================================= */
    .vehicleGalleryPro {
        position: relative;
        overflow: hidden;
    }

    .vehicleGalleryPro::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at top left, rgba(91, 44, 131, .08), transparent 26%),
            radial-gradient(circle at bottom right, rgba(200, 169, 81, .08), transparent 22%);
        pointer-events: none;
    }

    .vehicleGalleryPro__wrap {
        position: relative;
        z-index: 1;
    }

    .vehicleGalleryPro__head {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 18px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(17, 24, 39, .08);
    }

    .vehicleGalleryPro__content {
        max-width: 840px;
    }

    .vehicleGalleryPro__content h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 3.3vw, 44px);
        line-height: 1.08;
        letter-spacing: -.8px;
        font-weight: 950;
        color: #111827;
    }

    .vehicleGalleryPro__content h2 span {
        color: #5B2C83;
    }

    .vehicleGalleryPro__content p {
        margin: 0;
        color: var(--muted);
        font-size: 15.5px;
        line-height: 1.8;
        max-width: 760px;
    }

    .vehicleGalleryPro__action {
        flex: 0 0 auto;
    }

    /* =========================================================
   CAPSULES
========================================================= */
    .galleryCapsules {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin: 0 0 18px;
    }

    .galleryCapsule {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        min-height: 46px;
        padding: 10px 16px;
        border-radius: 999px;
        border: 1px solid rgba(91, 44, 131, .12);
        background: linear-gradient(135deg, rgba(91, 44, 131, .05), rgba(200, 169, 81, .06)), #fff;
        color: #1f2937;
        font-size: 13.5px;
        font-weight: 900;
        box-shadow: 0 8px 20px rgba(17, 24, 39, .04);
        transition: all .24s ease;
        white-space: nowrap;
        margin-top: 10px;
    }

    .galleryCapsule i {
        color: #5B2C83;
        font-size: 13px;
    }

    .galleryCapsule:hover,
    .galleryCapsule.is-active {
        color: #5B2C83;
        border-color: #5B2C83;
        box-shadow: 0 14px 28px rgba(17, 24, 39, .08);
        transform: translateY(-2px);
    }

    /* =========================================================
   GRID - DESKTOP
========================================================= */
    .vehicleGalleryGrid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-rows: 170px;
        gap: 14px;
        grid-auto-flow: dense;
    }

    .vehicleGalleryItem {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 22px;
        background: #fff;
        border: 1px solid rgba(17, 24, 39, .08);
        box-shadow: 0 14px 30px rgba(17, 24, 39, .06);
        transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
        cursor: pointer;
        min-height: 170px;
    }

    .vehicleGalleryItem::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0) 25%, rgba(15, 23, 42, .18) 100%);
        opacity: .40;
        transition: opacity .25s ease;
        pointer-events: none;
        z-index: 1;
    }

    .vehicleGalleryItem:hover {
        transform: translateY(-5px);
        box-shadow: 0 22px 38px rgba(17, 24, 39, .11);
        border-color: rgba(91, 44, 131, .16);
    }

    .vehicleGalleryItem:hover::before {
        opacity: .15;
    }

    .vehicleGalleryItem img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        transition: transform .35s ease;
    }

    .vehicleGalleryItem:hover img {
        transform: scale(1.05);
    }

    .vehicleGalleryItem--xl {
        grid-column: span 2;
        grid-row: span 2;
        min-height: 354px;
    }

    .vehicleGalleryItem--wide {
        grid-column: span 2;
    }

    .vehicleGalleryItem.is-hidden {
        display: none !important;
    }

    /* =========================================================
   LIGHTBOX
========================================================= */
    .galleryLightbox {
        position: fixed;
        inset: 0;
        background: rgba(8, 12, 20, .88);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .25s ease, visibility .25s ease;
        z-index: 9999;
    }

    .galleryLightbox.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .galleryLightbox__dialog {
        position: relative;
        width: min(1100px, 100%);
        max-height: 88vh;
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .10);
        box-shadow: 0 24px 60px rgba(0, 0, 0, .40);
        background: #0b1220;
    }

    .galleryLightbox__dialog img {
        width: 100%;
        max-height: 88vh;
        object-fit: contain;
        display: block;
        background: #0b1220;
    }

    .galleryLightbox__close,
    .galleryLightbox__nav {
        position: absolute;
        z-index: 2;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: rgba(255, 255, 255, .10);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
        transition: all .22s ease;
    }

    .galleryLightbox__close:hover,
    .galleryLightbox__nav:hover {
        background: rgba(255, 255, 255, .16);
    }

    .galleryLightbox__close {
        top: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 18px;
    }

    .galleryLightbox__nav {
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 18px;
    }

    .galleryLightbox__nav--prev {
        left: 22px;
    }

    .galleryLightbox__nav--next {
        right: 22px;
    }

    /* =========================================================
   TABLET
========================================================= */
    @media (max-width: 991.98px) {
        .vehicleGalleryPro {
            padding: 44px 0 16px;
        }

        .vehicleGalleryPro__head {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 14px;
            padding-bottom: 14px;
        }

        .vehicleGalleryPro__action {
            width: 100%;
        }

        .galleryCapsules {
            gap: 10px;
            margin-bottom: 14px;
        }

        .galleryCapsule {
            min-height: 42px;
            padding: 9px 14px;
            font-size: 12.5px;
        }

        .vehicleGalleryGrid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            grid-auto-rows: 140px;
            gap: 10px;
        }

        .vehicleGalleryItem {
            border-radius: 18px;
            min-height: 140px;
        }

        .vehicleGalleryItem--xl,
        .vehicleGalleryItem--wide {
            grid-column: span 2;
            grid-row: auto;
            min-height: 220px;
        }
    }

    /* =========================================================
   MOBILE
========================================================= */
    @media (max-width: 767.98px) {
        .vehicleGalleryPro {
            padding: 30px 0 10px;
        }

        .vehicleGalleryPro__head {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            padding-bottom: 12px;
        }

        .vehicleGalleryPro__content h2 {
            font-size: 26px;
            line-height: 1.14;
        }

        .vehicleGalleryPro__content p {
            font-size: 14px;
            line-height: 1.7;
        }

        .vehicleGalleryPro__action {
            width: 100%;
        }

        .vehicleGalleryPro__action .btnSoft {
            width: auto;
        }

        .galleryCapsules {
            flex-wrap: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            gap: 8px;
            padding-bottom: 4px;
            margin-bottom: 14px;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }

        .galleryCapsules::-webkit-scrollbar {
            display: none;
        }

        .galleryCapsule {
            flex: 0 0 auto;
            min-height: 38px;
            padding: 8px 12px;
            font-size: 12px;
            gap: 7px;
            border-radius: 999px;
        }

        .galleryCapsule i {
            font-size: 11px;
        }

        /* Main fix */
        .vehicleGalleryGrid {
            grid-template-columns: 1fr;
            grid-auto-rows: auto;
            gap: 10px;
        }

        .vehicleGalleryItem,
        .vehicleGalleryItem--xl,
        .vehicleGalleryItem--wide {
            grid-column: auto !important;
            grid-row: auto !important;
            min-height: unset !important;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 10px 20px rgba(17, 24, 39, .05);
        }

        /* Image ratio control */
        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(1) {
            aspect-ratio: 16 / 9;
        }

        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(2),
        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(3) {
            aspect-ratio: 16 / 10;
        }

        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(4) {
            aspect-ratio: 16 / 10;
        }

        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(5),
        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(6) {
            aspect-ratio: 4 / 3;
        }

        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(7),
        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(8) {
            aspect-ratio: 16 / 10;
        }

        .vehicleGalleryItem::before {
            opacity: .16;
        }

        .vehicleGalleryItem img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* only small pair row */
        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(2),
        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(3),
        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(5),
        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(6) {
            display: inline-block;
            width: 100%;
        }

        .vehicleGalleryGrid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(1),
        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(4),
        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(7),
        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(8) {
            grid-column: 1 / -1 !important;
        }

        .galleryLightbox {
            padding: 12px;
        }

        .galleryLightbox__dialog {
            border-radius: 16px;
        }

        .galleryLightbox__close {
            top: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            font-size: 15px;
        }

        .galleryLightbox__nav {
            width: 38px;
            height: 38px;
            font-size: 14px;
        }

        .galleryLightbox__nav--prev {
            left: 8px;
        }

        .galleryLightbox__nav--next {
            right: 8px;
        }
    }

    /* =========================================================
   EXTRA SMALL MOBILE
========================================================= */
    @media (max-width: 479.98px) {
        .vehicleGalleryPro__content h2 {
            font-size: 24px;
        }

        .vehicleGalleryPro__content p {
            font-size: 13.5px;
        }

        .galleryCapsule {
            min-height: 36px;
            padding: 7px 11px;
            font-size: 11.5px;
        }

        .vehicleGalleryGrid {
            gap: 8px;
        }

        .vehicleGalleryItem,
        .vehicleGalleryItem--xl,
        .vehicleGalleryItem--wide {
            border-radius: 14px;
        }

        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(1) {
            aspect-ratio: 16 / 9;
        }

        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(2),
        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(3) {
            aspect-ratio: 4 / 3;
        }

        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(4) {
            aspect-ratio: 16 / 10;
        }

        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(5),
        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(6) {
            aspect-ratio: 4 / 3;
        }

        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(7),
        .vehicleGalleryGrid .vehicleGalleryItem:nth-child(8) {
            aspect-ratio: 16 / 10;
        }
    }

    /* =========================================================
BLOGS
========================================================= */
    .blogMini {
        position: relative;
    }

    .blogMiniWrap {
        position: relative;
    }

    .blogMiniHead {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 20px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(17, 24, 39, .08);
    }

    .blogMiniHead__content {
        max-width: 800px;
    }

    .blogMiniHead h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 3.2vw, 42px);
        line-height: 1.08;
        letter-spacing: -.7px;
        font-weight: 950;
        color: #111827;
    }

    .blogMiniHead h2 span {
        color: #5B2C83;
    }

    .blogMiniHead p {
        margin: 0;
        color: var(--muted);
        font-size: 15.5px;
        line-height: 1.8;
        max-width: 720px;
    }

    .blogMiniHead__action {
        flex: 0 0 auto;
    }

    .blogMiniGrid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .blogMiniCard {
        background: #fff;
        border: 1px solid rgba(17, 24, 39, .08);
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 12px 30px rgba(17, 24, 39, .05);
        transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    }

    .blogMiniCard:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 36px rgba(17, 24, 39, .10);
        border-color: rgba(91, 44, 131, .16);
    }

    .blogMiniCard__img {
        display: block;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .blogMiniCard__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .35s ease;
    }

    .blogMiniCard:hover .blogMiniCard__img img {
        transform: scale(1.05);
    }

    .blogMiniCard__body {
        padding: 16px 16px 18px;
    }

    .blogMiniMeta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 14px;
        margin-bottom: 10px;
    }

    .blogMiniMeta span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 12.5px;
        font-weight: 800;
        color: #667085;
    }

    .blogMiniMeta i {
        color: #5B2C83;
    }

    .blogMiniCard h3 {
        margin: 0 0 10px;
        font-size: 20px;
        line-height: 1.32;
        font-weight: 900;
        letter-spacing: -.3px;
    }

    .blogMiniCard h3 a {
        color: #111827;
        text-decoration: none;
        transition: color .22s ease;
    }

    .blogMiniCard h3 a:hover {
        color: #5B2C83;
    }

    .blogMiniCard p {
        margin: 0 0 14px;
        color: #64748b;
        font-size: 14.5px;
        line-height: 1.75;
    }

    .blogMiniLink {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #5B2C83;
        font-size: 14px;
        font-weight: 900;
        text-decoration: none;
        transition: gap .22s ease, color .22s ease;
    }

    .blogMiniLink:hover {
        gap: 12px;
        color: #6f3e9d;
    }

    @media (max-width: 991.98px) {
        .blogMini {
            padding: 48px 0 20px;
        }

        .blogMiniHead {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }

        .blogMiniGrid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 767.98px) {
        .blogMiniHead h2 {
            font-size: 30px;
        }

        .blogMiniHead p {
            font-size: 14.5px;
            line-height: 1.7;
        }

        .blogMiniGrid {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .blogMiniCard {
            border-radius: 18px;
        }

        .blogMiniCard__body {
            padding: 14px 14px 16px;
        }

        .blogMiniCard h3 {
            font-size: 18px;
        }

        .blogMiniCard p {
            font-size: 14px;
            line-height: 1.7;
        }
    }


    /* =========================================================
 POLICY
========================================================= */

    .policyBand {
        position: relative;
    }

    .policyBand__wrap {
        position: relative;
    }

    .policyBand__grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        border-radius: 28px;
        overflow: hidden;
        border: 1px solid rgba(17, 24, 39, .08);
        background: linear-gradient(135deg, rgba(91, 44, 131, .04), rgba(200, 169, 81, .04)), #fff;
        box-shadow: 0 18px 44px rgba(17, 24, 39, .07);
    }

    .policyItem {
        position: relative;
        padding: 24px 24px 18px;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        background: transparent;
    }

    .policyItem:not(:last-child) {
        border-right: 1px solid rgba(17, 24, 39, .08);
    }

    .policyItem::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .96));
        pointer-events: none;
        z-index: 0;
    }

    .policyItem>* {
        position: relative;
        z-index: 1;
    }

    .policyItem__top {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
    }

    .policyItem__icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        background: linear-gradient(135deg, #5B2C83, #C8A951);
        color: #fff;
        font-size: 21px;
        box-shadow: 0 14px 28px rgba(91, 44, 131, .20);
    }

    .policyItem__label {
        display: inline-flex;
        align-items: center;
        min-height: 38px;
        padding: 8px 14px;
        border-radius: 999px;
        background: #f7f3fb;
        border: 1px solid rgba(91, 44, 131, .10);
        color: #5B2C83;
        font-size: 11.5px;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .policyItem__body {
        flex: 1 1 auto;
    }

    .policyItem__body h3 {
        margin: 0 0 12px;
        font-size: 24px;
        line-height: 1.16;
        letter-spacing: -.4px;
        font-weight: 950;
        color: #111827;
    }

    .policyItem__body p {
        margin: 0;
        font-size: 15px;
        line-height: 1.85;
        color: var(--muted);
        max-width: 95%;
    }

    .policyItem__foot {
        margin-top: 18px;
        padding-top: 16px;
        border-top: 1px dashed rgba(17, 24, 39, .10);
    }

    .policyLink {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        text-decoration: none;
        color: #5B2C83;
        font-size: 14px;
        font-weight: 900;
        transition: gap .22s ease, color .22s ease;
    }

    .policyLink:hover {
        gap: 13px;
        color: #70409d;
    }

    @media (max-width: 991.98px) {
        .policyBand__grid {
            grid-template-columns: 1fr;
            border-radius: 22px;
        }

        .policyItem {
            padding: 20px 18px 16px;
        }

        .policyItem:not(:last-child) {
            border-right: 0;
            border-bottom: 1px solid rgba(17, 24, 39, .08);
        }

        .policyItem__body h3 {
            font-size: 22px;
        }
    }

    @media (max-width: 767.98px) {
        .policyBand {
            padding: 22px 0 8px;
        }

        .policyItem__top {
            gap: 12px;
            margin-bottom: 14px;
        }

        .policyItem__icon {
            width: 50px;
            height: 50px;
            border-radius: 16px;
            font-size: 19px;
        }

        .policyItem__label {
            font-size: 11px;
            padding: 7px 12px;
        }

        .policyItem__body h3 {
            font-size: 20px;
        }

        .policyItem__body p {
            font-size: 14px;
            line-height: 1.75;
            max-width: 100%;
        }
    }

    /* =========================================================
   TOPIC TIPS
========================================================= */

    .seoGuide {
        position: relative;
    }

    .seoGuide__wrap {
        position: relative;
        padding: 28px;
        border-radius: 28px;
        background:
            radial-gradient(circle at top right, rgba(200, 169, 81, .10), transparent 24%),
            radial-gradient(circle at bottom left, rgba(91, 44, 131, .10), transparent 26%),
            linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, 1));
        border: 1px solid rgba(17, 24, 39, .08);
        box-shadow: 0 18px 44px rgba(17, 24, 39, .06);
        overflow: hidden;
    }

    .seoGuide__grid {
        display: grid;
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, .85fr);
        gap: 26px;
        align-items: start;
    }

    .seoGuide__content h2 {
        margin: 0 0 14px;
        font-size: clamp(28px, 3.5vw, 44px);
        line-height: 1.08;
        font-weight: 950;
        letter-spacing: -.7px;
        color: #111827;
        max-width: 760px;
    }

    .seoGuide__content h2 span {
        color: #5B2C83;
    }

    .seoGuide__lead {
        margin: 0 0 14px;
        font-size: 15.8px;
        line-height: 1.85;
        color: #475467;
    }

    .seoGuide__text {
        margin: 0;
        font-size: 15.3px;
        line-height: 1.82;
        color: var(--muted);
    }

    .seoGuide__content strong {
        color: #111827;
        font-weight: 800;
    }

    .seoGuide__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 12px;
        margin-top: 18px;
    }

    .seoGuide__chips span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 14px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid rgba(17, 24, 39, .08);
        box-shadow: 0 8px 20px rgba(17, 24, 39, .04);
        font-size: 13.5px;
        font-weight: 800;
        color: #1f2937;
    }

    .seoGuide__chips i {
        color: #5B2C83;
    }

    .seoGuide__cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        padding: 14px 20px;
        border-radius: 16px;
        text-decoration: none;
        background: linear-gradient(135deg, #5B2C83, #6e3d9c);
        color: #fff;
        font-size: 14px;
        font-weight: 900;
        box-shadow: 0 14px 28px rgba(91, 44, 131, .24);
        transition: transform .22s ease, box-shadow .22s ease;
    }

    .seoGuide__cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 38px rgba(91, 44, 131, .30);
        color: #fff;
    }

    .seoGuide__side {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .seoTipCard {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px;
        border-radius: 20px;
        background: rgba(255, 255, 255, .92);
        border: 1px solid rgba(17, 24, 39, .08);
        box-shadow: 0 10px 24px rgba(17, 24, 39, .04);
        transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .seoTipCard:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(17, 24, 39, .08);
        border-color: rgba(91, 44, 131, .16);
    }

    .seoTipCard__icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        background: linear-gradient(135deg, #5B2C83, #C8A951);
        color: #fff;
        font-size: 18px;
        box-shadow: 0 12px 22px rgba(91, 44, 131, .18);
    }

    .seoTipCard__body h3 {
        margin: 0 0 6px;
        font-size: 18px;
        line-height: 1.25;
        font-weight: 900;
        color: #111827;
    }

    .seoTipCard__body p {
        margin: 0;
        font-size: 14px;
        line-height: 1.7;
        color: var(--muted);
    }

    @media (max-width: 991.98px) {
        .seoGuide {
            padding: 48px 0 18px;
        }

        .seoGuide__wrap {
            padding: 22px;
            border-radius: 22px;
        }

        .seoGuide__grid {
            grid-template-columns: 1fr;
        }

        .seoGuide__content h2 {
            font-size: clamp(26px, 6vw, 36px);
        }
    }

    @media (max-width: 767.98px) {
        .seoGuide__wrap {
            padding: 18px;
            border-radius: 18px;
        }

        .seoGuide__content h2 {
            font-size: 30px;
        }

        .seoGuide__lead,
        .seoGuide__text {
            font-size: 14.5px;
            line-height: 1.75;
        }

        .seoGuide__chips {
            gap: 10px;
        }

        .seoGuide__chips span {
            width: 100%;
            justify-content: flex-start;
            border-radius: 14px;
        }

        .seoTipCard {
            padding: 14px;
            border-radius: 16px;
        }

        .seoTipCard__icon {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            font-size: 16px;
        }

        .seoTipCard__body h3 {
            font-size: 16px;
        }

        .seoTipCard__body p {
            font-size: 13.5px;
            line-height: 1.65;
        }
    }

    /* =========================================================
   FAQ
========================================================= */
    .accordion-item {
        background: #fff;
        border: 1px solid var(--stroke);
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 10px;
        box-shadow: var(--shadow2);
    }

    .accordion-button {
        background: transparent !important;
        color: #111827 !important;
        font-weight: 950;
        border: 0;
        box-shadow: none !important;
    }

    .accordion-body {
        color: var(--muted);
        font-weight: 700;
    }


    /* ========================= PREMIUM ROUTE PILLS / CHIPS ========================= */
    .routePills {
        background: radial-gradient(circle at 12% 8%, rgba(91, 44, 131, 0.07) 0%, transparent 40%),
            radial-gradient(circle at 88% 92%, rgba(200, 169, 81, 0.09) 0%, transparent 45%),
            linear-gradient(180deg, #faf9fe 0%, #f7f5fc 100%);
    }

    .routePills__head {
        margin: 0 auto 36px;
        text-align: left;
    }

    .routePills__kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 9px 16px;
        border-radius: 999px;
        background: rgba(91, 44, 131, 0.08);
        border: 1px solid rgba(91, 44, 131, 0.16);
        color: #5B2C83;
        font-size: 12.5px;
        font-weight: 800;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .routePills__kickerDot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: linear-gradient(135deg, #5B2C83, #c8a951);
    }

    .routePills__head h2 {
        margin: 0 0 12px;
        font-size: clamp(32px, 4.2vw, 56px);
        line-height: 1.06;
        font-weight: 950;
        letter-spacing: -0.7px;
        color: #0f172a;
    }

    .routePills__head h2 span {
        color: #5B2C83;
    }

    .routePills__head p {
        margin: 0 auto;
        font-size: 16.5px;
        line-height: 1.8;
        color: #64748b;
    }

    .routePills__wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        justify-content: left;
    }

    /* Premium Pill Style */
    .routePill {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 22px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        border: 1.8px solid rgba(91, 44, 131, 0.22);
        color: #1e293b;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 6px 16px rgba(91, 44, 131, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.85);
        transition: all 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
        overflow: hidden;
    }

    .routePill::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(91, 44, 131, 0.06), rgba(200, 169, 81, 0.06));
        opacity: 0;
        transition: opacity 0.32s ease;
        pointer-events: none;
    }

    .routePill i,
    .routePill span {
        position: relative;
        z-index: 1;
    }

    .routePill i {
        font-size: 14px;
        color: #5B2C83;
        transition: all 0.3s ease;
    }

    .routePill:hover {
        transform: translateY(-3px);
        border-color: #5B2C83;
        background: linear-gradient(135deg, rgba(91, 44, 131, 0.09), rgba(200, 169, 81, 0.09)) #ffffff;
        color: #5B2C83;
        box-shadow: 0 12px 28px rgba(91, 44, 131, 0.12), 0 4px 12px rgba(17, 24, 39, 0.06);
    }

    .routePill:hover::before {
        opacity: 1;
    }

    .routePill:hover i {
        transform: scale(1.12);
    }

    /* Compact mode (screenshot jaisa minimal — heading hide karne ke liye) */
    .routePills.compact {
        padding: 24px 0 16px;
        background: transparent;
    }

    .routePills.compact .routePills__head {
        display: none;
    }

    .routePills.compact .routePill {
        padding: 10px 20px;
        font-size: 14.5px;
        border: 1.5px solid rgba(91, 44, 131, 0.18);
        box-shadow: 0 4px 12px rgba(17, 24, 39, 0.04);
    }

    .routePills.compact .routePill:hover {
        border-color: #5B2C83;
        background: rgba(91, 44, 131, 0.05);
    }

    /* Responsive */
    @media (max-width: 991.98px) {
        .routePills__wrap {
            gap: 12px;
        }

        .routePill {
            font-size: 14.5px;
            padding: 11px 19px;
        }
    }

    @media (max-width: 575.98px) {
        .routePills {
            padding: 48px 0 24px;
        }

        .routePills__head {
            margin-bottom: 28px;
        }

        .routePills__head h2 {
            font-size: 32px;
        }

        .routePills__wrap {
            gap: 10px;
        }

        .routePill {
            flex: 1 1 45%;
            justify-content: center;
            text-align: center;
            font-size: 14px;
            padding: 11px 16px;
        }
    }

    /* =========================================================
   FOOTER
========================================================= */
    footer {
        padding: 34px 0 18px;
        border-top: 1px solid var(--stroke);
        background: #fff;
    }

    .footCard {
        background: #fff;
        border: 1px solid var(--stroke);
        border-radius: 20px;
        padding: 16px;
        height: 100%;
        box-shadow: var(--shadow2);
    }

    .footCard h5 {
        font-weight: 950;
        color: #111827;
    }

    /* =========================================================
   FLOATING ACTIONS
========================================================= */
    .floatActions {
        position: fixed;
        right: 14px;
        bottom: 14px;
        display: grid;
        gap: 10px;
        z-index: 9999;
    }

    .fab {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        border: 1px solid var(--stroke);
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow2);
    }

    .fab.wh {
        border-color: rgba(34, 197, 94, .35);
    }

    .fab.wh i {
        color: #16A34A;
    }

    .fab.call {
        border-color: rgba(200, 169, 81, .55);
    }

    .fab.call i {
        color: #B45309;
    }

    /* =========================================================
   PREMIUM FOOTER (Texture + Professional)
========================================================= */
    .tf {
        position: relative;
        padding: 40px 0 18px;
        background: #0B1220;
        /* dark footer looks premium */
        color: rgba(255, 255, 255, .92);
        border-top: 1px solid rgba(255, 255, 255, .10);
        overflow: hidden;
    }

    /* subtle texture layers (no image) */
    .tf:before {
        content: "";
        position: absolute;
        inset: -2px;
        background:
            radial-gradient(900px 420px at 15% 10%, rgba(200, 169, 81, .22), transparent 60%),
            radial-gradient(900px 420px at 85% 15%, rgba(91, 44, 131, .28), transparent 60%),
            radial-gradient(900px 520px at 50% 120%, rgba(28, 78, 128, .22), transparent 60%),
            repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 10px);
        opacity: .85;
        pointer-events: none;
    }

    .tf:after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(1200px 700px at 50% 0%, rgba(255, 255, 255, .06), transparent 60%);
        pointer-events: none;
    }

    .tf .container {
        position: relative;
        z-index: 1;
    }

    /* CTA strip */
    .tf__cta {
        display: flex;
        gap: 18px;
        align-items: center;
        justify-content: space-between;
        padding: 18px;
        border-radius: 22px;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .12);
        box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
        margin-bottom: 18px;
    }

    .tf__kicker {
        display: inline-flex;
        gap: 10px;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(200, 169, 81, .12);
        border: 1px solid rgba(200, 169, 81, .25);
        font-weight: 900;
    }

    .tf__ctaText h3 {
        margin: 10px 0 6px;
        font-weight: 950;
        letter-spacing: -.2px;
    }

    .tf__ctaText p {
        margin: 0;
        color: rgba(255, 255, 255, .72);
        font-weight: 650;
    }

    .tf__ctaBtns {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    /* Footer grid */
    .tf__grid {
        display: grid;
        grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
        gap: 16px;
        margin-top: 16px;
        padding-top: 12px;
    }

    @media (max-width: 992px) {
        .tf__cta {
            flex-direction: column;
            align-items: flex-start;
        }

        .tf__ctaBtns {
            width: 100%;
            justify-content: flex-start;
        }

        .tf__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 620px) {
        .tf__grid {
            grid-template-columns: 1fr;
        }
    }

    /* Columns */
    .tf__col {
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 22px;
        padding: 16px;
    }

    .tf__title {
        margin: 0 0 12px;
        font-weight: 950;
        letter-spacing: -.15px;
    }

    /* Brand block */
    .tf__logo {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .tf__logo img {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, .16);
        background: rgba(255, 255, 255, .06);
    }

    .tf__logo strong {
        display: block;
        font-weight: 950;
    }

    .tf__logo span {
        display: block;
        color: rgba(255, 255, 255, .70);
        font-weight: 650;
        margin-top: 2px;
    }

    .tf__desc {
        margin: 12px 0 0;
        color: rgba(255, 255, 255, .74);
        font-weight: 650;
        line-height: 1.55;
    }

    .tf__contact {
        display: grid;
        gap: 8px;
        margin-top: 12px;
    }

    .tf__c {
        display: flex;
        gap: 10px;
        align-items: center;
        padding: 10px 12px;
        border-radius: 16px;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .10);
        color: rgba(255, 255, 255, .90);
        font-weight: 850;
    }

    .tf__c i {
        color: #C8A951;
    }

    /* badges */
    .tf__badges {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 12px;
    }

    .tfBadge {
        display: inline-flex;
        gap: 8px;
        align-items: center;
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .12);
        color: rgba(255, 255, 255, .86);
        font-weight: 900;
        font-size: .86rem;
    }

    .tfBadge i {
        color: #34D399;
    }

    /* links */
    .tf__links {
        display: grid;
        gap: 10px;
    }

    .tf__links a {
        color: rgba(255, 255, 255, .80);
        font-weight: 500;
        padding: 8px 10px;
        border-radius: 14px;
        background: transparent;
        border: 1px solid transparent;
        transition: background .18s ease, border-color .18s ease, transform .18s ease;
    }

    .tf__links a:hover {
        background: rgba(255, 255, 255, .06);
        border-color: rgba(255, 255, 255, .12);
        transform: translateY(-1px);
    }

    /* form */
    .tf__muted {
        color: rgba(255, 255, 255, .72);
        font-weight: 650;
        margin: 0 0 12px;
    }

    .tf__form {
        display: grid;
        gap: 10px;
    }

    .tf__in {
        width: 100%;
        padding: 12px 12px;
        border-radius: 16px;
        background: rgba(0, 0, 0, 0.74);
        border: 1px solid rgba(255, 255, 255, .12);
        color: rgba(255, 255, 255, .92);
        outline: none;
        font-weight: 500;
    }

    .tf__in::placeholder {
        color: rgba(255, 255, 255, .55);
    }

    .tf__in:focus {
        border-color: rgba(200, 169, 81, .45);
        box-shadow: 0 0 0 4px rgba(200, 169, 81, .12);
    }

    .tfBtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 14px;
        border-radius: 16px;
        font-weight: 950;
        border: 1px solid rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .06);
        color: rgba(255, 255, 255, .92);
    }

    .tfBtn--prime {
        border: 0;
        background: linear-gradient(135deg, #5B2C83, #C8A951);
        color: #0B1220;
    }

    .tfBtn--soft:hover {
        background: rgba(255, 255, 255, .08);
    }

    .tfBtn--full {
        width: 100%;
    }

    .tf__miniNote {
        margin-top: 12px;
        padding: 10px 12px;
        border-radius: 16px;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .10);
        color: rgba(255, 255, 255, .76);
        font-weight: 700;
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

    .tf__miniNote i {
        color: #C8A951;
        margin-top: 2px;
    }

    /* bottom bar */
    .tf__bottom {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, .10);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .tf__bottom small {
        color: rgba(255, 255, 255, .66);
        font-weight: 700;
    }

    .tf__legal {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .tf__legal a {
        color: rgba(255, 255, 255, .72);
        font-weight: 500;
        padding: 8px 10px;
        border-radius: 14px;
        border: 1px solid transparent;
    }

    .tf__legal a:hover {
        border-color: rgba(255, 255, 255, .14);
        background: rgba(255, 255, 255, .06);
    }

    /* =========================================================
   Social Proof Toast (Light + Premium)
========================================================= */
    .spToast {
        position: fixed;
        left: 16px;
        bottom: 16px;
        width: min(92vw, 360px);
        display: grid;
        grid-template-columns: 44px 1fr 36px;
        gap: 12px;
        align-items: start;

        padding: 12px 12px;
        border-radius: 18px;

        background: rgba(255, 255, 255, .92);
        border: 1px solid var(--stroke);
        box-shadow: var(--shadow2);
        backdrop-filter: blur(12px);

        z-index: 9999;
        transform: translateY(18px);
        opacity: 0;
        pointer-events: none;
        transition: transform .22s ease, opacity .22s ease;
    }

    .spToast.is-show {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .spToast__icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: grid;
        place-items: center;

        background: rgba(22, 163, 74, .10);
        border: 1px solid rgba(22, 163, 74, .22);
        color: #16A34A;
    }

    .spToast__title {
        font-weight: 950;
        color: #111827;
        line-height: 1.1;
    }

    .spToast__text {
        margin-top: 4px;
        color: #374151;
        font-weight: 500;
        line-height: 1.35;
    }

    .spToast__meta {
        margin-top: 6px;
        color: var(--muted);
        font-weight: 750;
        font-size: .86rem;
    }

    .spToast__close {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        border: 1px solid var(--stroke);
        background: #fff;
        color: #111827;
        display: grid;
        place-items: center;
        cursor: pointer;
    }

    .spToast__close:hover {
        background: rgba(17, 24, 39, .03);
    }

    /* mobile: move a bit up if you have floating buttons */
    @media (max-width: 520px) {
        .spToast {
            left: 12px;
            bottom: 76px;
        }

    }


    /* tempo traveller */

    /* ========================= WHY 9 SEATER TEMPO TRAVELLER ========================= */
    .whyChoose {
        position: relative;
        background: radial-gradient(circle at 10% 15%, rgba(91, 44, 131, 0.07) 0%, transparent 40%),
            radial-gradient(circle at 90% 85%, rgba(200, 169, 81, 0.09) 0%, transparent 45%),
            linear-gradient(180deg, #faf9fe 0%, #f7f5fc 100%);
    }

    .whyChooseGrid {
        display: grid;
        grid-template-columns: 1.08fr 1fr;
        gap: 36px;
        align-items: start;
    }

    .whyChooseContent h2 {
        margin: 0 0 16px;
        font-size: clamp(32px, 3.8vw, 48px);
        line-height: 1.08;
        font-weight: 950;
        letter-spacing: -0.6px;
        color: #111827;
    }

    .whyChooseContent h2 span {
        color: #5B2C83;
    }

    .whyChooseContent p {
        margin: 0 0 16px;
        color: #64748b;
        font-size: 15.5px;
        line-height: 1.82;
    }

    .whyChooseContent strong {
        color: #111827;
        font-weight: 800;
    }

    .whyChooseBtn {
        margin-top: 12px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 28px;
        border-radius: 999px;
        background: #5B2C83;
        color: white;
        font-size: 15px;
        font-weight: 800;
        text-decoration: none;
        transition: all 0.28s ease;
    }

    .whyChooseBtn:hover {
        background: #6f3e9d;
        transform: translateY(-2px);
    }

    /* FEATURES GRID – Compact & Mobile Horizontal Feel */
    .whyChooseFeatures {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .whyFeature {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 16px;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(91, 44, 131, 0.05), rgba(200, 169, 81, 0.05)), #fff;
        border: 1px solid rgba(17, 24, 39, 0.08);
        box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .whyFeature:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 34px rgba(17, 24, 39, 0.10);
        border-color: #5B2C83;
    }

    .whyFeature i {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: linear-gradient(135deg, #5B2C83, #C8A951);
        color: #fff;
        font-size: 16px;
        box-shadow: 0 6px 16px rgba(91, 44, 131, 0.22);
    }

    .whyFeatureText {
        flex: 1;
    }

    .whyFeatureText strong {
        display: block;
        margin-bottom: 4px;
        font-size: 15.5px;
        line-height: 1.3;
        font-weight: 900;
        color: #111827;
    }

    .whyFeatureText small {
        display: block;
        font-size: 13px;
        line-height: 1.6;
        color: #667085;
    }

    .whyFeature--highlight {
        background: linear-gradient(135deg, rgba(91, 44, 131, 0.08), rgba(200, 169, 81, 0.09)), #fff;
        border-color: rgba(91, 44, 131, 0.16);
    }

    .whyFeature--highlight i {
        background: linear-gradient(135deg, #C8A951, #d4b978);
    }

    .fareBox {
        background: linear-gradient(135deg, rgba(91, 44, 131, .06), rgba(200, 169, 81, .10));
        border: 1px solid rgba(91, 44, 131, .12);
        border-radius: 22px;
        padding: 18px;
        box-shadow: var(--shadow2);
    }

    .fareBox strong {
        display: block;
        font-size: 1.3rem;
        color: #111827;
        margin-bottom: 6px;
    }

    .fareBox p {
        margin: 0;
        color: var(--muted);
        font-weight: 700;
    }

    .featureList2 {
        display: grid;
        gap: 10px;
        margin-top: 14px;
    }

    .featureList2 .tick {
        margin: 0;
    }


    .featureBand {
        position: relative;
        background: linear-gradient(180deg, #faf9fe 0%, #f7f5fc 100%);
    }

    .featureBandHead {
        margin-bottom: 28px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(91, 44, 131, 0.08);
    }

    .featureBandHead__content {
        margin: 0 auto;
        text-align: left;
    }

    .featureBandHead h2 {
        margin: 0 0 12px;
        font-size: clamp(30px, 3.5vw, 44px);
        line-height: 1.08;
        font-weight: 950;
        letter-spacing: -0.7px;
        color: #111827;
    }

    .featureBandHead h2 span {
        color: #5B2C83;
    }

    .featureBandHead p {
        margin: 0 auto;
        color: #64748b;
        font-size: 15.5px;
        line-height: 1.8;
    }

    .featureBandGrid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .featureBandCard {
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 18px;
        border-radius: 22px;
        background: linear-gradient(135deg, rgba(91, 44, 131, .05), rgba(200, 169, 81, .05)), #fff;
        border: 1px solid rgba(17, 24, 39, .08);
        box-shadow: 0 12px 28px rgba(17, 24, 39, .05);
        transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        overflow: hidden;
    }

    .featureBandCard::before {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(200, 169, 81, .12), transparent 68%);
        pointer-events: none;
    }

    .featureBandCard:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 36px rgba(17, 24, 39, .10);
        border-color: rgba(91, 44, 131, .16);
    }

    .featureBandCard__icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #5B2C83, #C8A951);
        color: #fff;
        font-size: 18px;
        flex: 0 0 auto;
        box-shadow: 0 8px 18px rgba(91, 44, 131, .22);
    }

    .featureBandCard__content {
        min-width: 0;
    }

    .featureBandCard__content h3 {
        margin: 0 0 6px;
        font-size: 18px;
        line-height: 1.28;
        font-weight: 900;
        color: #111827;
        letter-spacing: -0.2px;
    }

    .featureBandCard__content p {
        margin: 0;
        font-size: 14px;
        line-height: 1.7;
        color: var(--muted);
    }

    /* Responsive */
    @media (max-width: 991.98px) {
        .featureBand {
            padding: 50px 0 20px;
        }

        .featureBandGrid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }
    }

    @media (max-width: 767.98px) {
        .featureBand {
            padding: 42px 0 16px;
        }

        .featureBandHead {
            margin-bottom: 20px;
            padding-bottom: 16px;
        }

        .featureBandHead h2 {
            font-size: 32px;
        }

        .featureBandHead p {
            font-size: 14.5px;
            line-height: 1.75;
        }

        .featureBandGrid {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .featureBandCard {
            gap: 14px;
            padding: 16px 16px;
            border-radius: 18px;
            align-items: center;
        }

        .featureBandCard__icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            font-size: 16px;
        }

        .featureBandCard__content h3 {
            font-size: 17px;
        }

        .featureBandCard__content p {
            font-size: 13.5px;
            line-height: 1.65;
        }
    }

    /* TABLET – Keep 2-column */
    @media (max-width: 991.98px) {
        .whyChoose {
            padding: 56px 0 24px;
        }

        .whyChooseGrid {
            grid-template-columns: 1fr;
            gap: 32px;
        }
    }

    /* MOBILE – Compact 2-column horizontal feel */
    @media (max-width: 767.98px) {
        .whyChoose {
            padding: 48px 0 20px;
        }

        .whyChooseContent h2 {
            font-size: 32px;
        }

        .whyChooseContent p {
            font-size: 14.5px;
            line-height: 1.75;
        }

        .whyChooseFeatures {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .whyFeature {
            padding: 14px 12px;
            border-radius: 16px;
            gap: 12px;
        }

        .whyFeature i {
            width: 38px;
            height: 38px;
            font-size: 14px;
            border-radius: 10px;
        }

        .whyFeatureText strong {
            font-size: 14.5px;
            margin-bottom: 3px;
        }

        .whyFeatureText small {
            font-size: 12.5px;
        }
    }

    /* Extra small mobile – 1-column fallback if needed */
    @media (max-width: 479.98px) {
        .whyChooseFeatures {
            grid-template-columns: 1fr;
            gap: 12px;
        }
    }


    /*  */
    /* =========================================================
   ROUTE DETAIL SECTION
========================================================= */
    .routeDetailSection {
        padding: 56px 0 70px;
        background: var(--bg);
    }

    .routeDetailGrid {
        display: grid;
        grid-template-columns: minmax(0, 1.65fr) 360px;
        gap: 28px;
        align-items: start;
    }

    .routeMain {
        min-width: 0;
    }

    .routeSidebar {
        position: sticky;
        top: 110px;
        display: grid;
        gap: 22px;
    }

    /* =========================================================
   COMMON
========================================================= */
    .routeKicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(91, 44, 131, .08);
        border: 1px solid rgba(91, 44, 131, .12);
        color: var(--primary);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .4px;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .routeKicker__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 5px rgba(200, 169, 81, .14);
    }

    .routeBlock,
    .routeIntroBox,
    .routeSideCard {
        background: var(--white);
        border: 1px solid var(--stroke);
        border-radius: calc(var(--radius) + 2px);
        box-shadow: var(--shadow2);
    }

    .routeBlock {
        padding: 28px;
        margin-top: 22px;
    }

    .routeHeadTitle {
        margin: 0 0 12px;
        font-size: 30px;
        line-height: 1.08;
        font-weight: 950;
        letter-spacing: -0.7px;
        color: var(--text);
        position: relative;
        display: inline-block;
    }

    .routeHeadTitle span {
        color: var(--primary);
    }

    .routeHeadTitle::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 100px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--primary), var(--primary2));
    }

    /* Mobile adjustments */
    @media (max-width: 767px) {
        .routeBlockHead {
            margin-bottom: 28px;
        }

        .routeHeadTitle {
            font-size: 32px;
        }

        .routeHeadTitle::after {
            width: 80px;
            height: 3px;
            bottom: -8px;
        }
    }

    .routeBlockHead p {
        margin: 0;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.8;
    }

    /* =========================================================
   INTRO / HERO
========================================================= */
    .routeIntroBox {
        padding: 30px;
    }

    .routeIntroTop h2 {
        margin: 0 0 14px;
        font-size: 35px;
        line-height: 1.04;
        font-weight: 950;
        letter-spacing: -1px;
        color: var(--text);
    }

    .routeIntroTop p {
        margin: 0;
        max-width: 900px;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.9;
    }

    .routeHeroCard {
        margin-top: 24px;
        border-radius: 24px;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(91, 44, 131, .98), rgba(28, 78, 128, .95));
        display: grid;
        grid-template-columns: 1.08fr .92fr;
        min-height: 360px;
        box-shadow: var(--shadow);
    }

    .routeHeroContent {
        padding: 30px;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .routeHeroBadge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        width: max-content;
        max-width: 100%;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .10);
        border: 1px solid rgba(255, 255, 255, .14);
        font-size: 13px;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .routeHeroContent h2 {
        margin: 0 0 16px;
        font-size: 24px;
        line-height: 1.1;
        font-weight: 900;
        letter-spacing: -.7px;
    }

    .routeHeroPoints {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 18px;
        margin-bottom: 24px;
    }

    .routeHeroPoints div {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        color: rgba(255, 255, 255, .90);
        font-size: 14px;
        line-height: 1.5;
        font-weight: 600;
    }

    .routeHeroPoints i {
        color: #FFE7A0;
        margin-top: 3px;
    }

    .routeHeroCTA {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .btnRoutePrimary,
    .btnRouteGhost {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 50px;
        padding: 0 20px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 800;
        transition: .25s ease;
    }

    .btnRoutePrimary {
        background: var(--accent);
        color: #1F2937;
    }

    .btnRouteGhost {
        background: rgba(255, 255, 255, .10);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .14);
    }

    .btnRoutePrimary:hover,
    .btnRouteGhost:hover {
        transform: translateY(-2px);
    }

    .routeHeroMedia {
        position: relative;
        min-height: 100%;
    }

    .routeHeroMediaInner {
        position: relative;
        height: 100%;
        min-height: 360px;
    }

    .routeHeroMediaInner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .routeHeroMediaInner::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(17, 24, 39, .02), rgba(17, 24, 39, .30));
    }

    .routeDistanceChip {
        position: absolute;
        left: 20px;
        bottom: 20px;
        z-index: 2;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .92);
        border: 1px solid rgba(255, 255, 255, .65);
        box-shadow: var(--shadow2);
    }

    .routeDistanceChip strong {
        display: block;
        font-size: 16px;
        color: var(--primary);
        line-height: 1.2;
    }

    .routeDistanceChip span {
        display: block;
        margin-top: 4px;
        color: var(--muted);
        font-size: 13px;
        font-weight: 700;
    }

    /* =========================================================
   TABLE
========================================================= */
    .routePriceTableWrap {
        margin-top: 18px;
        overflow-x: auto;
        border-radius: 18px;
        border: 1px solid var(--stroke);
    }

    .routePriceTable {
        width: 100%;
        border-collapse: collapse;
        min-width: 760px;
    }

    .routePriceTable thead th {
        background: linear-gradient(135deg, var(--primary), var(--primary2));
        color: #fff;
        text-align: left;
        padding: 16px 18px;
        font-size: 14px;
        font-weight: 800;
    }

    .routePriceTable tbody tr:nth-child(odd) {
        background: #FBFCFE;
    }

    .routePriceTable tbody td {
        padding: 18px;
        border-top: 1px solid rgba(17, 24, 39, .07);
        color: var(--text);
        font-size: 15px;
        font-weight: 600;
    }

    .tableBookBtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 140px;
        height: 42px;
        padding: 0 16px;
        border-radius: 999px;
        background: var(--text);
        color: #fff;
        font-size: 13px;
        font-weight: 800;
        transition: .25s ease;
    }

    .tableBookBtn:hover {
        background: var(--primary);
    }

    /* =========================================================
   FEATURES
========================================================= */
    .featureGridRoute {
        margin-top: 18px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px 18px;
    }

    .featureItemRoute {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 16px;
        border-radius: 16px;
        background: var(--grey);
        border: 1px solid rgba(17, 24, 39, .05);
        color: var(--text);
        font-size: 15px;
        font-weight: 700;
        line-height: 1.5;
    }

    .featureItemRoute i {
        color: var(--primary);
        margin-top: 3px;
    }

    /* =========================================================
   WHY CHOOSE
========================================================= */
    .whyChooseRouteGrid {
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .whyChooseRouteCard {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
        border-radius: 18px;
        background: linear-gradient(180deg, #fff, #f9fbff);
        border: 1px solid rgba(17, 24, 39, .07);
    }

    .whyChooseRouteCard i {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 48px;
        background: rgba(91, 44, 131, .08);
        color: var(--primary);
        font-size: 18px;
    }

    .whyChooseRouteCard strong {
        display: block;
        margin-bottom: 6px;
        font-size: 16px;
        line-height: 1.3;
        color: var(--text);
    }

    .whyChooseRouteCard p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.6;
    }

    /* =========================================================
   SIDEBAR
========================================================= */
    .routeSideCard {
        padding: 26px;
    }

    .routeSideHead {
        margin-bottom: 18px;
    }

    .routeSideHead h3 {
        margin: 0;
        font-size: 32px;
        line-height: 1.1;
        font-weight: 900;
        letter-spacing: -.6px;
    }

    .routeSideHead span {
        display: block;
        width: 78px;
        height: 4px;
        border-radius: 999px;
        margin-top: 12px;
        background: linear-gradient(90deg, var(--accent), var(--primary));
    }

    /* FORM */
    .routeForm {
        display: grid;
        gap: 12px;
    }

    .routeField {
        position: relative;
    }

    .routeField input,
    .routeField select,
    .routeField textarea {
        width: 100%;
        border: 1px solid rgba(17, 24, 39, .12);
        background: var(--grey);
        color: var(--text);
        border-radius: 16px;
        outline: none;
        box-shadow: none;
        font-size: 15px;
        font-weight: 600;
    }

    .routeField input,
    .routeField select {
        height: 56px;
        padding: 0 46px 0 16px;
    }

    .routeField textarea {
        padding: 16px;
        resize: vertical;
        min-height: 120px;
    }

    .routeField i {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary2);
        font-size: 16px;
    }

    .routeField textarea+i {
        top: 18px;
        transform: none;
    }

    .routeField input:focus,
    .routeField select:focus,
    .routeField textarea:focus {
        border-color: rgba(91, 44, 131, .26);
        box-shadow: 0 0 0 4px rgba(91, 44, 131, .08);
    }

    .routeSubmitBtn {
        margin-top: 4px;
        width: 100%;
        min-height: 56px;
        border: none;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--primary), var(--primary2));
        color: #fff;
        font-size: 15px;
        font-weight: 900;
        letter-spacing: .3px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        transition: .25s ease;
    }

    .routeSubmitBtn:hover {
        transform: translateY(-2px);
    }

    /* SUPPORT */
    .routeSupportCard {
        background: linear-gradient(135deg, #141c2d, #0b1220);
        color: #fff;
        position: relative;
        overflow: visible;
        margin-top: 30px;
    }

    .supportIconRoute {
        width: 84px;
        height: 84px;
        border-radius: 50%;
        margin: -54px auto 16px;
        background: linear-gradient(135deg, var(--accent), #f6b14d);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        box-shadow: 0 12px 32px rgba(17, 24, 39, .22);
        border: 6px solid var(--white);
    }

    .routeSupportCard h3 {
        margin: 0 0 16px;
        text-align: center;
        font-size: 32px;
        line-height: 1.1;
        font-weight: 900;
    }

    .routeSupportCard ul {
        list-style: none;
        margin: 0 0 18px;
        padding: 0;
        display: grid;
        gap: 12px;
    }

    .routeSupportCard ul li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: rgba(255, 255, 255, .92);
        font-size: 15px;
        line-height: 1.6;
    }

    .routeSupportCard ul li i {
        color: #FFE7A0;
        margin-top: 4px;
    }

    .btnSupportRoute {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        border-radius: 14px;
        background: #fff;
        color: var(--text);
        font-weight: 800;
    }

    /* LINKS */
    .routeLinksList {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .routeLinksList li+li {
        border-top: 1px solid rgba(17, 24, 39, .08);
    }

    .routeLinksList a {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 0;
        color: var(--text);
        font-size: 16px;
        font-weight: 700;
        line-height: 1.7;
        transition: .2s ease;
    }

    .routeLinksList a i {
        color: var(--accent);
        margin-top: 6px;
    }

    .routeLinksList a:hover {
        color: var(--primary);
        padding-left: 4px;
    }

    /* =========================================================
   RESPONSIVE
========================================================= */
    @media (max-width: 1199px) {
        .routeDetailGrid {
            grid-template-columns: 1fr 330px;
        }

        .routeHeroCard {
            grid-template-columns: 1fr;
        }

        .routeHeroMedia {
            min-height: 280px;
        }
    }

    @media (max-width: 991px) {
        .routeDetailGrid {
            grid-template-columns: 1fr;
        }

        .routeSidebar {
            position: static;
        }

        .featureGridRoute {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 767px) {
        .routeDetailSection {
            padding: 38px 0 52px;
        }

        .routeIntroBox,
        .routeBlock,
        .routeSideCard {
            padding: 20px;
        }

        .routeIntroTop h1 {
            font-size: 34px;
        }

        .routeHeroContent {
            padding: 22px 18px;
        }

        .routeHeroPoints {
            grid-template-columns: 1fr;
        }

        .featureGridRoute,
        .whyChooseRouteGrid {
            grid-template-columns: 1fr;
        }

        .routeSideHead h3,
        .routeSupportCard h3 {
            font-size: 26px;
        }

        .btnRoutePrimary,
        .btnRouteGhost {
            width: 100%;
        }
    }

    .gridT {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
        gap: 20px !important;
        align-items: start;
        margin-top: 30px;
    }

    .gridT>.fleetCard {
        width: auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        grid-column: auto !important;
        flex: none !important;
    }