/* =========================================================
LAVAGE EXTÉRIEUR — MOBILE 2026
========================================================= */
@media screen and (max-width: 768px) {

    /* ================= HERO ================= */
    .hero-service {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 80px 15px 40px 15px; /* ↑ padding top pour que le titre ne tombe pas sous le header */
        min-height: 360px; /* taille ajustée pour mobile */
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        border-radius: 10px;
        overflow: hidden;
    }

    .hero-service .overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 1;
    }

    .hero-service .hero-content {
        position: relative;
        z-index: 2;
        max-width: 90%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        color: #fff;
    }

    .hero-service h1 {
        font-size: 1.7rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .hero-service p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-buttons a {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 1rem;
        border-radius: 8px;
        text-align: center;
    }

    /* ================= SERVICE DETAIL ================= */
    .service-detail {
        padding: 25px 15px;
    }

    .service-detail h2 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 8px;
        color: #fff;
    }

    .service-detail .section-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 20px;
        color: #fff;
    }

    .service-grid {
        display: grid;
        grid-template-columns: 1fr; /* 1 carte par ligne */
        gap: 18px;
        justify-items: center;
    }

    .service-item {
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 12px;
    }

    .service-item img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .service-item h3 {
        font-size: 1.15rem;
        margin-bottom: 6px;
        color: #fff;
    }

    .service-item p {
        font-size: 0.9rem;
        color: #fff;
    }

    /* ================= CTA ================= */
    .cta-section {
        padding: 25px 15px;
        text-align: center;
        margin: 20px auto;
        background: rgba(0,0,0,0.1);
        border-radius: 12px;
    }

    .cta-section h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        color: #fff;
    }

    .cta-section .btn-primary {
        width: 100%;
        padding: 12px 0;
        font-size: 1rem;
        border-radius: 8px;
    }

    /* ================= HEADER + MENU ================= */
    .navigation {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        width: 85%;
        max-width: 360px;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        border-radius: 18px;
        padding: 25px 0;
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s ease;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navigation.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .navigation ul {
        flex-direction: column;
        gap: 22px;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .navigation a {
        font-size: 1.1rem;
        font-weight: 500;
        color: #fff;
        text-decoration: none;
        transition: color 0.3s;
    }

    .navigation a:hover {
        color: var(--red);
    }

    .hamburger {
        width: 40px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        height: 3px;
        width: 100%;
        background: #fff;
        border-radius: 5px;
        transition: all 0.4s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .btn-whatsapp {
        display: none;
    }

    /* ================= FOOTER ================= */
    .footer {
        padding: 50px 20px;
    }

    .footer-container {
        max-width: 100%;
        text-align: center;
    }

    .footer-columns {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin: 30px 0;
    }

    .footer-column {
        max-width: 100%;
        text-align: center;
    }

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

    .footer-column p,
    .footer-column a {
        font-size: 0.95rem;
    }

    .socials {
        justify-content: center;
        gap: 15px;
        display: flex;
    }

    .socials a {
        width: 40px;
        height: 40px;
    }

    .socials img {
        width: 22px;
        height: 22px;
    }

    .footer-copyright {
        font-size: 0.85rem;
        margin-top: 20px;
    }

}
