@media (max-width: 992px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(5px);
        transition: left 0.4s ease-in-out;
    }

    .nav-links.is-active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        margin-left: 0;
    }

    .hamburger-btn {
        display: flex;
    }

    .hamburger-btn.is-active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

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

    .hamburger-btn.is-active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 80px 0;
    }

    #hero.parallax-hero {
        padding: 120px 0;
    }

    .office-intro-wrapper,
    .founder-details-wrapper {
        flex-direction: column;
    }

    .founder-image,
    .office-intro-image {
        max-width: 100%;
    }

    .pillars-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .tabs-nav {
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .contact-form-container {
        padding-left: 0;
        margin-top: 40px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}