/* Mobile Navigation */
@media (max-width: 768px) {
    .desktop-menu {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    /* Mobile Menu Animation */
    .mobile-menu {
        display: none;
        animation: slideDown 0.3s ease-out forwards;
    }

    .mobile-menu.active {
        display: flex !important;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
