/* mobile.css - 1:1 Precise Replica of RoundArk Menu */

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex !important;
    }

    /* Side Sidebar (Left) */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        right: auto !important;
        width: 85% !important;
        max-width: 380px !important;
        height: 100vh !important;
        background: #0D1326 !important; /* Deep Navy Solid */
        flex-direction: column !important;
        padding: 0 !important;
        gap: 0 !important;
        transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        z-index: 10000 !important;
        border-radius: 0 40px 40px 0 !important; /* Extremely rounded core */
        box-shadow: 20px 0 80px rgba(0,0,0,0.8) !important;
        overflow-y: auto !important;
        display: flex !important;
        transform: translateZ(0) !important;
        border: none !important;
    }

    .nav-links.active {
        left: 0 !important;
    }

    .nav-links li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.02) !important;
    }

    .nav-divider {
        height: 1px !important;
        background: rgba(255,255,255,0.1) !important;
        margin: 1.5rem 2.8rem !important;
        width: auto !important;
        display: block !important;
    }

    /* Links & Icons Styling */
    .nav-links a {
        padding: 1.5rem 2.8rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 1.5rem !important;
        color: white !important;
        font-size: 1.6rem !important;
        font-weight: 700 !important; /* Extra Bold like reference */
        text-decoration: none !important;
        font-family: 'Outfit', sans-serif !important;
        transition: all 0.2s !important;
    }

    .nav-links a i {
        display: block !important;
        font-size: 1.8rem !important;
        color: #38bdf8 !important; /* Bright Blue Icons ALWAYS as per ref */
        min-width: 34px !important;
        text-align: center;
    }

    .nav-links a.active-link {
        color: #38bdf8 !important;
    }

    /* Brand Identity */
    .mobile-brand {
        display: block !important;
        padding: 4.5rem 2.8rem 2.5rem 2.8rem !important;
    }

    .mobile-brand h2 {
        color: white !important;
        font-size: 2.3rem !important;
        font-family: 'Outfit', sans-serif !important;
        margin-bottom: 0px !important;
        font-weight: 800 !important;
        letter-spacing: -0.5px;
    }

    .mobile-brand p {
        color: rgba(255,255,255,0.4) !important;
        font-size: 0.9rem !important;
        margin: 0 !important;
    }

    /* Close Button square */
    #mobile-close {
        display: none !important;
        position: absolute !important;
        top: 2rem !important;
        right: 2rem !important;
        align-items: center;
        justify-content: center;
        background: white !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.4) !important;
        border: none !important;
        color: #38bdf8 !important;
        font-size: 1.8rem !important;
        cursor: pointer !important;
        z-index: 10001 !important;
    }

    .nav-links.active #mobile-close {
        display: flex !important;
    }

    /* Sidebar Footer area */
    .mobile-menu-footer {
        padding: 2.8rem !important;
        margin-top: auto !important;
        display: block !important;
    }

    .menu-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem !important;
        margin-bottom: 3rem !important;
    }

    .btn-menu {
        padding: 1.1rem 2rem !important;
        border-radius: 18px !important;
        text-align: center !important;
        font-weight: 800 !important;
        font-size: 1.3rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.8rem !important;
        text-decoration: none !important;
        font-family: 'Outfit', sans-serif !important;
    }

    .btn-menu-outline {
        border: 2px solid #38bdf8 !important;
        color: white !important;
        background: transparent !important;
    }

    .btn-menu-solid {
        background: #0088cc !important;
        color: white !important;
    }

    .menu-copyright {
        color: rgba(255,255,255,0.2) !important;
        font-size: 0.85rem !important;
        margin-top: 1rem;
    }

    /* Overlay */
    .nav-overlay {
        display: none;
        z-index: 9999 !important;
        background: rgba(0, 0, 0, 0.7) !important;
    }

    .nav-overlay.active {
        display: block !important;
    }

    /* Hero Scaling */
    .hero-content h1 { font-size: 2.5rem !important; line-height: 1.2 !important; }
    .hero-image { order: -1 !important; margin-bottom: 2rem; }
    .section { padding: 4rem 1.5rem !important; }
    .grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 576px) {
    .nav-links { width: 90% !important; }
    .mobile-brand h2 { font-size: 2.1rem !important; }
}
