@media (max-width: 1200px) and (min-width: 768px) {
    .nav-section {
        padding: 15px 5%;
        flex-direction: column;
        gap: 15px;
    }

    .navbar-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .nav-section {
        flex-direction: row;
        padding: 15px 5%;
    }

    .wmct-home-logo {
        width: 90px;
    }

    .hamburger-nav {
        display: block;
        margin-left: auto;
    }

    .navbar-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 15, 27, 0.98);
        border-bottom: 1px solid rgba(83, 195, 255, 0.2);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        opacity: 0;
        transform: translateY(-15px);
        pointer-events: none;
        transition: all 0.3s ease-in-out;
    }

    .navbar-nav.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
        display: inline-block;
    }

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

    .hamburger-nav.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger-nav.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /*.nav-item:nth-child(3) .nav-link::before {
        top: 10px;
        right: 8px;
        width: 7px;
        height: 7px;
    } */
}

@media (max-width: 1200px) {
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }

    .footer-item p {
        border-left: none;
        padding-left: 0;
        max-width: 100%;
    }

    .footer-redirects {
        justify-content: center;
        width: 100%;
    }

    .footer-copyright {
        text-align: center;
        width: 100%;
        white-space: normal;
    }

    .footer-redirects {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .footer-redirects li {
        flex: 0 0 auto;
    }

    .footer-redirects li a {
        white-space: nowrap;
    }

    .footer-redirects img {
        width: auto;
        max-width: none;
        flex-shrink: 0;
    }
}