/* =========================================================
   GET WELL PHYSIOTHERAPY
   MASSAGE THERAPY PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.massage-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(7, 49, 72, 0.92) 0%,
            rgba(7, 49, 72, 0.78) 48%,
            rgba(7, 49, 72, 0.45) 100%
        ),
        url("../images/massage-therapy-hero.webp") center/cover no-repeat;
    overflow: hidden;
}

.massage-hero-inner {
    width: 100%;
}

.massage-hero-content {
    max-width: 760px;
    padding: 100px 0;
}

.massage-hero .section-eyebrow {
    color: #ffffff;
}

.massage-hero h1 {
    margin: 18px 0 24px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.massage-hero h1 span {
    display: block;
    color: #00a651;
}

.massage-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 19px;
    line-height: 1.75;
}

.massage-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.massage-primary-btn,
.massage-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.massage-primary-btn {
    background: #00a651;
    color: #ffffff;
}

.massage-primary-btn:hover {
    background: #008f45;
    color: #ffffff;
    transform: translateY(-2px);
}

.massage-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.massage-secondary-btn:hover {
    background: #ffffff;
    color: #0077b9;
    transform: translateY(-2px);
}


/* =========================================================
   COMMON
========================================================= */

.massage-therapy-page {
    color: #163f55;
}

.massage-therapy-page .section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.massage-therapy-page .section-heading {
    max-width: 800px;
    margin-bottom: 45px;
}

.massage-therapy-page .section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.massage-therapy-page .section-eyebrow {
    display: inline-block;
    color: #0077b9;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.massage-therapy-page h2 {
    margin: 12px 0 0;
    color: #163f55;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.massage-therapy-page h2 span {
    color: #0077b9;
}

.massage-content {
    max-width: 900px;
}

.massage-content p {
    margin: 0 0 22px;
    color: #607783;
    font-size: 17px;
    line-height: 1.85;
}

.massage-content p:last-child {
    margin-bottom: 0;
}

.massage-content strong {
    color: #163f55;
    font-weight: 700;
}


/* =========================================================
   INTRO
========================================================= */

.massage-intro {
    background: #ffffff;
}

.massage-intro .massage-content {
    max-width: 950px;
    margin: 0 auto;
}

.massage-intro .massage-content p {
    font-size: 18px;
}


/* =========================================================
   CLINICAL MASSAGE
========================================================= */

.massage-clinical {
    background: #f5f9fb;
}

.massage-clinical .massage-content {
    max-width: 900px;
    margin-bottom: 45px;
}

.massage-approach-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.massage-approach-card {
    position: relative;
    padding: 34px;
    background: #ffffff;
    border: 1px solid #e3edf2;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(22, 63, 85, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.massage-approach-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #00a651;
}

.massage-approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgba(22, 63, 85, 0.11);
}

.massage-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(0, 119, 185, 0.08);
    color: #0077b9;
    font-size: 13px;
    font-weight: 800;
}

.massage-approach-card h3 {
    margin: 0 0 13px;
    color: #163f55;
    font-size: 22px;
    line-height: 1.3;
}

.massage-approach-card p {
    margin: 0;
    color: #607783;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   CONDITIONS
========================================================= */

.massage-conditions {
    background: #ffffff;
}

.massage-conditions .massage-content {
    max-width: 900px;
    margin-bottom: 42px;
}

.massage-condition-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
}

.massage-condition-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 66px;
    padding: 12px 20px;
    border: 1px solid #e2edf2;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.25s ease;
}

.massage-condition-item:hover {
    border-color: rgba(0, 119, 185, 0.25);
    background: #f6fbfd;
    transform: translateX(4px);
}

.massage-condition-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eaf7f0;
    color: #00a651;
    font-size: 11px;
    font-weight: 800;
}

.massage-condition-item p {
    margin: 0;
    color: #294f62;
    font-size: 16px;
    font-weight: 600;
}


/* =========================================================
   MASSAGE SERVICES
========================================================= */

.massage-services {
    background: #f5f9fb;
}

.massage-services-intro {
    margin: 0 auto 45px;
    text-align: center;
}

.massage-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.massage-service-card {
    position: relative;
    min-height: 280px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e1ecf1;
    border-radius: 12px;
    box-shadow: 0 7px 26px rgba(22, 63, 85, 0.05);
    overflow: hidden;
    transition: all 0.25s ease;
}

.massage-service-card::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    right: -28px;
    bottom: -28px;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.08);
}

.massage-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 119, 185, 0.2);
    box-shadow: 0 16px 36px rgba(22, 63, 85, 0.1);
}

.massage-service-number {
    display: block;
    margin-bottom: 20px;
    color: #00a651;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.massage-service-card h3 {
    margin: 0 0 14px;
    color: #163f55;
    font-size: 21px;
    line-height: 1.3;
}

.massage-service-card p {
    margin: 0;
    color: #607783;
    font-size: 15.5px;
    line-height: 1.75;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.massage-why {
    background: #ffffff;
}

.massage-why-intro {
    margin: 0 auto 48px;
    text-align: center;
}

.massage-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.massage-why-card {
    padding: 32px 28px;
    background: #f7fafb;
    border: 1px solid #e2edf2;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.massage-why-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(22, 63, 85, 0.09);
}

.massage-why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #eaf7f0;
    color: #00a651;
    font-size: 20px;
    font-weight: 800;
}

.massage-why-card h3 {
    margin: 0 0 13px;
    color: #163f55;
    font-size: 20px;
    line-height: 1.35;
}

.massage-why-card p {
    margin: 0;
    color: #607783;
    font-size: 15.5px;
    line-height: 1.75;
}

.massage-contact-box {
    margin-top: 55px;
    text-align: center;
}

.massage-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 30px;
    border-radius: 6px;
    background: #0077b9;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.massage-contact-btn:hover {
    background: #005f96;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   FAQ
========================================================= */

.massage-faq {
    background: #f5f9fb;
}

.massage-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.massage-faq-item {
    padding: 28px 30px;
    margin-bottom: 14px;
    background: #ffffff;
    border: 1px solid #e1ecf1;
    border-radius: 10px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.massage-faq-item:last-child {
    margin-bottom: 0;
}

.massage-faq-item:hover {
    border-color: rgba(0, 119, 185, 0.22);
    box-shadow: 0 10px 26px rgba(22, 63, 85, 0.07);
}

.massage-faq-item h3 {
    position: relative;
    margin: 0 0 12px;
    padding-left: 27px;
    color: #163f55;
    font-size: 19px;
    line-height: 1.4;
}

.massage-faq-item h3::before {
    content: "?";
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #0077b9;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.massage-faq-item p {
    margin: 0;
    padding-left: 27px;
    color: #607783;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   FINAL CTA
========================================================= */

.massage-final-cta {
    position: relative;
    padding: 85px 0;
    background:
        linear-gradient(
            135deg,
            #0077b9 0%,
            #005e91 65%,
            #163f55 100%
        );
    overflow: hidden;
}

.massage-final-cta::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    top: -180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.massage-final-cta::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -100px;
    bottom: -150px;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.12);
}

.massage-final-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.massage-final-cta .section-eyebrow {
    color: #ffffff;
}

.massage-final-cta h2 {
    max-width: 650px;
    margin: 14px 0 18px;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.massage-final-cta p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
}

.massage-final-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 0 0 210px;
    gap: 12px;
}

.massage-book-btn,
.massage-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition: all 0.25s ease;
}

.massage-book-btn {
    background: #00a651;
    color: #ffffff;
}

.massage-book-btn:hover {
    background: #008f45;
    color: #ffffff;
    transform: translateY(-2px);
}

.massage-phone-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

.massage-phone-btn:hover {
    background: #ffffff;
    color: #0077b9;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .massage-hero {
        min-height: 560px;
    }

    .massage-hero-content {
        max-width: 680px;
        padding: 80px 0;
    }

    .massage-therapy-page .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .massage-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .massage-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .massage-final-cta-inner {
        align-items: flex-start;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .massage-hero {
        min-height: 570px;
        background:
            linear-gradient(
                90deg,
                rgba(7, 49, 72, 0.9),
                rgba(7, 49, 72, 0.78)
            ),
            url("../images/massage-therapy-hero.webp") center/cover no-repeat;
    }

    .massage-hero-content {
        padding: 75px 0;
    }

    .massage-hero h1 {
        font-size: 40px;
        letter-spacing: -0.8px;
    }

    .massage-hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .massage-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .massage-primary-btn,
    .massage-secondary-btn {
        width: 100%;
    }

    .massage-therapy-page .section-padding {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .massage-therapy-page h2 {
        font-size: 32px;
    }

    .massage-content p {
        font-size: 16px;
        line-height: 1.75;
    }

    .massage-approach-grid {
        grid-template-columns: 1fr;
    }

    .massage-condition-list {
        grid-template-columns: 1fr;
    }

    .massage-services-grid {
        grid-template-columns: 1fr;
    }

    .massage-service-card {
        min-height: auto;
    }

    .massage-why-grid {
        grid-template-columns: 1fr;
    }

    .massage-faq-item {
        padding: 24px 20px;
    }

    .massage-faq-item h3,
    .massage-faq-item p {
        padding-left: 25px;
    }

    .massage-final-cta {
        padding: 65px 0;
    }

    .massage-final-cta-inner {
        flex-direction: column;
        gap: 32px;
    }

    .massage-final-actions {
        width: 100%;
        flex-basis: auto;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .massage-hero {
        min-height: 540px;
    }

    .massage-hero-content {
        padding: 60px 0;
    }

    .massage-hero h1 {
        font-size: 34px;
    }

    .massage-approach-card,
    .massage-service-card,
    .massage-why-card {
        padding: 26px 22px;
    }

    .massage-condition-item {
        padding: 11px 14px;
    }

    .massage-condition-item p {
        font-size: 15px;
    }

    .massage-contact-btn {
        width: 100%;
        text-align: center;
    }

}