@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    nav ul {
        margin-top: 1rem;
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    .full-width {
        grid-column: span 1;
    }

    .form-container button {
        grid-column: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;

    }

    /* Logo LEFT */
    .logo img {
        height: 65px;
        width: 80px;
        display: block;
    }

    /* Hamburger RIGHT */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 22px;
        cursor: pointer;
        z-index: 1001;
    }

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

    /* Hamburger → X */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    /* Mobile Menu */
    nav ul {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #122b42;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0;
        transition: max-height 0.35s ease, opacity 0.3s ease;
        z-index: 1000;
    }

    nav ul.show {
        max-height: 400px;
        opacity: 1;
        padding: 16px 0;
    }

    /* Call button inside menu */
    .call-now {
        margin-top: 0.5rem;
    }

    /* Menu links */
    nav ul li a {
        color: white;
        text-decoration: none;
        font-size: 1rem;
    }
}