.btn-outline {

    display: inline-flex;

    align-items: center; 
    background-color: transparent;

    color:  #fff;

    border: 2px solid #fff;

    padding: 8px 16px;

    border-radius: 5px;

    font-weight: bold;

    text-decoration: none;

    font-size: 16px;

    transition: all 0.3s ease;

    width: 260px;

     justify-content: left;

}




.btn-outline svg {

    margin-right: 8px; 

    vertical-align: middle;

    transition: transform 0.3s ease;

}


.button-container:hover .btn-outline svg {

    transform: translateX(5px); 
}

:root {
        --primary-color: #0060ad;
        --text-dark: #2d3436;
        --text-light: #636e72;
        --bg-light: #f8f9fa;
        --white: #ffffff;
        --shadow: 0 10px 40px rgba(0,0,0,0.06);
    }

    body { font-family: 'Montserrat', sans-serif; }

    .trust-features-section {
        padding: 40px 0;
        background-color: var(--bg-light);
        border-bottom: 1px solid #eee;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        background: var(--white);
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        transition: transform 0.3s ease;
    }

    .feature-item:hover { transform: translateY(-5px); }

    .feature-icon {
        min-width: 50px;
        height: 50px;
        background: rgba(0, 96, 173, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        color: var(--primary-color);
        font-size: 1.4rem;
    }

    .feature-content h3 {
        font-size: 0.95rem;
        font-weight: 700;
        margin: 0;
        color: var(--text-dark);
    }

    .feature-content p {
        font-size: 0.8rem;
        margin: 0;
        color: var(--text-light);
    }

  
    .hero-taxi-section {
        padding: 80px 0;
        width: 100%;
    }

    .hero-inner {
        background: var(--white);
        max-width: 1100px;
        margin: 0 auto;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .hero-inner .row { display: flex; flex-wrap: wrap; }

    .hero-image-wrapper {
        height: 100%;
        min-height: 450px;
    }

    .hero-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .h3-progress-right {
        padding: 60px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-subtitle {
        color: var(--primary-color);
        text-transform: uppercase;
        font-weight: 700;
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .hero-subtitle::before {
        content: "";
        width: 30px;
        height: 2px;
        background: var(--primary-color);
        margin-right: 10px;
    }

    .h3-progress-right h2 {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-dark);
        margin-bottom: 25px;
    }

    .hero-description {
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 35px;
        font-size: 1.05rem;
    }

    .hero-btn {
        background-color: var(--primary-color);
        color: var(--white) !important;
        padding: 16px 40px;
        border-radius: 50px;
        font-weight: 600;
        display: inline-block;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(0, 96, 173, 0.25);
    }

    .hero-btn:hover {
        background-color: #004a85;
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 96, 173, 0.35);
    }


    @media (max-width: 991px) {
        .hero-col-img { order: 2; }
        .hero-col-text { order: 1; }
        .h3-progress-right { padding: 40px 30px; }
        .hero-image-wrapper { min-height: 300px; }
    }


    .modern-stats-section {
    padding: 60px 0;
    background-color: #ffffff; /* On reste sur du blanc pour la clarté */
}

.stats-inner-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    /* Ombre très douce pour l'effet "flottant" */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f1f1;
}

.stat-card {
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
}

/* L'icône devient un accent discret */
.stat-icon-box {
    font-size: 28px;
    color: #0060ad; /* Votre bleu en accent */
    margin-bottom: 15px;
    height: 60px;
    width: 60px;
    background: rgba(0, 96, 173, 0.05); /* Fond bleu très pâle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: 0.3s ease;
}

.stat-card:hover .stat-icon-box {
    background: #0060ad;
    color: #ffffff;
    transform: rotateY(180deg); /* Petit effet sympa au survol */
}

/* Chiffres en gras et élégants */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #636e72;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-inner-wrapper {
        padding: 30px 15px;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-text {
        font-size: 0.75rem;
    }
}

   /* --- SECTION ABOUT HARMONISÉE --- */
    .dealership-about {
        padding: 80px 0;
        background-color: #ffffff; /* Fond propre */
    }

    /* Sous-titre avec les lignes latérales comme promis */
    .hero-subtitle {
        color: #0060ad;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .hero-subtitle::before, .hero-subtitle::after {
        content: "";
        width: 40px;
        height: 2px;
        background: rgba(0, 96, 173, 0.2);
    }

    .at-section-title h2 {
        font-size: 2.3rem;
        font-weight: 700;
        color: #2d3436;
        font-family: 'Montserrat', sans-serif;
    }

    /* Boîte de contenu - Style Card Premium */
    .about-info-box {
        padding: 50px 35px;
        background: #ffffff;
        border-radius: 20px; /* Même arrondi que le Hero */
        border: 1px solid #f1f1f1;
        height: 100%;
        position: relative;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1;
    }

    .about-info-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        border-color: #0060ad;
    }

    /* Numérotation discrète moderne */
    .about-info-box::after {
        content: "0" attr(data-count);
        position: absolute;
        top: 25px;
        right: 30px;
        font-size: 3rem;
        font-weight: 800;
        color: rgba(0, 96, 173, 0.04); /* Bleu très très clair */
        transition: 0.4s;
        z-index: -1;
    }

    .about-info-box:hover::after {
        color: rgba(0, 96, 173, 0.1);
        transform: scale(1.1);
    }

    /* Icône harmonisée avec le reste du site */
    .icon-wrappere {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
        background: #0060ad; /* Couleur pleine pour impact */
        border-radius: 15px; /* Arrondi légèrement différent pour le style */
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s;
    }

    .about-info-box:hover .icon-wrappere {
        transform: rotateY(180deg);
        box-shadow: 0 10px 20px rgba(0, 96, 173, 0.3);
    }

    .icon-wrappere img {
        width: 32px;
        height: 32px;
        filter: brightness(0) invert(1); /* Rend l'icône blanche */
    }

    .box-title {
        font-weight: 700;
        font-size: 1.3rem;
        color: #2d3436;
        margin-bottom: 15px;
    }

    .about-info-box p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #636e72;
        margin: 0;
    }

    /* Motif décoratif en arrière-plan */
    .dots-wide {
        top: -20px;
        left: -30px;
        opacity: 0.1;
        z-index: 0;
        filter: grayscale(1);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .at-section-title h2 { font-size: 1.8rem; }
        .about-info-box { padding: 35px 25px; }
    }

    .modern-call-section {
    padding: 60px 0;
    background-color: #ffffff; /* Fond blanc pour la cohérence */
}

.call-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 30px; /* Très arrondi pour le côté premium */
    padding: 60px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05); /* Ombre très douce */
    position: relative;
    overflow: hidden;
}

/* Petit accent de couleur sur le côté */
.call-banner-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #0060ad;
}

.text-blue {
    color: #0060ad;
}

.call-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d3436;
    line-height: 1.2;
}

.call-content p {
    color: #636e72;
    font-size: 1.1rem;
    max-width: 500px;
}

/* Le bouton d'appel moderne */
.modern-phone-btn {
    display: inline-flex;
    align-items: center;
    background: #f8faff;
    border: 1px solid #e2eafc;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.modern-phone-btn:hover {
    background: #0060ad;
    border-color: #0060ad;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 96, 173, 0.2);
}

.btn-icon {
    width: 45px;
    height: 45px;
    background: #0060ad;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
    transition: 0.3s;
}

.modern-phone-btn:hover .btn-icon {
    background: white;
    color: #0060ad;
}

.btn-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #0060ad;
    transition: 0.3s;
}

.btn-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #2d3436;
    transition: 0.3s;
}

.modern-phone-btn:hover .btn-label,
.modern-phone-btn:hover .btn-number {
    color: white;
}

/* Animation douce pour l'image */
.floating-clean {
    animation: floatSmooth 5s ease-in-out infinite;
    max-height: 300px;
}

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

/* Responsive */
@media (max-width: 991px) {
    .call-banner-inner {
        padding: 40px 30px;
        text-align: center;
    }
    .call-content p { margin: 0 auto 30px auto; }
    .hero-subtitle { justify-content: center; }
    .modern-phone-btn { width: 100%; justify-content: center; }
}


.modern-services-slider {
    padding: 80px 0;
    background-color: #fcfcfc;
}

/* Style des Cartes */
.service-card-modern {
    background: #ffffff;
    border-radius: 20px; /* Arrondi cohérent */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid #f1f1f1;
    height: 100%;
    margin: 10px; /* Espace pour l'ombre */
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 96, 173, 0.12);
    border-color: rgba(0, 96, 173, 0.2);
}

/* Gestion de l'image */
.service-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-modern:hover .service-img-wrapper img {
    transform: scale(1.1);
}

/* Badge sur l'image */
.service-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.service-badge {
    background: #0060ad;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contenu de la carte */
.service-card-body {
    padding: 25px;
    text-align: left;
}

.service-card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.service-read-more {
    font-size: 13px;
    font-weight: 700;
    color: #0060ad;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.service-read-more:hover {
    gap: 12px;
    color: #004a85;
}

/* Harmonisation du bouton PHP (si besoin de réutiliser la classe) */
.btn-primary {
    background-color: #0060ad !important;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

/* Swiper Bullet colors */
.swiper-pagination-bullet-active {
    background: #0060ad !important;
}


.contact-cta-section {
    padding: 30px 0 60px; /* Espace équilibré */
}

.contact-wrapper {
    background: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #004a85 100%);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 96, 173, 0.2);
    position: relative;
    overflow: hidden;
}

/* Petit effet décoratif en arrière-plan */
.contact-wrapper::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-badge {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.contact-text-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.contact-text-content .highlight {
    color: #00d2ff; /* Un bleu plus clair pour l'accentuation */
}

/* Style de la boîte d'appel */
.contact-card-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.contact-card-link:hover {
    transform: scale(1.03);
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-phone {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .contact-wrapper {
        padding: 40px 30px;
        text-align: center;
    }
    .contact-text-content {
        margin-bottom: 30px;
    }
    .contact-info-box {
        justify-content: center;
    }
}

.bg-light-soft { background-color: #fcfdfe; }

.blog-horizontal-card {
    background: #fff;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.blog-horizontal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 96, 173, 0.12);
}

.blog-image-container {
    overflow: hidden;
}

.blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-horizontal-card:hover .blog-image-container img {
    transform: scale(1.1);
}

.blog-badge-top {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
}

.blog-title-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-title-link:hover {
    color: var(--primary-color);
}

.blog-text-muted {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.btn-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.btn-read-more:hover {
    color: #004a85;
    border-bottom-color: var(--primary-color);
}

.blog-meta-top {
    color: #a0a0a0;
    letter-spacing: 0.5px;
}

/* Fix mobile */
@media (max-width: 576px) {
    .blog-image-container {
        height: 200px !important;
    }
}