/* Responsive Mobile Menu Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
    }

    /* Hide desktop CTA */
    .cta-btn.desktop-only {
        display: none;
    }

    /* Mobile Nav Overlay */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        opacity: 0;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        font-size: 1.5rem;
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s 0.2s, transform 0.4s 0.2s;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active .cta-btn.mobile-only {
        transition-delay: 0.4s;
    }

    .cta-btn.mobile-only {
        display: block;
        margin-top: 20px;
        transform: scale(1.1);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s, transform 0.4s;
    }

    .nav-links.active .cta-btn.mobile-only {
        opacity: 1;
        transform: translateY(0) scale(1.1);
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .cta-btn.mobile-only {
        display: none;
    }
}