/* --- VARIABLES --- */
:root {
    --blue-dark: #0a1d37;
    --orange-main: #ff8c00;
    --text-dark: #333333;
    --separator-color: #eee;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- LOGO --- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}

.logo i { font-size: 2.2rem; color: var(--blue-dark); }
.logo span { color: var(--blue-dark); font-size: 1.1rem; }
.logo small { 
    color: var(--orange-main); 
    font-size: 1.3rem; 
    display: block; 
    margin-top: 2px; 
}

/* --- NAVIGATION PRINCIPALE --- */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links > li {
    position: relative;
    display: flex;
    align-items: center;
}

/* Séparateurs "|" (Bureau seulement) */
@media (min-width: 769px) {
    .nav-links > li:not(:last-child)::after {
        content: "|";
        color: var(--separator-color);
        margin: 0 15px;
        font-weight: 300;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--orange-main);
}

/* --- SOUS-MENU (SUBMENU) --- */
.nav-links .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none; /* Caché par défaut */
    background-color: #ffffff;
    min-width: 250px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    border-radius: 0 0 6px 6px;
    border: 1px solid #eee;
    border-top: 3px solid var(--orange-main);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 999;
}

/* Affichage au survol sur Desktop */
@media (min-width: 769px) {
    .nav-links li.dropdown:hover > .submenu {
        display: block;
        animation: fadeInMenu 0.2s ease-out;
    }
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.submenu-item a {
    display: block;
    padding: 12px 20px;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f8f8f8;
}

.submenu-item:last-child a { border-bottom: none; }

.submenu-item a:hover {
    background-color: #fffaf2;
    color: var(--orange-main);
    padding-left: 25px;
}

/* --- BOUTON APPEL --- */


/* --- RESPONSIVE MOBILE --- */
.mobile-menu-btn { 
    display: none; 
    background: none; 
    border: 1px solid var(--orange-main); 
    color: var(--orange-main);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.5rem; 
    cursor: pointer; 
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; order: 2; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active { display: flex; }

    .nav-links li {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-links li::after { display: none; }

    /* Sous-menu sur mobile */
    .nav-links .submenu {
        position: static; /* S'intègre dans le flux */
        display: none;    /* Caché par défaut sur mobile */
        width: 100%;
        box-shadow: none;
        border: none;
        background: #fdfdfd;
        padding-left: 15px;
        margin-top: 5px;
    }

    /* Classe activée par le JS au clic sur mobile */
    .nav-links li.dropdown.open > .submenu {
        display: block;
    }

    .btn-call div { display: none; } /* On ne garde que l'icône sur petit écran */
}
.btn-call {
    background: var(--blue-dark);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-call i { font-size: 1.2rem; color: var(--orange-main); }
.btn-call .call-info span { font-weight: 700; font-size: 0.9rem; display: block; }
.btn-call .call-info small { display: block; font-size: 0.8rem; opacity: 0.9; }

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    nav {
        flex-wrap: wrap; /* Permet le passage à la ligne */
        gap: 15px;
    }

    .logo {
        order: 1; /* Reste en haut à gauche */
    }

    .mobile-menu-btn {
        display: block;
        order: 2; /* Reste en haut à droite */
    }

    /* Le bouton d'appel passe en dessous et prend toute la largeur */
    .btn-call {
        order: 3; 
        width: 100%; 
        justify-content: center; /* Centre le contenu */
        padding: 12px;
        min-height: 55px; /* Optimisé pour le clic tactile */
    }

    .btn-call .call-info {
        display: block !important; /* On force l'affichage du texte sur mobile */
        text-align: left;
    }

    /* On s'assure que le menu mobile s'ouvre au dessus du bouton d'appel si nécessaire */
    .nav-links {
        order: 4;
        width: 100%;
    }
}








/* --- MODIFICATIONS À APPLIQUER --- */
/* --- SECTION HERO (IMAGE DE FOND + TEXTE + FORM) --- */
.hero {
    position: relative;
    background: url('images/toulouse.png') no-repeat center center / cover;
    min-height: 100vh;
    display: flex;
    align-items: center; 
    justify-content: center;
    text-align: center;
    color: white;
    height: auto !important; /* Permet l'extension si le formulaire est long */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 80vh; /* Espace minimal pour le contenu */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* POUSSE LE TEXTE EN HAUT ET LE WIDGET EN BAS */
    padding: 80px 20px 40px 20px;
    box-sizing: border-box;
}

.hero-text {
    margin-top: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

/* --- LE WIDGET DE RÉSERVATION (BLOC BLEU) --- */
.booking-widget {
    background: #06162b; /* Remplace var(--blue-dark) si non défini */
    padding: 25px;
    border-radius: 8px;
    border-bottom: 5px solid #ff8c00; /* Remplace var(--orange-main) */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-top: auto; /* Force la position en bas du flex-container */
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

#reservationForm {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.input-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-group label {
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: white;
}

.input-group input, .custom-select-taxi {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: none;
    height: 48px;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.btn-estimate {
    background: #ff8c00;
    color: white;
    border: none;
    height: 48px;
    padding: 0 25px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    flex: 0 0 auto;
}

.btn-estimate:hover { background: #e67e00; }

/* --- DESIGN DE LA POPUP (MODALE) --- */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    margin: 5vh auto;
    padding: 20px;
    width: 90%;
    max-width: 550px;
    border-radius: 15px;
    position: relative;
    color: #333;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    right: 15px; top: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.badge-tarif {
    background: #007bff;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

.info-summary {
    display: flex;
    justify-content: space-between;
    background: #f1f3f5;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.price-box {
    text-align: center;
    margin-top: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.btn-confirm {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/* --- RESPONSIVE MOBILE & TABLETTE --- */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding-bottom: 20px;
    }

    .hero h1 { font-size: 1.8rem; }
    
    .hero-content {
        padding-top: 60px;
        justify-content: flex-start; /* Sur petit mobile, on laisse couler normalement */
        gap: 30px;
    }

    .booking-widget {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #reservationForm {
        flex-direction: column;
        align-items: stretch;
    }

    .input-group {
        min-width: 100%;
    }

    .btn-estimate {
        width: 100%;
    }
    
    /* Sécurité pour la section suivante */
    .features.container {
        margin-top: 0 !important;
        padding-top: 50px;
    }
}







/* --- Features Section Améliorée --- */
.features {
    padding: 80px 0;
    text-align: center;
    background-color: #fff; /* Fond blanc pur pour détacher du hero */
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--blue-dark);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Petite barre orange sous le titre */
.features h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orange-main);
    margin: 15px auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding-top: 20px;
}

.feature-card {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #eee; /* Bordure légère */
}

/* Effet d'élévation au survol */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: transparent;
}

.feature-card i {
    font-size: 3rem;
    color: var(--orange-main);
    margin-bottom: 25px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--blue-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666; /* Texte un peu plus doux que le noir pur */
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 1.8rem; }
    .booking-widget { grid-template-columns: 1fr; }
}

/* --- Section Services --- */
.services {
    padding: 80px 0;
    background-color: var(--bg-light); /* Fond gris très clair pour alterner avec le blanc */
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header span {
    color: var(--orange-main);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.services-header h2 {
    color: var(--blue-dark);
    font-size: 2.2rem;
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-item {
    background: #fff;
    display: flex;
    align-items: flex-start;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-image {
    background: var(--blue-dark);
    width: 60px;
    height: 60px;
    min-width: 60px; /* Évite que l'icône rétrécisse */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.service-image i {
    color: var(--orange-main);
    font-size: 1.5rem;
}

.service-text h3 {
    color: var(--blue-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-text p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.service-link {
    text-decoration: none;
    color: var(--orange-main);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
}

.service-link:hover {
    gap: 10px; /* Animation flèche qui bouge */
}

/* Ajustement mobile */
@media (max-width: 480px) {
    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .service-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* --- Section FAQ --- */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light); /* Fond gris pour contraster avec la section tarif blanche */
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header span {
    color: var(--orange-main);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.faq-header h2 {
    color: var(--blue-dark);
    margin-top: 10px;
}

.faq-container {
    max-width: 800px; /* Plus étroit pour une meilleure lecture */
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background-color: #fafafa;
}

.faq-question h3 {
    font-size: 1.05rem;
    color: var(--blue-dark);
    font-weight: 600;
}

.faq-question i {
    color: var(--orange-main);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 20px 25px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    /* Pour un effet purement CSS sans JS, on peut laisser le texte visible 
       ou utiliser une petite astuce de masquage si nécessaire */
}

.faq-answer {
    max-height: 0; /* Cache la réponse par défaut */
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    padding: 0 25px; /* On enlève le padding vertical quand c'est fermé */
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Donne une hauteur suffisante */
    padding: 0 25px 20px 25px;
    opacity: 1;
}
.faq-item.active .faq-question i {
    transform: rotate(45deg); /* Transforme le + en x */
    color: var(--blue-dark);
}

.faq-item.active {
    border-color: var(--orange-main);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    user-select: none; /* Empêche la sélection de texte au clic rapide */
}

/* Optionnel : Une petite ligne de séparation */
.faq-item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

/* --- Section CTA Final --- */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue-dark) 0%, #1a2a44 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Décoration subtile en arrière-plan */
.cta-final::before {
    content: '\f1ba'; /* Icône Taxi FontAwesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: -50px;
    bottom: -50px;
    font-size: 20rem;
    opacity: 0.05;
    color: white;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-phone {
    background: var(--orange-main);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.btn-cta-online {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    transition: 0.3s;
}

.btn-cta-phone:hover {
    transform: scale(1.05);
    background: #e67200;
}

.btn-cta-online:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* Grille d'icônes de services à droite */
.cta-fleet .fleet-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.fleet-item {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.fleet-item i {
    font-size: 1.8rem;
    color: var(--orange-main);
    display: block;
    margin-bottom: 10px;
}

.fleet-item span {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile */
@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .cta-buttons {
        justify-content: center;
    }
    .cta-text h2 {
        font-size: 2rem;
    }
}

/* --- Section Témoignages --- */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.testimonials-header h2 {
    color: var(--blue-dark);
    font-size: 2rem;
    margin-bottom: 10px;
}

.rating-stars {
    color: #f1c40f; /* Couleur Or pour les étoiles */
    margin-bottom: 40px;
}

.rating-stars span {
    color: #666;
    margin-left: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    transition: 0.3s;
    border: 1px solid #eee;
}

.testimonial-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.quote-icon {
    color: var(--orange-main);
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}

.client-info strong {
    display: block;
    color: var(--blue-dark);
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--orange-main);
    font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* --- Section Zones d'Intervention --- */
.zones-intervention {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.zones-header {
    text-align: center;
    margin-bottom: 50px;
}

.zones-header h2 {
    color: var(--blue-dark);
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.zones-header h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--orange-main);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.zone-box {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border-bottom: 4px solid #eee;
    transition: 0.3s ease;
}

.zone-box:hover {
    border-bottom-color: var(--orange-main);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.zone-icon {
    font-size: 1.5rem;
    color: var(--orange-main);
    margin-bottom: 15px;
}

.zone-box h3 {
    color: var(--blue-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.zone-box ul {
    list-style: none;
    padding: 0;
}

.zone-box ul li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #f0f0f0;
}

.zone-box ul li:last-child {
    border-bottom: none;
}

.long-distance {
    margin-top: 50px;
    text-align: center;
    background: var(--blue-dark);
    color: white;
    padding: 20px;
    border-radius: 50px;
    font-size: 1rem;
}

.long-distance i {
    color: var(--orange-main);
    margin-right: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .long-distance {
        border-radius: 15px;
        padding: 25px;
    }
}


/* --- Footer Styling --- */
.site-footer {
    background-color: #06162b; /* Votre bleu sombre */
    color: white;
    padding: 70px 0 0 0;
    font-size: 0.9rem;
}

/* Grille principale */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Colonne Logo & Texte */
.footer-about {
    text-align: left;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
}

.logo-footer i { font-size: 1.8rem; color: #ff8c00; }

.footer-about p {
    color: #a5b1c2;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #ff8c00;
    transform: translateY(-3px);
}

/* Titres H3 avec barre orange */
.site-footer h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.site-footer h3::after {
    content: '';
    width: 40px;
    height: 3px;
    background: #ff8c00;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Listes de liens */
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 15px;
}

.site-footer ul li a {
    color: #a5b1c2;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.site-footer ul li a:hover {
    color: #ff8c00;
    transform: translateX(5px);
}

/* Infos Contact Spécifique */
.contact-info li {
    display: flex;
    align-items: flex-start; /* Aligne l'icône en haut si le texte fait 2 lignes */
    gap: 12px;
    color: #a5b1c2;
}

.contact-info i {
    color: #ff8c00;
    font-size: 1.1rem;
    margin-top: 3px;
}

/* Barre de Copyright */
.footer-bottom {
    background: #040d1a;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #6d7d92;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 25px;
}

.legal-links a {
    color: #6d7d92;
    text-decoration: none;
    transition: 0.2s;
}

.legal-links a:hover { color: white; }

/* --- RESPONSIVE TABLETTE (992px) --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

/* --- RESPONSIVE MOBILE (576px) --- */
@media (max-width: 576px) {
    .site-footer {
        text-align: center;
        padding-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr; /* Une seule colonne */
        gap: 40px;
    }

    /* Centre les titres et la barre orange */
    .site-footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Centre les icônes sociales */
    .footer-socials {
        justify-content: center;
    }

    /* Centre le logo */
    .logo-footer {
        justify-content: center;
    }

    /* Centre les items de contact tout en gardant l'icône à côté du texte */
    .contact-info li {
        justify-content: center;
        text-align: left;
    }

    .bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}


@media (max-width: 768px) {
    .hero {
        min-height: auto; /* Laisse le contenu pousser la hauteur */
        padding-top: 60px;
        padding-bottom: 40px;
    }

    #reservationForm {
        flex-direction: column;
        gap: 10px;
    }

    .input-group {
        min-width: 100%;
    }

    .btn-estimate {
        width: 100%;
        margin-top: 10px;
    }
    
    /* On s'assure que la section suivante est bien séparée */
    .features.container {
        margin-top: 0;
        padding-top: 40px;
    }
}

/* --- Page À Propos --- */
.about-hero {
    background: linear-gradient(rgba(10, 29, 55, 0.8), rgba(10, 29, 55, 0.8)), 
                url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&q=80&w=1500');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.about-hero h1 { font-size: 2.5rem; margin-bottom: 15px; }

.about-content { padding: 80px 20px; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-text span {
    color: var(--orange-main);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.about-text h2 {
    color: var(--blue-dark);
    font-size: 2.2rem;
    margin: 15px 0 25px;
}

.about-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Mini Stats */
.stats-mini {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    color: var(--orange-main);
}

.stat-item span {
    font-size: 0.85rem;
    color: #888;
}

/* Section Valeurs */
.values {
    background-color: var(--blue-dark);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.values-header h2 { margin-bottom: 50px; font-size: 2rem; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    padding: 40px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: 0.3s;
}

.value-card:hover { background: rgba(255,255,255,0.1); }

.value-card i {
    font-size: 2.5rem;
    color: var(--orange-main);
    margin-bottom: 20px;
}

.value-card h3 { margin-bottom: 15px; }
.value-card p { opacity: 0.8; font-size: 0.95rem; }

/* Mobile */
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-hero h1 { font-size: 1.8rem; }
    .stats-mini { flex-wrap: wrap; justify-content: center; }
}



/* --- Section Flotte & Équipe --- */
.fleet-team {
    padding: 80px 20px;
}

.fleet-header {
    text-align: center;
    margin-bottom: 50px;
}

.fleet-header span {
    color: var(--orange-main);
    font-weight: 600;
    letter-spacing: 2px;
}

.fleet-header h2 {
    color: var(--blue-dark);
    font-size: 2.2rem;
    margin-top: 10px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.fleet-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.fleet-img {
    background: #f8f9fa;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-img i {
    font-size: 5rem;
    color: #cbd5e0;
}

.fleet-info {
    padding: 30px;
}

.fleet-info h3 {
    color: var(--blue-dark);
    margin-bottom: 15px;
}

.fleet-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.fleet-specs {
    list-style: none;
    display: flex;
    gap: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.fleet-specs li {
    font-size: 0.85rem;
    color: var(--blue-dark);
    font-weight: 600;
}

.fleet-specs i {
    color: var(--orange-main);
    margin-right: 5px;
}

/* Encadré Chauffeurs */
.drivers-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.drivers-icon i {
    font-size: 3.5rem;
    color: var(--blue-dark);
}

.drivers-text h3 {
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.drivers-text p {
    color: #555;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
    .drivers-box {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Section Chiffres Clés --- */
.about-stats {
    padding: 80px 0;
    background: linear-gradient(rgba(10, 29, 55, 0.95), rgba(10, 29, 55, 0.95)), 
                url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&q=80&w=1500');
    background-attachment: fixed; /* Effet parallaxe léger */
    background-size: cover;
    color: white;
    text-align: center;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.stat-card {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange-main);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

.toulouse-love {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.toulouse-love i {
    font-size: 2rem;
    color: #e74c3c; /* Rouge pour le coeur */
    margin-bottom: 15px;
}

.toulouse-love p {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
    .stat-number { font-size: 2.5rem; }
    .about-stats { background-attachment: scroll; } /* Désactive parallaxe sur mobile */
}

/* --- Page Contact --- */
.contact-hero {
    background: var(--blue-dark);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.contact-section {
    padding: 80px 20px;
    margin-top: -50px; /* Effet de chevauchement */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

/* Infos de gauche */
.contact-info-box {
    background: var(--blue-dark);
    color: white;
    padding: 50px;
}

.contact-info-box h2 { margin-bottom: 20px; }

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--orange-main);
    width: 30px;
}

.info-item h3 { font-size: 1rem; margin-bottom: 5px; }
.info-item p { opacity: 0.8; font-size: 0.9rem; }

.social-contact { margin-top: 50px; }
.social-icons { display: flex; gap: 15px; margin-top: 15px; }
.social-icons a {
    color: white;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.1);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: 0.3s;
}
.social-icons a:hover { background: var(--orange-main); }

/* Formulaire de droite */
.contact-form-container {
    padding: 50px;
    background: white;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--blue-dark); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.btn-submit {
    background: var(--orange-main);
    color: white;
    border: none;
    padding: 15px 30px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-submit:hover { background: #e67200; transform: translateY(-2px); }

/* Carte */
.map-container { line-height: 0; }

/* Responsive */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-hero { padding-bottom: 120px; }
}

/* --- Mise à jour du Responsive --- */

@media (max-width: 992px) {
    /* On passe de 2 colonnes à 1 seule colonne */
    .contact-grid { 
        grid-template-columns: 1fr; 
        margin: 0 10px; /* Petit espace sur les côtés pour ne pas coller au bord de l'écran */
    }

    .contact-hero { 
        padding: 60px 20px 100px 20px; 
    }

    /* Réduction des paddings internes pour gagner de la place sur mobile */
    .contact-info-box, 
    .contact-form-container { 
        padding: 30px 20px; 
    }

    .contact-section {
        padding: 40px 10px;
        margin-top: -80px; /* On remonte un peu plus le bloc pour l'effet de chevauchement */
    }
}

@media (max-width: 480px) {
    /* Ajustements spécifiques pour très petits écrans (iPhone SE, etc.) */
    .contact-info-box h2 {
        font-size: 1.5rem;
    }

    .info-item {
        gap: 15px;
        margin-bottom: 20px;
    }

    /* On s'assure que le reCAPTCHA ne dépasse pas de l'écran */
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
    
    .btn-submit {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}





/* --- HERO BREADCRUMB --- */
.breadcrumb-hero {
    background-size: cover !important;
    background-position: center !important;
    padding: 100px 0;
    position: relative;
    color: white;
    text-align: center;
}

.breadcrumb-hero::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    /* Opacité réduite : 0.3 (30%) et 0.1 (10%) */
    background: linear-gradient(45deg, rgba(10, 29, 55, 0.3), rgba(10, 29, 55, 0.1));
}

.breadcrumb-hero .container { position: relative; z-index: 2; }

/* --- SIDEBAR (RIGHT.PHP) --- */
.sidebar-sticky { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 25px; }

.sidebar-widget {
    background: white; border-radius: 15px; padding: 25px;
    box-shadow: var(--shadow); border: 1px solid #eee;
}

.widget-title {
    font-size: 1.2rem; font-weight: 700; color: var(--blue-dark);
    margin-bottom: 20px; padding-bottom: 10px; border-bottom: 3px solid var(--orange-main);
}

/* Bouton Sidebar */
.btn-sidebar {
    display: block; background: var(--orange-main); color: white;
    text-align: center; padding: 12px; border-radius: 8px;
    text-decoration: none; font-weight: 700; transition: 0.3s;
}

.btn-sidebar:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255, 126, 0, 0.3); }

/* Liste Services Sidebar */
.sidebar-services { list-style: none; padding: 0; }
.sidebar-services li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.sidebar-services li a { color: var(--text-dark); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.sidebar-services li a i { color: var(--orange-main); width: 20px; }
.sidebar-services li a:hover { color: var(--orange-main); padding-left: 5px; }

/* --- ARTICLE PRINCIPAL --- */
.article-modern { background: white; padding: 40px; border-radius: 15px; box-shadow: var(--shadow); }
.featured-img-frame img { width: 100%; border-radius: 12px; margin-bottom: 30px; }
.article-content h3 { color: var(--blue-dark); font-size: 1.8rem; margin-bottom: 20px; }
.article-content p { line-height: 1.8; margin-bottom: 20px; }

/* Box Info Spéciale */
.premium-box {
    background: #f0f7ff; border-left: 5px solid var(--blue-dark);
    padding: 25px; border-radius: 8px; margin: 30px 0;
}







/* Amélioration globale des champs */
#resForm .form-group {
    position: relative;
    margin-bottom: 20px;
}

#resForm label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #444;
    font-weight: 600;
}

#resForm .input-icon-wrap {
    position: relative;
}

#resForm .input-icon-wrap i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffcc00; /* Couleur des icônes */
    font-size: 1.1rem;
    transition: 0.3s;
}

#resForm .form-control, #resForm .form-select {
    padding: 12px 15px 12px 45px !important; /* Espace pour l'icône à gauche */
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

#resForm textarea.form-control {
    padding-left: 15px !important; /* Pas d'icône pour le textarea */
}

#resForm .form-control:focus {
    background-color: #fff;
    border-color: #ffcc00;
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.1);
    outline: none;
}

/* Style spécifique pour la vérification mathématique */
.captcha-box {
    background: #fff5d7;
    padding: 15px;
    border-radius: 10px;
    border: 1px dashed #ffcc00;
}

/* Bouton avec effet de pulsation au survol */
.btn-submit-premium {
    background: #ffcc00;
    color: #000;
    font-weight: 800;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-premium:hover {
    background: #000;
    color: #ffcc00;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}


a {
    text-decoration: none; /* Supprime le trait sous le texte */
    color: inherit;        /* Optionnel : le lien prend la couleur du texte parent */
}

/* Optionnel : ajoute un effet au survol si vous le souhaitez */
a:hover {
    text-decoration: none; 
    opacity: 0.8;          /* Par exemple, le lien devient légèrement transparent au survol */
}


.footer-title {
    font-size: 18px; /* adapte selon ton h3 */
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff; /* ou couleur actuelle */
}











   /* Style du Bloc SEO Accueil */
.seo-content {
    padding: 60px 20px;
    background: #ffffff;
}

.seo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.seo-main-text h2 {
    color: #1a1a1a;
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
}

.seo-main-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ff8c00; /* Couleur jaune taxi */
    margin-top: 10px;
}

.seo-main-text .lead {
    font-size: 1.2rem;
    color: #444;
    font-weight: 500;
    margin-bottom: 15px;
}

.seo-main-text p {
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

/* Mini liste d'avantages */
.seo-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.s-feat {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    border: 1px solid #eee;
}

.s-feat i {
    color: #27ae60; /* Vert pour la validation */
    margin-right: 8px;
}

/* Carte latérale */
.seo-side-info .info-card {
    background: #1a1a1a;
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 3rem;
    color: #ff8c00;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .seo-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-main-text h2 {
        font-size: 1.8rem;
    }
    
    .seo-side-info {
        order: -1; /* Affiche la carte au dessus sur mobile pour le contexte */
    }
}



/* Conteneur des boutons dans la carte */
.info-card-actions {
    display: flex;
    flex-direction: column; /* Boutons l'un sur l'autre pour la lisibilité */
    gap: 12px;
    margin-top: 20px;
}

/* Style commun aux boutons de la carte */
.info-card-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.info-card-actions i {
    font-size: 1rem !important; /* Reset de la taille d'icône pour les boutons */
    margin-right: 10px;
    margin-bottom: 0 !important;
    color: inherit !important;
}

/* Bouton Appeler (Jaune/Noir pour le contraste) */
.btn-card-call {
    background-color: #ff8c00;
    color: #1a1a1a;
}

.btn-card-call:hover {
    background-color: #ff8c00;
    transform: translateY(-2px);
}

/* Bouton Réserver (Bordure blanche ou translucide) */
.btn-card-book {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-card-book:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Version Mobile : Boutons côte à côte si besoin */
@media (max-width: 480px) {
    .info-card-actions {
        flex-direction: row;
    }
    .info-card-actions a {
        flex: 1;
        font-size: 0.85rem;
    }
}











