:root {
    --red: #CC1E2E;
    --red-dark: #A5172A;
    --red-light: #E8293B;
    --navy: #0D1F3C;
    --navy2: #1A2F50;
    --white: #FFFFFF;
    --off: #F5F6F8;
    --gl: #EEF0F3;
    --text: #1A1E26;
    --muted: #5A6070;
    --border: #E2E5EA;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter',sans-serif;
    background: #fff;
    color: var(--text);
    overflow-x: hidden
}

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

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: #f1f1f1
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px
}

/* ── TOP BAR ── */
.top-bar {
    background: var(--navy);
    padding: 7px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,.68);
    flex-wrap: wrap;
    gap: 6px
}

    .top-bar a {
        color: rgba(255,255,255,.68);
        text-decoration: none
    }

        .top-bar a:hover {
            color: #fff
        }

.tb-left, .tb-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.tb-item {
    display: flex;
    align-items: center;
    gap: 5px
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: box-shadow .3s
}

    nav.scrolled {
        box-shadow: 0 4px 20px rgba(0,0,0,.1)
    }

.nav-logo {
    width: 13%;
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none
}

    .nav-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.nav-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: linear-gradient(135deg,var(--red),var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Merriweather',serif;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.nav-logo-txt span:first-child {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.01em
}

.nav-logo-txt span:last-child {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .12em;
    text-transform: uppercase
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none
}

    .nav-links a {
        text-decoration: none;
        color: var(--muted);
        font-size: 13px;
        font-weight: 600;
        padding: 7px 12px;
        border-radius: 4px;
        transition: color .2s,background .2s;
        white-space: nowrap
    }

        .nav-links a:hover {
            color: var(--navy);
            background: var(--off)
        }

        .nav-links a.active {
            color: var(--red);
            background: rgba(204,30,46,.06)
        }

.nav-cta {
    background: var(--red) !important;
    color: #fff !important;
    padding: 9px 20px !important;
    border-radius: 4px !important
}

    .nav-cta:hover {
        background: var(--red-dark) !important
    }

    .nav-cta.active {
        color: #fff !important;
        background: var(--red-dark) !important
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all .3s
    }

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px
}

    .mobile-nav.open {
        display: flex
    }

.mnav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--muted);
    cursor: pointer
}

.mobile-nav a {
    text-decoration: none;
    color: var(--navy);
    font-size: 21px;
    font-weight: 700;
    transition: color .2s
}

    .mobile-nav a:hover, .mobile-nav a.active {
        color: var(--red)
    }

/* ── PAGE HERO ── */
.page-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center
}

.page-hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,rgba(13,31,60,.88) 0%,rgba(13,31,60,.55) 60%,rgba(13,31,60,.2) 100%)
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8%
}

.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.page-hero h1 {
    font-family: 'Merriweather',serif;
    font-size: clamp(30px,5vw,58px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 14px;
    max-width: 600px
}

    .page-hero h1 .r {
        color: var(--red-light)
    }

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    max-width: 520px
}

.our {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.apart {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.impt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.reach {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.breadcrumb {
    position: absolute;
    bottom: 20px;
    left: 8%;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,.5)
}

    .breadcrumb a {
        color: rgba(255,255,255,.5);
        text-decoration: none
    }

        .breadcrumb a:hover {
            color: #fff
        }

    .breadcrumb span {
        color: rgba(255,255,255,.25)
    }

/* ── BUTTONS ── */
.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    color: var(--navy);
    padding: 13px 26px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .03em;
    transition: background .2s,transform .2s;
    border: none;
    cursor: pointer;
    font-family: 'Inter',sans-serif
}

    .btn-red:hover {
        background: var(--navy);
        color: var(--white);
        transform: translateY(-2px)
    }

.btn-outline-red {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 2px solid var(--red);
    color: var(--red);
    padding: 11px 24px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all .2s
}

    .btn-outline-red:hover {
        background: var(--red);
        color: #fff;
        transform: translateY(-2px)
    }

.btn-wol {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 2px solid rgba(255,255,255,.55);
    color: #fff;
    padding: 11px 24px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s
}

    .btn-wol:hover {
        background: rgba(255,255,255,.1);
        border-color: #fff;
        transform: translateY(-2px)
    }

/* ── SECTION ATOMS ── */
section {
    padding: 40px 7%
}

.s-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px
}

    .s-tag::before {
        content: '';
        display: block;
        width: 22px;
        height: 2px;
        background: var(--red)
    }

.s-title {
    font-family: 'Merriweather',serif;
    font-size: clamp(24px,3.2vw,42px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 12px
}

    .s-title .r {
        color: var(--red)
    }

.s-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 580px
}

.red-line {
    width: 46px;
    height: 3px;
    background: var(--red);
    margin: 12px 0 24px;
    border-radius: 2px
}

/* ── STATS ── */
.stats-bar {
    background: var(--navy);
    padding: 0 7%;
    display: grid;
    grid-template-columns: repeat(4,1fr)
}

.stat-item {
    text-align: center;
    padding: 32px 18px;
    border-right: 1px solid rgba(255,255,255,.08)
}

    .stat-item:last-child {
        border-right: none
    }

.stat-num {
    font-family: 'Merriweather',serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--red-light);
    line-height: 1
}

    .stat-num sup {
        font-size: 20px
    }

.stat-lbl {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-top: 6px
}

/* ── MARQUEE ── */
.marquee-sec {
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 26px 0;
    overflow: hidden
}

.m-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px
}

.m-track {
    overflow: hidden;
    display: flex
}

.m-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    animation: marquee 40s linear infinite;
    flex-shrink: 0;
    padding-right: 14px
}

    .m-inner:hover {
        animation-play-state: paused
    }

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* Auction logo cards */
.auc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    min-width: 110px;
    height: 64px;
    flex-shrink: 0;
    transition: border-color .3s,box-shadow .3s;
    cursor: default;
    overflow: hidden
}

    .auc-card:hover {
        border-color: var(--red);
        box-shadow: 0 4px 14px rgba(204,30,46,.1)
    }

.auc-name {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.1;
    text-align: center
}

.auc-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .08em;
    text-align: center;
    margin-top: 2px;
    opacity: .7
}

/* ── CAR GALLERY ── */
.car-gallery {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-top: 44px
}

.car-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    background: var(--off)
}

.car-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden
}

    .car-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease
    }

.car-card:hover .car-card-img img {
    transform: scale(1.08)
}

.car-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 35%,rgba(13,31,60,.92) 100%);
    opacity: 0;
    transition: opacity .3s
}

.car-card:hover .car-card-overlay {
    opacity: 1
}

.car-card-body {
    padding: 14px 14px 16px
}

.car-card-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy)
}

.car-card-sub {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px
}

.car-card-badge {
    display: inline-block;
    margin-top: 6px;
    background: rgba(204,30,46,.08);
    color: var(--red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 2px
}

.car-card-hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    z-index: 2;
    opacity: 0;
    transition: opacity .3s;
    transform: translateY(6px);
    transition: opacity .3s,transform .3s
}

.car-card:hover .car-card-hover-info {
    opacity: 1;
    transform: translateY(0)
}

.car-card-hover-name {
    font-size: 15px;
    font-weight: 800;
    color: #fff
}

.car-card-hover-tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 2px;
    margin-top: 4px
}

.car-card-hover-sub {
    font-size: 12px;
    color: rgba(255,255,255,.7);
    margin-top: 4px
}

/* ── SERVICES GRID ── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-top: 44px
}

.svc-card {
    padding: 28px 22px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    transition: all .3s;
    position: relative
}

    .svc-card:hover {
        border-color: var(--red);
        box-shadow: 0 10px 32px rgba(0,0,0,.08);
        transform: translateY(-4px)
    }

.svc-n {
    font-family: 'Merriweather',serif;
    font-size: 50px;
    font-weight: 700;
    color: rgba(204,30,46,.06);
    line-height: 1;
    position: absolute;
    top: 14px;
    right: 16px
}

.svc-ic {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: rgba(204,30,46,.08);
    border: 1px solid rgba(204,30,46,.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px
}

.svc-t {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px
}

.svc-d {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform .35s;
    transform-origin: left
}

.svc-card:hover::after {
    transform: scaleX(1)
}

/* ── HOW IT WORKS ── */
.how-sec {
    background: var(--navy)
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: rgba(255,255,255,.07);
    margin-top: 46px;
    border-radius: 8px;
    overflow: hidden
}

.step-card {
    background: var(--navy);
    padding: 32px 24px;
    border: 1px solid rgba(255,255,255,.05);
    position: relative;
    transition: background .3s
}

    .step-card:hover {
        background: rgba(255,255,255,.04)
    }

.step-n {
    font-family: 'Merriweather',serif;
    font-size: 58px;
    font-weight: 700;
    color: rgba(255,255,255,.04);
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 16px
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 13px
}

.step-t {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.step-d {
    font-size: 12px;
    color: rgba(255,255,255,.48);
    line-height: 1.65
}

/* ── ABOUT FEATURES ── */
.ab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.ab-img-wrap {
    position: relative
}

.ab-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border)
}

    .ab-img img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.ab-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 160px;
    padding: 20px 16px;
    border-radius: 6px;
    background: var(--red);
    color: #fff;
    text-align: center;
    box-shadow: 0 12px 32px rgba(204,30,46,.3)
}

.ab-badge-n {
    font-family: 'Merriweather',serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1
}

.ab-badge-t {
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .85;
    margin-top: 3px
}

.ab-feats {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 11px
}

.ab-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 15px;
    background: var(--off);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    border-radius: 4px;
    transition: box-shadow .3s
}

    .ab-feat:hover {
        box-shadow: 0 4px 14px rgba(0,0,0,.07)
    }

.ab-feat-ic {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0
}

.ab-feat-t {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px
}

.ab-feat-d {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5
}

/* ── TESTIMONIALS ── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 44px
}

.testi-card {
    padding: 26px 22px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    transition: all .3s
}

    .testi-card:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
        border-color: rgba(204,30,46,.2)
    }

.tq {
    font-size: 50px;
    font-family: 'Merriweather',serif;
    color: rgba(204,30,46,.1);
    line-height: .7;
    margin-bottom: 13px;
    display: block
}

.t-stars {
    color: var(--red);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 11px
}

.t-txt {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 18px;
    font-style: italic
}

.t-auth {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border)
}

.t-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    border: 2px solid var(--gl)
}

.t-nm {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy)
}

.t-lo {
    font-size: 11px;
    color: var(--muted)
}

/* ── FAQ ── */
.faq-sec {
    background: var(--off)
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    margin-top: 46px
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 5px;
    overflow: hidden;
    transition: border-color .3s
}

    .faq-item.open {
        border-color: var(--red)
    }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy)
}

    .faq-q:hover {
        color: var(--red)
    }

.faq-tog {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--gl);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--navy);
    transition: all .3s;
    flex-shrink: 0;
    cursor: pointer
}

.faq-item.open .faq-tog {
    background: var(--red);
    color: #fff;
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease,padding .3s;
    padding: 0 16px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75
}

.faq-item.open .faq-a {
    max-height: 220px;
    padding: 0 16px 14px
}

.faq-cta {
    background: var(--navy);
    border-radius: 8px;
    padding: 34px 26px;
    text-align: center
}

.faq-cta-ic {
    font-size: 40px;
    margin-bottom: 11px
}

.faq-cta-t {
    font-family: 'Merriweather',serif;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.faq-cta-d {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: 18px
}

.hrs-box {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.1)
}

.hrs-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red-light);
    margin-bottom: 4px
}

.hrs-txt {
    font-size: 12px;
    color: rgba(255,255,255,.46)
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 54px;
    margin-top: 44px
}

.c-info {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.c-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 5px;
    transition: border-color .3s
}

    .c-item:hover {
        border-color: var(--red)
    }

.c-ic {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0
}

.c-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px
}

.c-val {
    font-size: 13px;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.5
}

    .c-val a {
        color: var(--red);
        text-decoration: none
    }

.map-wrap {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border)
}

.c-form {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px 26px
}

.cf-title {
    font-family: 'Merriweather',serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px
}

.cf-sub {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 20px
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px
}

.f-grp {
    margin-bottom: 11px
}

    .f-grp label {
        display: block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 5px
    }

    .f-grp input, .f-grp select, .f-grp textarea {
        width: 100%;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 4px;
        padding: 9px 11px;
        color: var(--text);
        font-family: 'Inter',sans-serif;
        font-size: 13px;
        outline: none;
        transition: border-color .25s,box-shadow .25s;
        appearance: none
    }

    .f-grp select {
        cursor: pointer
    }

        .f-grp input:focus, .f-grp select:focus, .f-grp textarea:focus {
            border-color: var(--red);
            box-shadow: 0 0 0 3px rgba(204,30,46,.08)
        }

    .f-grp textarea {
        resize: vertical;
        min-height: 88px
    }

.f-submit {
    width: 100%;
    padding: 12px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Inter',sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    margin-top: 4px;
    transition: background .2s,transform .2s
}

    .f-submit:hover {
        background: var(--red-dark);
        transform: translateY(-1px)
    }

.f-success {
    display: none;
    text-align: center;
    padding: 13px;
    background: rgba(204,30,46,.06);
    border: 1px solid rgba(204,30,46,.2);
    border-radius: 4px;
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px
}

/* ── COUNTRIES ── */
.ctry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
    gap: 10px;
    margin-top: 44px
}

.ctry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all .25s;
    cursor: default;
    text-align: center
}

    .ctry-card:hover {
        border-color: var(--red);
        background: rgba(204,30,46,.03);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,.07)
    }

.ctry-flag {
    font-size: 28px
}

.ctry-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy)
}

.ctry-region {
    font-size: 10px;
    color: var(--muted);
    font-weight: 400
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--red);
    padding: 70px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap
}

.cta-band-text h2 {
    font-family: 'Merriweather',serif;
    font-size: clamp(22px,3vw,36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.cta-band-text p {
    font-size: 14px;
    color: rgba(255,255,255,.8);
    max-width: 480px;
    line-height: 1.7
}

.cta-band-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    padding: 56px 7% 24px
}

.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 46px;
    margin-bottom: 42px
}

.ft-logo {
    font-family: 'Merriweather',serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.ft-sub {
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 13px
}

.ft-about {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    margin-bottom: 18px
}

.soc-links {
    display: flex;
    gap: 7px
}

.soc-lnk {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.42);
    text-decoration: none;
    font-size: 12px;
    transition: all .2s
}

    .soc-lnk:hover {
        background: var(--red);
        border-color: var(--red);
        color: #fff
    }

.ft-col-t {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--red);
    display: inline-block
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px
}

    .ft-links a {
        text-decoration: none;
        color: rgba(255,255,255,.5);
        font-size: 12px;
        transition: color .2s;
        display: flex;
        align-items: center;
        gap: 4px
    }

        .ft-links a::before {
            content: '›';
            color: var(--red);
            font-size: 13px
        }

        .ft-links a:hover {
            color: #fff
        }

.ft-c-item {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    margin-bottom: 9px;
    font-size: 12px;
    color: rgba(255,255,255,.48);
    line-height: 1.5
}

    .ft-c-item a {
        color: rgba(255,255,255,.7);
        text-decoration: none
    }

        .ft-c-item a:hover {
            color: var(--red-light)
        }

.ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 11px;
    color: rgba(255,255,255,.35);
    flex-wrap: wrap;
    gap: 8px
}

.ft-bottom-links {
    display: flex;
    gap: 16px
}

    .ft-bottom-links a {
        color: rgba(255,255,255,.35);
        text-decoration: none;
        font-size: 11px
    }

        .ft-bottom-links a:hover {
            color: rgba(255,255,255,.65)
        }

/* ── FLOATING ── */
.wa-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(37,211,102,.35);
    transition: all .25s
}

    .wa-btn:hover {
        background: #1EBE5C;
        transform: translateY(-2px)
    }

.back-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 38px;
    height: 38px;
    border-radius: 4px;
    background: var(--red);
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(18px);
    transition: all .3s;
    box-shadow: 0 5px 16px rgba(204,30,46,.35)
}

    .back-top.show {
        opacity: 1;
        transform: none
    }

    .back-top:hover {
        background: var(--red-dark)
    }

/* ── ANIMATIONS ── */
.fi {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s,transform .6s
}

    .fi.vis {
        opacity: 1;
        transform: none
    }

.stg > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s,transform .5s
}

.stg.vis > *:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: .04s
}

.stg.vis > *:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: .09s
}

.stg.vis > *:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: .14s
}

.stg.vis > *:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: .19s
}

.stg.vis > *:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: .24s
}

.stg.vis > *:nth-child(6) {
    opacity: 1;
    transform: none;
    transition-delay: .29s
}

.stg.vis > *:nth-child(7) {
    opacity: 1;
    transform: none;
    transition-delay: .34s
}

.stg.vis > *:nth-child(8) {
    opacity: 1;
    transform: none;
    transition-delay: .39s
}

.stg.vis > *:nth-child(9) {
    opacity: 1;
    transform: none;
    transition-delay: .44s
}

.stg.vis > *:nth-child(10) {
    opacity: 1;
    transform: none;
    transition-delay: .49s
}

.stg.vis > *:nth-child(11) {
    opacity: 1;
    transform: none;
    transition-delay: .54s
}

.stg.vis > *:nth-child(12) {
    opacity: 1;
    transform: none;
    transition-delay: .59s
}

.stg.vis > *:nth-child(13) {
    opacity: 1;
    transform: none;
    transition-delay: .64s
}

.stg.vis > *:nth-child(14) {
    opacity: 1;
    transform: none;
    transition-delay: .69s
}

.stg.vis > *:nth-child(n+15) {
    opacity: 1;
    transform: none;
    transition-delay: .1s
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .ab-grid {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .ab-badge {
        display: none
    }

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

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

    .car-gallery {
        grid-template-columns: repeat(3,1fr)
    }

    .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 26px
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

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

@media(max-width:768px) {
    .top-bar {
        display: none
    }

    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    section {
        padding: 40px 5%
    }

    .page-hero {
        height: 320px
    }

    .stats-bar {
        grid-template-columns: repeat(2,1fr)
    }

    .stat-item {
        border-bottom: 1px solid rgba(255,255,255,.08)
    }

        .stat-item:nth-child(odd) {
            border-right: 1px solid rgba(255,255,255,.08)
        }

        .stat-item:nth-child(even) {
            border-right: none
        }

    .car-gallery {
        grid-template-columns: repeat(2,1fr)
    }

    .svc-grid {
        grid-template-columns: 1fr
    }

    .steps-grid {
        grid-template-columns: 1fr
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .faq-layout {
        grid-template-columns: 1fr
    }

    .ft-grid {
        grid-template-columns: 1fr
    }

    .ft-bottom {
        flex-direction: column;
        text-align: center
    }

    .cta-band {
        text-align: center;
        justify-content: center
    }

    .f-row {
        grid-template-columns: 1fr
    }

    .ctry-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .wa-btn span {
        display: block;
    }

    .wa-btn {
        padding: 11px;
        /*        border-radius: 50%*/
    }

    .h-arrows {
        display: none
    }

    .nav-logo {
        width: 55%;
    }

    .our {
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }

    .apart {
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }

    .offer {
        display: grid;
        grid-template-columns: 1fr;
    }

    .impt {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
    }

    .reach {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 18px;
    }
}

@media(max-width:480px) {
    .car-gallery {
        grid-template-columns: repeat(2,1fr)
    }

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