   /* 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: #a78047;
        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: #a78047; /* 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: #a78047 !important;
        background: rgba(255, 255, 255, 0.15) !important;
        box-shadow: none;
    }

    /* Style du bouton de calcul */
    .btn-calc {
        background: #a78047;
        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: #a78047;
        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: #a78047;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    border-bottom: 2px solid #a78047;
    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: #a78047;
}

/* 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: #a78047 !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: #ffffff;
        padding: 80px 0;
        font-family: 'Inter', sans-serif; /* Ou votre police actuelle */
    }

    /* En-tête de section */
    .site-title-tagline {
        color: #a78047;
        font-weight: 600;
        letter-spacing: 3px;
        font-size: 13px;
        display: block;
        margin-bottom: 10px;
    }

    .site-title {
        font-size: 36px;
        font-weight: 700;
        color: #111 !important;
        margin-bottom: 20px;
    }

    .site-title span {
        color: #a78047;
    }

    .title-separator {
        width: 60px;
        height: 3px;
        background: #a78047;
        margin: 0 auto 40px;
    }

    /* Cartes de service */
    .info-card {
        background: #fff;
        padding: 40px 25px;
        border-radius: 12px;
        border: 1px solid #f0f0f0;
        text-align: center;
        transition: all 0.3s ease-in-out;
        height: 100%;
    }

    .info-card:hover {
        border-color: transparent;
        box-shadow: 0 15px 45px rgba(0,0,0,0.06);
        transform: translateY(-5px);
    }

    /* Icônes simplifiées */
.icon-wrapper {
    width: 70px;
    height: 70px;
    background: #fdfaf5;
    color: #a78047;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

    .info-card:hover .icon-wrapper {
        background: #a78047;
        color: #fff;
    }

    .info-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #1a1a1a;
    }

    .info-card p {
        color: #777;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 0;
    }

    @media(max-width: 991px) {
        .home-box { padding: 50px 0; }
        .site-title { font-size: 28px; }
    }


     .about-vtc-section {
        padding: 100px 0;
        background: #fff;
    }

    /* Style de l'image avec le badge */
    .about-img-wrapper {
        position: relative;
        padding-right: 30px;
    }

    .custom-rounded {
        border-radius: 30px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .experience-badge {
        position: absolute;
        bottom: -20px;
        right: 10px;
        background: #a78047;
        color: #fff;
        padding: 20px 30px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(167, 128, 71, 0.3);
    }

    .experience-badge .number {
        display: block;
        font-size: 32px;
        font-weight: 800;
        line-height: 1;
    }

    .experience-badge .text {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Contenu texte */
    .about-content {
        padding-left: 40px;
    }

    .about-desc {
        color: #666;
        line-height: 1.8;
        margin-bottom: 30px;
        font-size: 16px;
    }

    /* Liste de fonctionnalités */
    .feature-list {
        list-style: none;
        padding: 0;
    }

    .feature-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .feature-list li i {
        color: #a78047;
        font-size: 20px;
        margin-right: 15px;
        margin-top: 5px;
    }

    .feature-list li strong {
        display: block;
        font-size: 17px;
        color: #1a1a1a;
        margin-bottom: 5px;
    }

    .feature-list li p {
        margin: 0;
        color: #777;
        font-size: 14px;
    }

    /* Bouton d'appel */
    .theme-btn {
        background: #a78047;
        color: #fff;
        padding: 15px 35px;
        border-radius: 50px;
        text-decoration: none;
        display: inline-block;
        font-weight: 600;
        transition: 0.3s;
    }

    .theme-btn:hover {
        background: #1a1a1a;
        color: #fff;
        transform: translateY(-3px);
    }

    @media(max-width: 991px) {
        .about-content { padding-left: 0; margin-top: 50px; }
        .about-img-wrapper { padding-right: 0; }
    }



     .destinations-section {
        padding: 100px 0;
        background: #fcfcfc;
    }

    .destination-card {
        background: #fff;
        border-radius: 25px;
        overflow: hidden;
        border: 1px solid #f0f0f0;
        transition: all 0.4s ease;
    }

    .destination-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.1);
        border-color: #a78047;
    }

    .dest-img {
        position: relative;
        height: 220px;
        overflow: hidden;
    }

    .dest-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

    .destination-card:hover .dest-img img {
        transform: scale(1.1);
    }

    .price-tag {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px); /* Effet flou moderne */
        color: #1a1a1a;
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .dest-content {
        padding: 30px;
    }

    .dest-content h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #1a1a1a;
    }

    .dest-content p {
        font-size: 14px;
        color: #777;
        margin-bottom: 20px;
    }

    .dest-content p i {
        color: #a78047;
        margin-right: 5px;
    }

    .btn-link {
        color: #a78047;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-flex;
        align-items: center;
        transition: 0.3s;
    }

    .btn-link i {
        margin-left: 10px;
        transition: 0.3s;
    }

    .btn-link:hover {
        color: #1a1a1a;
    }

    .btn-link:hover i {
        transform: translateX(5px);
    }

    .process-stats-section {
        padding: 100px 0;
        background: #ffffff;
    }

    /* Cartes des étapes */
    .step-card {
        padding: 40px 30px;
        text-align: center;
        border-radius: 20px;
        background: #fdfdfd;
        border: 1px solid #f0f0f0;
        transition: 0.3s;
        height: 100%;
    }

    .step-card.active {
        background: #1a1a1a;
        color: #fff;
        border-color: #1a1a1a;
    }

    .step-card.active p {
        color: #ccc;
    }

    .step-number {
        font-size: 50px;
        font-weight: 800;
        color: rgba(167, 128, 71, 0.2);
        line-height: 1;
        margin-bottom: 20px;
    }

    .step-card.active .step-number {
        color: #a78047;
    }

    .step-card h4 {
        font-weight: 700;
        margin-bottom: 15px;
    }

    /* Grille de statistiques */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background: #a78047;
        border-radius: 30px;
        padding: 50px 20px;
        margin-top: 50px;
        color: #fff;
        text-align: center;
    }

    .stat-number {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .stat-item p {
        margin: 0;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.9;
    }

    .border-left-right {
        border-left: 1px solid rgba(255,255,255,0.2);
        border-right: 1px solid rgba(255,255,255,0.2);
    }

    @media(max-width: 768px) {
        .stats-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .border-left-right {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.2);
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding: 30px 0;
        }
    }


     .fleet-services {
        padding: 100px 0;
        background: #f8f9fa;
    }

    /* Grille de services (Textes) */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 25px;
    }

    .service-item-mini {
        display: flex;
        align-items: center;
        background: #fff;
        padding: 12px 15px;
        border-radius: 10px;
        border: 1px solid #eee;
    }

    .service-item-mini i {
        color: #a78047;
        margin-right: 10px;
        font-size: 16px;
    }

    .service-item-mini span {
        font-size: 13px;
        font-weight: 600;
        color: #333;
    }

    /* La Grille d'images Photo */
    .fleet-grid-container {
        position: relative;
        padding-left: 30px;
    }

    .fleet-image-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 200px);
        gap: 15px;
    }

    .grid-img {
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .grid-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .grid-img:hover img {
        transform: scale(1.1);
    }

    /* Effet asymétrique : On agrandit un peu les images alternées */
    .item-1 { border-radius: 40px 15px 15px 15px; }
    .item-4 { border-radius: 15px 15px 40px 15px; }

    /* Badge flottant */
    .overlay-card-mini {
        position: absolute;
        top: 50%;
        left: 0%;
        transform: translateY(-50%);
        background: #1a1a1a;
        color: #fff;
        padding: 15px 20px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        z-index: 10;
    }

    .overlay-card-mini i {
        color: #a78047;
        margin-right: 10px;
    }

    .overlay-card-mini p {
        margin: 0;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
    }

    @media(max-width: 991px) {
        .fleet-grid-container { padding-left: 0; margin-top: 40px; }
        .fleet-image-grid { grid-template-rows: repeat(2, 150px); }
        .overlay-card-mini { display: none; } /* On cache sur mobile pour libérer l'espace */
    }



          .choose-area {
        background: #111111; /* Fond plus profond */
        padding: 100px 0;
        color: #fff;
        overflow: hidden;
    }
    .cta-parallax {
        position: relative;
        padding: 120px 0;
        /* Remplacez l'URL par une image de Mulhouse de nuit ou d'une berline */
        background-image: url('assets/img/night-city-mulhouse.jpg'); 
        background-attachment: fixed; /* Effet Parallaxe */
        background-position: center;
        background-size: cover;
        display: flex;
        align-items: center;
    }

    /* Calque sombre pour rendre le texte lisible */
    .cta-parallax .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75); /* Noir transparent */
        z-index: 1;
    }

    .cta-parallax .container {
        position: relative;
        z-index: 2;
    }

    .cta-text h2 {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.2;
    }

    .text-light-50 {
        color: rgba(255, 255, 255, 0.8);
        font-size: 18px;
    }

    /* Boutons spéciaux pour le fond sombre */
    .cta-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-end;
    }

    .cta-btn-phone {
        font-size: 24px;
        color: #fff;
        text-decoration: none;
        font-weight: 800;
        transition: 0.3s;
    }

    .cta-btn-phone:hover {
        color: #a78047;
    }

    .main-btn {
        background: #a78047;
        color: #fff;
        padding: 18px 40px;
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: 0.3s;
        border: none;
    }

    .main-btn:hover {
        background: #fff;
        color: #1a1a1a;
        transform: scale(1.05);
    }

    @media(max-width: 991px) {
        .cta-parallax { padding: 80px 0; text-align: center; }
        .cta-actions { align-items: center; margin-top: 30px; }
        .cta-text h2 { font-size: 30px; }
    }


     .testimonial-area {
        background: #1a1a1a;
        padding: 100px 0;
        color: #fff;
    }

    /* Style du titre */
.site-title-tagline {
        color: #a78047;
        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 #a78047;
        object-fit: cover;
    }

    .testimonial-author-info h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
        color: #fff;
    }

    .testimonial-author-info p {
        color: #a78047;
        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: #a78047; /* Jaune taxi */
        font-size: 13px;
    }








      .cities-section {
        padding: 80px 0;
        background: #ffffff;
    }

    .city-card {
        background: #f9f9f9;
        padding: 25px 15px;
        border-radius: 15px;
        text-align: center;
        border: 1px solid #eee;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .city-card i {
        color: #a78047;
        font-size: 20px;
        margin-bottom: 10px;
        transition: 0.3s;
    }

    .city-card h4 {
        font-size: 16px;
        font-weight: 700;
        margin: 0;
        color: #333;
    }

    .city-card:hover {
        background: #fff;
        border-color: #a78047;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    /* Mise en avant spéciale pour l'aéroport */
    .highlight-city {
        background: #1a1a1a;
        border-color: #1a1a1a;
    }

    .highlight-city h4 {
        color: #fff;
    }

    .highlight-city i {
        color: #a78047;
    }

    .service-plus {
        font-size: 15px;
        color: #666;
        padding: 15px 25px;
        background: #fdfaf5;
        display: inline-block;
        border-radius: 50px;
        border: 1px dashed #a78047;
    }

    @media(max-width: 768px) {
        .city-card { padding: 15px 10px; }
        .city-card h4 { font-size: 14px; }
    }