/* ------------------- Corps de page ------------------- */
body {
    background-color: white !important;
    color: #003366 !important;
    font-family: Arial, sans-serif;
    margin: 0;
}

/* ------------------- Navigation ------------------- */
nav {
    background-color: white !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 20px;
    height: 100px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

nav .logo img {
    width: 150px;
    height: auto;
    display: block;
}

nav .nav-links {
    display: flex;
    gap: 20px;
    margin-left: 40px;
}

nav .nav-links a {
    color: #003366 !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav .nav-links a:hover {
    color: orange;
}

/* ------------------- Section héros ------------------- */
.hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-text h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 2em;
}

/* -------- Section présentation -------- */

.presentation {
    padding: 40px 20px;
    background: white;
}

/* Largeur + marge interne */
.presentation .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Titre */
.presentation h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
    color: black !important;
}

/* Paragraphe */
.presentation p {
    text-align: justify;
    line-height: 1.7;
    font-size: 18px;
    margin-bottom: 20px;
    color: black !important;
}

/* Forcer le noir même si ton body a une couleur */
.presentation p strong {
    color: black !important;
}

/* ------ Version mobile ------ */
@media (max-width: 768px) {

    .presentation {
        padding: 25px 10px;
    }

    .presentation .container {
        padding: 0 10px;
    }

    .presentation h2 {
        font-size: 24px;
    }

    .presentation p {
        font-size: 16px;
    }
}

/*------lien devis dans l'accueil----------------*/

.btn-devis {
    display: inline-block;
    background-color: #f39c12;  /* orange */
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-devis:hover {
    background-color: #e67e22;  /* orange plus foncé au survol */
}




/*------FAQ QUESTIONS----------------*/

/* --- SECTION FAQ --- */
#faq {
    background: #f2f2f2; /* fond gris clair */
    padding: 60px 20px;
}

#faq h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: black;
}

/* Contenant FAQ fond blanc */
.faq-item {
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto; /* centré */
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

/* Question */
.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    color: black;
    cursor: pointer;
    font-weight: bold;
}

/* + / - */
.faq-toggle {
    font-size: 26px;
    font-weight: bold;
    margin-left: 10px;
}

/* Réponse cachée avec transition */

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    display: none;
    padding-top: 10px;
}

.faq-answer p {
    color: black;
    text-align: justify;
    line-height: 1.6;
    font-size: 18px;
}

/* --- Version mobile --- */
@media (max-width: 768px) {
    #faq h2 {
        font-size: 26px;
    }
    .faq-question {
        font-size: 18px;
    }
    .faq-answer p {
        font-size: 16px;
    }
}

/* ------------------- AVANTAGES ------------------- */

#nos-avantages {
    padding: 40px 20px; /* moins de padding global pour mobile */
    background: white;
    text-align: center;
}

#nos-avantages h2 {
    font-size: 28px; /* légèrement plus petit sur mobile */
    margin-bottom: 40px;
    color: black;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

/* Chaque avantage EMPILÉ VERTICALEMENT sur mobile */
.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px; /* moins d’espace vertical pour mobile */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Numéro dans un cercle */
.advantage-number {
    background-color: orange;
    color: white;
    font-weight: bold;
    width: 45px; /* plus petit pour mobile */
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
    flex-shrink: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Zone de texte */
.advantage-text {
    background-color: #ff9f32;
    padding: 15px 20px; /* moins de padding pour mobile */
    border-radius: 15px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.advantage-text p {
    margin: 0;
    text-align: center;
    line-height: 1.5;
    font-size: 16px;
    color: white;
}

/* TITRE plus grand dans le bloc */
.advantage-text p strong {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

/* ----- Desktop : mosaïque 2 colonnes ----- */
@media (min-width: 1024px) {
    #nos-avantages {
        padding: 60px 40px;
    }

    #nos-avantages h2 {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .advantage-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px; /* espace horizontal et vertical */
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        align-items: stretch; /* tous les blocs mêmes hauteurs */
    }

    .advantage-item {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: stretch;
    }

    .advantage-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .advantage-text {
        padding: 15px 20px;
        border-radius: 15px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .advantage-text p {
        font-size: 15px !important;
        line-height: 1.3 !important;
    }

    .advantage-text p strong {
        font-size: 18px !important;
        margin-bottom: 5px;
    }
}




/* ------------------- SECTION SERVICES ------------------- */
#services {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

#services h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #003366; /* Bleu foncé */
}

/* Grille de services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 services côte à côte */
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* Cartes individuelles de service */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card h3 {
    margin: 20px 15px 10px;
    font-size: 22px;
    color: #003366; /* Bleu foncé */
}

.service-card p {
    margin: 0 15px 10px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}

/* ------------------- RESPONSIVE (Mobile) ------------------- */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 service par ligne sur mobile */
        gap: 20px;
    }

    #services h2 {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 15px;
    }
}


/* ===============================
   PAGE REALISATIONS (RENOVATIONS)
   =============================== */

#realisations {
    padding: 60px 20px;
    background: white;
}

#realisations h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: black;
}

/* BLOC GLOBAL */
.reno-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px auto;
    max-width: 1100px;
    gap: 30px;
}

/* PHOTO */
.reno-block img {
    width: 48%;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* TEXTE */
.reno-text {
    width: 48%;
    background: #f4f4f4;
    padding: 25px;
    border-radius: 15px;
}

.reno-text h3 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 10px;
}

.reno-text p {
    color: #333;
    font-size: 18px;
    line-height: 1.7;
    text-align: justify;
}

/* ALTERNANCE GAUCHE / DROITE */
.reno-block.left {
    flex-direction: row; /* photo à gauche */
}

.reno-block.right {
    flex-direction: row-reverse; /* photo à droite */
}

/* ===============================
   VERSION MOBILE
   =============================== */
@media (max-width: 768px) {

    .reno-block {
        flex-direction: column !important;
        text-align: center;
    }

    .reno-block img,
    .reno-text {
        width: 100%;
    }

    .reno-text {
        margin-top: 20px;
    }
}


/* ------------------- Pied de page ------------------- */
#footer {
    background: #ffffff;
    color: black;
    padding: 40px 20px 20px;
    border-top: 1px solid #ddd;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo img {
    width: 250px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

.footer-column ul li a {
    color: black;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 15px;
    border-top: 1px solid #ddd;
    color: black;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }
}




/* ===============================
   SECTION CONTACT RAPIDE ET FORMULAIRE
   =============================== */
.contact-section {
    background: white;
    max-width: 600px;
    margin: 40px auto;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #003366;
}

/* Liens : flex pour aligner icône + texte */
.contact-section a {
    display: flex;
    align-items: center;      /* texte aligné verticalement avec l'icône */
    justify-content: flex-start; /* alignement gauche */
    gap: 15px;                /* espace entre icône et texte */
    font-size: 20px;
    color: #003366;
    text-decoration: none;
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

/* Hover */
.contact-section a:hover {
    background: #003366;
    color: white;
}

/* Icône email */
.icon-email {
    width: 40px;      /* taille normale */
    height: 40px;
    object-fit: contain;
    vertical-align: middle;
}

.contact-section img.icon-whatsapp {
    width: 80px !important;   /* 2x plus grande */
    height: 80px !important;
    object-fit: contain;
    vertical-align: middle;
}

}







/* Formulaire */
.form-section {
    background: white;
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.form-section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form-section input,
.form-section select,
.form-section textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

.form-section textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.form-section button {
    padding: 15px;
    background: #003366;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-section button:hover {
    background: orange;
}

/* Organisation des cases à cocher : 3 par ligne */
.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-options label {
    display: flex;
    align-items: center;
    width: calc(33.333% - 10px); /* 3 par ligne */
    box-sizing: border-box;
}

/* Consentement et reCAPTCHA */
.consent-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.recaptcha-container {
    display: flex;
    justify-content: flex-start;
}

.submit-container {
    display: flex;
    justify-content: center;
}




/* ===============================
   MENU HAMBURGER & NAVIGATION
   =============================== */

/* Bouton hamburger */
.menu-btn {
    display: none; /* caché sur desktop */
    font-size: 2.5em;
    background: none;
    border: none;
    cursor: pointer;
    color: #003366 !important;
    z-index: 1001;
}

/* Supprimer l'effet de focus / clic */
.menu-btn:focus,
.menu-btn:active {
    outline: none;
    color: #003366;
}

/* Survol */
.menu-btn:hover {
    color: orange;
    transition: color 0.3s;
}

/* Navigation desktop */
nav {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

nav .logo {
    margin-right: 20px; /* espace entre logo et titres */
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #003366;
    font-weight: bold;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 768px) {
    /* Nav et bouton hamburger */
    nav {
        position: relative; /* pour que le bouton absolute se place correctement */
    }

    .menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    /* Menu responsive */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 2em;
    }

    nav .logo img {
        width: 120px;
        height: auto;
    }
}

/* Empêcher affichage hamburger sur desktop */
@media (min-width: 769px) {
    .menu-btn {
        display: none !important;
    }
}



/* Numéro téléphone desktop aligné avec nav */
.contact-desktop {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 1.2em;
    font-weight: bold;
}

.contact-desktop a {
    color: #003366 !important;
    text-decoration: none;
}

.contact-desktop a:hover {
    color: orange;
}


/* ===============================
   ICONES FLOTTANTES FIXES
   =============================== */
.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* 10px → 15px pour correspondre à x1,5 */
    z-index: 9999;
}

.floating-icons .icon img {
    width: 60px;   /* 40px x1,5 */
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.floating-icons .icon img:hover {
    transform: scale(1.1);
}

/* VERSION MOBILE */
@media (max-width: 768px) {
    .floating-icons {
        right: 50%;
        transform: translateX(50%);
        bottom: 15px;
        flex-direction: row; /* icônes alignées horizontalement */
        gap: 22px; /* 15px → 22px pour x1,5 */
    }

    .floating-icons .icon img {
        width: 53px; /* 35px x1,5 */
        height: 53px;
    }
}


/* Mobile : cacher le numéro texte et espacer correctement les icônes */
@media (max-width: 768px) {
    .contact-desktop {
        display: none;
    }

    .whatsapp-link {
        left: 25%;
        bottom: 0px;
        transform: translateX(0);
    }

    .phone-link {
        display: block;
        left: 65%;
        bottom: 20px;
        transform: translateX(0);
    }
}


<style>


/* ===============================
   SECTION CONTACT RAPIDE
   =============================== */
.contact-section {
    background: white;
    max-width: 600px;
    margin: 40px auto;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #003366;
}

/* Chaque lien avec icône alignée avec le texte */
.contact-section a {
    display: flex;               /* flex pour aligner image + texte */
    align-items: center;         /* verticalement aligné */
    justify-content: center;     /* centré horizontalement */
    gap: 10px;                   /* espace entre icône et texte */
    font-size: 20px;
    color: #003366;
    text-decoration: none;
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

/* Hover */
.contact-section a:hover {
    background: #003366;
    color: white;
}

/* Icônes */
.contact-section a img {
    width: 40px;   /* taille des icônes (à ajuster si besoin) */
    height: 40px;
    display: block;
}

/* Spécifique WhatsApp si différent */
.contact-section .whatsapp-link img {
    width: 60px;
    height: 60px;
}

/* MOBILE : icônes légèrement plus petites */
@media (max-width: 768px) {
    .contact-section a img {
        width: 35px;
        height: 35px;
    }
    .contact-section .whatsapp-link img {
        width: 70px;
        height: 50px;
    }
}



/* ===============================
   FORMULAIRE
   =============================== */
.form-section {
    background: white;
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.form-section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form-section input,
.form-section select,
.form-section textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

.form-section textarea {
    min-height: 100px;
    resize: vertical;
}


/* ===============================
   Travaux concernés (checkbox)
   =============================== */
.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* espace entre les cases */
}

.service-options label {
    display: flex;
    align-items: center;   /* aligne checkbox + texte verticalement */
    justify-content: flex-start; /* texte collé à gauche de la case */
    gap: 5px;              /* espace entre case et texte */
    flex: 0 0 calc(33.333% - 10px); /* 3 par ligne desktop */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 1.2;      /* hauteur de ligne pour coller le texte à la case */
    cursor: pointer;       /* curseur pointer sur label */
}

.service-options input[type="checkbox"] {
    margin: 0;
    padding: 0;
    vertical-align: middle;
    flex-shrink: 0;
    width: 18px;   /* taille fixe de la checkbox */
    height: 18px;
}

/* MOBILE : 2 par ligne */
@media (max-width: 768px) {
    .service-options label {
        flex: 0 0 calc(50% - 10px);
    }
}







}


.consent-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.recaptcha-container {
    display: flex;
    justify-content: flex-start; /* ou center si tu veux centrer */
}

.submit-container {
    display: flex;
    justify-content: center;
}

button[type="submit"] {
    padding: 15px 25px;
    background: #003366;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

button[type="submit"]:hover {
    background: orange;
}

/* MOBILE */
@media (max-width: 768px) {
    .consent-section {
        gap: 15px;
    }
    .submit-container button {
        width: 100%;
    }
}


.contact-section {
    background: white;
    max-width: 600px;
    margin: 40px auto;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #003366;
}

.contact-section a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    color: #003366;
    text-decoration: none;
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

.contact-section a:hover {
    background: #003366;
    color: white;
}


.contact-section .whatsapp-link {
    display: inline-flex;
    align-items: center;  /* aligne le texte avec le logo */
    gap: 10px;            /* espace entre le logo et le texte */
    font-size: 20px;
    color: #003366;
    text-decoration: none;
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

.contact-section .whatsapp-link img {
    width: 60px;   /* taille du logo */
    height: 60px;
}

@media (min-width: 769px) {
    .form-input {
        font-size: 20px;    /* texte plus grand */
        padding: 15px;      /* champs plus confortables */
        box-sizing: border-box;
    }

    .form-section label {
        font-size: 18px;
        display: block;
        margin-bottom: 5px;
    }

    .form-section button {
        font-size: 20px;
        padding: 18px 25px;
    }
}


/* Espacement vertical entre les champs du formulaire */
.form-section form > label,
.form-section form > .form-group,
.form-section form > .checkbox-group,
.form-section form > .g-recaptcha {
    display: block;
    margin-bottom: 20px; /* espace vertical */
}

/* Pour textarea et input */
.form-section input.form-input,
.form-section textarea.form-input {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    box-sizing: border-box;
}

/* Labels */
.form-section label {
    font-weight: bold;
    font-size: 16px;
}

/* Groupe checkbox et recaptcha centré */
.checkbox-group,
.g-recaptcha {
    text-align: center;
}

/* Bouton envoyer */
.form-section button {
    padding: 18px 25px;
    font-size: 18px;
    background: #003366;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.form-section button:hover {
    background: orange;
}

/* Espacement uniforme pour chaque section du formulaire */
.form-section .form-group {
    margin-bottom: 25px; /* espace entre chaque bloc */
}

/* Pour les inputs et textarea */
.form-section input,
.form-section textarea,
.form-section select {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    box-sizing: border-box;
}

/* Checkbox et recaptcha centrés */
.checkbox-group,
.g-recaptcha {
    margin-bottom: 25px;
    text-align: center;
}

.titre-services {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.service-card {
    text-align: center;
    padding: 10px;
}

.service-card button {
    margin-top: 10px;
    padding: 8px 15px;
    border: none;
    background-color: #0077cc;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.service-card button:hover {
    background-color: #005fa3;
}

/*-------------- Popup-------------- */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    z-index: 9999;
}
.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
}
