/* Modern Navbar Styles */

.navbar-modern {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 12px 24px;
    margin: 20px auto;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
}

.navbar-brand-modern {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 40px;
    gap: 12px;
}

.navbar-brand-modern img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    white-space: nowrap;
}

.navbar-nav-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-item-modern {
    position: relative;
}

.nav-link-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-link-modern:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.nav-link-modern i {
    font-size: 1.1rem;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link-modern.coming-soon {
    position: relative;
}

.coming-soon-badge {
    position: absolute;
    top: -8px;
    right: 4px;
    background: #e5e7eb;
    color: #6b7280;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
    white-space: nowrap;
}

/* Support Icon */
.support-icon-wrapper {
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.support-icon-circle {
    width: 12px;
    height: 12px;
    border: 2px solid #9ca3af;
    border-radius: 50%;
    background: transparent;
}

.support-icon-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 6px;
    height: 6px;
    background: #374151;
    border-radius: 50%;
    border: 1.5px solid white;
}

/* CBT Pass Icon */
.cbt-pass-icon-wrapper {
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cbt-pass-icon-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 50%;
}

.cbt-pass-icon-text {
    position: relative;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 1;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 40px;
}

.login-link-modern {
    color: #374151;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.login-link-modern:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.btn-start-learning {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-start-learning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
    color: white;
}

.btn-start-learning i {
    font-size: 1rem;
}

/* Mobile Menu Toggle */
.navbar-toggler-modern {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    color: #374151;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-modern {
        flex-wrap: wrap;
        padding: 12px 16px;
    }
    
    .navbar-brand-modern {
        margin-right: auto;
    }
    
    .navbar-toggler-modern {
        display: block;
        order: 2;
    }
    
    .navbar-nav-modern {
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        display: none;
        margin-top: 16px;
        gap: 4px;
    }
    
    .navbar-nav-modern.show {
        display: flex;
    }
    
    .nav-link-modern {
        padding: 12px 16px;
        border-radius: 8px;
    }
    
    .navbar-actions {
        order: 2;
        margin-left: 16px;
    }
    
    .login-link-modern {
        display: none;
    }
}

@media (max-width: 576px) {
    .navbar-modern {
        margin: 10px;
        border-radius: 12px;
    }
    
    .navbar-brand-modern img {
        height: 32px;
    }
    
    .btn-start-learning {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .btn-start-learning span {
        display: none;
    }
    
    .navbar-brand-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar-brand-text {
        display: none;
    }
}

