:root {
    --primary-color: #a679b8;
    --secondary-color: #ffffff;
    --dark-color: #333;
    --bg-light: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- NAVIGATION --- */
/* --- LOGO --- */
.logo-img {
    max-height: 70px;
    width: auto;
    display: block;
}

/* --- NAVIGATION PRINCIPALE --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: var(--primary-color);
    color: white;
    position: relative;
    z-index: 1000;
    height: 100px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative; /* Indispensable pour le positionnement du sous-menu */
}

.nav-links li a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    padding: 10px 5px;
    font-weight: 500;
    transition: 0.3s;
    white-space: nowrap;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.nav-links li a:hover {
    opacity: 0.8;
}

/* --- BOUTON RÉSERVER --- */
.btn-reserver-nav {
    background: white !important;
    color: var(--primary-color) !important;
    padding: 8px 18px !important;
    border-radius: 5px;
    margin-left: 10px;
    font-weight: bold !important;
}

/* --- STYLE DU SOUS-MENU (DESKTOP) --- */
.submenu {
    position: absolute;
    top: 100%; /* Se place juste sous le lien parent */
    left: 0;
    background: white; /* Fond blanc pour corriger le bug visuel */
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Ombre pour la lisibilité */
    border-radius: 0 0 5px 5px;
    display: none; /* Caché par défaut */
    z-index: 2000;
}

.submenu-item {
    width: 100%;
}

.submenu-item a {
    color: var(--text-dark) !important; /* Texte noir sur fond blanc */
    padding: 10px 20px !important;
    margin: 0 !important;
    display: block !important;
    width: 100%;
    font-size: 0.9rem !important;
    text-align: left;
}

.submenu-item a:hover {
    background: #f4f4f4;
    color: var(--primary-color) !important;
}

/* Affichage du sous-menu au survol (Desktop) */
.dropdown:hover .submenu {
    display: block;
}

/* --- MOBILE & RESPONSIVE (1150px) --- */
@media screen and (max-width: 1150px) {
    .menu-toggle {
        display: block !important;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
    }

    .nav-links {
        display: none; /* Masqué au départ */
        flex-direction: column;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 20px 0;
        height: auto;
    }

    .nav-links.active {
        display: flex; /* Affiché quand on clique sur le burger */
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        padding: 15px 20px;
        justify-content: center;
        font-size: 1.1rem;
    }

    /* Style du sous-menu en mode Mobile */
    .submenu {
        position: static; /* On le remet dans le flux normal */
        width: 100%;
        background: rgba(0,0,0,0.1); /* Fond légèrement plus sombre que le violet */
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }

    .submenu-item a {
        color: white !important; /* Retour au blanc pour le mobile */
        text-align: center;
        padding-left: 0 !important;
        background: transparent;
    }

    /* Affichage du sous-menu en mobile via le clic JS */
    .dropdown.active .submenu {
        display: block;
    }

    .btn-reserver-nav {
        margin: 20px auto;
        width: 80%;
        text-align: center;
    }
}
/* --- HERO SECTION --- */
/* --- SECTION HERO --- */
/* --- SECTION HERO CORRIGÉE --- */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('../../images/chauffeur.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center; /* Centre horizontalement le bloc contenu */
    text-align: center;      /* Centre le texte à l'intérieur du bloc */
    padding: 0 5%;
}


/* Modifiez uniquement cette partie dans votre fichier style.css */

.hero-content h1 {
    color: white;
    /* Correction : min (2rem), valeur fluide (5vw), max (4rem) */
    font-size: clamp(2rem, 5vw, 3rem); 
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    letter-spacing: 2px;
    max-width: 100%;
}

.hero-content .highlight {
    color: var(--primary-color);
    display: inline-block; /* CHANGEMENT ICI : inline-block au lieu de block */
    font-size: 0.8em;
    margin-top: 10px; /* Petit espace si besoin */
}

.hero-subtitle {
    display: block; /* On le réactive car il est présent sur la capture */
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* --- BOUTONS --- */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center; /* Centre les boutons sur la ligne */
}

.btn-primary, .btn-secondary {
    padding: 15px 40px;
    border-radius: 50px; /* Forme pilule parfaite */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-secondary {
    background-color: transparent; /* Fond transparent comme sur l'image */
    color: white;
    border: 2px solid #ffffff; /* Bordure blanche fine */
}

.btn-secondary:hover {
    background-color: white;
    color: #333;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column; /* Empile les boutons sur mobile */
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 80%; /* Boutons plus larges sur mobile */
    }
}



/* --- RESPONSIVE --- */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Cache le menu sur mobile par défaut */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li { margin: 10px 0; }
    .menu-toggle { display: block; }

    .hero-content h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
}


/* --- SERVICES --- */
.services {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

/* Petit trait décoratif sous le titre */
.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}



.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Cartes un peu plus larges */
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Ombre très légère */
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

/* Effet de survol professionnel */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(166, 121, 184, 0.15); /* Ombre aux couleurs de la marque */
    border-color: var(--primary-color);
}

.icon-box {
    font-size: 3rem; /* Icônes un peu plus grandes */
    color: var(--primary-color);
    margin-bottom: 25px;
    background: #f8f4f9; /* Cercle de fond très discret pour l'icône */
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: 0.3s;
}

.service-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #333;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.service-card p strong {
    color: #444; /* Met en valeur les villes pour le SEO */
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .services h2 {
        font-size: 2rem;
    }
    
    .services-container {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
    }
}

/* Styles de base pour l'exemple */


/* --- Conteneur des cartes (Flexbox pour l'alignement horizontal) --- */
.services-container {
    display: flex;
    justify-content: center;
    gap: 30px; /* Espace entre les cartes */
    flex-wrap: wrap; /* Permet de passer à la ligne sur mobile */
}

/* --- La Carte Service --- */
.service-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Légère ombre pour le relief */
    width: 300px; /* Largeur fixe pour l'équilibre */
    transition: transform 0.3s ease; /* Petit effet au survol */
}

.service-card:hover {
    transform: translateY(-5px);
}

/* --- LE CERCLE VIOLET (Comme sur l'image) --- */
.icon-box {
    width: 80px;
    height: 80px;
    background-color: #A679B8; /* Violet de l'image */
    color: #fff; /* Icône blanche */
    border-radius: 50%; /* Rend le fond parfaitement rond */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px auto; /* Centre le cercle et met de l'espace en dessous */
    font-size: 2.2rem; /* Taille de l'icône à l'intérieur */
}

/* --- Titres et Textes --- */
.service-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive pour Mobile --- */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        width: 100%;
        max-width: 400px;
    }
}



/* --- SECTION À PROPOS PREMIUM --- */
.about-premium {
    padding: 100px 10%;
    background-color: #ffffff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image avec badge */
.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0px #a679b8; /* Décalage violet élégant */
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #a679b8;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

/* Texte */
.about-text {
    flex: 1;
}

.about-text .subtitle {
    color: #a679b8;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    margin-bottom: 30px;
}

.about-features li {
    margin-bottom: 12px;
    color: #444;
    font-weight: 500;
}

.about-features i {
    color: #a679b8;
    margin-right: 10px;
}

/* Bouton Contour */
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #a679b8;
    color: #a679b8;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #a679b8;
    color: white;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image img {
        box-shadow: 10px 10px 0px #a679b8;
    }
    
    .about-features {
        display: inline-block;
        text-align: left;
    }
}




.cta-luxury {
    position: relative;
    padding: 100px 5%;
    background: linear-gradient(135deg, #6a3093 0%, #a679b8 100%); /* Dégradé violet riche */
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Petit effet décoratif en arrière-plan */
.cta-luxury::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Bouton Effet Verre (Blanc plein) */
.btn-glass {
    background: white;
    color: #6a3093;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-glass:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* Bouton Contour Blanc */
.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: white;
    color: #a679b8;
}

/* Mobile */
@media (max-width: 768px) {
    .cta-content h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
}



/* --- SECTION TÉMOIGNAGES --- */
.testimonials {
    padding: 100px 5%;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: #a679b8;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fcfaff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.testimonial-card:hover {
    border-color: #a679b8;
    transform: translateY(-5px);
}

.stars {
    color: #f1c40f; /* Couleur Or pour les étoiles */
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #a679b8;
}

.client-details h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.client-details span {
    color: #a679b8;
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonials { padding: 60px 5%; }
}




/* --- SECTION STATS --- */
.stats-section {
    padding: 80px 5%;
    background: #2a1b35; /* Un violet très sombre, presque noir */
    color: white;
    text-align: center;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 2.5rem;
    color: #a679b8; /* Votre violet signature */
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #a679b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Effet de texte dégradé */
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .stat-number { font-size: 2.5rem; }
}



/* --- SECTION GALERIE LUXE --- */
.luxury-gallery {
    padding: 100px 5%;
    background-color: #fff;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grille d'images élégante */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 400px;
    gap: 15px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.large {
    grid-column: span 2;
}

.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
}

.overlay-text span {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Engagements */
.commitments {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 50px;
}

.commitment-item {
    flex: 1;
}

.commitment-item i {
    font-size: 2rem;
    color: #a679b8;
    margin-bottom: 20px;
}

.commitment-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.commitment-item p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item.large { grid-column: span 1; }
    .commitments { flex-direction: column; }
}



/* --- FOOTER --- */
.main-footer {
    background-color: #1a1a1a; /* Noir profond */
    color: #ffffff;
    padding: 80px 5% 20px;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #a679b8; /* Violet signature */
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #a679b8;
}

.footer-col p {
    line-height: 1.8;
    color: #bbb;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #a679b8;
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    color: #a679b8;
}

/* Réseaux Sociaux */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #a679b8;
    transform: translateY(-3px);
}

/* Bas de page */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    color: #777;
    font-size: 0.85rem;
}

.legal-links a {
    color: #777;
    text-decoration: none;
    margin-left: 20px;
}

.legal-links a:hover {
    color: #a679b8;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .legal-links a {
        margin: 0 10px;
    }
}






:root {
    --primary-color: #a679b8;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-soft: #fcfaff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-experience {
    padding: 120px 5%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif; /* Une police moderne */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header de section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 700;
}

.title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-top: 10px;
}

/* Grille */
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Cartes Modernes */
.commitment-card {
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #eee;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alignement à gauche pour plus de modernité */
    text-align: left;
}

.commitment-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(166, 121, 184, 0.1);
}

/* Icones stylisées */
.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--bg-soft);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.commitment-card:hover .icon-wrapper {
    background: var(--primary-color);
    color: white;
    border-radius: 50%; /* L'icône s'arrondit au survol */
}

.commitment-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.commitment-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .luxury-experience {
        padding: 80px 5%;
    }
    .title {
        font-size: 2rem;
    }
    .commitment-card {
        padding: 30px;
    }
}


.locations-section {
    padding: 100px 5%;
    background-color: #1a1a1a; /* Fond sombre pour trancher avec le reste de la page */
    color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-header p {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.location-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-col h3 i {
    color: var(--primary-color);
}

.location-col ul {
    list-style: none;
    padding: 0;
}

.location-col ul li {
    padding: 8px 0;
    color: #ccc;
    font-size: 1.05rem;
    transition: 0.3s;
    cursor: default;
}

.location-col ul li:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.location-footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
}

.location-footer strong {
    color: var(--primary-color);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .locations-section { padding: 60px 20px; }
    .locations-grid { text-align: center; }
    .location-col h3 { justify-content: center; }
}

/* --- SECTION "POURQUOI NOUS CHOISIR" --- */
.choisir-nous-section {
    padding: 100px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.choisir-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.choisir-card {
    position: relative;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: white;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.choisir-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(166, 121, 184, 0.3);
}

/* --- LIENS D'IMAGES RÉELLES POUR LE TEST --- */
.card-excellence { 
    background-image: url('../../images/service-vtc-premium.jpg'); 
}
.card-ponctualite { 
    background-image: url('../../images/ponctualite-Garantie.jpg'); 
}
.card-discretion { 
    background-image: url('../../images/discretion-totale.jpg'); 
}

/* --- OVERLAY PLUS SOMBRE POUR LA LISIBILITÉ --- */
.choisir-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.icon-overlay {
    position: relative;
    padding-top: 50px;
    z-index: 2;
}

.icon-overlay i {
    font-size: 3.5rem;
    color: #c096e4; /* Violet plus lumineux comme sur l'image */
    filter: drop-shadow(0 0 10px rgba(166, 121, 184, 0.5));
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 25px;
    z-index: 2;
    text-align: center;
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.card-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
}


.locations-section {
    padding: 80px 20px;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* En-tête stylisé */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.header-line {
    width: 60px;
    height: 3px;
    background: #c9a0dc; /* Or Premium */
    margin: 0 auto 20px;
}

.section-header p {
    color: #888;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Conteneur des mots-clés en mode "Badges" */
.locations-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* Style du Badge individuel */
.city-badge {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 50px; /* Forme pilule très moderne */
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-badge i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: #c9a0dc;
    transition: transform 0.3s ease;
}

/* Effets au survol */
.city-badge:hover {
    background: #1a1a1a; /* Fond noir au survol */
    color: #ffffff;
    border-color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.city-badge:hover i {
    transform: scale(1.2);
    color: #c9a0dc;
}

/* Adaptabilité Mobile */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .locations-flex {
        gap: 8px;
    }
    
    .city-badge {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}














    /* --- Style Global du Footer --- */
.main-footer {
    background-color: #1a1a1a; /* Noir profond */
    color: #ffffff;
    padding: 80px 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

/* --- Colonnes --- */
.footer-col h3 {
    color: #c9a0dc; /* Doré */
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #c9a0dc;
}

.footer-col p {
    line-height: 1.8;
    color: #bbb;
    font-size: 0.95rem;
}

/* --- Logo et Réseaux --- */
.footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Si le logo est noir, le passe en blanc */
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #c9a0dc;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #c9a0dc;
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* --- Navigation --- */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-col ul li a:hover {
    color: #c9a0dc;
    padding-left: 5px;
}

.footer-col ul li a::before {
    content: '\f105'; /* Chevron FontAwesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 0.8rem;
    color: #c9a0dc;
}

/* --- Contact & QR Code --- */
.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info i {
    color: #c9a0dc;
    width: 20px;
}

.qr-wrapper {
    background: #fff;
    padding: 10px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 10px;
}

/* --- Footer Bottom --- */
.footer-bottom {
    margin-top: 60px;
    padding: 25px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: #888;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
}

.legal-links a:hover {
    color: #c9a0dc;
}

.creator-logo img {
    vertical-align: middle;
    margin-left: 5px;
    filter: grayscale(1) opacity(0.6);
    transition: 0.3s;
}

.creator-logo:hover img {
    filter: grayscale(0) opacity(1);
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .legal-links a {
        margin: 0 10px;
    }
}

