/* Advisors Index Page */
.advisors-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 2rem 0;
}

.advisors-header {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.advisors-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.advisors-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.advisors-header-content p {
    color: #94a3b8;
    font-size: 1.125rem;
}

.advisors-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item.online {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.advisor-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.advisor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.advisor-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.advisor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.advisor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.advisor-status {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #1e293b;
}

.advisor-status-online {
    background: #10b981;
}

.advisor-status-offline {
    background: #6b7280;
}

.advisor-rating {
    text-align: right;
}

.rating-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: #6b7280;
    font-size: 0.875rem;
}

.rating-stars i.active {
    color: #fbbf24;
}

.rating-value {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.no-rating {
    color: #6b7280;
    font-size: 0.875rem;
}

.advisor-card-body {
    flex: 1;
    margin-bottom: 1.5rem;
}

.advisor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.advisor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.specialty-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.advisor-bio {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.advisor-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.advisor-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
    padding: 0;
    background: none;
    border: none;
}

.advisor-stats .stat-item i {
    color: #3b82f6;
}

.advisor-card-footer {
    margin-top: auto;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #3b82f6;
    border: 1px solid #3b82f6;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-outline:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #60a5fa;
    color: #60a5fa;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #94a3b8;
}

.empty-state i {
    font-size: 4rem;
    color: #475569;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .advisors-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .advisors-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .advisors-grid {
        grid-template-columns: 1fr;
    }
}
