﻿/* =========================================================
   VINFAST WEBSITE - MAIN CSS
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f8fc;
    color: #102a43;
}

img {
    max-width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #0b5cff;
    box-shadow: 0 4px 18px rgba(0, 70, 180, 0.25);
}

.header-container {
    width: 100%;
    max-width: 1200px;
    height: 72px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    flex-shrink: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
}

    .logo:hover {
        color: #ffffff;
    }


/* =========================================================
   MENU
========================================================= */

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

    .main-menu a {
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.2s ease;
    }

        .main-menu a:hover {
            color: #dbeafe;
        }


/* =========================================================
   CALL BUTTON
========================================================= */

.header-call {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #ffffff;
    color: #0b5cff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
}

    .header-call:hover {
        background: #eaf2ff;
        color: #0649cc;
    }


/* =========================================================
   MAIN
========================================================= */

main {
    width: 100%;
}


/* =========================================================
   PAGE TITLE
========================================================= */

.page-title {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    text-align: center;
}

    .page-title h1 {
        margin: 0 0 15px;
        color: #0b5cff;
        font-size: 40px;
        line-height: 1.2;
    }

    .page-title p {
        margin: 0;
        color: #667085;
        font-size: 17px;
        line-height: 1.6;
    }


/* =========================================================
   CARS BANNER
========================================================= */

.cars-banner {
    width: 100%;
    min-height: 440px;
    background: linear-gradient( 90deg, rgba(0, 25, 80, 0.90), rgba(0, 76, 200, 0.55), rgba(0, 0, 0, 0.15) ), url('/images/vf8allnew.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.cars-banner-overlay {
    width: 100%;
    min-height: 440px;
    display: flex;
    align-items: center;
}

.cars-banner-content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

    .cars-banner-content > span {
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 4px;
    }

    .cars-banner-content h1 {
        max-width: 700px;
        margin: 15px 0;
        color: #ffffff;
        font-size: 50px;
        line-height: 1.1;
    }

    .cars-banner-content p {
        max-width: 600px;
        margin: 0 0 28px;
        color: #ffffff;
        font-size: 18px;
        line-height: 1.6;
    }


/* =========================================================
   BANNER BUTTONS
========================================================= */

.banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner-button,
.banner-button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
}

.banner-button {
    background: #ffffff;
    color: #0b5cff;
}

    .banner-button:hover {
        background: #eaf2ff;
        color: #0649cc;
    }

.banner-button-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

    .banner-button-outline:hover {
        background: #ffffff;
        color: #0b5cff;
    }


/* =========================================================
   CARS PAGE
========================================================= */

.cars-page {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
}

.page-heading {
    margin-bottom: 45px;
    text-align: center;
}

    .page-heading span {
        color: #0b5cff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 3px;
    }

    .page-heading h1 {
        margin: 10px 0;
        color: #102a43;
        font-size: 42px;
        line-height: 1.2;
    }

    .page-heading p {
        margin: 0;
        color: #667085;
        font-size: 17px;
        line-height: 1.6;
    }


/* =========================================================
   CARS GRID
========================================================= */

.cars-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}


/* =========================================================
   CAR CARD
========================================================= */

.car-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4e9f0;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(16, 42, 67, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .car-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(11, 92, 255, 0.15);
    }


/* =========================================================
   CAR IMAGE
========================================================= */

.car-image {
    width: 100%;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f8fafc;
}

    .car-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


/* =========================================================
   CAR CONTENT
========================================================= */

.car-info {
    padding: 22px;
}

    .car-info h2 {
        margin: 0 0 10px;
        color: #102a43;
        font-size: 24px;
        line-height: 1.2;
    }

    .car-info p {
        min-height: 50px;
        margin: 0 0 20px;
        color: #667085;
        font-size: 15px;
        line-height: 1.5;
    }


/* =========================================================
   CAR BUTTON
========================================================= */

.car-button {
    display: block;
    width: 100%;
    padding: 13px;
    background: #0b5cff;
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
}

    .car-button:hover {
        background: #0649cc;
        color: #ffffff;
    }


/* =========================================================
   FEATURED CAR
========================================================= */

.car-card.featured {
    border: 2px solid #0b5cff;
}

.featured-label {
    display: inline-block;
    margin-bottom: 8px;
    padding: 5px 9px;
    background: #e8f0ff;
    color: #0b5cff;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: 100%;
    margin-top: 60px;
    padding: 45px 20px 20px;
    background: #073b9c;
    color: #ffffff;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.footer-column h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 18px;
}

.footer-column p {
    color: #dbeafe;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    text-decoration: none;
}

    .footer-column a:hover {
        color: #bfdbfe;
    }

.footer-bottom {
    width: 100%;
    max-width: 1200px;
    margin: 35px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: #dbeafe;
    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .cars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-container {
        gap: 20px;
    }

    .main-menu {
        gap: 18px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    /* HEADER */

    .header-container {
        height: auto;
        min-height: 65px;
        padding: 12px 15px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .logo {
        font-size: 23px;
    }

    .header-call {
        padding: 10px 14px;
        font-size: 12px;
    }

    .main-menu {
        order: 3;
        width: 100%;
        padding-top: 8px;
        justify-content: center;
        gap: 18px;
    }

        .main-menu a {
            font-size: 12px;
        }


    /* BANNER */

    .cars-banner,
    .cars-banner-overlay {
        min-height: 380px;
    }

    .cars-banner-content {
        max-width: calc(100% - 30px);
        padding: 35px 0;
    }

        .cars-banner-content > span {
            font-size: 12px;
            letter-spacing: 3px;
        }

        .cars-banner-content h1 {
            max-width: 100%;
            margin: 12px 0;
            font-size: 35px;
        }

        .cars-banner-content p {
            max-width: 100%;
            font-size: 16px;
        }


    /* BANNER BUTTON */

    .banner-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .banner-button,
    .banner-button-outline {
        width: 100%;
        text-align: center;
    }


    /* CARS */

    .cars-page {
        padding: 45px 15px;
    }

    .page-heading {
        margin-bottom: 30px;
    }

        .page-heading h1 {
            font-size: 32px;
        }

        .page-heading p {
            font-size: 15px;
        }


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .site-footer {
        margin-top: 40px;
    }
}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 600px) {

    .cars-grid {
        grid-template-columns: 1fr;
    }

    .car-image {
        height: 220px;
    }

    .car-info {
        padding: 20px;
    }

        .car-info h2 {
            font-size: 22px;
        }
}


/* =========================================================
   VERY SMALL PHONE
========================================================= */

@media (max-width: 400px) {

    .header-container {
        padding: 10px;
    }

    .logo {
        font-size: 20px;
    }

    .header-call {
        padding: 9px 11px;
        font-size: 11px;
    }

    .main-menu {
        gap: 12px;
    }

        .main-menu a {
            font-size: 11px;
        }

    .cars-banner-content h1 {
        font-size: 30px;
    }
}

/* =========================================================
   HOME HERO
========================================================= */

.home-hero {
    min-height: 600px;
    background: linear-gradient( 90deg, rgba(0, 20, 70, 0.88), rgba(0, 70, 180, 0.48), rgba(0, 0, 0, 0.10) ), url('/images/vf8allnew.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.home-hero-overlay {
    min-height: 600px;
    display: flex;
    align-items: center;
}

.home-hero-content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.hero-label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 5px;
}

.home-hero h1 {
    max-width: 700px;
    margin: 18px 0;
    color: #ffffff;
    font-size: 58px;
    line-height: 1.08;
}

.home-hero p {
    max-width: 600px;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.6;
}


/* =========================================================
   HERO BUTTON
========================================================= */

.hero-actions {
    display: flex;
    gap: 12px;
}

.hero-button,
.hero-button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
}

.hero-button {
    background: #ffffff;
    color: #0b5cff;
}

    .hero-button:hover {
        background: #eaf2ff;
        color: #0649cc;
    }

.hero-button-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

    .hero-button-outline:hover {
        background: #ffffff;
        color: #0b5cff;
    }


/* =========================================================
   HOME INTRO
========================================================= */

.home-intro {
    padding: 90px 20px;
    background: #ffffff;
    text-align: center;
}

.home-intro-content {
    max-width: 850px;
    margin: auto;
}

    .home-intro-content > span {
        color: #0b5cff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 4px;
    }

    .home-intro-content h2 {
        margin: 12px 0 18px;
        color: #102a43;
        font-size: 40px;
    }

    .home-intro-content p {
        margin-bottom: 30px;
        color: #667085;
        font-size: 17px;
        line-height: 1.7;
    }

.intro-button {
    display: inline-block;
    padding: 14px 25px;
    background: #0b5cff;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

    .intro-button:hover {
        background: #0649cc;
    }


/* =========================================================
   FEATURED CARS
========================================================= */

.featured-cars {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.section-heading {
    margin-bottom: 45px;
    text-align: center;
}

    .section-heading span {
        color: #0b5cff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 3px;
    }

    .section-heading h2 {
        margin: 10px 0;
        color: #102a43;
        font-size: 40px;
    }

    .section-heading p {
        margin: 0;
        color: #667085;
        font-size: 17px;
    }


/* =========================================================
   FEATURED GRID
========================================================= */

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.featured-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4e9f0;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(16, 42, 67, 0.06);
    transition: 0.25s ease;
}

    .featured-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(11, 92, 255, 0.15);
    }

.featured-image {
    height: 240px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

    .featured-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.featured-content {
    padding: 22px;
}

    .featured-content > span {
        display: inline-block;
        margin-bottom: 8px;
        padding: 5px 9px;
        background: #e8f0ff;
        color: #0b5cff;
        border-radius: 5px;
        font-size: 11px;
        font-weight: 800;
    }

    .featured-content h3 {
        margin: 0 0 10px;
        color: #102a43;
        font-size: 24px;
    }

    .featured-content p {
        min-height: 48px;
        margin-bottom: 18px;
        color: #667085;
        line-height: 1.5;
    }

    .featured-content a {
        color: #0b5cff;
        font-weight: 800;
        text-decoration: none;
    }

.featured-highlight {
    border: 2px solid #0b5cff;
}


/* =========================================================
   VIEW ALL
========================================================= */

.view-all-cars {
    margin-top: 40px;
    text-align: center;
}

    .view-all-cars a {
        display: inline-block;
        padding: 14px 26px;
        background: #0b5cff;
        color: #ffffff;
        border-radius: 8px;
        font-weight: 800;
        text-decoration: none;
    }

        .view-all-cars a:hover {
            background: #0649cc;
        }


/* =========================================================
   CONSULT SECTION
========================================================= */

.home-consult {
    min-height: 400px;
    margin-top: 30px;
    background: linear-gradient( 90deg, rgba(0, 36, 120, 0.95), rgba(0, 91, 255, 0.78) );
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.consult-content {
    max-width: 750px;
    padding: 70px 20px;
}

    .consult-content > span {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 3px;
    }

    .consult-content h2 {
        margin: 15px 0;
        color: #ffffff;
        font-size: 42px;
        line-height: 1.15;
    }

    .consult-content p {
        margin-bottom: 28px;
        color: #dbeafe;
        font-size: 17px;
    }

.consult-button {
    display: inline-block;
    padding: 14px 28px;
    background: #ffffff;
    color: #0b5cff;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

    .consult-button:hover {
        background: #eaf2ff;
    }


/* =========================================================
   HOME MOBILE
========================================================= */

@media (max-width: 900px) {

    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {

    .home-hero,
    .home-hero-overlay {
        min-height: 520px;
    }

    .home-hero-content {
        padding: 35px 15px;
    }

    .home-hero h1 {
        font-size: 38px;
    }

    .home-hero p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-button,
    .hero-button-outline {
        width: 100%;
    }

    .home-intro {
        padding: 60px 15px;
    }

    .home-intro-content h2 {
        font-size: 30px;
    }

    .featured-cars {
        padding: 60px 15px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .home-consult {
        min-height: 380px;
    }

    .consult-content h2 {
        font-size: 32px;
    }
}

/* =========================================================
   CONSULT HERO
========================================================= */

.consult-hero {
    min-height: 400px;
    background: linear-gradient( 90deg, rgba(0, 25, 80, 0.92), rgba(0, 76, 200, 0.60) ), url('/images/vf8allnew.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.consult-hero-overlay {
    min-height: 400px;
    display: flex;
    align-items: center;
}

.consult-hero-content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

    .consult-hero-content span {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 4px;
    }

    .consult-hero-content h1 {
        max-width: 700px;
        margin: 15px 0;
        color: #ffffff;
        font-size: 48px;
        line-height: 1.1;
    }

    .consult-hero-content p {
        max-width: 650px;
        color: #ffffff;
        font-size: 17px;
        line-height: 1.6;
    }


/* =========================================================
   CONSULT PAGE
========================================================= */

.consult-page {
    padding: 80px 20px;
    background: #f5f8fc;
}

.consult-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}


/* =========================================================
   CONSULT INFO
========================================================= */

.consult-info {
    padding: 20px 0;
}

.consult-label {
    color: #0b5cff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.consult-info h2 {
    margin: 12px 0 18px;
    color: #102a43;
    font-size: 38px;
    line-height: 1.15;
}

.consult-info > p {
    margin-bottom: 30px;
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   BENEFITS
========================================================= */

.consult-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f0ff;
    color: #0b5cff;
    border-radius: 50%;
    font-weight: 800;
}

.benefit strong {
    display: block;
    margin-bottom: 5px;
    color: #102a43;
}

.benefit p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   FORM CARD
========================================================= */

.consult-form-card {
    padding: 35px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(16, 42, 67, 0.10);
}

.form-header {
    margin-bottom: 25px;
}

    .form-header span {
        color: #0b5cff;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .form-header h2 {
        margin: 8px 0;
        color: #102a43;
        font-size: 28px;
    }

    .form-header p {
        margin: 0;
        color: #667085;
    }


/* =========================================================
   FORM
========================================================= */

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        margin-bottom: 7px;
        color: #102a43;
        font-size: 14px;
        font-weight: 700;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 13px 14px;
        border: 1px solid #d9e1ec;
        border-radius: 8px;
        outline: none;
        background: #ffffff;
        color: #102a43;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        transition: 0.2s;
    }

    .form-group textarea {
        resize: vertical;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #0b5cff;
            box-shadow: 0 0 0 3px rgba(11, 92, 255, 0.10);
        }


/* =========================================================
   SUBMIT
========================================================= */

.consult-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: #0b5cff;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    transition: 0.2s;
}

    .consult-submit:hover {
        background: #0649cc;
    }


/* =========================================================
   HOTLINE
========================================================= */

.consult-hotline {
    padding: 65px 20px;
    background: linear-gradient( 135deg, #073b9c, #0b5cff );
    color: #ffffff;
    text-align: center;
}

    .consult-hotline span {
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 3px;
    }

    .consult-hotline h2 {
        margin: 12px 0 20px;
        color: #ffffff;
        font-size: 32px;
    }

    .consult-hotline a {
        display: inline-block;
        padding: 14px 28px;
        background: #ffffff;
        color: #0b5cff;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 800;
        text-decoration: none;
    }


/* =========================================================
   CONSULT MOBILE
========================================================= */

@media (max-width: 800px) {

    .consult-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .consult-hero,
    .consult-hero-overlay {
        min-height: 360px;
    }

    .consult-hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 600px) {

    .consult-page {
        padding: 50px 15px;
    }

    .consult-info h2 {
        font-size: 30px;
    }

    .consult-info > p {
        font-size: 15px;
    }

    .consult-form-card {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .consult-hotline {
        padding: 50px 15px;
    }

        .consult-hotline h2 {
            font-size: 27px;
        }
}

/* =========================
   CONSULT SUCCESS
========================= */

.success-message {
    margin-bottom: 25px;
    padding: 20px;
    background: #ecfdf3;
    border: 1px solid #86efac;
    border-radius: 12px;
    color: #166534;
}

    .success-message > strong {
        display: block;
        margin-bottom: 10px;
        font-size: 17px;
    }

    .success-message p {
        margin: 7px 0;
        line-height: 1.5;
    }

.success-buttons {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

    .success-buttons a {
        flex: 1;
        padding: 12px;
        background: #0b5cff;
        color: #ffffff;
        border-radius: 8px;
        text-align: center;
        text-decoration: none;
        font-weight: 800;
    }

        .success-buttons a:hover {
            background: #0649cc;
        }


/* =========================
   ERROR
========================= */

.error-message {
    margin-bottom: 20px;
    padding: 14px;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: 8px;
    color: #be123c;
    font-weight: 600;
}


/* =========================
   OPTIONAL
========================= */

.optional {
    color: #98a2b3;
    font-size: 12px;
    font-weight: normal;
}


/* =========================
   CONSULT NOTE
========================= */

.consult-note {
    margin-bottom: 18px;
    padding: 11px 13px;
    background: #f5f8ff;
    border-radius: 7px;
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================
   HOTLINE BUTTONS
========================= */

.hotline-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

    .hotline-buttons a {
        display: inline-block;
        padding: 14px 24px;
        background: #ffffff;
        color: #0b5cff;
        border-radius: 8px;
        font-weight: 800;
        text-decoration: none;
    }

        .hotline-buttons a:hover {
            background: #eaf2ff;
        }


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .success-buttons {
        flex-direction: column;
    }

    .hotline-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

        .hotline-buttons a {
            width: 100%;
            text-align: center;
        }
}

/* =========================
   CUSTOMERS PAGE
========================= */

.customers-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
}

.customers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

    .customers-header span {
        color: #0b5cff;
        font-size: 14px;
        font-weight: 800;
    }

    .customers-header h1 {
        margin: 8px 0;
        color: #102a43;
    }

    .customers-header p {
        margin: 0;
        color: #667085;
    }

.back-button {
    padding: 12px 18px;
    background: #0b5cff;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}


/* TABLE */

.customers-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.customers-table {
    width: 100%;
    min-width: 1050px;
    border-collapse: collapse;
}

    .customers-table th {
        padding: 16px;
        background: #0b5cff;
        color: white;
        text-align: left;
        white-space: nowrap;
    }

    .customers-table td {
        padding: 15px;
        border-bottom: 1px solid #e5e7eb;
        color: #344054;
    }

    .customers-table tbody tr:hover {
        background: #f8fbff;
    }

.customer-name {
    font-weight: 700;
    color: #102a43 !important;
}

.status {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 20px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}


/* CONTACT */

.contact-buttons {
    display: flex;
    gap: 6px;
}

.call-button,
.zalo-button {
    padding: 8px 10px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.call-button {
    background: #0b5cff;
}

.zalo-button {
    background: #0068ff;
}


/* EMPTY */

.empty-customers {
    padding: 50px !important;
    text-align: center;
    color: #98a2b3 !important;
}


/* MOBILE */

@media (max-width: 768px) {

    .customers-page {
        padding: 30px 12px;
    }

    .customers-header {
        flex-direction: column;
        align-items: flex-start;
    }

        .customers-header h1 {
            font-size: 25px;
        }

    .back-button {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   TRANG CHI TIẾT XE
========================= */

.car-detail-page {
    background: #f5f8fc;
    padding-bottom: 60px;
}

.car-detail-hero {
    max-width: 1200px;
    min-height: 620px;
    margin: auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.car-detail-image-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 45px rgba(0, 70, 180, 0.12);
}

.car-detail-image {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    display: block;
}

.car-brand {
    color: #0b5cff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
}

.car-detail-info h1 {
    margin: 10px 0;
    font-size: 52px;
    color: #102a43;
    font-weight: 800;
}

.car-type {
    color: #0b5cff;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 20px;
}

.car-description {
    color: #667085;
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
}

.car-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 800;
}

.btn-primary {
    background: #0b5cff;
    color: #ffffff;
}

    .btn-primary:hover {
        background: #0047d6;
    }

.btn-secondary {
    background: #ffffff;
    color: #0b5cff;
    border: 1px solid #dbeafe;
}


/* =========================
   THÔNG SỐ
========================= */

.car-specs {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

    .section-title span {
        color: #0b5cff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .section-title h2 {
        margin: 10px 0 0;
        color: #102a43;
        font-size: 32px;
    }

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.spec-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 70, 180, 0.08);
}

    .spec-card span {
        display: block;
        color: #667085;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .spec-card strong {
        color: #102a43;
        font-size: 20px;
    }


/* =========================
   CTA
========================= */

.car-detail-cta {
    max-width: 1200px;
    margin: 20px auto;
    padding: 60px 20px;
    border-radius: 24px;
    background: #0b5cff;
    color: #ffffff;
    text-align: center;
}

    .car-detail-cta span {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .car-detail-cta h2 {
        font-size: 32px;
        margin: 15px 0;
    }

    .car-detail-cta p {
        margin-bottom: 30px;
    }

    .car-detail-cta a {
        display: inline-block;
        background: #ffffff;
        color: #0b5cff;
        padding: 15px 28px;
        border-radius: 9px;
        text-decoration: none;
        font-weight: 800;
    }


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .car-detail-hero {
        grid-template-columns: 1fr;
        padding: 30px 15px;
        gap: 30px;
    }

    .car-detail-image-box {
        padding: 20px;
    }

    .car-detail-info h1 {
        font-size: 38px;
    }

    .car-description {
        font-size: 16px;
    }

    .car-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .car-specs {
        padding: 20px 15px 40px;
    }

    .spec-card {
        padding: 22px 10px;
    }

        .spec-card strong {
            font-size: 16px;
        }

    .car-detail-cta {
        margin: 20px 15px;
    }

        .car-detail-cta h2 {
            font-size: 25px;
        }
}

/* =========================
   NÚT TRÊN THẺ XE
========================= */

.car-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

    .car-actions a {
        flex: 1;
        text-align: center;
        padding: 11px 10px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 800;
        text-decoration: none;
        transition: 0.2s;
    }

/* Xem chi tiết */

.car-detail-button {
    background: #0b5cff;
    color: #ffffff;
    border: 1px solid #0b5cff;
}

    .car-detail-button:hover {
        background: #0047d6;
        transform: translateY(-2px);
    }

/* Nhận tư vấn */

.car-button {
    background: #ffffff;
    color: #0b5cff;
    border: 1px solid #0b5cff;
}

    .car-button:hover {
        background: #eaf2ff;
        transform: translateY(-2px);
    }


/* MOBILE */

@media (max-width: 768px) {

    .car-actions {
        flex-direction: column;
    }

        .car-actions a {
            width: 100%;
        }
}