/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background: #F5F5F5;
}

/* Navbar avec fond vert (Desktop) */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: #68B77D;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.logo img {
    height: 40px;
    width: auto;
}
nav {
    display: flex;
    align-items: center;
}
nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}
nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    position: relative;
    transition: all 0.3s ease;
}
nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}
nav ul li a:hover::before, nav ul li a.active::before {
    width: 60%;
}
nav ul li a:hover, nav ul li a.active {
    color: #E0E0E0;
}

/* Menu Burger (caché par défaut en desktop) */
.burger {
    display: none;
    font-size: 24px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

/* Footer avec fond vert */
footer {
    padding: 40px 20px;
    background: #68B77D;
    color: #fff;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}
.footer-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}
.footer-content a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-content a:hover {
    color: #E0E0E0;
}
.footer-bottom {
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
    opacity: 0.8;
}

/* Bouton CTA */
.cta {
    padding: 10px 25px;
    background: #68B77D;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(104, 183, 125, 0.3);
}
.cta span {
    position: relative;
    z-index: 1;
}
.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.cta:hover::before {
    width: 300%;
    height: 300%;
}
.cta:hover {
    background: #7CCF92;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(104, 183, 125, 0.5);
}

/* Styles spécifiques aux pages */

/* Page d'Accueil */
.hero {
    height: 100vh;
    background: url('../assets/img_hero.jpg') no-repeat center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 15px;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}
.hero h1, .hero p, .hero-buttons {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 60px;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.hero p {
    font-size: 24px;
    max-width: 800px;
    margin-bottom: 50px;
    font-weight: 300;
}
.hero-buttons .secondary {
    background: transparent;
    padding: 12px 35px;
    color: #fff;
    margin-left: 25px;
    box-shadow: inset 0 0 0 2px #68B77D;
    transition: all 0.4s ease;
}
.hero-buttons .secondary:hover {
    background: #68B77D;
    box-shadow: none;
}
.services, .testimonials {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
    color: #333;
}
.process, .final-cta {
    padding: 60px 20px;
    text-align: center;
    background: #E8F5EC;
    color: #333;
}
.services h2, .process h2, .testimonials h2, .final-cta h2 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #68B77D;
    font-weight: 700;
    position: relative;
}
.services h2::after, .process h2::after, .testimonials h2::after, .final-cta h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #68B77D;
}
.services p, .process p, .testimonials p, .final-cta p {
    max-width: 1000px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #666;
}
.services-grid, .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card, .step, .testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 3px solid #68B77D;
}
.service-card:hover, .step:hover, .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.service-card h3, .step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #68B77D;
    font-weight: 600;
}
.service-card .link {
    color: #68B77D;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.service-card .link:hover {
    color: #7CCF92;
}
.service-card img, .step img, .testimonial-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #68B77D;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.3s ease;
}
.step:hover .step-number {
    transform: scale(1.1);
}

/* Page Galerie */
.gallery-intro {
    padding: 100px 20px 40px;
    text-align: center;
    background: #68B77D;
    color: #fff;
}
.gallery-intro h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}
.gallery-intro h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #fff;
}
.gallery-intro p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: #E0E0E0;
}
.gallery-filters {
    padding: 20px;
    text-align: center;
    background: #F5F5F5;
}
.filter-btn {
    padding: 8px 20px;
    margin: 5px;
    background: #68B77D;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(104, 183, 125, 0.3);
}
.filter-btn:hover, .filter-btn.active {
    background: #7CCF92;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(104, 183, 125, 0.5);
}
.gallery {
    padding: 40px 20px;
    background: #fff;
    color: #333;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    background: #fff; /* Fond blanc pour éviter les artefacts */
}
.gallery-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #68B77D; /* Barre verte via pseudo-élément */
    z-index: 1;
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block; /* Évite les espaces sous l'image */
}
.gallery-info {
    background: #E8F5EC;
    color: #333;
    padding: 15px;
    text-align: center;
}
.gallery-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #68B77D;
    font-weight: 600;
}
.gallery-info p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666;
}
.gallery-info .link {
    color: #68B77D;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.gallery-info .link:hover {
    color: #7CCF92;
}

/* Page Tarifs */
.tarifs-intro {
    padding: 100px 20px 40px;
    text-align: center;
    background: #68B77D;
    color: #fff;
}
.tarifs-intro h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}
.tarifs-intro h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #fff;
}
.tarifs-intro p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: #E0E0E0;
}
.pricing, .faq {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
    color: #333;
}
.additional-services {
    padding: 60px 20px;
    text-align: center;
    background: #E8F5EC;
    color: #333;
}
.pricing h2, .additional-services h2, .faq h2 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #68B77D;
    font-weight: 700;
    position: relative;
}
.pricing h2::after, .additional-services h2::after, .faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #68B77D;
}
.pricing p, .additional-services p, .faq p {
    max-width: 1000px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #666;
}
.pricing-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.pricing-card, .service-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 3px solid #68B77D;
}
.pricing-card:hover, .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.popular-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #68B77D;
    color: #fff;
    padding: 4px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(104, 183, 125, 0.3);
}
.pricing-card h3, .service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #68B77D;
    font-weight: 600;
}
.price {
    font-size: 28px;
    color: #68B77D;
    font-weight: 700;
    margin-bottom: 15px;
}
.description {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}
.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}
.pricing-card ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
}
.pricing-card ul li:before {
    content: "✔";
    color: #68B77D;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.pricing-card ul li.unavailable {
    color: #999;
}
.pricing-card ul li.unavailable:before {
    content: "✖";
    color: #999;
}
.pricing-card img, .service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}
.faq-item {
    margin-bottom: 20px;
    background: #E8F5EC;
    padding: 15px;
    border-radius: 8px;
}
.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #68B77D;
    font-weight: 600;
}
.faq-item p {
    font-size: 14px;
    color: #666;
}

/* Page Contact */
.contact-intro {
    padding: 100px 20px 40px;
    text-align: center;
    background: #68B77D;
    color: #fff;
}
.contact-intro h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}
.contact-intro h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #fff;
}
.contact-intro p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: #E0E0E0;
}
.contact-content {
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: #F5F5F5;
}
.contact-details h2, .contact-form h2 {
    font-size: 24px;
    color: #68B77D;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}
.contact-details h2::after, .contact-form h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #68B77D;
}
.info-block {
    margin-bottom: 20px;
    background: #E8F5EC;
    padding: 15px;
    border-radius: 8px;
}
.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #68B77D;
    font-weight: 600;
}
.info-block p {
    font-size: 14px;
    color: #666;
}
.info-block a {
    color: #68B77D;
    text-decoration: none;
    transition: color 0.3s ease;
}
.info-block a:hover {
    color: #7CCF92;
}
.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 3px solid #68B77D;
}
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group {
    position: relative;
}
input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-bottom: 2px solid #E0E0E0;
    background: transparent;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
}
input:focus, select:focus, textarea:focus {
    border-color: #68B77D;
    outline: none;
}
label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}
input:focus + label, input:not(:placeholder-shown) + label,
select:focus + label, select:not(:placeholder-shown) + label,
textarea:focus + label, textarea:not(:placeholder-shown) + label {
    top: 8px;
    font-size: 10px;
    color: #68B77D;
}
textarea {
    min-height: 100px;
    resize: vertical;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    padding: 15px;
}
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 25px; /* Espacement accru pour éviter le chevauchement */
    margin-top: 10px;
    background: #E8F5EC;
    padding: 20px; /* Plus de padding pour aérer */
    border-radius: 8px;
}
.checkbox-group label {
    position: static;
    display: flex;
    align-items: center;
    gap: 15px; /* Espacement accru entre case et texte */
    font-size: 14px;
    color: #333;
    transform: none;
    min-width: 120px; /* Assure un espace suffisant pour le texte */
}
.checkbox-group input[type="checkbox"] {
    width: 18px; /* Taille proportionnée */
    height: 18px;
    cursor: pointer;
    margin: 0; /* Supprime les marges par défaut */
}
.consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
    background: #E8F5EC;
    padding: 8px;
    border-radius: 8px;
}
.map {
    padding: 60px 20px;
    text-align: center;
    background: #68B77D;
    color: #fff;
}
.map h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}
.map h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #fff;
}
#map-container {
    max-width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
}

/* Modal pour la galerie */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: auto;
}
.modal-content {
    background: #fff;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal.open .modal-content {
    transform: scale(1);
    opacity: 1;
}
.modal-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}
.modal-info {
    text-align: center;
}
.modal-title {
    font-size: 24px;
    color: #68B77D;
    margin-bottom: 10px;
    font-weight: 700;
}
.modal-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}
.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.modal-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.close-btn {
    background: #E0E0E0;
    color: #333;
}
.close-btn:hover {
    background: #D0D0D0;
    transform: translateY(-2px);
}
.cta-btn {
    background: #68B77D;
    color: #fff;
    text-decoration: none;
}
.cta-btn:hover {
    background: #7CCF92;
    transform: translateY(-2px);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    text-shadow: none;
}
.modal-close:hover {
    color: #333;
}

/* Ajout pour la note dans les tarifs */
.note {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}
.note::before {
    content: '💡';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
}

/* Media Queries pour Responsive Design */
@media (max-width: 768px) {
    /* Navbar Mobile avec Menu Burger */
    header {
        top: 10px;
        padding: 10px 20px;
        justify-content: space-between;
        align-items: center;
    }
    .logo img {
        height: 35px;
    }
    nav ul {
        display: none; /* Caché par défaut */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #68B77D;
        padding: 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    nav ul.active {
        display: flex; /* Affiché quand le burger est cliqué */
    }
    nav ul li a {
        font-size: 14px;
        padding: 10px 0;
        text-align: center;
    }
    .burger {
        display: block;
    }

    /* Footer */
    footer {
        padding: 30px 15px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Page d'Accueil */
    .hero {
        height: 80vh;
        padding: 0 10px;
    }
    .hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .hero p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons .secondary {
        margin-left: 0;
    }
    .services, .process, .testimonials, .final-cta {
        padding: 40px 15px;
    }
    .services h2, .process h2, .testimonials h2, .final-cta h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    .services p, .process p, .testimonials p, .final-cta p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .service-card img, .step img, .testimonial-card img {
        height: 150px;
    }

    /* Page Galerie */
    .gallery-intro {
        padding: 80px 15px 30px;
    }
    .gallery-intro h1 {
        font-size: 32px;
    }
    .gallery-intro p {
        font-size: 16px;
    }
    .gallery-filters {
        padding: 15px;
    }
    .filter-btn {
        padding: 6px 15px;
        font-size: 12px;
        margin: 3px;
    }
    .gallery {
        padding: 30px 15px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-item img {
        height: 200px;
    }

    /* Page Tarifs */
    .tarifs-intro {
        padding: 80px 15px 30px;
    }
    .tarifs-intro h1 {
        font-size: 32px;
    }
    .tarifs-intro p {
        font-size: 16px;
    }
    .pricing, .additional-services, .faq {
        padding: 40px 15px;
    }
    .pricing h2, .additional-services h2, .faq h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    .pricing p, .additional-services p, .faq p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .pricing-grid, .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pricing-card img, .service-card img {
        height: 150px;
    }

    /* Page Contact */
    .contact-intro {
        padding: 80px 15px 30px;
    }
    .contact-intro h1 {
        font-size: 32px;
    }
    .contact-intro p {
        font-size: 16px;
    }
    .contact-content {
        padding: 30px 15px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-details h2, .contact-form h2 {
        font-size: 20px;
    }
    .map {
        padding: 40px 15px;
    }
    .map h2 {
        font-size: 24px;
    }
    .checkbox-group {
        flex-direction: column; /* Aligne verticalement sur mobile */
        gap: 15px;
        padding: 15px;
    }
    .checkbox-group label {
        gap: 12px;
        font-size: 13px;
        min-width: auto;
    }
    .checkbox-group input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    /* Navbar */
    header {
        padding: 8px 15px;
    }
    .logo img {
        height: 30px;
    }
    nav ul {
        padding: 15px;
    }
    nav ul li a {
        font-size: 12px;
    }

    /* Page d'Accueil */
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
    }
    .services h2, .process h2, .testimonials h2, .final-cta h2 {
        font-size: 24px;
    }

    /* Page Galerie */
    .gallery-intro h1 {
        font-size: 24px;
    }
    .gallery-intro p {
        font-size: 14px;
    }

    /* Page Tarifs */
    .tarifs-intro h1 {
        font-size: 24px;
    }
    .tarifs-intro p {
        font-size: 14px;
    }

    /* Page Contact */
    .contact-intro h1 {
        font-size: 24px;
    }
    .contact-intro p {
        font-size: 14px;
    }
    .checkbox-group label {
        font-size: 12px;
        gap: 10px;
    }
}

/* Responsive pour la note et le modal */
@media (max-width: 768px) {
    .note {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 15px;
        padding-left: 20px;
    }
    .note::before {
        font-size: 16px;
    }
    .modal-content {
        width: 95%;
        padding: 15px;
    }
    .modal-image {
        max-height: 300px;
    }
    .modal-title {
        font-size: 20px;
    }
    .modal-description {
        font-size: 14px;
    }
    .modal-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .note {
        font-size: 13px;
        padding-left: 18px;
    }
    .note::before {
        font-size: 15px;
    }
    .modal-image {
        max-height: 200px;
    }
    .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }
}