.bouton-flottant-accueil {
    /* Positionnement Fixe */
    position: fixed; /* Reste visible même en faisant défiler la page */
    top: 20px;       /* Distance du haut de la fenêtre */
    right: 20px;     /* Distance du côté droit de la fenêtre */
    z-index: 1000;   /* S'assure qu'il est au-dessus de tout autre contenu */

    /* Style du Bouton */
    padding: 10px 15px;
    background-color: #007bff; /* Couleur bleue (à adapter à votre charte) */
    color: white;
    text-decoration: none; /* Enlève le soulignement du lien */
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ajoute de la profondeur */
    transition: background-color 0.3s;
}


.site-logo {
    position: absolute !important;
    top: 0px !important;
    left: 10px !important;
    width: 80px !important;
    height: auto !important;
    z-index: 1000 !important;
}

/* ================================================= */
/* VARIABLES (À ASSUMER EXISTANTES DANS style_global.css)*/
:root {
    --color-dark-blue: #0D1A39;
    --color-red: #B03A40;
    --color-light-blue: #3A70B0;
    --color-white: #ffffff;
    --color-grey-light: #f9f9f9;
    --color-body-text: #444;
}
.hero-contact {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
}

.hero-contact h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-contact p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* --- 2. Section Coordonnées (Grille) --- */
.coordonnees {
    padding: 60px 0;
    background-color: var(--color-grey-light);
}

.contact-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap; /* Pour la réactivité */
}

.contact-item {
    flex-basis: 30%; /* Pour afficher 3 éléments par ligne sur grand écran */
    min-width: 280px;
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--color-red); /* Icône Rouge Tacc */
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--color-dark-blue);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--color-body-text);
    line-height: 1.5;
}

.contact-item .horaires {
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* --- 3. Formulaire de Contact Général --- */
.formulaire-section {
    padding: 60px 0;
    background-color: var(--color-white);
}

.formulaire-section h2 {
    text-align: center;
    color: var(--color-dark-blue);
    margin-bottom: 10px;
}

.sous-titre {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-body-text);
    font-size: 1.1rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark-blue);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-red);
    outline: none;
    box-shadow: 0 0 5px rgba(176, 58, 64, 0.3);
}

.contact-form textarea {
    resize: vertical; /* Autorise le redimensionnement vertical uniquement */
}

/* Bouton (réutilise le style général s'il existe) */
.btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #9C3338;
}

/* --- 4. Section Carte --- */
.carte-section {
    padding: 60px 0;
    background-color: var(--color-grey-light);
    text-align: center;
}

.carte-section h2 {
    color: var(--color-dark-blue);
    margin-bottom: 30px;
}

.carte-embed {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 1.2rem;
    border-radius: 8px;
    overflow: hidden;
}
.carte-embed iframe{
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Réactivité --- */
@media (max-width: 768px) {
    .site-logo {
        position: absolute !important;
    top: 10px !important;
    left: 100px !important;
    width: 100px !important;
    height: auto !important;
    z-index: 1000 !important;
    
    }
    
    .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        flex-basis: 100%;
        width: 90%;
    }

        /* ================================================= */
/* RESPONSIVE DESIGN : Menu Hamburger pour Mobile */
/* ================================================= */
/* 1. Cache le menu par défaut */
    .menu-principal ul {
        display: none; /* Cache la liste de liens */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Doit être la hauteur de votre en-tête */
        left: 0;
        background-color: var(--color-dark-blue); /* Couleur de fond du menu déroulant */
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    /* 2. Style des liens déroulants */
    .menu-principal ul li {
        text-align: left;
        padding: 10px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu-principal ul li:last-child {
        border-bottom: none;
    }

    .menu-principal ul li a {
        color: var(--color-white);
        display: block;
        padding: 10px 0;
    }
    
    /* 3. Affiche le menu lorsque la classe 'open' est active (via JS) */
    .menu-principal.open ul {
        display: flex; 
    }

    /* 4. Affiche le bouton Hamburger */
    .menu-toggle {
        display: block; /* Rend le bouton visible sur mobile */
        cursor: pointer;
        padding: 10px 0;
        color: var(--color-white); /* Couleur des barres */
        font-size: 24px;
        line-height: 1;
        /* Aligner le bouton à droite dans l'en-tête */
        margin-left: auto; 
    }
    
    /* Si votre en-tête a une classe 'header' ou 'navbar' */
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Cache le texte du bouton si vous utilisez un symbole */
    .menu-toggle span {
        display: none;
    }

    /* Style des barres de l'icône (Facultatif, si vous utilisez 3 barres dessinées) */
    /* Alternativement, on utilise le caractère Unicode ☰ (U+2630) */
    .menu-toggle::before {
        content: "\2630"; /* Caractère Unicode pour le symbole Hamburger */
    }
    
    /* Changement de l'icône en 'X' à l'ouverture (Optionnel) */
    .menu-toggle.active::before {
        content: "\2715"; /* Caractère Unicode pour le symbole X */
}
}
