/* ═══ DOCTOR CHAMBER PAGE ═══ */

.doctor-intro {
    text-align: center;
    margin-bottom: 40px;
}

/* Booking Announcement Banner */
.booking-announcement {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 35px 30px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(26, 54, 131, 0.25), rgba(112, 193, 69, 0.08));
    border: 1px dashed rgba(162, 211, 49, 0.3);
    box-shadow: var(--shadow-glow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-announcement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(162, 211, 49, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--lime);
    color: var(--navy-dark);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(162, 211, 49, 0.3);
    text-transform: uppercase;
}

.booking-announcement h3 {
    font-family: 'Tiro Bangla', serif;
    font-size: clamp(20px, 3.5vw, 30px);
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.booking-announcement p {
    color: var(--text-dim);
    font-size: 16px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.booking-announcement .highlight {
    color: var(--lime);
    font-weight: 600;
}

.booking-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid rgba(162, 211, 49, 0.2);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.contact-pill:hover {
    border-color: var(--lime);
    background: rgba(162, 211, 49, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(162, 211, 49, 0.1);
}

.contact-pill i {
    color: var(--lime);
    font-size: 16px;
}

/* Doctors Grid Styling */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.doctor-card {
    background: var(--card-bg);
    border: 1px solid rgba(162, 211, 49, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.doctor-card:hover {
    transform: translateY(-10px);
    border-color: var(--lime);
    background: var(--card-hover);
    box-shadow: var(--shadow-glow);
}

.doctor-img-box {
    position: relative;
    width: 190px;
    height: 190px;
    margin-bottom: 25px;
}

.doctor-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--lime);
    padding: 5px;
    transition: var(--transition);
    background: var(--navy-dark);
}

.doctor-card:hover .doctor-avatar {
    transform: scale(1.04);
    border-color: var(--white);
    box-shadow: 0 0 25px rgba(162, 211, 49, 0.2);
}

.doctor-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: var(--navy-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.doctor-name-bn {
    font-family: 'Tiro Bangla', serif;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 4px;
}

.doctor-name-en {
    font-size: 15px;
    color: var(--text-dim);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.doctor-divider {
    width: 50px;
    height: 2px;
    background: var(--gradient-main);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.doctor-info-item {
    font-size: 15px;
    color: var(--text-dim);
    margin-bottom: 10px;
    line-height: 1.6;
}

.doctor-info-item strong {
    color: var(--white);
    font-weight: 500;
}

.doctor-schedule-box {
    width: 100%;
    margin-top: 15px;
    padding: 12px 18px;
    background: rgba(2, 6, 23, 0.3);
    border: 1px solid rgba(162, 211, 49, 0.08);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.doctor-schedule-box i {
    font-size: 15px;
}

.doctor-btn {
    margin-top: 25px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    background: rgba(162, 211, 49, 0.06);
    border: 1px solid rgba(162, 211, 49, 0.25);
    color: var(--lime);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.doctor-btn:hover {
    background: var(--lime);
    color: var(--navy-dark);
    border-color: var(--lime);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(162, 211, 49, 0.2);
}

/* Booking CTA Section at bottom */
.booking-footer-cta {
    margin-top: 80px;
    background: radial-gradient(ellipse at center, rgba(26, 54, 131, 0.25) 0%, rgba(2, 6, 23, 0.8) 100%);
    border: 1px solid rgba(162, 211, 49, 0.12);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .doctor-card {
        padding: 30px 20px;
    }
    .doctor-name-bn {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .booking-announcement {
        padding: 25px 20px;
    }
    .booking-contacts {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .contact-pill {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .doctor-img-box {
        width: 160px;
        height: 160px;
    }
    .doctor-name-bn {
        font-size: 22px;
    }
}
