/* =====================================================
   CLINICAL SERVICES
   ===================================================== */

.clinical-services {

    padding: 80px 6%;

    background: #f5f9f8;

}


.services-heading {

    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;

}


.services-eyebrow {

    display: inline-block;

    color: #117c72;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 12px;

}


.services-heading h2 {

    margin: 0 0 18px;

    color: #123c5a;

    font-size: clamp(30px, 4vw, 44px);

}


.services-heading p {

    margin: 0;

    color: #555;

    font-size: 18px;

    line-height: 1.7;

}


/* =====================================================
   GRID
   ===================================================== */

.clinical-services-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;

}


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

.clinical-service-card {

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid #e2ecea;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.clinical-service-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 14px 32px rgba(0,0,0,0.12);

}


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


/* =====================================================
   CLINICAL SERVICE IMAGES
   SHOW COMPLETE IMAGE - NO CROPPING
   ===================================================== */

.clinical-service-image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    background: #f5f9f8;
}

.clinical-service-image img {
    display: block;

    width: 100%;
    max-width: 100%;

    height: auto;

    object-fit: contain;

    box-sizing: border-box;
}
/* =====================================================
   PREVENT HORIZONTAL OVERFLOW
   ===================================================== */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.clinical-services {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.clinical-services-grid {
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    min-width: 0;
}

.clinical-service-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}
/* =====================================================
   CONTENT
   ===================================================== */

.clinical-service-content {

    padding: 30px;

    position: relative;

}


.clinical-service-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #e7f4f1;

    color: #117c72;

    font-size: 24px;

    margin-bottom: 18px;

}


.clinical-service-content h3 {

    margin: 0 0 12px;

    color: #123c5a;

    font-size: 25px;

}


.clinical-service-content p {

    margin: 0 0 20px;

    color: #555;

    font-size: 16px;

    line-height: 1.75;

}


.clinical-service-content a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #117c72;

    font-weight: 700;

    text-decoration: none;

}


.clinical-service-content a:hover {

    text-decoration: underline;

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 700px) {

    .clinical-services {
        width: 100%;
        max-width: 100%;
        padding: 55px 20px;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .clinical-services-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 25px;
        min-width: 0;
    }

    .clinical-service-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .clinical-service-image {
        width: 100%;
        max-width: 100%;
        height: 210px;
    }co

    .clinical-service-image img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .clinical-service-content {
        padding: 25px 22px;
        box-sizing: border-box;
    }

    .clinical-service-content h3 {
        font-size: 22px;
    }

    .clinical-service-content p {
        font-size: 16px;
    }
}


/* =====================================================
   PHYSIOTHERAPY TREATMENT SERVICES
   ===================================================== */

.treatment-services {

    width: 100%;
    max-width: 100%;

    padding: 80px 6%;

    background: #ffffff;

    box-sizing: border-box;

    overflow-x: hidden;

}


.treatment-services-grid {

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;

    box-sizing: border-box;

}


.treatment-card {

    width: 100%;
    max-width: 100%;

    min-width: 0;

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid #e2ecea;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.06);

    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.treatment-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.11);

}


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

.treatment-image {

    width: 100%;
    max-width: 100%;

    height: 240px;

    background: #e8f2f0;

    overflow: hidden;

    box-sizing: border-box;

}


.treatment-image img {

    display: block;

    width: 100%;
    max-width: 100%;

    height: 100%;

    object-fit: contain;

    box-sizing: border-box;

    transition:
        transform 0.4s ease;

}


.treatment-card:hover
.treatment-image img {

    transform: scale(1.04);

}


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

.treatment-content {

    padding: 28px;

    box-sizing: border-box;

}


.treatment-content h3 {

    margin: 0 0 12px;

    color: #123c5a;

    font-size: 24px;

}


.treatment-content p {

    margin: 0;

    color: #555555;

    font-size: 16px;

    line-height: 1.75;

}


.treatment-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: #117c72;

    font-weight: 700;

    text-decoration: none;

}


.treatment-link:hover {

    text-decoration: underline;

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 700px) {

    .treatment-services {

        padding: 55px 20px;

        width: 100%;

        max-width: 100%;

        box-sizing: border-box;

        overflow-x: hidden;

    }


    .treatment-services-grid {

        width: 100%;

        max-width: 100%;

        grid-template-columns:
            minmax(0, 1fr);

        gap: 25px;

    }


    .treatment-card {

        width: 100%;

        max-width: 100%;

        min-width: 0;

    }


    .treatment-image {

        width: 100%;

        max-width: 100%;

        height: 210px;

    }


    .treatment-image img {

        width: 100%;

        max-width: 100%;

        height: 100%;

        object-fit: contain;

    }


    .treatment-content {

        padding: 25px 22px;

    }


    .treatment-content h3 {

        font-size: 22px;

    }


    .treatment-content p {

        font-size: 16px;

        line-height: 1.7;

    }

}

@media (max-width: 700px) {

    .clinical-service-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        overflow: hidden;
        box-sizing: border-box;
    }

    .clinical-service-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

}
