  /* --- BASES & RESET --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Montserrat', sans-serif; overflow-x: hidden; }

        /* --- HEADER & NAVIGATION --- */
        header {
            background: #fff;
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        .navbar {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-list {
            display: flex;
            align-items: center;
            list-style: none;
            width: 100%;
            justify-content: center;
        }
        .nav-item { padding: 0 20px; }
        .nav-item a {
            text-decoration: none;
            color: #333;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: 0.3s;
        }
        .nav-item a:hover, .nav-item a.active { color: #b59461; }
        .logo-item img { height: 70px; display: block; padding: 0 20px; }
        .logo-mobile { display: none; }

        /* --- SLIDER HERO SECTION --- */
        .slider-container {
            position: relative;
            width: 100%;
            height: 85vh; /* Hauteur du slider */
            overflow: hidden;
            background-color: #000;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            background-size: cover;
            background-position: center;
        }

        .slide.active { opacity: 1; }

        /* Overlay sombre pour la lisibilité */
        .slide::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 6vw, 3.5rem);
            margin-bottom: 20px;
            line-height: 1.2;
            text-transform: uppercase;
        }

        .hero-content p {
            font-size: clamp(0.9rem, 3vw, 1.2rem);
            margin-bottom: 30px;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(to right, #c2a679, #8e7345);
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            border-radius: 4px;
            text-transform: uppercase;
            transition: transform 0.3s ease;
        }

        .cta-button:hover { transform: scale(1.05); }

        /* --- NAVIGATION DU SLIDER (Points) --- */
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 3;
        }
        .dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.5);
            margin: 0 8px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }
        .dot.active { background: #b59461; width: 30px; border-radius: 10px; }

        /* --- RESPONSIVE MOBILE --- */
        @media screen and (max-width: 992px) {
            .logo-item { display: none; }
            .logo-mobile { display: block; flex: 1; }
            .logo-mobile img { height: 55px; }
            .navbar { justify-content: space-between; }
            .menu-toggle { display: block; cursor: pointer; }
            .menu-toggle .bar { width: 25px; height: 3px; margin: 5px; background: #333; display: block; transition: 0.3s; }
            
            .nav-list {
                position: absolute; top: 75px; left: -100%; flex-direction: column;
                width: 100%; background: #fff; transition: 0.5s; box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-list.active { left: 0; }
            .nav-item { padding: 20px; text-align: center; width: 100%; border-bottom: 1px solid #eee; }
            
            .slider-container { height: 100vh; } /* Full screen sur mobile */
        }

        /* Animation Burger */
        .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
        .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }










           /* --- SECTION SERVICES MODERNE & FINE --- */
.premium-services {
    padding: 100px 10% ;
    background-color: #ffffff;
    color: #333;
}

.section-intro {
    text-align: center;
    margin-bottom: 70px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    color: #b59461;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
}

.divider {
    width: 50px;
    height: 1px;
    background: #b59461;
    margin: 20px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes pour un look aéré */
    gap: 60px 40px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    transition: all 0.4s ease;
    border-bottom: 1px solid #f0f0f0; /* Ligne fine de séparation */
}

.service-item:hover {
    border-bottom-color: #b59461;
    transform: translateX(10px);
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #e0e0e0; /* Numéro discret */
    margin-right: 25px;
    margin-top: -5px;
    transition: color 0.3s ease;
}

.service-item:hover .service-number {
    color: #b59461;
}

.service-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
}

.service-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
}

/* --- RESPONSIVE --- */
@media screen and (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 colonne sur tablette/mobile */
        gap: 30px;
    }
    
    .premium-services {
        padding: 70px 5%;
    }
}









   /* --- SECTION À PROPOS (ASYMÉTRIQUE) --- */
.about-luxury {
    padding: 100px 5%;
    background-color: #fcfaf7; /* Un blanc cassé très léger pour différencier les sections */
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 20px 20px 0px #b59461; /* Effet de cadre décalé moderne */
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #1a1a1a;
    color: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.experience-badge .years {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #b59461;
}

.experience-badge .text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 15px 0 25px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    margin-bottom: 40px;
}

.check-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 0.95rem;
    color: #333;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b59461;
    font-weight: bold;
}

.signature .name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #b59461;
}

/* --- RESPONSIVE --- */
@media screen and (max-width: 992px) {
    .about-container {
        flex-direction: column; /* On empile sur tablette/mobile */
        text-align: center;
        gap: 50px;
    }
    
    .about-image img {
        box-shadow: 10px 10px 0px #b59461; /* Réduction de l'ombre sur mobile */
    }

    .check-list li {
        text-align: left;
    }

    .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 15px;
    }
}



   /* --- SECTION TÉMOIGNAGES --- */
.testimonials {
    padding: 100px 5%;
    background-color: #1a1a1a; /* Fond noir pour créer un contraste fort avec le reste du site */
    color: #fff;
}

.testimonials .section-intro h2 {
    color: #fff;
}

.testimonials .eyebrow {
    color: #b59461;
}

.testimonials-container {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #252525;
    padding: 40px;
    border-radius: 2px;
    position: relative;
    transition: transform 0.3s ease;
    border-top: 3px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-top-color: #b59461;
    background: #2a2a2a;
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: #b59461;
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.2;
}

.feedback {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    color: #ddd;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b59461;
}

.client-origin {
    font-size: 12px;
    color: #888;
}

/* --- RESPONSIVE --- */
@media screen and (max-width: 992px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}



  /* --- SECTION APPEL À L'ACTION (CTA) --- */
.cta-contact {
    position: relative;
    height: 500px;
    background: url('../../images/Chauffeurs VTC.webp') no-repeat center center fixed; /* L'effet 'fixed' crée le parallaxe */
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Overlay sombre pour faire ressortir le texte */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cta-box {
    text-align: center;
    color: #fff;
    max-width: 700px;
    border: 1px solid rgba(181, 148, 97, 0.4); /* Bordure dorée transparente */
    padding: 60px 40px;
    background: rgba(26, 26, 26, 0.4); /* Flou optionnel derrière le texte */
    backdrop-filter: blur(5px); /* Effet de verre dépoli moderne */
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin: 15px 0;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-phone {
    background: #b59461;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-phone:hover {
    background: #8e7345;
    transform: scale(1.05);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #1a1a1a;
}

/* --- RESPONSIVE --- */
@media screen and (max-width: 768px) {
    .cta-contact { height: auto; padding: 80px 0; }
    .cta-box h2 { font-size: 2rem; }
    .contact-actions { flex-direction: column; }
    .cta-contact { background-attachment: scroll; } /* Le parallaxe est souvent désactivé sur mobile pour la performance */
}





   /* --- SECTION FLOTTE --- */
.fleet-section {
    padding: 100px 5%;
    background-color: #fff;
}

.fleet-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.fleet-card {
    background: #fcfaf7;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.fleet-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1); /* Zoom élégant au survol */
}

.fleet-info {
    padding: 30px;
    text-align: center;
}

.fleet-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.fleet-info p {
    color: #b59461;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.fleet-specs {
    display: flex;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* --- RESPONSIVE --- */
@media screen and (max-width: 850px) {
    .fleet-grid {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
    }
    
    .fleet-image {
        height: 250px;
    }
}








  /* --- SECTION GALERIE DESTINATIONS --- */
.destinations-gallery {
    padding: 100px 5%;
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 images alignées sur PC */
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0.9;
    transition: background 0.4s ease;
}

.overlay-content {
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.overlay-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.overlay-content p {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #b59461;
}

/* Animations au survol */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(181, 148, 97, 0.7) 0%, rgba(0,0,0,0.2) 100%);
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media screen and (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 sur tablettes */
    }
}

@media screen and (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 seule colonne sur mobile */
    }
    .gallery-item {
        height: 300px;
    }
}









   /* --- SECTION FAQ --- */
.faq-section {
    padding: 100px 5%;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #b59461;
}

.faq-question span {
    font-size: 1.5rem;
    color: #b59461;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Classe active pour le JavaScript */
.faq-item.active .faq-answer {
    max-height: 200px; /* Ajuster selon le texte */
}

.faq-item.active .faq-question span {
    transform: rotate(45deg); /* Le + devient un x */
}

/* Cache la réponse par défaut */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
}

/* Style quand la question est ouverte */
.faq-item.active .faq-answer {
    max-height: 500px; /* Une valeur assez haute pour contenir le texte */
}

/* Animation du petit "+" qui devient un "x" ou tourne */
.faq-item.active .faq-question span {
    transform: rotate(45deg);
    color: #b59461;
}





















  /* --- FOOTER LUXURY --- */
.luxury-footer {
    background-color: #0f0f0f; /* Noir profond */
    color: #ffffff;
    padding-top: 80px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grille principale */
.footer-top .footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}

/* Colonne Marque */
.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.brand-desc {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #b59461;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: bold;
    font-size: 12px;
}

.social-links a:hover {
    background: #b59461;
    color: #fff;
    transform: translateY(-3px);
}

/* Titres des colonnes */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #b59461;
    margin-bottom: 30px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 1px;
    background: #b59461;
}

/* Liens */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #b59461;
    padding-left: 8px;
}

/* Contact */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item .icon {
    color: #b59461;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
}

/* Barre de fin */
.footer-bottom {
    background: #0a0a0a;
    padding: 25px 0;
    border-top: 1px solid #1a1a1a;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.8rem;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #b59461;
}

/* --- RESPONSIVE --- */
@media screen and (max-width: 992px) {
    .footer-top .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media screen and (max-width: 600px) {
    .footer-top .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .bottom-flex {
        flex-direction: column;
        gap: 15px;
    }
}




    .contact-item {
        display: flex;
        align-items: center; /* Aligne l'icône et le texte sur la même ligne */
        margin-bottom: 12px;
    }
    .contact-item .icon {
        margin-right: 12px;
        display: flex;
        align-items: center;
    }
    .contact-item p {
        margin: 0;
        font-size: 0.95rem;
    }
    .contact-item a {
        text-decoration: none;
        color: inherit;
    }

    /* Style pour la zone des mots-clés */
.footer-keywords-section {
    background-color: #000;
    padding: 30px 0;
    border-top: 1px solid #1a1a1a; /* Ligne du haut */
}

.footer-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-badge {
    color: #666;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid #111;
    border-radius: 4px;
    background: #050505;
    transition: all 0.3s ease;
}

.city-badge:hover {
    color: #fff;
    border-color: #444;
    background: #111;
}

/* Style pour la zone du bas (Crédits) */
.footer-bottom {
    background-color: #0a0a0a; 
    padding: 25px 0;
    border-top: 1px solid #222; /* Ligne de séparation entre les deux sections */
    color: #999;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

.footer-container.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-credits strong {
    color: #fff;
    font-weight: 600;
}

.footer-logo {
    width: 65px;
    height: auto;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.legal-links a {
    text-decoration: none;
    color: #999;
}

.legal-links a:hover {
    color: #fff;
}

/* Couleur dorée/bronze pour l'espace Pro */
.pro-link {
    font-weight: bold;
    color: #b59461 !important; 
}

@media (max-width: 900px) {
    .footer-container.bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}


    .footer-title {
    /* On force les propriétés du h4 pour ce paragraphe */
    display: block;
    font-family: 'Playfair Display', serif; /* Ou votre police de titre */
    color: #c4a47c; /* Votre couleur dorée */
    font-size: 1.2rem; /* Ajustez selon votre besoin */
    font-weight: 600;
    text-transform: capitalize; /* Ou uppercase selon votre préférence */
    margin-bottom: 20px;
    position: relative;
}

/* Si vous aviez un petit trait sous le titre comme sur la photo */
.footer-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #c4a47c;
    margin-top: 10px;
}


  /* On cible le h1 ET le h2 à l'intérieur de .hero-content */
    .hero-content h1, 
    .hero-content h2 {
        font-family: 'Playfair Display', serif !important;
        font-size: clamp(1.8rem, 6vw, 3.5rem) !important;
        margin-bottom: 20px;
        line-height: 1.2;
        text-transform: uppercase;
        color: #ffffff; /* Assurez-vous que la couleur est blanche comme sur l'image */
        font-weight: 700; /* Pour l'aspect gras de votre capture */
        text-align: center;
    }

    /* Optionnel : petit ajustement pour le texte en dessous */
    .hero-content p {
        font-size: 1.2rem;
        color: #f8f8f8;
    }

/* Styles spécifiques pour mobile */
@media (max-width: 768px) {
    .slider-container {
        height: 60vh !important; /* Réduit la hauteur du slider (60% de l'écran au lieu de 100) */
        min-height: 400px; /* Sécurité pour que ce ne soit pas trop petit non plus */
    }

    .slide {
        height: 100% !important;
        display: flex !important;
        align-items: center !important;    /* Centre verticalement */
        justify-content: center !important; /* Centre horizontalement */
        text-align: center;
        padding: 0; 
    }

    .hero-content {
        margin: 0 !important; /* Supprime les marges qui décalent le texte */
        padding: 0 20px;
        width: 100%;
    }

    .hero-content h1, 
    .hero-content h2 {
        font-size: clamp(1.5rem, 8vw, 2rem) !important;
        margin-bottom: 15px;
        text-shadow: 1px 1px 5px rgba(0,0,0,0.3); /* Améliore la lisibilité sur fond clair */
    }
}




/* --- Style pour la section SEO Boost --- */
.seo-boost {
    padding: 50px 30px;
    background-color: #fcfcfc; /* Un blanc cassé très léger */
    border-left: 5px solid #d4af37; /* Une ligne dorée pour le rappel luxe/Provence */
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Une ombre très discrète */
    border-radius: 0 8px 8px 0;
}

.seo-boost h2 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.seo-boost p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8; /* Plus d'espace entre les lignes pour la lecture */
    margin-bottom: 15px;
}

.seo-boost p:last-child {
    margin-bottom: 0;
}

/* Mise en valeur des mots-clés sans être agressif */
.seo-boost strong {
    color: #222;
    font-weight: 600;
}

/* Responsive pour tablettes et mobiles */
@media (max-width: 768px) {
    .seo-boost {
        margin: 20px;
        padding: 30px 20px;
        border-left: none;
        border-top: 4px solid #d4af37; /* La ligne passe en haut sur mobile */
        border-radius: 8px;
    }
    
    .seo-boost h2 {
        font-size: 1.4rem;
    }
}







/* Style Global de la section */
.reservation-section {
    padding: 40px 20px;
    background-color: #fff; /* Fond blanc pour le contraste */
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Le Formulaire en Grid (2 colonnes sur PC) */
.reservation-form {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deux colonnes égales */
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px; /* Évite le zoom automatique sur iPhone */
    width: 100%;
    box-sizing: border-box; /* Très important pour éviter le débordement */
}

/* Champs qui prennent toute la largeur */
.full-width {
    grid-column: span 2;
}

/* Bouton de soumission */
.btn-submit {
    grid-column: span 2;
    background-color: #000; /* Noir Luxe */
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #333;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .reservation-form {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
    }

    .full-width, .btn-submit {
        grid-column: span 1;
    }

    .form-container {
        padding: 20px;
        margin: 10px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
}