/* =========================================================
   SERVICES PAGE ONLY
   Dr. M A Suboor Shaherose
========================================================= */

:root {
    --services-navy: #111a4a;
    --services-blue: #0c64b0;

    --services-purple: #7139a6;
    --services-purple-dark: #5d2c91;
    --services-purple-soft: #f2ebf8;

    --services-text: #202438;
    --services-muted: #66718a;

    --services-border: #e7e8ef;
    --services-light: #f8f9fc;

    --services-white: #ffffff;

    --services-shadow:
        0 12px 32px rgba(17, 26, 74, 0.07);

    --services-shadow-hover:
        0 18px 42px rgba(17, 26, 74, 0.11);
}


/* =========================================================
   PAGE BASE
========================================================= */

.services-page {
    width: 100%;
    overflow-x: hidden;

    color: var(--services-text);

    background: var(--services-white);
}


/*
   Use this class only for Services page body content.

   Header/footer use shared .container from shared-theme.css.
*/

.services-container {
    width: min(1240px, calc(100% - 48px));

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   COMMON SECTION LABEL
========================================================= */

.section-eyebrow,
.services-kicker {
    display: inline-block;

    color: var(--services-purple);

    font-size: 14px;
    line-height: 1.4;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


/* =========================================================
   HOW WE TREAT
========================================================= */

.treatment-section {
    width: 100%;

    padding: 82px 0 90px;

    background: #ffffff;
}


/* =========================================================
   HOW WE TREAT HEADING
========================================================= */

.section-title-wrap {
    width: 100%;

    max-width: 1000px;

    margin: 0 auto 42px;

    text-align: center;
}


.section-title-wrap .section-eyebrow {
    display: block;

    width: fit-content;

    margin: 0 auto 10px;
}


.section-title-wrap h2 {
    margin: 0;

    color: var(--services-navy);

    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.14;

    font-weight: 700;

    text-align: center;
}


/* =========================================================
   TREATMENT TABS
   DESKTOP = ALL 5 IN SAME ROW
========================================================= */

.treatment-tabs {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        1.65fr
        1.45fr;

    gap: 12px;

    width: 100%;

    margin: 0 0 30px;
}


.treatment-tab {
    width: 100%;
    min-width: 0;

    min-height: 82px;

    padding: 14px 16px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 1px solid #d7dbe5;

    background: #ffffff;

    color: var(--services-text);

    cursor: pointer;

    text-align: left;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.3;

    white-space: normal;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.treatment-tab i {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: inherit;

    font-size: 23px;

    line-height: 1;
}


.treatment-tab span {
    min-width: 0;
}


.treatment-tab:hover {
    color: var(--services-purple);

    border-color:
        rgba(113, 57, 166, 0.45);

    transform: translateY(-2px);

    box-shadow:
        0 10px 22px
        rgba(17, 26, 74, 0.07);
}


.treatment-tab.active {
    color: #ffffff;

    background:
        var(--services-purple);

    border-color:
        var(--services-purple);

    box-shadow:
        0 12px 28px
        rgba(113, 57, 166, 0.20);
}


.treatment-tab.active i {
    color: #ffffff;
}


/* =========================================================
   TREATMENT IMAGE + CONTENT
========================================================= */

.treatment-stage {
    display: grid;

    grid-template-columns:
        minmax(330px, 0.92fr)
        minmax(0, 1.08fr);

    align-items: stretch;

    width: 100%;

    min-height: 390px;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid #ececf2;

    border-radius: 14px;

    box-shadow:
        0 18px 46px
        rgba(23, 33, 61, 0.07);
}


/* =========================================================
   IMAGE SIDE
========================================================= */

.treatment-image-box {
    position: relative;

    width: 100%;

    min-height: 390px;

    overflow: hidden;

    background: #f4f4f4;
}


.treatment-main-image {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 390px;

    object-fit: cover;

    object-position: center;
}


.treatment-image-box::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(17, 26, 74, 0.01),
            rgba(113, 57, 166, 0.04)
        );
}


/* =========================================================
   TREATMENT CONTENT
========================================================= */

.treatment-content {
    padding:
        clamp(38px, 4.5vw, 58px);

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.treatment-content h3 {
    margin: 0 0 18px;

    color:
        var(--services-purple);

    font-size:
        clamp(32px, 3vw, 44px);

    line-height: 1.2;

    font-weight: 700;
}


.treatment-content .treatment-lead {
    margin: 0 0 20px;

    color: #252b40;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.7;
}


.treatment-content #serviceBody p {
    margin: 0 0 16px;

    color: #5d6579;

    font-size: 16px;

    line-height: 1.8;
}


.treatment-content #serviceBody p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   KNOW MORE
   USER REQUEST: REMOVE BUTTON
========================================================= */

.service-know-more {
    display: none !important;
}


/* =========================================================
   WORLD CLASS EXPERTISE
========================================================= */

.expertise-band {
    width: 100%;

    padding: 44px 0;

    background:
        linear-gradient(
            100deg,
            var(--services-purple-dark),
            #7e388a
        );
}


.expertise-band-inner {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 22px;

    text-align: center;
}


.expertise-band-inner > div {
    max-width: 920px;
}


.expertise-band h2 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size:
        clamp(30px, 3vw, 40px);

    line-height: 1.2;

    text-align: center;
}


.expertise-band p {
    max-width: 900px;

    margin: 0 auto;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 17px;

    line-height: 1.75;

    text-align: center;
}


.expertise-consult-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 24px;

    border-radius: 999px;

    background:
        var(--services-navy);

    color: #ffffff;

    font-size: 15px;

    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, 0.13);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.expertise-consult-btn:hover {
    transform: translateY(-2px);

    background:
        #081542;
}


/* =========================================================
   WE TREAT SECTION
========================================================= */

.we-treat-section {
    width: 100%;

    padding: 84px 0 92px;

    background: #ffffff;
}


/* =========================================================
   WE TREAT HEADING
========================================================= */

.we-treat-heading {
    width: 100%;

    max-width: 940px;

    margin: 0 auto 46px;

    text-align: center;
}


/*
   Cancers heading should remain,
   only old orange/purple line is removed.
*/

.eyebrow-line {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    margin-bottom: 10px;

    color:
        var(--services-purple);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    text-align: center;
}


/* REMOVE LINE BESIDE CANCERS */

.eyebrow-line i {
    display: none !important;
}


.we-treat-heading h2 {
    margin: 0 0 15px;

    color:
        var(--services-navy);

    font-size:
        clamp(38px, 4vw, 52px);

    line-height: 1.14;

    text-align: center;
}


.we-treat-heading > p {
    max-width: 820px;

    margin: 0 auto;

    color:
        var(--services-muted);

    font-size: 18px;

    line-height: 1.75;

    text-align: center;
}


/* =========================================================
   CANCER CARDS
========================================================= */

.we-treat-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


.cancer-card {
    min-height: 195px;

    padding: 30px 27px;

    display: grid;

    grid-template-columns:
        54px minmax(0, 1fr);

    gap: 19px;

    align-items: start;

    background: #ffffff;

    border:
        1px solid #eceef3;

    border-radius: 12px;

    box-shadow:
        var(--services-shadow);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.cancer-card:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(113, 57, 166, 0.23);

    box-shadow:
        var(--services-shadow-hover);
}


/* =========================================================
   ALL CANCER ICONS VISIBLE
========================================================= */

.cancer-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--services-purple-soft);

    color:
        var(--services-purple);

    font-size: 22px;

    line-height: 1;
}


.cancer-icon i {
    display: inline-block !important;

    visibility: visible !important;

    opacity: 1 !important;

    color:
        var(--services-purple) !important;

    font-size: 22px !important;

    line-height: 1 !important;
}


.cancer-card h3 {
    margin: 0 0 10px;

    color:
        var(--services-navy);

    font-size: 20px;

    line-height: 1.35;
}


.cancer-card p {
    margin: 0;

    color: #555d70;

    font-size: 16px;

    line-height: 1.72;
}


/* =========================================================
   ADDITIONAL CLINICAL EXPERTISE
========================================================= */

.additional-expertise {
    width: 100%;

    padding: 82px 0 92px;

    background:
        var(--services-light);
}


.additional-heading {
    width: 100%;

    max-width: 900px;

    margin: 0 auto 44px;

    text-align: center;
}


.additional-heading .section-eyebrow {
    display: block;

    width: fit-content;

    margin: 0 auto 10px;
}


.additional-heading h2 {
    margin: 0;

    color:
        var(--services-navy);

    font-size:
        clamp(36px, 4vw, 48px);

    line-height: 1.15;

    text-align: center;
}


.additional-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;
}


.additional-grid > div {
    min-height: 125px;

    padding: 25px 18px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 13px;

    text-align: center;

    background: #ffffff;

    border:
        1px solid #eaebf0;

    border-radius: 10px;

    box-shadow:
        0 8px 24px
        rgba(17, 26, 74, 0.05);
}


.additional-grid i {
    display: inline-block !important;

    visibility: visible !important;

    opacity: 1 !important;

    color:
        var(--services-purple) !important;

    font-size: 25px !important;

    line-height: 1 !important;
}


.additional-grid span {
    color: #2a3148;

    font-size: 16px;

    font-weight: 800;

    line-height: 1.45;
}


/* =========================================================
   LARGE DESKTOP / 24 INCH
========================================================= */

@media (min-width: 1440px) {

    .services-container {
        width:
            min(
                1320px,
                calc(100% - 80px)
            );
    }


    .treatment-section,
    .we-treat-section,
    .additional-expertise {
        padding-top: 96px;
        padding-bottom: 100px;
    }


    .section-title-wrap h2,
    .we-treat-heading h2 {
        font-size:
            clamp(42px, 4vw, 56px);
    }


    .treatment-tab {
        min-height: 86px;

        font-size: 15px;
    }


    .treatment-content .treatment-lead {
        font-size: 19px;
    }


    .treatment-content #serviceBody p {
        font-size: 17px;
    }


    .cancer-card p {
        font-size: 16.5px;
    }


    .additional-grid span {
        font-size: 16.5px;
    }
}


/* =========================================================
   SMALL DESKTOP / LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .services-container {
        width:
            min(
                1140px,
                calc(100% - 44px)
            );
    }


    .treatment-tabs {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }


    .treatment-tab {
        min-height: 82px;
    }


    .we-treat-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .additional-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .services-container {
        width:
            calc(100% - 40px);
    }


    .treatment-section,
    .we-treat-section,
    .additional-expertise {
        padding:
            70px 0 76px;
    }


    .section-title-wrap,
    .we-treat-heading,
    .additional-heading {
        margin-bottom: 38px;
    }


    /* 3 + 2 */

    .treatment-tabs {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap: 10px;
    }


    .treatment-tab {
        padding:
            13px 12px;

        font-size: 13px;
    }


    .treatment-stage {
        grid-template-columns: 1fr;

        min-height: auto;
    }


    .treatment-image-box {
        min-height: 320px;

        height: 320px;
    }


    .treatment-main-image {
        height: 320px;

        min-height: 320px;
    }


    .treatment-content {
        padding:
            38px 32px;
    }


    .expertise-band {
        padding:
            42px 0;
    }


    .we-treat-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .additional-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .services-container {
        width:
            calc(100% - 32px);
    }


    .treatment-section,
    .we-treat-section,
    .additional-expertise {
        padding:
            58px 0 64px;
    }


    .section-eyebrow,
    .services-kicker,
    .eyebrow-line {
        font-size: 12px;

        letter-spacing: 1.4px;
    }


    .section-title-wrap {
        margin-bottom: 30px;
    }


    .section-title-wrap h2,
    .we-treat-heading h2,
    .additional-heading h2 {
        font-size: 31px;

        line-height: 1.2;
    }


    .we-treat-heading > p {
        font-size: 16px;

        line-height: 1.7;
    }


    /* TABS = 2 COLUMNS */

    .treatment-tabs {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 9px;

        margin-bottom: 22px;
    }


    .treatment-tab {
        min-height: 80px;

        padding:
            12px 9px;

        flex-direction: column;

        gap: 7px;

        text-align: center;

        font-size: 12px;

        line-height: 1.3;
    }


    .treatment-tab i {
        font-size: 20px;
    }


    /* IMAGE */

    .treatment-image-box {
        height: 250px;

        min-height: 250px;
    }


    .treatment-main-image {
        height: 250px;

        min-height: 250px;
    }


    /* CONTENT */

    .treatment-content {
        padding:
            30px 22px;
    }


    .treatment-content h3 {
        margin-bottom: 14px;

        font-size: 30px;
    }


    .treatment-content .treatment-lead {
        margin-bottom: 15px;

        font-size: 16px;

        line-height: 1.65;
    }


    .treatment-content #serviceBody p {
        margin-bottom: 13px;

        font-size: 15px;

        line-height: 1.72;
    }


    /* WORLD CLASS */

    .expertise-band {
        padding:
            40px 0;
    }


    .expertise-band h2 {
        font-size: 29px;
    }


    .expertise-band p {
        font-size: 15.5px;
    }


    /* WE TREAT */

    .we-treat-heading {
        margin-bottom: 32px;
    }


    .we-treat-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .cancer-card {
        min-height: auto;

        padding:
            24px 20px;

        grid-template-columns:
            48px minmax(0, 1fr);

        gap: 15px;
    }


    .cancer-icon {
        width: 46px;
        height: 46px;

        font-size: 20px;
    }


    .cancer-icon i {
        font-size: 20px !important;
    }


    .cancer-card h3 {
        font-size: 18px;
    }


    .cancer-card p {
        font-size: 15px;
    }


    /* ADDITIONAL */

    .additional-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .additional-grid > div {
        min-height: 105px;

        padding:
            21px 16px;
    }


    .additional-grid span {
        font-size: 15px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .services-container {
        width:
            calc(100% - 28px);
    }


    .section-title-wrap h2,
    .we-treat-heading h2,
    .additional-heading h2 {
        font-size: 28px;
    }


    /*
       VERY SMALL MOBILE:
       ONE TAB EACH ROW
    */

    .treatment-tabs {
        grid-template-columns:
            1fr;
    }


    .treatment-tab {
        min-height: 68px;

        flex-direction: row;

        justify-content: flex-start;

        padding:
            12px 16px;

        text-align: left;

        font-size: 13px;
    }


    .treatment-image-box {
        height: 220px;

        min-height: 220px;
    }


    .treatment-main-image {
        height: 220px;

        min-height: 220px;
    }


    .treatment-content {
        padding:
            26px 18px;
    }


    .treatment-content h3 {
        font-size: 27px;
    }


    .expertise-band h2 {
        font-size: 27px;
    }


    .cancer-card {
        padding:
            21px 17px;
    }


    .cancer-card h3 {
        font-size: 17px;
    }


    .cancer-card p {
        font-size: 14.5px;
    }

}