/* =========================================================
   GET WELL PHYSIOTHERAPY
   OUR MISSION PAGE
========================================================= */

.mission-page {
    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.mission-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.mission-page .section-padding {
    padding: 100px 0;
}

.mission-page .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    color: #0077b9;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.mission-page .section-eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background: #00a651;
}

.mission-page h1,
.mission-page h2,
.mission-page h3,
.mission-page p {
    margin-top: 0;
}

.mission-page h1 span,
.mission-page h2 span {
    color: #00a651;
}


/* =========================================================
   HERO
========================================================= */

.mission-hero {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(12, 51, 72, 0.97) 0%,
            rgba(12, 51, 72, 0.90) 48%,
            rgba(12, 51, 72, 0.48) 100%
        ),
        url("../images/mission-hero.webp") center / cover no-repeat;

    color: #ffffff;
}

.mission-hero-inner {
    position: relative;
    z-index: 2;
}

.mission-hero-content {
    max-width: 700px;
    padding: 80px 0;
}

.mission-hero .section-eyebrow {
    color: #b9f3d1;
}

.mission-hero h1 {
    margin-bottom: 24px;

    font-size: clamp(44px, 5.5vw, 70px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 800;
}

.mission-hero h1 span {
    display: block;
    color: #4bd88b;
}

.mission-hero p {
    max-width: 650px;
    margin: 0;

    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   MISSION STATEMENT
========================================================= */

.mission-statement {
    background: #ffffff;
}

.mission-statement-box {
    position: relative;

    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 35px;

    padding: 65px 70px;

    background:
        linear-gradient(
            135deg,
            #f2f9fc 0%,
            #ffffff 100%
        );

    border: 1px solid #e0ebef;
    border-radius: 16px;

    box-shadow: 0 20px 55px rgba(18, 53, 74, 0.07);
}

.mission-mark {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    color: #00a651;

    font-family: Georgia, serif;
    font-size: 105px;
    line-height: 0.75;
    font-weight: 700;
}

.mission-statement-content {
    max-width: 900px;
}

.mission-statement-content .section-eyebrow {
    margin-bottom: 22px;
}

.mission-statement-content blockquote {
    margin: 0 0 35px;

    color: #244b60;

    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.55;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.mission-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-author-line {
    width: 38px;
    height: 2px;

    flex-shrink: 0;

    background: #00a651;
}

.mission-author strong {
    display: block;

    margin-bottom: 4px;

    color: #163f55;

    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.mission-author small {
    display: block;

    color: #708590;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   MISSION PILLARS
========================================================= */

.mission-pillars {
    background: #f4f9fb;
}

.mission-pillars .section-heading {
    max-width: 760px;
    margin: 0 auto 55px;

    text-align: center;
}

.mission-pillars .section-heading .section-eyebrow {
    justify-content: center;
}

.mission-pillars .section-heading h2 {
    margin-bottom: 20px;

    color: #163f55;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.mission-pillars .section-heading p {
    margin: 0;

    color: #607783;

    font-size: 16px;
    line-height: 1.8;
}

.mission-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mission-pillar {
    position: relative;

    min-height: 285px;
    padding: 30px 26px;

    background: #ffffff;

    border: 1px solid #e1ebef;
    border-radius: 12px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.mission-pillar::before {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: #00a651;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.3s ease;
}

.mission-pillar:hover {
    transform: translateY(-7px);

    border-color: #cce4ed;

    box-shadow: 0 20px 45px rgba(18, 53, 74, 0.09);
}

.mission-pillar:hover::before {
    transform: scaleX(1);
}

.pillar-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 35px;

    border-radius: 50%;

    background: #e9f6fb;
    color: #0077b9;

    font-size: 11px;
    font-weight: 800;
}

.mission-pillar h3 {
    margin-bottom: 13px;

    color: #244b60;

    font-size: 19px;
    line-height: 1.3;
}

.mission-pillar p {
    margin: 0;

    color: #708590;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   PATIENT JOURNEY
========================================================= */

.mission-journey {
    background: #ffffff;
}

.mission-journey-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 80px;
}

.mission-journey-content h2 {
    margin-bottom: 25px;

    color: #163f55;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -1px;
}

.mission-journey-content p {
    margin-bottom: 18px;

    color: #607783;

    font-size: 16px;
    line-height: 1.85;
}

.mission-journey-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   JOURNEY STEPS
========================================================= */

.mission-journey-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.journey-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 20px;

    padding: 25px;

    background: #f5fafc;

    border: 1px solid #e1ebef;
    border-radius: 10px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.journey-step:hover {
    transform: translateX(7px);

    background: #ffffff;

    box-shadow: 0 15px 35px rgba(18, 53, 74, 0.08);
}

.journey-step > span {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9f6fb;
    color: #0077b9;

    font-size: 11px;
    font-weight: 800;
}

.journey-step h3 {
    margin-bottom: 6px;

    color: #244b60;

    font-size: 17px;
}

.journey-step p {
    margin: 0;

    color: #718691;

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   CTA
========================================================= */

.mission-cta {
    position: relative;

    padding: 75px 0;

    background:
        linear-gradient(
            120deg,
            #075f91 0%,
            #0077b9 55%,
            #006b8f 100%
        );

    color: #ffffff;

    overflow: hidden;
}

.mission-cta::after {
    content: "";

    position: absolute;

    right: -130px;
    top: -190px;

    width: 450px;
    height: 450px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.mission-cta-inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.mission-cta .section-eyebrow {
    color: #b9f3d1;
}

.mission-cta h2 {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
}

.mission-cta p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;
}

.mission-cta-actions {
    display: flex;
    align-items: center;
    gap: 22px;

    flex-shrink: 0;
}

.mission-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 30px;

    border-radius: 6px;

    background: #00a651;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.mission-cta-btn:hover {
    transform: translateY(-3px);

    background: #008e45;

    box-shadow: 0 17px 35px rgba(0, 0, 0, 0.18);
}

.mission-cta-phone {
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    white-space: nowrap;
}

.mission-cta-phone:hover {
    text-decoration: underline;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .mission-page .section-padding {
        padding: 80px 0;
    }

    .mission-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-journey-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .mission-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .mission-page .container {
        width: calc(100% - 30px);
    }

    .mission-page .section-padding {
        padding: 65px 0;
    }


    /* Hero */

    .mission-hero {
        min-height: 500px;

        background:
            linear-gradient(
                90deg,
                rgba(12, 51, 72, 0.96),
                rgba(12, 51, 72, 0.82)
            ),
            url("../images/mission-hero.webp") center / cover no-repeat;
    }

    .mission-hero-content {
        padding: 65px 0;
    }

    .mission-hero h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .mission-hero p {
        font-size: 16px;
        line-height: 1.7;
    }


    /* Mission statement */

    .mission-statement-box {
        grid-template-columns: 1fr;
        gap: 10px;

        padding: 38px 25px;
    }

    .mission-mark {
        justify-content: flex-start;

        height: 45px;

        font-size: 75px;
    }

    .mission-statement-content blockquote {
        font-size: 22px;
        line-height: 1.55;
    }


    /* Pillars */

    .mission-pillars-grid {
        grid-template-columns: 1fr;
    }

    .mission-pillar {
        min-height: auto;
    }


    /* Journey */

    .journey-step {
        grid-template-columns: 48px 1fr;
        gap: 15px;

        padding: 20px;
    }

    .journey-step > span {
        width: 44px;
        height: 44px;
    }


    /* CTA */

    .mission-cta {
        padding: 60px 0;
    }

    .mission-cta-actions {
        width: 100%;

        align-items: stretch;
        flex-direction: column;
    }

    .mission-cta-btn {
        width: 100%;
    }

    .mission-cta-phone {
        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .mission-hero h1 {
        font-size: 37px;
    }

    .mission-hero .section-eyebrow,
    .mission-page .section-eyebrow {
        font-size: 10px;
        letter-spacing: 1.3px;
    }

    .mission-pillars .section-heading h2,
    .mission-journey-content h2 {
        font-size: 31px;
    }

    .mission-statement-content blockquote {
        font-size: 20px;
    }
}