/* Header principal */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #1a1a1a;
    color: #fff;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Logo */
.logo-container { display: flex; align-items: center; gap: 8px; }

/* Menu Desktop */
.nav-menu { display: flex; gap: 20px; }
.nav-menu a { color: #fff; text-decoration: none; font-weight: 500; }

/* Bouton Téléphone */
.phone-btn { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    background: #f5b932; 
    padding: 8px 15px; 
    border-radius: 50px; 
    text-decoration: none; 
    color: #000; 
    font-weight: bold; 
}

/* Menu Toggle (Hamburger) */
.menu-toggle { display: none; background: none; border: none; color: white; cursor: pointer; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .menu-toggle { display: block; font-size: 1.8rem; }
    
    /* Cacher le menu texte sur desktop mais garder le numéro visible */
    .phone-number { display: block; }
    
    /* Sur mobile, on ajuste le menu déroulant */
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #222;
        flex-direction: column;
        text-align: center;
        z-index: 1000;
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { padding: 15px; border-bottom: 1px solid #333; }
}



    .footer-container {
        display: flex;
        /* "space-between" répartit l'espace entre le copyright (gauche) et les liens (droite) */
        justify-content: space-between; 
        align-items: center;
        flex-wrap: nowrap;
        width: 100%; /* S'assure que le conteneur prend toute la largeur */
    }

    .copyright, .legal-links {
        margin: 0;
        white-space: nowrap;
        display: flex;
        align-items: center;
    }

    /* Optionnel : ajout d'un espacement entre le copyright et le reste si nécessaire */
    .copyright {
        margin-right: 20px;
    }

    .jinfo-link {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        margin-left: 10px; /* Espace le logo JINFO du texte "Développé par" */
    }


       .hero-section {
        background: none !important;
        
        min-height: auto !important; /* Ajuste la hauteur si nécessaire */
    }
    .about-hero { 
    padding: 100px 20px; 
    text-align: center; 
    color: #fff;
    
    /* Ajout de l'image de fond */
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/Taxi-Cahors.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
    /* Général */
    main { line-height: 1.6; color: #333; }
    h2 { font-size: 2.2rem; margin-bottom: 40px; color: #2c3e50; }

   /* Amélioration de la section About */
    .about-content { 
        padding: 80px 5%; 
        max-width: 1200px; 
        margin: auto; 
    }

    .about-text {
        font-size: 1.15rem;
        color: #555;
    }

    /* Style du contenu venant de la BDD */
    .about-text h2 {
        text-align: left;
        margin-bottom: 20px;
    }

    /* Ajout d'un effet visuel sur la section */
    .commitments { 
        padding: 80px 5%; 
        background: linear-gradient(180deg, #f9f9f9 0%, #fff 100%); 
        text-align: center; 
    }

    /* Amélioration des cartes de promesses */
    .commitment-item { 
        padding: 40px; 
        background: #fff; 
        border-radius: 20px; 
        transition: all 0.4s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Ombre douce */
    }

    /* Commitments (Pourquoi nous choisir) */
    .commitments { padding: 80px 5%; background: #f9f9f9; text-align: center; }
    .commitments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
    .commitment-item { 
        padding: 40px; 
        background: #fff; 
        border-radius: 20px; 
        transition: all 0.3s ease;
        border-bottom: 4px solid transparent;
    }
    .commitment-item:hover { 
        transform: translateY(-10px); 
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom-color: #f5b932;
    }
    .commitment-item i { font-size: 3rem; color: #f5b932; margin-bottom: 20px; display: block; }
    
    @media (max-width: 768px) {
        .about-grid, .commitments-grid { grid-template-columns: 1fr; }
        .about-hero h1 { font-size: 2rem; }
    }




      .hero-section { background: none !important; min-height: auto !important; }
    /* 1. Style du Hero */
.hero-page {
    height: 350px;
    /* Supprimez la ligne background ici si vous voulez que le style inline prenne le dessus */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

    /* 2. Style du contenu et Sidebar */
    .content-box { 
        background: #fff;
        padding: 40px;
        border-radius: 20px;
        border: 1px solid #eee;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .sidebar-widget { 
        background: #f8f9fa;
        padding: 30px;
        border-radius: 20px;
        border: 1px solid #eee;
    }

    .entry-content p { line-height: 1.8; color: #444; font-size: 1.1rem; }
    
    .btn-gold {
        background: #f5b932;
        color: #000;
        font-weight: 700;
        padding: 15px;
        border-radius: 12px;
        transition: 0.3s;
    }
    
    .btn-gold:hover { background: #e0a800; transform: translateY(-2px); }
    /* Style moderne pour h2 */
h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    
    display: inline-block; /* La ligne s'ajuste à la longueur du titre */
}

/* Style élégant pour h3 */
h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-top: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 15px;
   
}








    .contact-hero { padding: 80px 20px; background: linear-gradient(135deg, #fdfdfd 0%, #f4f4f4 100%); text-align: center; }
        .hero-section {
        background: none !important;
        
        
    }
        .contact-section { padding: 60px 5%; max-width: 1100px; margin: auto; }
        .contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }
        
        .section-title { color: #2d3436; margin-bottom: 30px; text-align: center; }

        /* Style des cartes */
        .info-card { 
            background: #fff; 
            border: 2px solid #f5b932; 
            padding: 25px; 
            border-radius: 15px; 
            text-align: center; 
            margin-bottom: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: 0.3s;
        }
        .info-card i { font-size: 2rem; color: #f5b932; margin-bottom: 10px; }
        .info-card h3 { margin: 10px 0; font-size: 1.2rem; }
        .info-card p { font-weight: 600; color: #555; }
        .info-card a { color: #2d3436; text-decoration: none; }

        /* Formulaire */
        .contact-form-container { background: #fff; padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid #eee; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
        .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; }
        
        .btn-submit { width: 100%; padding: 15px; background: #2d3436; color: #fff; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.3s; }
        .btn-submit:hover { background: #f5b932; color: #000; }

        @media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }








         :root { --primary-gold: #f5b932; }
         .hero-section { background: none !important; min-height: auto !important; }
        .hero-reservation {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/taxi_bg_reservation.jpg');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            color: white;
        }

        .booking-card {
            background: #ffffff;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin-top: -50px;
        }

        .form-label { font-weight: 600; color: #333; margin-bottom: 8px; }

        .form-control-lg {
            border: 1px solid #ced4da;
            background-color: #fcfcfc;
            border-radius: 12px;
            padding: 12px 15px;
        }

        .theme-btn {
            background: #000;
            color: var(--primary-gold);
            border: 2px solid var(--primary-gold);
            padding: 18px;
            font-weight: 800;
            border-radius: 12px;
            transition: 0.3s;
            text-transform: uppercase;
        }

        .theme-btn:hover {
            background: var(--primary-gold);
            color: #000;
        }