/* ===== ENHANCED NAVBAR STYLES ===== */

.navbar-modern {
    background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.navbar-modern:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.navbar-brand-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.navbar-brand-modern:hover {
    transform: scale(1.05);
    color: white !important;
}

.navbar-brand-modern i {
    font-size: 1.8rem;
    margin-right: 0.5rem;
}

.nav-link-modern {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    transform: translateY(-2px);
}

.nav-link-modern i {
    font-size: 0.9rem;
}

.nav-link-login {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-link-login:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    transform: translateX(5px);
}

/* ===== ENHANCED UPDATES MODAL STYLES ===== */

.updates-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.updates-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-bottom: none;
}

.updates-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.updates-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.updates-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.updates-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.updates-modal-body {
    padding: 2rem;
    background: #f8f9fa;
}

.updates-intro-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.updates-intro-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.updates-intro-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.updates-intro-text {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.update-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.update-section:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.update-section h6 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.update-section h6 i {
    margin-right: 0.75rem;
    font-size: 1.3rem;
}

.update-section .list-unstyled li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.update-section .list-unstyled li:last-child {
    border-bottom: none;
}

.update-section .list-unstyled li:hover {
    padding-left: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.update-section .list-unstyled li i.fa-check-circle {
    color: #22c55e;
    font-size: 1rem;
}

.update-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    margin-top: 2rem;
}

.update-footer h6 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.update-footer ul li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.95);
}

.modal-footer {
    border-top: 2px solid #e9ecef;
    padding: 1.5rem;
}

.modal-footer .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modal-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .updates-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .updates-modal-title {
        font-size: 1.5rem;
    }
    
    .updates-intro-card {
        flex-direction: column;
        text-align: center;
    }
    
    .navbar-brand-modern {
        font-size: 1.2rem;
    }
}

