/* ================================
   HERO VTC PREMIUM – LILLE & NICE
   ================================ */

.dealership-hero {
    position: relative;
    width: 100%;
    background-color: #000;
    overflow: hidden;
}

/* HERO */
.dl-hero-single {
    position: relative;
    height: 900px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;       /* ⬅️ CONTENU EN BAS */
    padding-bottom: 140px;        /* ⬅️ ESPACE BAS */
}

/* Overlay premium */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.65) 45%,
        rgba(0,0,0,0.35) 70%,
        rgba(0,0,0,0.10) 100%
    );
    z-index: 1;
}

/* Contenu */
.at_hero_slider {
    position: relative;
    z-index: 2;
}

/* ================================
   TEXTE
   ================================ */

.at-hero-title {
    margin-bottom: 40px;
}

.hero-title {
    color: #d4af37;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.at-hero-title p {
    color: #f1f1f1;
    font-size: 18px;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* ================================
   BOUTONS
   ================================ */

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    padding: 14px 26px;
    margin-bottom: 15px;
    border-radius: 50px;
    border: 2px solid #d4af37;
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.6px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.btn-outline:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

/* ================================
   IMAGE VOITURE
   ================================ */

.at-hero-banner {
    position: relative;
    text-align: right;
    margin-top: 40px;
}

.at_hero_car {
    max-width: 110%;
    transform: translateY(0); /* ⬅️ ALIGNÉ AUX BOUTONS */
    animation: floatCar 6s ease-in-out infinite;
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.7));
}

@keyframes floatCar {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}


/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.7rem;
    }
}

@media (max-width: 991px) {
    .dl-hero-single {
        height: auto;
        padding: 120px 0 80px;
    }

    .at-hero-title {
        text-align: center;
    }

    .at-hero-title p {
        margin-left: auto;
        margin-right: auto;
    }

    .at-hero-banner {
        text-align: center;
        margin-top: 30px;
    }

    .at_hero_car {
        transform: translateY(0);
        max-width: 90%;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .btn-outline {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-align: center;
        font-size: 2rem;
        margin-top: 70px;
    }
}
@media (max-width: 991px) {
    .at-hero-banner {
        margin-top: 25px;
        text-align: center;
    }

    .at_hero_car {
        max-width: 90%;
        transform: translateY(0);
    }
}s


.dealership-hero .container,
.dealership-hero .at_hero_slider,
.dealership-hero .row,
.dealership-hero .col-xl-5 {
    height: 100%;
}

.at-hero-banner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;        /* EN BAS */
    justify-content: flex-end;    /* À DROITE */
    padding-right: 40px;
    padding-bottom: 0;            /* pas de marge bas */
}

.at_hero_car {
    max-width: 520px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));

    transform: translateY(20px); /* ↓ descend légèrement */
}

@media (max-width: 991px) {
    .dealership-hero .container,
    .dealership-hero .at_hero_slider,
    .dealership-hero .row,
    .dealership-hero .col-xl-5 {
        height: auto;
    }

    .at-hero-banner {
        justify-content: center;
        margin-top: 30px;
    }

    .at_hero_car {
        max-width: 85%;
    }
}



:root {
    --gold: #D4AF37;
    --dark: #2b2b2b;
    --light: #ffffff;
    --gray: #f4f4f4;
}

/* Section */
.premium-section {
    padding: 100px 0;
    background-color: var(--gray);
}

/* Grid */
.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image */
.premium-media img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* Card */
.premium-content {
    background: var(--light);
    padding: 50px;
    border-radius: 26px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Title */
.premium-title {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.premium-title span {
    color: var(--gold);
}

/* Text */
.premium-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* Links */
.premium-links {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.premium-links li {
    border-bottom: 1px solid #e5e5e5;
}

.premium-links a {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
}

.premium-links a::after {
    content: "›";
    color: var(--gold);
    font-size: 20px;
}

/* Actions */
.premium-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-gold {
    background: var(--gold);
    color: #000;
}

.btn-gold:hover {
    background: #c19b2f;
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    background: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }

    .premium-content {
        padding: 35px;
    }

    .premium-title {
        font-size: 26px;
    }
}

/* Accordion */
.premium-item {
    border-bottom: 1px solid #e6e6e6;
}

/* Button */
.premium-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
}

.premium-toggle:hover {
    color: var(--gold);
}

.premium-toggle .icon {
    font-size: 22px;
    color: var(--gold);
    transition: transform .3s ease;
}

/* Content */
.premium-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.premium-desc p {
    padding: 0 0 18px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* Active */
.premium-item.active .premium-desc {
    max-height: 200px;
}

.premium-item.active .icon {
    transform: rotate(45deg);
}
.premium-img {
    max-width: 100%;
    height: auto;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


/* Scroll horizontal pour mobile */
@media (max-width: 576px) {
    .dl2-counterup .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .dl2-counterup .col-6 {
        flex: 0 0 auto;
    }

    .dl2-couter-box p {
        font-size: 1rem; /* Réduit légèrement le texte pour mobile */
    }
}

.services-section {
    background: #f8f9fa;
}

/* Carte */
.service-box {
    position: relative;
    height: 100%;
    padding: 15px 10px;
    background: #fff;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

/* Icône BI */
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #D4AF37; /* primary */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

/* Titres */
.service-box h4 {
    margin-top: 22px;
    font-weight: 600;
}

/* Texte */
.service-box p {
    margin-top: 12px;
    color: #666;
    line-height: 1.6;
}

/* Lien */
.service-link {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Flèche */
.service-link .arrow {
    transition: transform 0.3s ease;
}

/* Hover carte */
.service-box:hover {
    border-color: #D4AF37;
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.10);
}

/* Hover icône */
.service-box:hover .service-icon {
    background: #D4AF37;
}

/* Hover lien */
.service-box:hover .service-link {
    color: #D4AF37;
}

.service-box:hover .service-link .arrow {
    transform: translateX(6px);
}

/* Mobile */
@media (max-width: 768px) {
    .service-box:hover {
        transform: none;
    }
}




    .reviews-section {
    background: #f8f9fb;
    padding: 80px 0;
    text-align: center;
}

/* Badge note */
.reviews-badge {
    display: inline-block;
    background: #ffd600;
    color: #000;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 18px;
    margin-bottom: 20px;
}

.reviews-badge span {
    font-weight: 500;
    font-size: 14px;
    margin-left: 8px;
}

/* Titres */
.reviews-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.reviews-subtitle {
    font-size: 18px;
    color: #666;
}

/* Carte avis */
.review-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
}

/* Étoiles */
.review-stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Texte */
.review-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Auteur */
.review-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-size: 15px;
    color: #111;
}

/* Bouton Google */
.btn-google {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 16px 34px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-google:hover {
    background: #222;
    color: #fff;
}



.cities-section {
    padding: 90px 0;
    background: #f8f8f8;
}

/* TITRES */
.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 720px;
    margin: 0 auto 60px;
    font-size: 17px;
    line-height: 1.6;
}

/* CONTENEUR */
.cities-horizontal {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CARTES */
.city-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 40px;
    flex: 1;
    min-width: 300px;
    max-width: 520px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.1);
}

.city-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

/* LISTE */
.cities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cities-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 17px;
}

.cities-list a {
    color: #111;
    text-decoration: none;
    transition: color .2s;
}

.cities-list a:hover {
    color: #D4AF37;
}

/* ICONE */
.icon-dot {
    width: 34px;
    height: 34px;
    background: rgba(212,175,55,0.15);
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

/* BOUTON */
.all-cities-btn {
    text-align: center;
    margin-top: 60px;
}

.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    padding: 16px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .4px;
    transition: all .3s ease;
}

.btn-gold:hover {
    background: #D4AF37;
    color: #111;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }
    .city-card {
        padding: 28px;
    }
    .city-card h3 {
        font-size: 21px;
    }
}