@media (max-width: 900px) {
    .hero h1 {
        font-size: 38px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .feature-grid,
    .split,
    .before-after {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .split img {
        margin-bottom: 20px;
    }

    /* -----------------------------
       MOBILE HEADER
    ----------------------------- */
    body {
        padding-top: 78px;
    }

    .header {
        height: 78px;
        min-height: 78px;
    }

    .nav-container {
        height: 78px;
        min-height: 78px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        height: auto;
        gap: 0;
        min-width: 0;
        flex-shrink: 1;
    }

    .logo img {
        width: 155px;
        max-height: 60px;
        height: auto;
    }

    .logo span {
        display: none;
    }

    /* -----------------------------
       HAMBURGER
    ----------------------------- */
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        margin-left: auto;
        padding: 0;
        background: #111 !important;
        border: 2px solid #ffffff !important;
        border-radius: 16px;
        box-shadow: inset 0 0 0 3px #111, 0 0 0 1px #f0a500;
        color: #3da9e9 !important;
        font-size: 25px;
        line-height: 1;
        cursor: pointer;
        position: relative;
        z-index: 2002;
    }

    .menu-toggle:hover {
        color: #69c0f1 !important;
    }

    /* -----------------------------
       MOBILE DROPDOWN — CLOSED
    ----------------------------- */
    .navigation {
        display: none !important;
        position: fixed !important;
        top: 78px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: calc(100vh - 78px);
        overflow-y: auto;
        box-sizing: border-box;
        margin: 0 !important;
        padding: 12px 40px 24px !important;
        background: #0b0b0b !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        border-top: 1px solid rgba(255,255,255,0.08);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 20px 40px rgba(0,0,0,0.65);
        z-index: 2001;
    }

    /* -----------------------------
       MOBILE DROPDOWN — OPEN
    ----------------------------- */
    .navigation.active {
        display: flex !important;
    }

    .navigation a {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box;
        padding: 16px 20px !important;
        margin: 0 !important;
        color: #ffffff !important;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.3;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .navigation a:hover {
        color: #3da9e9 !important;
    }

    .navigation a:last-child {
        border-bottom: none;
    }

    .navigation .nav-button {
        margin-top: 16px !important;
        padding: 14px 20px !important;
        text-align: center;
        border-bottom: none;
    }

    .process-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .form-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 30px;
    }

    .checker-box {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 140px;
    }

    .navigation {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}
