/* 
    VINFAST NINH BINH 24H - PREMIUM EV LUXURY
    DESIGN SYSTEM 5.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {

    
  /* =========================
    BACKGROUND
    ========================= */
    
    --bg-primary: #fff;
    --bg-secondary: #ffffff;
    --bg-accent: #eef2f6;

    
    /* =========================
    BRAND COLORS
    ========================= */
    
    --accent-red: #e10600;
    --accent-red-hover: #ff2a24;

    
    /* =========================
    TEXT COLORS
    ========================= */
    
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --text-white: #ffffff;

    
    /* =========================
    GLASS / CARD
    ========================= */
    
    --glass-bg: rgba(255, 255, 255, 0.72);
    
    --glass-border: rgba(15, 23, 42, 0.06);

    --glass-blur: blur(20px);

    
    /* =========================
    SHADOWS
    ========================= */
    
    --shadow-soft:
    0 10px 30px rgba(0,0,0,0.05);

    --shadow-premium:
    0 20px 60px rgba(0,0,0,0.08);

    --shadow-red:
    0 15px 35px rgba(225, 6, 0, 0.18);

    
    /* =========================
    BORDER RADIUS
    ========================= */
    
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    
    /* =========================
    TRANSITION
    ========================= */
    
    --transition:
    all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .3s;
}


ul {
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

p {
    margin-top: 0;
}
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #F9F9FC;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}


@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-widtH:1400px) {
    .container {
        max-width: 1330px;
    }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1460px;
  } 
}
/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: var(--transition);
}

.glass:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

/* Typography */
h1, h2, h3 {
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size:36px;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 14px;
    border: none;
    height: 52px;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--accent-red);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-red-hover);
    box-shadow: 0 4px 12px var(--accent-red-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}
.btn-call-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #e10600;
    border-radius: 8px;
    padding: 8px 16px 8px 14px;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-call-header:hover {
    background: #c00c00;
    color: #fff;
}

.btn-call-header > i {
    font-size: 16px;
    opacity: 1;
    flex-shrink: 0;
}

.btn-call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-call-number {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.btn-call-label {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Header */
header {
  height: 70px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: #fff;
     border-bottom: 1px solid transparent;
}

header.scrolled {
    backdrop-filter: blur(20px);
    border-color: var(--glass-border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    width: 180px;
}
nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav ul li a {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

@media (min-width:992px){
    nav ul li a:hover {
    color: var(--accent-red);
}
}
nav ul li a.active {
    color: var(--accent-red);
}
/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-swiper {
    height: calc(100vh - 70px);
}

.hero-slide {
    display: flex;
    flex-direction: column;
    background-color: #f4f6fb;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slide .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

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

.hero-car {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-car img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
    animation: carFloat 4s ease-in-out infinite;
}

@keyframes carFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero-pagination {
    bottom: 24px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(17, 24, 39, 0.2);
    opacity: 1;
    transition: all 0.3s;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent-red);
    width: 28px;
    border-radius: 4px;
}

.hero-inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 40px 0;
    flex: 1;
}

/* Eyebrow */
.hero-eyebrow {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1x;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-eyebrow span {
    color: #25C857;
}

/* Title */
.hero-title {
       font-size: 70px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #3D4655;
    margin-bottom: 32px;
}
.hero-title--red {
    color: var(--accent-red);
}

/* Desc */
.hero-desc {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 56px;
    max-width: 600px;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btns .btn {
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    gap: 12px;
}

.btn-outline-hero {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    box-shadow: 0 0 8px rgba(0, 0, 0, .3);
}

.btn-outline-hero:hover {
    background: #fff;
    border-color: #e10600;
    color: #e10600;
}

/* Hero text column */
.hero-text {
    max-width: 800px;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    justify-content: center;
}

.hero-scroll__mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(17, 24, 39, 0.2);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero-scroll__dot {
    width: 4px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}
@media (min-width:1200px) and (max-width:1399.98px) {
    .hero-title {
        font-size: 52px;
        margin-bottom: 16px;
    }
    .hero-desc {
        margin-bottom: 12px;
    }
    .swiper-pagination {
        bottom: 12px !important;
    }
}
@media (min-width:992px) and (max-width:1199.98px) {
    .hero-title {
        font-size: 52px;
        margin-bottom: 16px;
    }
    .hero-desc {
        margin-bottom: 12px;
    }
    .swiper-pagination {
        bottom: 12px !important;
    }
    .hero-swiper {
        height: 100%;
    }
    .hero-inner {
        padding: 50px 0 70px 0;
    }
}
@media (min-width:576px) and (max-width:991.98px) {
    .hero-title {
        font-size: 52px;
        margin-bottom: 16px;
    }
    .hero-desc {
        margin-bottom: 24px;
    }
    .swiper-pagination {
        bottom: 12px !important;
    }
    .hero-swiper {
        height: 100%;
    }
    .hero-inner {
        padding: 50px 0 70px 0;
    }
    .hero-slide:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        opacity: .6;
        pointer-events: none;
    }
}

@media (max-width:575.98px) {
    .hero-title {
        font-size:44px;
        margin-bottom: 16px;
    }
    .hero-desc {
        margin-bottom: 24px;
    }
    .swiper-pagination {
        bottom: 12px !important;
    }
    .hero-swiper {
        height: 100%;
    }
    .hero-inner {
        padding: 40px 0 70px 0;
    }
    .hero-slide:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        opacity: .8;
        pointer-events: none;
    }
    .hero-btns {
        gap: 12px;
    }
    .hero-btns .btn {
        flex: none;
        width: 100%;
    }
}

/* Benefits Strip */
.benefits-strip {
    padding: 30px 0;
    background: #fff;
}

.benefits-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

.benefit-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    position: relative;
}

/* Vertical Dividers */
.benefit-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: #cbcbcb;
}
.benefit-info {
    flex: 1;
}
.benefit-icon {
    font-size: 32px;
    color: var(--text-muted);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-info h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.benefit-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}
@media (min-width:992px) and (max-width:1199.98px) {
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 20px;
    }
    .benefit-item {
        flex: none;
    }
    .benefit-item:nth-child(3n+3)::after {
        display: none;
    }
}
/* Car Showcase */
.car-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.car-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../assets/demo.png) no-repeat;
    background-position: bottom center;
    background-size: cover;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: .12;
}
.car-swiper-outer {
    position: relative;
    margin-top: 20px;
}
.car-swiper-outer .swiper {
    padding: 30px 0 0 0;
    overflow: visible;
}
.car-img-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}
.car-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 0 16px 20px 16px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.car-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}
.car-card:hover .car-img-wrap:before {
    opacity: 0.2;
}

.car-card--featured {
    border: 1px solid var(--accent-red);

}

.car-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.car-img-wrap {
    overflow: hidden;
    margin: 0 -16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    position: relative;
    cursor: pointer;
}

.car-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

/* Hover overlay on car card image */
.car-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 2;
}
.car-hover-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    pointer-events: none;
}
.car-hover-btn i { font-size: 14px; color: var(--accent-red); }
.car-card:hover .car-hover-overlay { opacity: 1; }
.car-card:hover .car-img-wrap img { transform: scale(1.05); }

/* =====================
   Car Detail Modal
===================== */
.car-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.car-detail-modal.active {
    opacity: 1;
    pointer-events: all;
}
.car-detail-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}
.car-detail-modal__dialog {
    position: relative;
    background: #fff;
    border-radius: 16px;
    width: 92%;
    max-width: 960px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.96);
    transition: transform 0.3s ease;
}
.car-detail-modal.active .car-detail-modal__dialog { transform: scale(1); }
.car-detail-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    font-size: 15px;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}
.car-detail-modal__close:hover { background: #e5e7eb; }

.car-detail-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.car-detail-modal__left {
    padding: 32px 28px 28px;
    border-right: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
}
.car-detail-modal__right {
    padding: 28px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}
.car-detail-name {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.car-detail-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.car-detail-main-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    min-height: 200px;
    margin-bottom: 16px;
}
.car-detail-main-img img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    transition: opacity 0.25s;
}
.car-detail-colors {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.car-detail-colors-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.color-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.color-swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}
.color-swatch:hover,
.color-swatch.active { border-color: var(--accent-red); transform: scale(1.15); }
.car-detail-thumbs {
    display: flex;
    gap: 8px;
}
.car-detail-thumb {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
}
.car-detail-thumb.active { border-color: var(--accent-red); }
.car-detail-thumb img {
    width: 100%;
    height: 64px;
    object-fit: cover;
    display: block;
}

/* Right panel */
.car-detail-price-block { border-bottom: 1px solid #f3f4f6; padding-bottom: 16px; }
.car-detail-price-label { font-size: 13px; color: var(--text-secondary); display: block; margin-bottom: 4px; }
.car-detail-price {
    font-size: 26px;
    font-weight: 900;
    color: var(--accent-red);
    letter-spacing: -0.02em;
}
.car-detail-specs-row {
    display: flex;
    gap: 12px;
}
.car-detail-spec-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
}
.car-detail-spec-item i { font-size: 18px; color: var(--text-secondary); }
.car-detail-spec-val { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.car-detail-spec-label { font-size: 11px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
.car-detail-features h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.car-detail-features ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.car-detail-features ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    color: #374151;
}
.car-detail-features ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-red);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}
.car-detail-consult h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.car-detail-consult > p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 14px;
}
.car-detail-consult .form-field { margin-bottom: 10px; }
.car-detail-privacy {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}
.car-detail-privacy i { margin-right: 4px; }

@media (max-width: 767px) {
    .car-detail-modal__grid { grid-template-columns: 1fr; }
    .car-detail-modal__left { border-right: none; border-bottom: 1px solid #f3f4f6; }
}

/* =====================
   Success Modal
===================== */
.success-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.success-modal.active {
    opacity: 1;
    pointer-events: all;
}
.success-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
.success-modal__box {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px 32px;
    width: 92%;
    max-width: 400px;
    text-align: center;
    transform: scale(0.92);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.success-modal.active .success-modal__box { transform: scale(1); }
.success-modal__x {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.success-modal__x:hover { background: #e5e7eb; }
.success-modal__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.success-modal__icon i { font-size: 30px; color: #fff; }
.success-modal__title {
     font-size: 21px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.success-modal__desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}
.success-modal__actions {
    display: flex;
    gap: 10px;
}
.success-modal__btn {
    flex: 1;
    height: 44px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.success-modal__btn--outline {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    color: var(--text-primary);
}
.success-modal__btn--outline:hover { border-color: #9ca3af; }
.success-modal__btn--solid {
    background: var(--accent-red);
    color: #fff;
}
.success-modal__btn--solid:hover { background: var(--accent-red-hover); }

.car-card--featured .btn.btn-primary {
    height: 44px;
}


.car-name {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-weight: 700;
}

.car-price {
    font-size: 15px;
    color: var(--accent-red);
    font-weight: 500;
}

.car-specs {
    display: flex;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 16px;
    margin-top: 14px;
    padding-top: 14px;
}

.car-spec-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.car-spec-item + .car-spec-item {
    border-left: 1px solid #e5e7eb;
}

.car-spec-value {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.car-spec-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-car-outline {
    width: 100%;
    background: transparent;
    border: 1.5px solid #d1d5db;
    color: var(--text-primary);
    font-size: 12px;
    margin-top: auto;
    height: 44px;
}

.btn-car-outline:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

/* Car Swiper Navigation */
.car-swiper-prev,
.car-swiper-next {
    position: absolute;
    top: 0;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.car-swiper-prev::after,
.car-swiper-next::after {
    font-family: swiper-icons;
    font-size: 13px;
    font-weight: bold;
    color: var(--text-primary);
}

.car-swiper-prev::after { content: 'prev';   
    position: relative;
    top: 2px;
    right:1px; }
.car-swiper-next::after { content: 'next';   
    position: relative;
    top: 2px;
    left: 1px; }

.car-swiper-prev { left:0 ; }
.car-swiper-next { right: 0; }

.car-swiper-prev:hover,
.car-swiper-next:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.car-swiper-prev:hover::after,
.car-swiper-next:hover::after {
    color: #fff;
}

.car-swiper-prev.swiper-button-disabled,
.car-swiper-next.swiper-button-disabled {
    pointer-events: none;
}
.car-swiper-controls {
    position: relative;
    width: 300px;
    margin: 0 auto;
    margin-top: 32px;
    display: flex;
    align-items: center;
    height: 44px;
}
/* Car Swiper Pagination */
.car-pagination {
    position: relative !important;
    top: 0 !important;
    z-index: 1;
    width: calc(100% - 120px) !important;
    margin: 0 auto;
}

.car-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    border-radius: 100px !important;
}

.car-pagination .swiper-pagination-bullet-active {
    background: var(--accent-red);
    width: 20px;
}


@media (min-width:768px) and (max-width:991.98px) {
    .car-swiper-controls {
        width: 330px;
    }
    .car-section {
        padding: 40px 0;
    }
}
@media (min-width:576px) and (max-width:767.98px) {
    .car-swiper-controls {
        width: 330px;
    }
    .car-section {
        padding: 40px 0;
    }
}
@media (max-width:575.98px) {
    .car-swiper-controls {
        width: 330px;
    }
    .car-section {
        padding: 40px 0;
    }
}
@media (max-width:325.98px) {
    .car-swiper-controls {
        width: 100%;
        margin-top: 20px;
    }
    .car-swiper-prev, .car-swiper-next {
        display: none;
    }
}
/* Video Section */
.video-section {
    display: block;
    line-height: 0;
    font-size: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.video-poster {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s;
}

.video-wrapper:hover .video-poster {
    transform: scale(1.02);
    opacity: 0.85;
}

.video-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: var(--accent-red);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(225,6,0,0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}

.video-play-btn i {
    font-size: 28px;
    color: #fff;
    margin-left: 4px;
}

.video-wrapper:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(225,6,0,0.6);
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    display: block;
}

/* Customer Gallery */
.customer-section {
    padding: 60px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.red-underline {
    width: 60px;
    height: 3px;
    background: var(--accent-red);
    margin-top: 15px;
}

.customer-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-red);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.customer-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 20px;
    text-align: center;
}

.customer-gallery {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 270px 270px;
    gap: 12px;
    margin-top: 40px;
}

.cust-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    cursor: pointer;
    background: #111;
    text-decoration: none;
}

.cust-item--large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.cust-item--hidden {
    display: none;
}

.cust-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.cust-item:hover img {
    transform: scale(1.06);
}

.cust-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 20px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cust-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.3;
}

.cust-car {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.cust-bar {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 16px;
}

.cust-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    transition: background 0.3s;
    letter-spacing: -1px;
}

.cust-item--more:hover .cust-more-overlay {
        background: rgba(0, 0, 0, 0.32);
}
@media (min-width:768px) and (max-width:991.98px) {
    .customer-gallery {
        grid-template-columns: 1.4fr 1fr 1fr;
        grid-template-rows: 200px 200px;
    }
    .cust-caption {
        padding: 16px;
    }
    .cust-item {
        border-radius: 8px;
    }
}
@media (min-width:576px) and (max-width:767.98px) {
    .customer-gallery {
        grid-template-columns: 1.4fr 1fr 1fr;
        grid-template-rows: 160px 160px;
    }
    .cust-caption {
        padding: 10px;
    }
    .cust-item {
        border-radius: 8px;
    }
    .cust-more-overlay {
        font-size: 32px;
    }
}
@media (max-width:575.98px) {
    .customer-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 140px 140px 140px;
    }
    .cust-caption {
        padding: 10px;
    }
    .cust-item {
        border-radius: 8px;
    }
    .cust-more-overlay {
        font-size: 32px;
    }
}
/* Testimonials */
.testimonial-section {
    padding: 60px 0;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    border-color: var(--text-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

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

.quote-icon {
    font-size: 40px;
    color: #c7d2e7;
}

.rating-stars {
    display: flex;
    gap: 4px;
    color: #ffdc22;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 16px;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.testimonial-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-meta { display: flex; flex-direction: column; }

.user-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.user-location {
    font-size: 13px;
    color: var(--text-secondary);
}

.testimonial-wrapper {
    position: relative;
    margin-top: 40px;
}

.testimonial-swiper {
    padding: 8px 4px 8px;
}

.testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonial-swiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    height: 100%;
}

.testimonial-wrapper .testimonial-prev,
.testimonial-wrapper .testimonial-next {
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    transition: var(--transition);
    bottom: 0;
    top: auto;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-wrapper .testimonial-prev { left: 0; }
.testimonial-wrapper .testimonial-next { right: 0; }

.testimonial-wrapper .testimonial-prev:after,
.testimonial-wrapper .testimonial-next:after { font-size: 14px; font-weight: bold; }

.testimonial-wrapper .testimonial-prev:hover,
.testimonial-wrapper .testimonial-next:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
}
.testimonial-controls {
    position: relative;
    width: 300px;
    margin: 0 auto;
    margin-top: 32px;
    display: flex;
    align-items: center;
    height: 44px;
}
.testimonial-controls .swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    z-index: 1;
    width: calc(100% - 120px) !important;
    margin: 0 auto;
}
@media (max-width: 1400px) {
    .testimonial-wrapper .testimonial-prev { left: 0; }
    .testimonial-wrapper .testimonial-next { right: 0; }
}

.testimonial-swiper .swiper-pagination-bullet {
    background: #d1d5db;
    opacity: 1;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--accent-red);
    width: 20px;
    border-radius: 4px;
}

@media (min-width:768px) and (max-width:1199.98px) {
    .testimonial-card {
        padding: 20px;
    }
    .testimonial-section {
        padding: 40px 0;
    }
}
@media (min-width:768px) and (max-width:991.98px) {
    .testimonial-card { 
        padding: 20px;
    }
    .testimonial-section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 32px;
    }
    .customer-subtitle {
        font-size: 15px;
        max-width: 500px;
        margin: 0 auto;
        margin-top: 16px;
    }
}
@media (max-width:767.98px) {
    .testimonial-card {
        padding: 20px;
    }
    .testimonial-section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 32px;
    }
    .customer-subtitle {
        font-size: 15px;
        max-width: 500px;
        margin: 0 auto;
        margin-top: 16px;
    }
    .testimonial-swiper {
        margin: 0 -16px;
        padding: 8px 16px 8px;
    }
}
@media (max-width:575.98px) {
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }

}

/* Lead Section */
.lead-section {
    padding: 100px 0;
    background: #f8f9fb;
    position: relative;
    overflow: hidden;
}

.lead-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 100%; height: 100%;
    background: url('../assets/booknow.png') no-repeat ;
        background-position: bottom center;
    background-size: cover;
    pointer-events: none;
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.lead-title {
    font-size:56px;
    font-weight: 800;
    color: #27282b;
    line-height: 1.3;
    margin-bottom: 14px;
    text-align: left;
    letter-spacing: -0.02em;
}

.lead-title--light {
    font-weight: 400;
    display: block;
}

.lead-subtitle {
    font-size: 18px;
    color: #111827;
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 400;
}

.lead-features {
    list-style: none;
    margin-bottom: 0;
}

.lead-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 400;
    color: #334155;
}

.feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    background: #e10600;
}

.lead-form-box {
    background: rgb(255 255 255 / 56%);
    border-radius: 16px;
    padding: 36px ;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid #fff;
}

.form-field {
    position: relative;
    margin-bottom: 12px;
}

.form-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b8c4;
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    height: 56px;
    border: 1.5px solid #e8ecf0;
    border-radius: 10px;
    padding: 0 16px 0 44px;
    font-size: 15px;
    color: #1e293b;
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
    appearance: none;
    -webkit-appearance: none;
    font-family: 'Inter', sans-serif;
}
.form-field.form-field--select select {
    cursor: pointer;
}
.form-field input::placeholder,
.form-field select:invalid,
.form-field textarea::placeholder {
    color: #a0aab4;
}
.lead-form-box .btn {
    width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #cbd2da;
    background: #fff;
    outline: none;
}

.form-field--select .form-field-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 13px;
    pointer-events: none;
}
.form-field--textarea textarea {
    min-height: 100px;
    padding: 16px;
    resize: vertical;
    line-height: 1.6;
    align-items: flex-start;
}
.lead-privacy {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 14px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

@media (min-width:1200px) and (max-width:1399.98px) {
    .lead-section {
        padding: 80px 0;
    }
}
@media (min-width:992px) and (max-width:1199.98px) {
    .lead-section {
        padding: 60px 0;
    }
    .lead-section::before {
        opacity: .5;
    }
    .lead-title {
        font-size: 46px;
    }
}
@media (min-width:768px) and (max-width:991.98px) {
    .lead-section {
        padding: 50px 0;
    }
    .lead-section::before {
        opacity: .5;
    }
    .lead-title {
        font-size: 32px;
    }
    .lead-grid {
        grid-template-columns: 1fr 340px;
        gap: 32px;
        align-items: flex-start;
    }
    .lead-form-box {
        padding: 20px;
    }
    .lead-subtitle {
        font-size: 16px;
    }
}
@media (min-width:576px) and (max-width:767.98px) {
    .lead-section {
        padding: 40px 0;
    }
    .lead-section::before {
        opacity: .5;
    }
    .lead-title {
        font-size: 42px;
    }
    .lead-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .lead-form-box {
        padding: 20px;
    }
}
@media (max-width:575.98px) {
    .lead-section {
        padding: 40px 0;
    }
    .lead-section::before {
        opacity: .5;
    }
    .lead-title {
        font-size: 36px;
    }
    .lead-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .lead-form-box {
        padding: 20px;
    }
    .lead-features li {
        font-size: 16px;
    }
}

/* Footer */
footer {
    background: var(--bg-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 280px 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

/* Footer Branding */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-bottom: 24px;
    width: 200px;
}




.footer-tagline {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon.fb { background: #1877f2; }
.social-icon.yt { background: #ff0000; }
.social-icon.tt { background: #000000; border: 1px solid rgba(255,255,255,0.2); }

.social-icon:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

/* Footer Title */
.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
}

.footer-contact-list i {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 3px;
}

/* Links */
.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:0 8px;
}

.footer-links li {
    margin-bottom: 8px;
}
.footer-links li:last-child {
    margin-bottom: 0;
}
.footer-links a {
    font-size: 14px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

/* QR Block */
.footer-qr-block {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-qr {
    width: 100px;
    height: 100px;
    background: #fff;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
}

.footer-qr-block p {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    padding: 20px 0;
}

/* Car Quote Modal */
.car-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.car-modal.active {
    opacity: 1;
    pointer-events: all;
}

.car-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.car-modal__dialog {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.25);
    transform: translateY(24px) scale(0.98);
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}

.car-modal.active .car-modal__dialog {
    transform: translateY(0) scale(1);
}

.car-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(0,0,0,0.07);
    border-radius: 50%;
    cursor: pointer;
    font-size: 13px;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}

.car-modal__close:hover {
    background: rgba(0,0,0,0.14);
}

.car-modal__grid {
    display: block;
}

.modal-img-swiper .swiper-slide img {
    width: 100%;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.12));
    user-select: none;
}

.modal-img-pagination {
    bottom: 10px !important;
}

.modal-img-pagination .swiper-pagination-bullet {
    background: #94a3b8;
    opacity: 1;
}

.modal-img-pagination .swiper-pagination-bullet-active {
    background: var(--accent-red);
    width: 18px;
    border-radius: 4px;
}

.modal-img-prev,
.modal-img-next {
    color: #475569 !important;
}

.modal-img-prev::after,
.modal-img-next::after {
    font-size: 16px !important;
}

.car-modal__content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.car-modal__title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.car-modal__sub {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.65;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

/* Mobile Controls */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 32px;
    height: 2px;
    background: #111827;
    border-radius: 10px;
    transition: var(--transition);
}

.floating-btns {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.f-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    transition: var(--transition);
}
.footer-contact-list li a:hover {
    color: var(--accent-red);
}
.f-btn:hover {
    transform: scale(1.05);
}

.phone { background: var(--accent-red); }

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(5, 10, 20, 0.9);
    backdrop-filter: blur(16px);
    z-index: 1001;
    border-top: 1px solid var(--glass-border);
}

/* Responsive */
@media (max-width: 1200px) {
   
    .car-modal__content { padding: 28px 28px 36px; }
}
@media (min-width: 1200px) and (max-width: 1399.9px) {
    .footer-grid {
        gap:32px;
        grid-template-columns: 1fr 1fr 200px 1fr;
    }
}
@media (min-width: 992px) and (max-width: 1199.9px) {
    .footer-grid {
        gap: 20px;
        grid-template-columns: 1fr 1fr 185px 1fr;
    }
    .footer-qr-block {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .footer-grid {
        gap: 32px;
        grid-template-columns: 1fr 1fr;
    }
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 12px;
    }
}
/* Nav overlay backdrop */
.nav-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1049;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
@media (max-width: 992px) {
    .nav-overlay { display: block;z-index: 999; }
}
.nav-header { display: none; }

@media (max-width: 992px) {
    header .btn { display: none !important; }
    .btn-call-header { display: none !important; }
    .hamburger { display: flex; }

    /* Hamburger → X animation */
    .hamburger span { transition: all 0.3s ease; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 8px); }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(12px); }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(3px, -8px); }

    /* Dropdown nav below header */
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, box-shadow 0.35s ease;
        z-index: 1050;
        box-shadow: none;
        box-shadow: 0 10px 12px rgba(0, 0, 0, .05);
    }
    nav.active {
        max-height: 400px;
        border-top: 1px solid #efefef;
    }

    /* Nav list items */
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    nav ul li { border-bottom: 1px solid #f3f4f6; }
    nav ul li:last-child { border-bottom: none; }

    nav ul li a {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: var(--text-primary);
        padding: 15px 24px;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    nav ul li a.active {
        color: var(--accent-red);
        background: #fff5f5;
    }





    /* Benefits Responsive */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .benefit-item {
        padding: 0;
        justify-content: center;
    }

    .benefit-item::after {
        display: none;
    }
}
@media (min-width:768px) and (max-width:991.98px) {
    nav {
        max-width: 692px;
        margin: 0 auto;
        left: 0;
        right: 0;
        border-radius: 0 0 8px 8px;
    }
}
@media (max-width: 767.9px) {
    .section-pad { padding: 80px 0; }

    .floating-btns { bottom: 16px; right: 12px; }
    
    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefit-item {
        justify-content: flex-start;
        padding-left: 0;
    }
    .footer-bottom {
        font-size: 14px;
        padding: 12px 0;
    }
}
@media (min-width: 576px) and (max-width: 767.9px) {
    .footer-grid {
        gap: 32px;
        grid-template-columns: 1fr 1fr;
    }
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 12px;
    }
}
@media (max-width: 575.9px) {
    .car-swiper-prev, .car-swiper-next {
    width: 40px;
    height: 40px;
}

.testimonial-wrapper .testimonial-prev, .testimonial-wrapper .testimonial-next {
    width: 40px;
    height: 40px;
}
    .footer-grid {
        gap: 32px;
        grid-template-columns: 1fr;
    }
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 12px;
    }
    .footer-logo {
        margin-bottom: 12px;
    }
    .footer-qr-block p {
    max-width: 180px;
}
}