   /* 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;
        color: #fff !important;
        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: #1E3A8A;
        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: #1E3A8A; /* 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: #1E3A8A !important;
        background: rgba(255, 255, 255, 0.15) !important;
        box-shadow: none;
    }

    /* Style du bouton de calcul */
    .btn-calc {
        background: #1E3A8A;
        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: #1E3A8A;
        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: #1E3A8A;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    border-bottom: 2px solid #1E3A8A;
    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: #1E3A8A;
}

/* 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: #1E3A8A !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); }
}

   .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: #1E3A8A; /* 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: #1E3A8A;
    }

    /* 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: #1E3A8A;
    }

    .info-box i {
        font-size: 45px;
        color: #1E3A8A;
        margin-bottom: 25px;
        display: inline-block;
        /* Petit effet d'arrière-plan comme dans Choose Area */
        background: rgba(30, 58, 138, 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; }
    }



    .cta-area {
    padding: 80px 0;
    background: #fdfdfd;
}

.cta-wrapper {
    background: linear-gradient(135deg, #1E3A8A 0%, #11224f 100%);
    padding: 60px;
    border-radius: 40px; /* Plus arrondi pour un look moderne */
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.3);
}

/* Cercles décoratifs comme sur l'image */
.cta-wrapper::before, .cta-wrapper::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 0;
}
.cta-wrapper::before { width: 300px; height: 300px; top: -150px; right: -50px; }
.cta-wrapper::after { width: 150px; height: 150px; bottom: -70px; left: 10%; }

.cta-content { position: relative; z-index: 1; }

.cta-subtitle {
    color: #ffd700; /* Jaune or pour attirer l'oeil sur la disponibilité */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.cta-title {
    color: #ffffff !important;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 500px;
}

.cta-actions { position: relative; z-index: 1; }

.cta-number {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    transition: 0.3s;
}

.icon-pulse {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: pulse-white 2s infinite;
}

.theme-btn.btn-white {
    background: #ffffff;
    color: #1E3A8A !important;
    padding: 18px 40px;
    border-radius: 15px; /* Arrondi cohérent avec vos boîtes de service */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.theme-btn.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #f8f9fa;
}

@keyframes pulse-white {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media(max-width: 991px) {
    .cta-wrapper { padding: 40px 30px; border-radius: 30px; }
    .cta-title { font-size: 28px; }
    .cta-number { font-size: 22px; justify-content: center; }
}

    /* Section Pourquoi Nous Choisir - Version Premium Lumineuse */
    .choose-area {
        background: linear-gradient(to bottom, #ffffff, #f9f9f9); /* Dégradé léger */
        padding: 100px 0;
        color: #1a1a1a;
        overflow: hidden;
    }

    .choose-area .site-title-tagline {
        color: #1E3A8A;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .choose-area .site-title {
        font-size: 42px;
        font-weight: 800;
        line-height: 1.2;
        color: #1a1a1a;
        margin-bottom: 25px;
    }

    .choose-area .site-title span {
        color: #1E3A8A;
    }

    .main-desc {
        color: #555;
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 40px;
        border-left: 3px solid #1E3A8A;
        padding-left: 20px;
    }

    /* Cartes de fonctionnalités */
    .choose-item {
        display: flex;
        align-items: flex-start;
        background: #ffffff;
        padding: 35px 30px;
        border-radius: 20px;
        margin-bottom: 25px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: 1px solid #efefef;
        position: relative;
        box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    }

    .choose-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(30, 58, 138, 0.1);
        border-color: #1E3A8A;
    }

    /* Petite barre d'accent au survol */
    .choose-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 20%;
        height: 60%;
        width: 4px;
        background: #1E3A8A;
        border-radius: 0 5px 5px 0;
        opacity: 0;
        transition: 0.3s;
    }

    .choose-item:hover::before {
        opacity: 1;
    }

    .choose-item-icon {
        min-width: 65px;
        height: 65px;
        background: #1E3A8A; /* Fond plein pour plus d'impact */
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 25px;
        box-shadow: 0 8px 15px rgba(30, 58, 138, 0.2);
    }

    .choose-item-icon i {
        font-size: 26px;
        color: #ffffff;
    }

    .choose-item-info h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #1a1a1a;
    }

    .choose-item-info p {
        margin-bottom: 0;
        color: #666;
        font-size: 15px;
        line-height: 1.6;
    }

    /* Numérotation stylisée */
    .choose-count {
        position: absolute;
        right: 30px;
        bottom: 15px;
        font-size: 45px;
        font-weight: 900;
        color: rgba(30, 58, 138, 0.04);
        user-select: none;
    }

    /* Design Image avec décor */
    .choose-img-wrapper {
        position: relative;
        padding: 20px;
    }

    .choose-img-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 80%;
        height: 80%;
        border: 10px solid rgba(30, 58, 138, 0.05);
        border-radius: 30px;
        z-index: -1;
    }

    .choose-img img {
        width: 100%;
        border-radius: 30px;
        
    }

    @media(max-width: 991px) {
        .choose-area { padding: 70px 0; }
        .choose-item { padding: 25px; }
        .choose-img-wrapper { margin-top: 50px; }
    }



      .testimonial-area {
        background: #1a1a1a;
        padding: 100px 0;
        color: #fff;
    }

    /* Style du titre */
.site-title-tagline {
        color: #1E3A8A;
        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 #1E3A8A;
        object-fit: cover;
    }

    .testimonial-author-info h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
        color: #fff;
    }

    .testimonial-author-info p {
        color: #1E3A8A;
        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: #1E3A8A; /* Jaune taxi */
        font-size: 13px;
    }

        :root {
        --primary-blue: #1E3A8A;
        --accent-yellow: #ffd700;
        --text-dark: #1a1a1a;
        --bg-body: #ffffff;
    }

    .destinations-area {
        background: var(--bg-body);
        padding: 60px 0;
        font-family: 'Poppins', sans-serif;
    }

    .section-header {
        margin-bottom: 40px;
        text-align: center;
    }

  

    .main-title {
        font-size: 32px;
        font-weight: 800;
        color: var(--text-dark);
        margin: 0;
    }

    .title-separator {
        width: 50px;
        height: 3px;
        background: var(--accent-yellow);
        margin: 15px auto 0;
    }

    /* Grille Simplifiée */
    .destinations-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }

    .city-link {
        display: flex;
        align-items: center;
        background: #f9f9f9; /* Fond très léger */
        padding: 15px 20px;
        border-radius: 10px;
        text-decoration: none !important;
        transition: all 0.3s ease;
        border: 1px solid #eee;
    }

    /* Icône Adresse en Bleu Fixe */
    .city-icon {
        background: var(--primary-blue);
        color: #ffffff;
        width: 38px;
        height: 38px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .city-name {
        font-weight: 600;
        color: #444;
        font-size: 15px;
        flex-grow: 1;
    }

    .arrow-icon {
        color: #bbb;
        font-size: 11px;
        transition: 0.3s;
    }

    /* Effet Hover minimaliste avec touche de jaune */
    .city-link:hover {
        background: #ffffff;
        border-color: var(--accent-yellow); /* Bordure devient jaune */
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transform: translateY(-3px);
    }

    .city-link:hover .arrow-icon {
        color: var(--primary-blue);
        transform: translateX(3px);
    }

    @media (max-width: 768px) {
        .main-title { font-size: 26px; }
    }

    .site-title-tagline {
        background: var(--accent-yellow);
        color: #1E3A8A;
        padding: 6px 18px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }