/* =========================================
   DETAIL LAYANAN PRAKTEK DOKTER
========================================= */

.doctor-service-detail {
    background: #ffffff;
}

.doctor-service-detail__description {
    max-width: 750px;
    margin: 15px auto 0;
    color: #777;
    line-height: 1.7;
}


/* =========================================
   DOCTOR CARD
========================================= */

.doctor-service-card {
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e9eef5;
    box-shadow: 0 8px 30px rgba(20, 65, 162, 0.08);
    transition: all 0.35s ease;
}

.doctor-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(20, 65, 162, 0.15);
}


/* =========================================
   IMAGE
========================================= */

.doctor-service-card__image {
    width: 100%;
    height: 340px;
    background: #f4f7fb;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

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

.doctor-service-card:hover .doctor-service-card__image img {
    transform: scale(1.04);
}


/* =========================================
   CONTENT
========================================= */

.doctor-service-card__content {
    padding: 25px 25px 27px;
}

.doctor-service-card__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1341a2;
    margin-bottom: 8px;
}

.doctor-service-card__name {
    font-size: 21px;
    line-height: 1.35;
    margin: 0 0 8px;
    color: #172033;
    font-weight: 700;
}

.doctor-service-card__specialist {
    margin: 0 0 17px;
    font-size: 15px;
    line-height: 1.6;
    color: #6c7585;
}


/* =========================================
   BRANCH
========================================= */

.doctor-service-card__branch {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 15px;
    border-top: 1px solid #edf0f5;
    color: #555e6d;
    font-size: 14px;
    line-height: 1.5;
}

.doctor-service-card__branch-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef4ff;
    color: #1341a2;
}


/* =========================================
   EMPTY STATE
========================================= */

.doctor-service-empty {
    max-width: 650px;
    margin: 20px auto 0;
    padding: 60px 30px;
    text-align: center;
    background: #f8faff;
    border-radius: 20px;
}

.doctor-service-empty__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf1ff;
    color: #1341a2;
    font-size: 30px;
}

.doctor-service-empty h3 {
    margin-bottom: 10px;
}

.doctor-service-empty p {
    max-width: 500px;
    margin: 0 auto 25px;
    color: #777;
}


/* =========================================
   CTA
========================================= */

.doctor-service-cta {
    padding-bottom: 100px;
}

.doctor-service-cta__bg {
    position: relative;
    overflow: hidden;
    padding: 55px 0;
    background-position: center;
    background-size: cover;
}

.doctor-service-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.doctor-service-cta__tagline {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.doctor-service-cta__title {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 30px;
}

.doctor-service-cta__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .doctor-service-card__image {
        height: 320px;
    }

    .doctor-service-cta__content {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 575px) {

    .doctor-service-card__image {
        height: 360px;
    }

    .doctor-service-card__content {
        padding: 20px;
    }

    .doctor-service-card__name {
        font-size: 19px;
    }

    .doctor-service-cta {
        padding-bottom: 60px;
    }

    .doctor-service-cta__title {
        font-size: 24px;
    }

}
