/* Doctors Section */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.doctor-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-5px);
}

.doc-avatar {
    width: 80px;
    height: 80px;
    background: #dbeafe;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-cyan);
}

.doctor-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.doc-role {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.doc-edu {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.doc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.doc-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.3rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.doc-exp {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}
