/* Doctor Section Styles */
.doctor-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.doctor-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(192, 16, 32, 0.3);
}

.doctor-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-image {
    transform: scale(1.05);
}

.doctor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 16, 32, 0.92) 0%, rgba(139, 0, 0, 0.92) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.doctor-card:hover .doctor-overlay {
    transform: translateY(0);
}

.doctor-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.doctor-overlay .overlay-specialty {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.doctor-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    max-height: 150px;
    overflow-y: auto;
}

.doctor-overlay .experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.doctor-overlay .experience-badge svg {
    width: 16px;
    height: 16px;
}

.specialty-badge {
    display: inline-block;
    background: linear-gradient(135deg, #C01020 0%, #8B0000 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 8px;
}

.doctor-info {
    padding: 24px;
}

.doctor-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #102030;
    margin-bottom: 8px;
}

.empty-state {
    padding: 80px 20px;
    text-align: center;
}

.empty-state .icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-center;
    width: 96px;
    height: 96px;
    background: rgba(192, 16, 32, 0.1);
    border-radius: 50%;
    margin-bottom: 24px;
}

.empty-state .icon-wrapper svg {
    width: 56px;
    height: 56px;
    color: #C01020;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #102030;
    margin-bottom: 12px;
}

.empty-state p {
    color: #6b7280;
    max-width: 28rem;
    margin: 0 auto;
}

/* Animation classes */
.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }
.stagger-7 { animation-delay: 0.7s; }
.stagger-8 { animation-delay: 0.8s; }
