/* =========================================
   1. GLOBAL & RESET
   ========================================= */
:root {
    --primary-blue: #00AEEF;
    --dark-blue: #073566;
    --text-grey: #4a4a4a;
    --white: #ffffff;
    --light-bg: #f8fbfe;
    --font-main: 'Helvetica', 'Arial', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-main);
    color: var(--text-grey);
    line-height: 1.8;
    background-color: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* =========================================
   2. STYLE DU MENU (HEADER)
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
}

/* Logo */
.nav-logo img {
    height: 50px;
    width: auto;
}

/* Menu Desktop */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-blue);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link.active { /* Style pour la page active */
    color: var(--dark-blue);
    font-weight: 700;
}

/* Bouton Contact (Desktop) */
.btn-contact-desktop {
    background-color: var(--dark-blue);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 5px; /* Légèrement arrondi */
    font-weight: 600;
    font-size: 14px;
}
.btn-contact-desktop:hover {
    background-color: var(--primary-blue);
}

/* Éléments Mobile cachés sur Desktop */
.hamburger, .close-menu, .mobile-only-link {
    display: none;
}

/* --- RESPONSIVE MENU (MOBILE) --- */
@media (max-width: 992px) {
    .navbar {
        padding: 15px 20px;
    }

    /* On cache le bouton contact desktop standard */
    .desktop-only-btn { display: none; }

    /* On affiche les liens spécifiques mobile */
    .mobile-only-link { display: block; }

    /* Hamburger */
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1100;
    }
    .bar {
        display: block;
        width: 30px;
        height: 3px;
        margin: 6px auto;
        background-color: #888;
        border-radius: 2px;
    }

    /* Le panneau latéral */
    .nav-menu {
        position: fixed;
        left: -100%; /* Caché à gauche */
        top: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: 100vh;
        text-align: left;
        padding-top: 80px;
        padding-left: 30px;
        transition: 0.4s ease;
        align-items: flex-start;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);

        /* CORRECTION ICI : On met un z-index très haut pour passer devant le hamburger */
        z-index: 2000;
    }

    .nav-menu.active {
        left: 0; /* Visible */
    }

    .nav-item {
        margin: 25px 0;
    }

    .nav-link {
        font-size: 22px;
        color: #000;
        font-weight: 400;
    }

    /* Couleur bleue spécifique pour "Nos Services" sur mobile */
    .nav-link.active-blue {
        color: var(--dark-blue);
        font-weight: 700;
    }

    /* BOUTON FERMER (X) - Carré gris */
    .close-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-family: Arial, sans-serif;
        font-size: 20px;
        color: #333;
        cursor: pointer;
        background: white;
    }

    .close-menu:hover {
        background-color: #f5f5f5;
    }
}

/* =========================================
   3. STYLES DE LA PAGE SERVICES
   ========================================= */
.ci-details-wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

.ci-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 100px 20px;
    scroll-margin-top: 120px;
    position: relative;
}

.ci-bg-white { background-color: #ffffff; }
.ci-bg-grey { background-color: #f8fbfe; }

.ci-col-text {
    flex: 1;
    min-width: 320px;
    padding: 0 60px;
}

.ci-col-img {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.ci-service-img {
    width: 100%;
    max-width: 580px;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 30px !important;
    border: 8px solid #ffffff !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s ease;
}

.ci-service-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 174, 239, 0.2) !important;
}

.ci-detail-title {
    color: #00AEEF;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(0, 174, 239, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
}

.ci-main-title {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 25px 0;
    color: #1a2b3c;
    line-height: 1.2;
}

.ci-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 35px;
    font-weight: 400;
}

.ci-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.ci-list li {
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    color: #444;
    font-size: 15px;
}

.ci-list li::before {
    content: '✔';
    color: #fff;
    background-color: #00AEEF;
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 174, 239, 0.3);
}

.ci-list strong {
    color: #073566;
    font-weight: 700;
}

.ci-btn-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #00AEEF 0%, #008cb5 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.25);
}

.ci-btn-cta::after {
    content: '→';
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.ci-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 174, 239, 0.35);
    color: #fff;
}

.ci-btn-cta:hover::after {
    transform: translateX(5px);
}

.ci-reassurance-wrapper {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.ci-service-info-block {
    background-color: #f0f7fc;
    border: 1px solid #e1eef7;
    border-left: 6px solid #00AEEF;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.ci-service-info-block a {
    color: #073566;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(7, 53, 102, 0.1);
    transition: all 0.3s;
}

.ci-service-info-block a:hover {
    color: #00AEEF;
    border-color: #00AEEF;
}

/* --- RESPONSIVE MOBILE PAGE SERVICES --- */
@media (max-width: 1024px) {
    .ci-section {
        padding: 60px 20px;
        flex-direction: column-reverse;
        text-align: center;
    }
    .ci-section.reverse-mobile, .ci-section {
        flex-direction: column-reverse;
    }
    .ci-col-text {
        padding: 0;
        margin-top: 40px;
        min-width: 100%;
        text-align: left;
    }
    .ci-col-img {
        width: 100%;
        min-width: 100%;
        margin-bottom: 10px;
    }
    .ci-service-img {
        height: 280px;
        max-width: 100%;
    }
    .ci-main-title {
        font-size: 28px;
    }
    .ci-btn-cta {
        width: 100%;
        justify-content: center;
    }
}
/* =========================================
   5. FOOTER (PIED DE PAGE)
   ========================================= */
.main-footer {
    background-color: var(--dark-blue);
    color: #fff;
    font-size: 15px;
}

/* Conteneur principal 3 colonnes */
.footer-top {
    display: flex;
    flex-wrap: wrap; /* Permet de passer à la ligne sur mobile */
    justify-content: space-between;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 280px; /* Largeur mini avant de passer à la ligne */
}

.footer-col h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Colonne 1 : Infos */
.footer-info-item {
    margin-bottom: 15px;
    line-height: 1.6;
}
.footer-info-item a {
    color: var(--primary-blue); /* Le bleu clair de votre image */
    text-decoration: none;
    font-weight: 600;
}
.footer-info-item a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Colonne 2 : Horaires (Tableau simple) */
.hours-table {
    width: 100%;
    max-width: 300px;
    border-collapse: collapse;
}
.hours-table td {
    padding: 6px 0;
    color: #fff;
}
.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
}

/* Colonne 3 : Réseaux Sociaux */
.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 10px; /* Coins arrondis comme sur l'image */
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* Dégradé Instagram (Bleu comme le site) */
.btn-insta {
    /* Dégradé du Bleu clair (#00AEEF) vers le Bleu foncé (#073566) du site */
    background: linear-gradient(135deg, #00AEEF 0%, #073566 100%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Vert WhatsApp (Comme sur la photo) */
.btn-whatsapp {
    background: linear-gradient(135deg, #00AEEF 0%, #073566 100%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* --- BARRE DU BAS (BLANCHE) --- */
.footer-bottom {
    background-color: #fff;
    color: var(--text-grey);
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    border-top: 1px solid #eee;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: var(--dark-blue);
    font-weight: 600;
}

/* Responsive Mobile Footer */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center; /* Centré sur mobile c'est plus joli */
    }

    .hours-table {
        margin: 0 auto; /* Centrer le tableau des heures */
    }

    .social-links {
        justify-content: center;
    }

    .footer-col h3 {
        border-bottom: 2px solid var(--primary-blue);
        display: inline-block;
        padding-bottom: 5px;
    }
}
/* =========================================
   6. PAGE D'ACCUEIL (INDEX) - AMÉLIORÉ
   ========================================= */

/* --- HERO SECTION AVEC SLIDER --- */
.hero-section {
    position: relative;
    height: 80vh; /* Hauteur : 80% de l'écran */
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #738FA7; /* Couleur de fond de secours */
}

/* Le conteneur du Slider d'images */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Chaque image du slider */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; /* Caché par défaut */
    animation: slideShow 15s infinite; /* Animation de 15s */
}

/* Filtre noir par dessus les images pour que le texte reste lisible */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 53, 102, 0.6); /* Bleu foncé transparent */
    z-index: 1;
}

/* Décalage des images (Pour 3 images) */
.slide-1 { animation-delay: 0s; }
.slide-2 { animation-delay: 5s; }
.slide-3 { animation-delay: 10s; }

/* Contenu Texte (par dessus le slider) */
.hero-content {
    position: relative;
    z-index: 2; /* Au dessus des images */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    color: #ffffff;
}

/* Animations d'entrée du texte */
.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s; /* Délai 0.5s */
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s; /* Délai 0.8s */
}

.btn-hero {
    background-color: #00AEEF; /* Bleu clair pour ressortir */
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.1s; /* Délai 1.1s */
}

.btn-hero:hover {
    background-color: #ffffff;
    color: #00AEEF;
    transform: translateY(-5px);
}

.btn-hero svg {
    margin-left: 10px;
    width: 20px;
    height: 20px;
}

/* --- SECTION VIDEO AMÉLIORÉE --- */
.video-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.video-title {
    color: #073566;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); /* Belle ombre portée */
    background: #000;
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9; /* Force le ratio vidéo */
}

/* Conteneur des boutons sous la vidéo */
.video-buttons {
    display: flex;
    justify-content: center; /* Centre les boutons */
    align-items: center;
    gap: 30px; /* Espace entre les deux boutons */
    flex-wrap: wrap; /* Passe à la ligne sur mobile */
}

/* Bouton Appelez-nous (Bleu Foncé) */
.btn-call {
    background-color: #073566;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-call:hover { transform: scale(1.05); background-color: #052c55; }

/* Bouton Devis Gratuit (Bleu Clair) */
.btn-quote-small {
    background-color: #00AEEF;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}
.btn-quote-small:hover { transform: scale(1.05); background-color: #009ad4; }

/* --- SECTION À PROPOS (La Camionnette) --- */
.about-section {
    background-color: #BDE0EB; /* Le fond bleu ciel */
    padding: 80px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex; /* Met le texte et l'image côte à côte */
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    min-width: 320px;
    color: #4a4a4a;
}

.about-text h2 {
    color: #073566;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-text strong {
    color: #073566;
}

/* Liste à puces */
.about-list {
    list-style: none;
    margin-top: 20px;
}

.about-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    font-weight: 600;
    color: #555;
}

.about-list li::before {
    content: '✔';
    color: #00AEEF;
    position: absolute;
    left: 0;
    font-weight: 800;
}

/* Colonne Image */
.about-img-col {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive Mobile pour cette section */
@media (max-width: 768px) {
    .about-container { flex-direction: column; }
    .about-text { text-align: left; }
}

/* =========================================
   7. CAROUSEL SERVICES (ACCUEIL)
   ========================================= */

.ci-carousel-wrapper {
    width: 100%;
    padding: 20px 0;
    position: relative;
    /* On ajoute un fond léger pour détacher le carrousel si besoin */
    background: #fff;
}

.ci-carousel-track {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px; /* Un peu de padding autour pour l'ombre */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #00AEEF #f1f1f1;
}

/* Scrollbar personnalisée (Webkit) */
.ci-carousel-track::-webkit-scrollbar {
    height: 8px;
}
.ci-carousel-track::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.ci-carousel-track::-webkit-scrollbar-thumb {
    background: #00AEEF;
    border-radius: 10px;
}

/* La carte individuelle */
.ci-card {
    position: relative;
    flex: 0 0 auto;
    width: 300px;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none !important;
    background-color: #222;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    scroll-snap-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* L'image de fond */
.ci-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    opacity: 0.65;
    z-index: 1;
}

/* Le dégradé bleu au survol */
.ci-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 174, 239, 0.95), rgba(0, 174, 239, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

/* Contenu texte */
.ci-card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 25px;
    box-sizing: border-box;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.ci-card-icon {
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.ci-card-title {
    color: #fff;
    font-family: 'Helvetica', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.ci-card-subtitle {
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
}

.ci-card-btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.8);
    padding: 8px 20px;
    border-radius: 50px;
    align-self: flex-start;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

/* Effets au survol (Hover) */
.ci-card:hover .ci-card-bg { transform: scale(1.1); opacity: 0.3; }
.ci-card:hover::after { opacity: 1; }
.ci-card:hover .ci-card-content { transform: translateY(-10px); }
.ci-card:hover .ci-card-btn { opacity: 1; transform: translateY(0); background: #fff; color: #00AEEF; }
.ci-card:hover .ci-card-icon { transform: scale(0.9); }

/* =========================================
   ANIMATIONS (KEYFRAMES)
   ========================================= */

/* Animation d'apparition vers le haut */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation du diaporama (Fade In / Fade Out) */
@keyframes slideShow {
    0% { opacity: 0; transform: scale(1.1); }
    5% { opacity: 1; transform: scale(1); } /* Apparition */
    33% { opacity: 1; transform: scale(1); } /* Reste visible */
    38% { opacity: 0; } /* Disparition */
    100% { opacity: 0; }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .hero-title { font-size: 34px; }
    .hero-section { height: auto; padding: 100px 20px; }
    .video-buttons { flex-direction: column; gap: 15px; }
    .btn-call, .btn-quote-small { width: 100%; justify-content: center; }
}

/* =========================================
   8. SECTION "SUR LE TERRAIN" (MAP & INFOS)
   ========================================= */
.terrain-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.terrain-title {
    color: #073566;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* Grille des 4 points forts */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes comme sur l'image */
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

/* === MODIFICATION ICI POUR VOS IMAGES === */
/* On cible l'image à l'intérieur de feature-icon */
.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garde les proportions, pas déformé */
    display: block;
}

.feature-text {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

/* La Carte Google Maps */
.map-container {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    height: 400px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Le CTA du bas (Contactez-nous) */
.terrain-cta {
    margin-top: 40px;
}

.terrain-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.terrain-cta h3 {
    font-size: 36px;
    font-weight: 900;
    color: #073566;
    text-transform: uppercase;
    margin: 0;
}

.terrain-cta a {
    text-decoration: none;
    color: #073566;
    transition: 0.3s;
}

.terrain-cta a:hover {
    color: #00AEEF;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr; /* 1 seule colonne sur mobile */
        gap: 20px;
    }
    .feature-item {
        flex-direction: column; /* Icone au dessus du texte sur petit écran */
        text-align: center;
    }
    .map-container {
        height: 300px;
    }
    .terrain-cta h3 {
        font-size: 28px;
    }
}
/* =========================================
   9. PAGE CONTACT & FORMULAIRE
   ========================================= */
.contact-section {
    padding: 80px 20px;
    max-width: 900px; /* Largeur contenue pour le formulaire */
    margin: 0 auto;
    background: #fff;
}

.contact-title {
    color: #073566;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

/* Grille du formulaire */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colonnes */
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

/* Champs pleine largeur pour adresse, message, etc. */
.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-label span {
    color: red; /* L'astérisque rouge */
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    background-color: #fff;
    transition: border 0.3s;
}

.form-control:focus {
    border-color: #00AEEF;
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Checkboxes (Source & Terms) */
.checkbox-group {
    margin-top: 20px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
}

.checkbox-item input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #073566;
}

.terms-link {
    color: #00AEEF;
    text-decoration: underline;
}

/* Zone Captcha */
.captcha-container {
    margin: 30px 0;
}

/* Bouton Envoyer */
.btn-submit {
    background-color: #073566; /* Bleu foncé */
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #00AEEF;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr; /* 1 colonne sur mobile */
    }
    .form-group.full-width {
        grid-column: span 1;
    }
}

/* Message d'alerte Recrutement (Page Contact) */
.alert-recrutement {
    background-color: #fff3cd; /* Fond jaune très clair */
    border-left: 5px solid #ffc107; /* Bordure orange à gauche */
    color: #856404; /* Texte marron foncé pour la lisibilité */
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.alert-recrutement strong {
    font-weight: 700;
    text-transform: uppercase;
}

/* Style de la barre de séparation dans l'alerte */
.alert-recrutement hr {
    border: 0;
    border-top: 1px solid #ffeeba; /* Une ligne jaune un peu plus foncée que le fond */
    margin: 10px 0; /* Espace au-dessus et en-dessous */
}


/* =========================================
   10. PAGE POLITIQUE DE CONFIDENTIALITÉ
   ========================================= */
.policy-section {
    padding: 80px 20px;
    background: #fff;
}

.policy-container {
    max-width: 800px; /* Largeur idéale pour la lecture */
    margin: 0 auto;
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.8;
}

.policy-title {
    text-align: center;
    color: #073566;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
}

.policy-content h2 {
    color: #073566;
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee; /* Ligne de séparation fine */
    padding-bottom: 10px;
}

.policy-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.policy-content ul {
    list-style: disc; /* Puces rondes classiques */
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-content a {
    color: #00AEEF;
    font-weight: 600;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Petit ajustement Mobile */
@media (max-width: 768px) {
    .policy-title { font-size: 28px; margin-bottom: 40px; }
    .policy-content h2 { font-size: 20px; }
}

/* =========================================
   11. PAGE FAQ (Questions / Réponses)
   ========================================= */
.faq-header {
    background-color: #f8fbfe;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.faq-title {
    color: #073566;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.faq-intro {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.faq-intro a {
    color: #00AEEF;
    font-weight: 700;
}

/* Conteneur principal */
.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Une rangée (Texte + Image) */
.faq-row {
    display: flex;
    align-items: center; /* Centré verticalement */
    gap: 60px;
    margin-bottom: 80px; /* Espace entre les blocs */
}

/* Pour inverser l'ordre (Image à gauche) */
.faq-row.reverse {
    flex-direction: row-reverse;
}

/* Colonne Texte */
.faq-content {
    flex: 1;
}

.faq-question {
    color: #00AEEF;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 30px; /* Espace si plusieurs questions dans le même bloc */
}

.faq-question:first-child {
    margin-top: 0;
}

.faq-answer {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.faq-answer ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Colonne Image */
.faq-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.faq-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    height: 350px; /* Hauteur harmonisée */
}

/* Responsive Mobile */
@media (max-width: 900px) {
    .faq-row, .faq-row.reverse {
        flex-direction: column; /* Tout en colonne sur mobile */
        gap: 30px;
        margin-bottom: 60px;
    }

    .faq-img {
        height: 250px; /* Image moins haute sur mobile */
    }
}