 /* Structure de la section */
    .hero-section {
        position: relative;
        overflow: hidden;
    }

    .hero-single {
        position: relative;
        padding: 100px 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        min-height: 600px;
    }

    /* Overlay pour garantir la lisibilité du texte blanc */
    .hero-single::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
        z-index: 1;
    }

    .hero-single .container {
        position: relative;
        z-index: 2;
    }

    /* Typographie */
    .hero-title {
        font-size: 52px;
        font-weight: 800;
        color: #fff;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-title strong {
        color: #000; /* Accentuation sur Rennes */
    }

    .hero-sub {
        display: block;
        font-size: 22px;
        font-weight: 500;
        color: #000;
        margin-top: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-desc {
        color: #ddd;
        margin: 20px 0 30px;
        font-size: 18px;
        max-width: 90%;
        line-height: 1.6;
    }

    /* Badges de fonctionnalités */
    .hero-features {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 35px;
    }

    .feature {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px); /* Effet moderne vitré */
        padding: 10px 18px;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        transition: 0.3s;
    }

    .feature:hover {
        background: #000;
        transform: translateY(-3px);
    }

    .feature i {
        margin-right: 8px;
        color: #000;
        transition: 0.3s;
    }
    
    .feature:hover i {
        color: #fff;
    }

    /* Boutons */
    .hero-btn {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .theme-btn {
        padding: 15px 30px;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    /* Image de droite */
    .hero-img img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }

    /* MOBILE */
    @media(max-width:768px){
        .hero-single {
            padding: 60px 0;
            text-align: center;
            min-height: auto;
        }
        .hero-single::before {
            background: rgba(0,0,0,0.7); /* Overlay plus sombre sur mobile */
        }
        .hero-title { font-size: 34px; }
        .hero-desc { font-size: 16px; margin: 15px auto; }
        .hero-features { justify-content: center; }
        .hero-btn { justify-content: center; }
        .hero-img { margin-top: 40px; }
    }
    .hero-booking-form {
        background: rgba(255, 255, 255, 0.05); /* Effet vitré */
        backdrop-filter: blur(15px);
        padding: 40px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .form-header h2 {
        color: #fff;
        font-weight: 800;
        margin-bottom: 5px;
        font-size: 24px;
    }

    .form-header p {
        color: #ffcc00;
        font-size: 14px;
        margin-bottom: 30px;
    }

    .input-group-custom {
        position: relative;
        display: flex;
        align-items: center;
    }

    .input-group-custom i {
        position: absolute;
        left: 15px;
        color: #ffcc00; /* Icônes en jaune taxi */
        font-size: 14px;
    }

    .input-group-custom .form-control {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: #fff !important;
        padding: 12px 15px 12px 45px;
        border-radius: 10px;
        width: 100%;
        transition: 0.3s;
    }

    .input-group-custom .form-control:focus {
        border-color: #ffcc00 !important;
        background: rgba(255, 255, 255, 0.15) !important;
        box-shadow: none;
    }

    /* Style du bouton de calcul */
    .btn-calc {
        background: #ffcc00;
        color: #000;
        border: none;
        width: 100%;
        padding: 15px;
        border-radius: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .btn-calc:hover {
        background: #ffcc00;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
    }

    /* Placeholder blanc transparent */
    ::placeholder { color: rgba(255,255,255,0.5) !important; }

    @media(max-width: 768px) {
        .hero-booking-form {
            padding: 25px;
            margin-top: 30px;
        }
    }
#desc_place option {
    color: #000 !important;
}
/* Style du conteneur de résultat (Effet Vitré) */
.result-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 20px;
    animation: fadeIn 0.5s ease-out;
}

/* Badge de majoration (Texte Jaune) */
.badge-status {
    display: inline-block;
    color: #ffcc00;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 4px;
}

/* Grille Distance/Durée */
.result-info-grid {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin-bottom: 20px;
}

.info-item {
    color: #fff;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item i {
    color: #ffcc00;
}

/* Wrapper du prix et des boutons injectés */
.price-display-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Style des boutons "Réserver" générés par le JS */
/* On cible les boutons .btn-reserver (voir modif JS plus bas) */
.btn-reserver {
    background: #ffcc00 !important;
    color: #000 !important;
    border: none !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    transition: 0.3s all ease;
    width: 100%;
    font-size: 14px;
}

.btn-reserver:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
    background: #fff !important; /* Devient blanc au survol pour le contraste */
}

/* Texte du prix */
.price-value {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}



 /* Section Accueil - Cohérence avec Choose Area */
    .home-box {
        background: #fdfdfd; /* Un blanc très légèrement cassé */
        padding: 100px 0;
    }

    /* Badge de titre identique à Choose Area */
    .site-title-tagline {
        color: #ffcc00; /* Jaune pour faire le lien */
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 14px;
        display: inline-block;
        margin-bottom: 15px;
    }

    .site-title {
        font-size: 42px;
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1.2;
    }

    .site-title span {
        color: #ffcc00;
    }

    /* Boîtes de service améliorées */
    .info-box {
        background: #ffffff;
        padding: 40px 30px;
        border-radius: 20px; /* Même arrondi que vos images */
        border: 1px solid #eee;
        height: 100%;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        z-index: 1;
    }

    .info-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        border-color: #ffcc00;
    }

    .info-box i {
        font-size: 45px;
        color: #ffcc00;
        margin-bottom: 25px;
        display: inline-block;
        /* Petit effet d'arrière-plan comme dans Choose Area */
        background: rgba(255, 204, 0, 0.1);
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 15px;
    }

    .info-box h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #1a1a1a;
        text-transform: uppercase;
    }

    .info-box p {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 0;
    }

    @media(max-width: 991px) {
        .home-box { padding: 60px 0; }
        .info-box { margin-bottom: 20px; }
    }




     .choose-area {
        background: #111111; /* Fond plus profond */
        padding: 100px 0;
        color: #fff;
        overflow: hidden;
    }

    /* En-tête de section */
    .site-title-tagline {
        color: #ffcc00; /* Jaune pour le contraste */
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .site-title {
        font-size: 45px;
        font-weight: 800;
        line-height: 1.1;
        color: #fff;
        margin-bottom: 20px;
    }

    .site-title span {
        color: #ffcc00;
    }

    .main-desc {
        color: #999;
        font-size: 17px;
        line-height: 1.8;
        max-width: 90%;
    }

    /* Cartes de fonctionnalités */
    .choose-content-wrapper {
        padding-left: 20px;
    }

    .choose-item {
        display: flex;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
        padding: 35px 30px;
        border-radius: 20px;
        margin-bottom: 25px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.08);
        position: relative;
        z-index: 1;
    }

    .choose-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: scale(1.02) translateX(10px);
        border-color: #ffcc00;
    }

    .choose-item-icon {
        min-width: 70px;
        height: 70px;
        background: #ffcc00; /* Icône sur fond jaune pour flasher */
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 25px;
        box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
    }

    .choose-item-icon img {
        width: 35px;
        height: 35px;
        /* Si vos SVG sont noirs, ils resteront noirs sur le fond jaune, c'est très élégant */
    }

    .choose-item-info h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #fff;
    }

    .choose-item-info p {
        margin-bottom: 0;
        color: #bbb;
        font-size: 15px;
        line-height: 1.7;
    }

    .choose-count {
        position: absolute;
        right: 30px;
        bottom: 10px;
        font-size: 60px;
        font-weight: 900;
        color: rgba(255, 204, 0, 0.05); /* Chiffre géant discret */
        z-index: -1;
        transition: 0.5s;
    }

    .choose-item:hover .choose-count {
        color: rgba(255, 204, 0, 0.12);
        transform: translateY(-10px);
    }

    /* Image principale avec effet de reflet */
    .choose-img {
        position: relative;
    }

    .choose-img img {
        width: 100%;
        border-radius: 30px;
       
    }

    @media(max-width: 991px) {
        .choose-area { padding: 80px 0; }
        .choose-content-wrapper { padding-left: 0; margin-top: 40px; }
        .site-title { font-size: 34px; }
        .choose-item { padding: 25px; }
    }



     .testimonial-area {
        background: #1a1a1a;
        padding: 100px 0;
        color: #fff;
    }

    /* Style du titre */
.site-title-tagline {
        color: #ffcc00;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: block;
        margin-bottom: 10px;
    }

    /* Carte de témoignage */
    .testimonial-single {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 40px 30px;
        margin: 15px; /* Espace pour l'ombre du slider */
        transition: all 0.4s ease;
        position: relative;
    }

    .testimonial-single:hover {
     
        background: rgba(255, 255, 255, 0.06);
        transform: translateY(-10px);
    }

    /* Photo de l'auteur */
    .testimonial-author-img {
        margin-bottom: 20px;
    }

    .testimonial-author-img img {
        width: 70px !important; /* Forcer la taille dans Owl Carousel */
        height: 70px !important;
        border-radius: 50%;
        border: 2px solid #ffcc00;
        object-fit: cover;
    }

    .testimonial-author-info h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
        color: #fff;
    }

    .testimonial-author-info p {
        color: #ffcc00;
        font-size: 14px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    /* Citation */
    .testimonial-quote {
        position: relative;
        z-index: 1;
    }

    .testimonial-quote-icon {
        position: absolute;
        top: -10px;
        right: 0;
        font-size: 40px;
        color: rgba(255, 204, 0, 0.1);
        z-index: -1;
    }

    .testimonial-quote p {
        color: #ccc;
        font-style: italic;
        line-height: 1.7;
        font-size: 15px;
    }

    /* Étoiles */
    .testimonial-rate {
        margin-top: 20px;
        color: #ffcc00; /* Jaune taxi */
        font-size: 13px;
    }