/* Common Mobile Navigation Styles */
.navbar-modern .navbar-collapse {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.navbar-modern .navbar-collapse .nav-link {
    color: #1e293b !important;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-modern .navbar-collapse .nav-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea !important;
    transform: translateX(5px);
}

.navbar-modern .navbar-collapse .nav-cta {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b !important;
    font-weight: 700;
    padding: 0.875rem 1.75rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    display: inline-block;
    margin-top: 0.5rem;
}

.navbar-modern .navbar-collapse .nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5);
    color: #1e293b !important;
}

@media (min-width: 992px) {
    .navbar-modern .navbar-collapse {
        background: transparent;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        box-shadow: none;
        border: none;
    }
    
    .navbar-modern .navbar-collapse .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 600;
        padding: 0.75rem 1.25rem;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0 0.25rem;
        position: relative;
        overflow: hidden;
    }
    
    .navbar-modern .navbar-collapse .nav-link:hover {
        background: rgba(255, 255, 255, 0.15);
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-modern .navbar-collapse .nav-cta {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        color: #1e293b !important;
        font-weight: 700;
        padding: 0.875rem 1.75rem;
        border-radius: 16px;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin: 0 0.25rem;
    }
    
    .navbar-modern .navbar-collapse .nav-cta:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5);
        color: #1e293b !important;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    body, html {
        overflow-x: hidden !important;
    }
    
    .navbar-modern {
        padding: 0.75rem 0 !important;
    }
    
    .navbar-brand-modern {
        font-size: 1.25rem !important;
        display: flex !important;
        align-items: center;
    }
    
    .navbar-brand-modern span {
        display: inline !important;
        color: white !important;
        font-size: 1rem !important;
    }
    
    .nav-link-modern {
        padding: 0.4rem 0.75rem;
        margin: 0 0.2rem;
        font-size: 0.9rem;
    }
    
    .nav-cta {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}
