/* ==========================================================================
   Doctors & Specialists Page Complete Dedicated CSS Stylesheet
   Theme: Luxury Medical Ivory & Deep Royal Purple Glow
   ========================================================================== */

/* ── 1. Hero Section ── */
.doctors-hero-section {
    padding: 35px 0 70px 0;
    position: relative;
    background: linear-gradient(135deg, #fff2f6 0%, #ffffff 50%, #f4ebfc 100%);
    overflow: hidden;
}

.doctors-hero-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 82, 143, 0.12) 0%, rgba(144, 53, 234, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.doctors-hero-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(255, 82, 143, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #e01e5a;
    box-shadow: 0 4px 14px rgba(224, 30, 90, 0.08);
    margin-bottom: 20px;
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: #e01e5a;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #e01e5a;
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.doctors-hero-title {
    font-size: 44px;
    font-weight: 600;
    color: #1e1b4b;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.text-pink-highlight {
    background: linear-gradient(135deg, #e01e5a 0%, #9035ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.doctors-hero-desc {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 620px;
}

.doctors-hero-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 25px;
}

.doctors-hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 14px;
    border: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.doctors-hero-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(224, 30, 90, 0.1);
    border-color: rgba(255, 82, 143, 0.3);
}

.doctors-hero-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 82, 143, 0.1);
    color: #e01e5a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.doctors-hero-feature-text {
    font-size: 13px;
    font-weight: 600;
    color: #1e1b4b;
}

.doctors-hero-img-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.doctors-hero-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 20px 45px rgba(30, 27, 75, 0.18);
    border: 6px solid #ffffff;
    object-fit: cover;
}

.doctors-hero-floating-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 14px 22px;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    text-align: left;
}

.badge-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e01e5a 0%, #9035ea 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.doctors-hero-floating-badge-text {
    font-size: 13px;
    color: #1e1b4b;
    line-height: 1.4;
}

/* ── 2. Specialist Grid Cards & Titles ── */
.specialists-grid-section {
    padding: 70px 0 85px 0;
    background: #ffffff;
}

.doctors-section-title {
    font-size: 36px;
    font-weight: 600;
    color: #1e1b4b;
    line-height: 1.25;
    margin-bottom: 12px;
}

.doctors-section-title .text-pink {
    background: linear-gradient(135deg, #e01e5a 0%, #9035ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.doctors-section-desc {
    font-size: 15.5px;
    color: #4b5563;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
}

.specialist-profile-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #fce4ec;
    box-shadow: 0 10px 30px rgba(30, 27, 75, 0.06);
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.specialist-profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(224, 30, 90, 0.16);
    border-color: rgba(255, 82, 143, 0.45);
}

.specialist-photo-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 270px;
    background: #f8fafc;
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
}

.specialist-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.specialist-profile-card:hover .specialist-photo-wrapper img {
    transform: scale(1.06);
}

.specialist-badge-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: #e01e5a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.specialist-body {
    padding: 24px 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.specialist-name {
    font-size: 20px;
    font-weight: 600;
    color: #1e1b4b;
    margin-bottom: 4px;
}

.specialist-role-tag {
    font-size: 13px;
    font-weight: 600;
    color: #e01e5a;
    display: inline-block;
    margin-bottom: 12px;
}

.specialist-bio-text {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 18px;
}

.specialist-focus-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.specialist-focus-pill {
    font-size: 11px;
    font-weight: 600;
    background: #f8fafc;
    color: #475569;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.btn-book-specialist {
    background: linear-gradient(135deg, #e01e5a 0%, #9035ea 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 50px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 30, 90, 0.25);
    text-decoration: none;
    width: 100%;
}

.btn-book-specialist:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 30, 90, 0.4);
}

/* ── 3. Why Independent Advisory Matters (Dark Theme) ── */
.why-advisory-section {
    padding: 75px 0;
    background: radial-gradient(circle at 50% 10%, #2a1145 0%, #130722 100%);
    color: #ffffff;
    position: relative;
}

.why-advisory-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 30px 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.why-advisory-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 82, 143, 0.35);
    transform: translateY(-4px);
}

.advisory-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff528f 0%, #9035ea 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.advisory-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.advisory-card-desc {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ── 4. Clinical Domains Section ── */
.clinical-domains-section {
    padding: 70px 0;
    background: #fdfafc;
}

.domain-box {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f1e4fc;
    padding: 26px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.03);
    height: 100%;
    transition: all 0.3s ease;
}

.domain-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(144, 53, 234, 0.08);
    border-color: rgba(144, 53, 234, 0.3);
}

.domain-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.domain-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(144, 53, 234, 0.1);
    color: #9035ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.domain-title {
    font-size: 17px;
    font-weight: 600;
    color: #1e1b4b;
    margin-bottom: 0;
}

.domain-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.domain-checklist li {
    font-size: 13.5px;
    color: #475569;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.domain-checklist li i {
    color: #10b981;
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ── 5. 3-Step Consultation Workflow ── */
.consultation-workflow-section {
    padding: 70px 0;
    background: #ffffff;
}

.workflow-step-card {
    text-align: center;
    padding: 25px 20px;
    position: relative;
}

.workflow-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e01e5a 0%, #9035ea 100%);
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(224, 30, 90, 0.25);
}

.workflow-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e1b4b;
    margin-bottom: 10px;
}

.workflow-step-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ── Responsive Adaptations ── */
@media (max-width: 991.98px) {
    .doctors-hero-section {
        padding: 25px 0 50px 0;
        text-align: center;
    }

    .doctors-hero-title {
        font-size: 32px;
    }

    .doctors-hero-desc {
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .doctors-hero-features-row {
        justify-content: center;
    }

    .doctors-hero-img-wrapper {
        margin-top: 35px;
    }

    .doctors-hero-floating-badge {
        position: static;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .doctors-hero-title {
        font-size: 27px;
    }

    .specialist-photo-wrapper {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .specialist-photo-wrapper img {
        height: 100%;
        object-fit: cover;
    }

    .specialist-card-body {
        padding: 20px 16px !important;
    }

    .btn-specialist-consult {
        width: 100% !important;
        justify-content: center !important;
    }
}
