/* =========================================================
   GET WELL PHYSIOTHERAPY
   ABOUT US PAGE
========================================================= */

.about-page {
    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.about-page .section-padding {
    padding: 100px 0;
}

.about-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.about-page .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    color: #0077b9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.about-page .section-eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background: #00a651;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page p {
    margin-top: 0;
}

.about-page h1 span,
.about-page h2 span {
    color: #00a651;
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
    position: relative;
    min-height: 520px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(12, 51, 72, 0.97) 0%,
            rgba(12, 51, 72, 0.90) 45%,
            rgba(12, 51, 72, 0.55) 72%,
            rgba(12, 51, 72, 0.20) 100%
        ),
        url("../images/about-hero.webp") center center / cover no-repeat;

    color: #ffffff;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 700px;
    padding: 80px 0;
}

.about-hero .section-eyebrow {
    color: #b9f3d1;
}

.about-hero h1 {
    max-width: 720px;
    margin-bottom: 24px;

    font-size: clamp(44px, 5.5vw, 72px);
    line-height: 1.04;
    letter-spacing: -2px;
    font-weight: 800;
}

.about-hero h1 span {
    display: block;
    color: #4bd88b;
}

.about-hero p {
    max-width: 650px;
    margin-bottom: 32px;

    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.8;
}

.about-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 28px;

    border-radius: 6px;
    background: #00a651;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 12px 30px rgba(0, 166, 81, 0.25);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.about-primary-btn:hover {
    transform: translateY(-3px);
    background: #008e45;
    box-shadow: 0 16px 35px rgba(0, 166, 81, 0.32);
}

.about-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 25px;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.about-phone-btn:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: #ffffff;
}


/* =========================================================
   INTRO
========================================================= */

.about-intro {
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 80px;
}

.about-image {
    position: relative;
}

.about-image::after {
    content: "";

    position: absolute;
    right: -18px;
    bottom: -18px;

    width: 150px;
    height: 150px;

    border-right: 4px solid #00a651;
    border-bottom: 4px solid #0077b9;

    border-radius: 0 0 15px 0;

    z-index: 0;
}

.about-image img {
    position: relative;
    z-index: 1;

    display: block;
    width: 100%;
    min-height: 450px;

    object-fit: cover;
    border-radius: 12px;

    box-shadow: 0 25px 60px rgba(18, 53, 74, 0.14);
}

.about-content h2 {
    max-width: 650px;
    margin-bottom: 25px;

    color: #163f55;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -1px;
}

.about-content p {
    margin-bottom: 18px;

    color: #607783;
    font-size: 16px;
    line-height: 1.85;
}

.about-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   WELLNESS
========================================================= */

.about-wellness {
    background: #f4f9fb;
}

.about-wellness .section-heading {
    max-width: 760px;
    margin-bottom: 45px;
}

.about-wellness .section-heading h2,
.about-conditions .section-heading h2 {
    margin-bottom: 20px;

    color: #163f55;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.wellness-content {
    max-width: 900px;

    padding: 42px 48px;

    background: #ffffff;
    border-left: 4px solid #00a651;
    border-radius: 0 12px 12px 0;

    box-shadow: 0 15px 45px rgba(18, 53, 74, 0.07);
}

.wellness-content p {
    margin-bottom: 20px;

    color: #607783;
    font-size: 16px;
    line-height: 1.85;
}

.wellness-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CONDITIONS
========================================================= */

.about-conditions {
    background: #ffffff;
}

.about-conditions .section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.about-conditions .section-heading .section-eyebrow {
    justify-content: center;
}

.about-conditions .section-heading p {
    margin: 0;

    color: #607783;
    font-size: 16px;
    line-height: 1.8;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.condition-card {
    position: relative;

    min-height: 175px;
    padding: 28px 24px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #f6fafc;
    border: 1px solid #e5eef2;
    border-radius: 10px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.condition-card::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 4px;
    height: 0;

    background: #00a651;

    transition: height 0.3s ease;
}

.condition-card:hover {
    transform: translateY(-7px);

    background: #ffffff;
    border-color: #cce5ef;

    box-shadow: 0 18px 40px rgba(18, 53, 74, 0.10);
}

.condition-card:hover::before {
    height: 100%;
}

.condition-icon {
    color: #0077b9;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.condition-card h3 {
    margin: 20px 0 0;

    color: #244b60;
    font-size: 17px;
    line-height: 1.35;
}

.condition-card p {
    margin: 8px 0 0;

    color: #758994;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   PERSONALIZED CARE
========================================================= */

.about-care {
    background: #f4f9fb;
}

.about-care-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 80px;
}

.about-care .about-content h2 {
    margin-bottom: 25px;
}

.care-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.care-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    align-items: center;

    padding: 24px;

    background: #ffffff;
    border: 1px solid #e4edf1;
    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(18, 53, 74, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.care-step:hover {
    transform: translateX(6px);
    box-shadow: 0 15px 35px rgba(18, 53, 74, 0.09);
}

.care-step > span {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9f6fb;
    color: #0077b9;

    font-size: 12px;
    font-weight: 800;
}

.care-step h3 {
    margin-bottom: 6px;

    color: #244b60;
    font-size: 17px;
}

.care-step p {
    margin: 0;

    color: #718691;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    position: relative;

    padding: 75px 0;

    background:
        linear-gradient(
            120deg,
            #075f91 0%,
            #0077b9 55%,
            #006b8f 100%
        );

    color: #ffffff;
    overflow: hidden;
}

.about-cta::after {
    content: "";

    position: absolute;
    right: -100px;
    top: -180px;

    width: 450px;
    height: 450px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.about-cta-inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-cta .section-eyebrow {
    color: #b9f3d1;
}

.about-cta h2 {
    margin-bottom: 12px;

    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
}

.about-cta p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
}

.about-cta-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 28px;

    border-radius: 6px;
    background: #00a651;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    background: #008e45;
}

.about-cta-phone {
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    white-space: nowrap;
}

.about-cta-phone:hover {
    text-decoration: underline;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-page .section-padding {
        padding: 80px 0;
    }

    .about-intro-grid,
    .about-care-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-intro-grid .about-image {
        max-width: 650px;
    }

    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-page .container {
        width: calc(100% - 30px);
    }

    .about-page .section-padding {
        padding: 65px 0;
    }


    /* Hero */

    .about-hero {
        min-height: 560px;

        background:
            linear-gradient(
                90deg,
                rgba(12, 51, 72, 0.96),
                rgba(12, 51, 72, 0.80)
            ),
            url("../images/about-hero.webp") center / cover no-repeat;
    }

    .about-hero-content {
        padding: 65px 0;
    }

    .about-hero h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .about-hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .about-primary-btn,
    .about-phone-btn {
        width: 100%;
    }


    /* Intro */

    .about-image img {
        min-height: 330px;
    }

    .about-image::after {
        width: 90px;
        height: 90px;
        right: -10px;
        bottom: -10px;
    }

    .about-content h2 {
        font-size: 34px;
    }


    /* Wellness */

    .wellness-content {
        padding: 28px 25px;
    }


    /* Conditions */

    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .condition-card {
        min-height: 145px;
    }


    /* Care */

    .care-step {
        grid-template-columns: 48px 1fr;
        gap: 15px;
        padding: 20px;
    }

    .care-step > span {
        width: 44px;
        height: 44px;
    }


    /* CTA */

    .about-cta {
        padding: 60px 0;
    }

    .about-cta-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .about-cta-btn {
        width: 100%;
    }

    .about-cta-phone {
        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-hero h1 {
        font-size: 37px;
    }

    .about-hero .section-eyebrow {
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .about-page .section-eyebrow {
        font-size: 10px;
        letter-spacing: 1.3px;
    }

    .about-content h2,
    .about-wellness .section-heading h2,
    .about-conditions .section-heading h2 {
        font-size: 31px;
    }

    .about-image img {
        min-height: 280px;
    }
}