/* ================= PHYSIOTHERAPY HERO ================= */
/* =========================
   PHYSIOTHERAPY HERO
========================= */

.physio-hero {
    position: relative;
    width: 100%;
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("../images/services/physiotherapy-hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.physio-hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.56);

    z-index: 1;
}

.physio-hero-card {
    position: relative;
    z-index: 2;

    width: min(780px, calc(100% - 40px));
    min-height: 365px;

    padding: 46px 55px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 24px;
}

.physio-hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 16px;

    margin-bottom: 22px;

    border-radius: 999px;

    background: #B5DED2;
    color: #075E52;

    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.physio-hero-card h1 {
    margin-bottom: 16px;

    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.4px;

    color: #111318;
}

.physio-hero-card p {
    max-width: 700px;

    margin: 0 auto 26px;

    font-family: var(--font-body);
    font-size: 14px;
    line-height: 23px;

    color: #ffffff;
}

.physio-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;
}

.physio-book-btn,
.physio-call-btn {
    height: 46px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 999px;

    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.physio-book-btn img,
.physio-call-btn img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.physio-book-btn {
    background: #3BA8D0;
    color: #ffffff;
}

.physio-book-btn:hover {
    background: #258FB7;
    transform: translateY(-1px);
}

.physio-call-btn {
    background: #ffffff;
    color: #075E52;

    border: 1px solid rgba(255, 255, 255, 0.8);
}

.physio-call-btn:hover {
    background: #F5F8F8;
    transform: translateY(-1px);
}


/* =========================
   HERO RESPONSIVE
========================= */

@media (max-width: 768px) {

    .physio-hero {
        min-height: 560px;
        padding: 30px 0;
    }

    .physio-hero-card {
        min-height: auto;
        padding: 38px 24px;
    }

    .physio-hero-card h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .physio-hero-card p {
        font-size: 13px;
        line-height: 21px;
    }

    .physio-hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .physio-book-btn,
    .physio-call-btn {
        width: 100%;
        max-width: 260px;
    }
}
/* ================================
   EXPERT CARE SECTION
================================ */

.physio-expert{
    width:100%;
    padding:88px 0;
    background:#fff;
}

.physio-expert-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:64px;
}

/* Image */

.physio-expert-image{
    width:520px;
    flex-shrink:0;
    background:#fff;
    border:1px solid #E8EBEF;
    overflow:hidden;
}

.physio-expert-image img{
    width:100%;
    height:365px;
    object-fit:cover;
    display:block;
}

.physio-image-caption{
    min-height:48px;
    padding:10px 12px;

    display:flex;
    align-items:center;

    background:#fff;

    font-family:"Plus Jakarta Sans", sans-serif;
    font-size:12px;
    font-weight:400;
    line-height:18px;
    color:#7A8088;
}

/* Content */

.physio-expert-content{
    flex:1;
    max-width:600px;
}

.physio-eyebrow{
    margin-bottom:16px;

    font-family:"Manrope", sans-serif;
    font-size:11px;
    font-weight:600;
    line-height:16px;
    letter-spacing:1.5px;
    text-transform:uppercase;

    color:#006780;
}

.physio-expert-content h2{
    margin:0;

    font-family:"Manrope", sans-serif;
    font-size:40px;
    font-weight:600;
    line-height:46px;
    letter-spacing:-1px;

    color:#111318;
}

.physio-divider{
    width:40px;
    height:1px;

    margin:18px 0 18px;

    background:#B8BEC7;
}

.physio-expert-content p{
    margin:0 0 14px;

    font-family:"Plus Jakarta Sans", sans-serif;
    font-size:13px;
    font-weight:400;
    line-height:20px;

    color:#555B64;
}

.physio-expert-content p:last-child{
    margin-bottom:0;
}


/* ================================
   RESPONSIVE
================================ */

@media(max-width:900px){

    .physio-expert{
        padding:64px 0;
    }

    .physio-expert-container{
        flex-direction:column;
        align-items:flex-start;
        gap:40px;
    }

    .physio-expert-image{
        width:100%;
        max-width:520px;
    }

    .physio-expert-content{
        max-width:100%;
    }
}

@media(max-width:600px){

    .physio-expert{
        padding:52px 0;
    }

    .physio-expert-image img{
        height:280px;
    }

    .physio-expert-content h2{
        font-size:32px;
        line-height:40px;
    }

    .physio-expert-content p{
        font-size:14px;
        line-height:22px;
    }
}

/* ================================
   OUR TREATMENT PROCESS
================================ */

.treatment-process{
    width:100%;
    padding:82px 0 88px;
    background:#F3F8F7;
}

.treatment-container{
    max-width:1140px;
}

/* Heading */

.treatment-heading{
    text-align:center;
    margin-bottom:70px;
}

.treatment-heading h2{
    margin:0 0 8px;

    font-family:"Manrope", sans-serif;
    font-size:38px;
    font-weight:600;
    line-height:48px;
    letter-spacing:-0.8px;

    color:#111318;
}

.treatment-heading p{
    margin:0;

    font-family:"Plus Jakarta Sans", sans-serif;
    font-size:15px;
    font-weight:400;
    line-height:24px;

    color:#4E565B;
}

/* Cards layout */

.treatment-grid{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    column-gap:32px;
    row-gap:32px;
}

/* First 3 cards */

.treatment-card:nth-child(1),
.treatment-card:nth-child(2),
.treatment-card:nth-child(3){
    grid-column:span 2;
}

/* Bottom 2 cards centered */

.treatment-card:nth-child(4){
    grid-column:2 / span 2;
}

.treatment-card:nth-child(5){
    grid-column:4 / span 2;
}

/* Card */

.treatment-card{
    min-height:252px;
    padding:32px 32px 28px;

    background:#FFFFFF;
    border:1px solid #E7ECEA;
    border-radius:30px;

    box-shadow:0 2px 5px rgba(15,35,30,0.04);

    transition:transform .25s ease, box-shadow .25s ease;
}

.treatment-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(15,35,30,0.07);
}

/* Number */

.step-number{
    width:40px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:24px;

    border-radius:50%;
    background:#3F9FC2;

    font-family:"Manrope", sans-serif;
    font-size:14px;
    font-weight:600;
    line-height:20px;

    color:#FFFFFF;
}

/* Card heading */

.treatment-card h3{
    margin:0 0 12px;

    font-family:"Manrope", sans-serif;
    font-size:18px;
    font-weight:600;
    line-height:26px;
    letter-spacing:-0.2px;

    color:#151719;
}

/* Card text */

.treatment-card p{
    margin:0;

    font-family:"Plus Jakarta Sans", sans-serif;
    font-size:14px;
    font-weight:400;
    line-height:22px;

    color:#51595C;
}


/* ================================
   RESPONSIVE
================================ */

@media(max-width:1000px){

    .treatment-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .treatment-card:nth-child(1),
    .treatment-card:nth-child(2),
    .treatment-card:nth-child(3),
    .treatment-card:nth-child(4),
    .treatment-card:nth-child(5){
        grid-column:auto;
    }

    .treatment-card:nth-child(5){
        grid-column:1 / -1;
        max-width:50%;
        justify-self:center;
    }
}


@media(max-width:650px){

    .treatment-process{
        padding:60px 0;
    }

    .treatment-heading{
        margin-bottom:45px;
    }

    .treatment-heading h2{
        font-size:30px;
        line-height:40px;
    }

    .treatment-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .treatment-card:nth-child(5){
        grid-column:auto;
        max-width:none;
    }

    .treatment-card{
        min-height:auto;
        padding:28px 24px;
        border-radius:24px;
    }
}

/* ================================
   KEY BENEFITS
================================ */

.physio-benefits{
    width:100%;
    padding:88px 0 96px;
   background:#F0F3FF;
}

.benefits-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 56px;
}

.benefits-eyebrow{
    margin-bottom:10px;

    font-family:"Manrope", sans-serif;
    font-size:13px;
    font-weight:600;
    line-height:20px;
    letter-spacing:1.4px;
    text-transform:uppercase;

    color:#176B60;
}

.benefits-heading h2{
    margin:0 0 8px;

    font-family:"Manrope", sans-serif;
    font-size:36px;
    font-weight:600;
    line-height:48px;
    letter-spacing:-0.8px;

    color:#202A45;
}

.benefits-heading p{
    max-width:680px;
    margin:0 auto;

    font-family:"Plus Jakarta Sans", sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:26px;

    color:#4C535B;
}


/* Grid */

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
    max-width:1005px;
    margin:0 auto;
}


/* Card */

.benefit-card{
    min-height:104px;
    padding:20px 24px;

    display:flex;
    align-items:center;
    gap:20px;

    background:#FFFFFF;
    border:1px solid #DDE5E5;
    border-radius:16px;

    box-shadow:0 2px 5px rgba(20,40,40,.04);
}


/* Icon circle */

.benefit-icon{
    width:56px;
    height:56px;
    min-width:56px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#E5F3F0;
}

.benefit-icon img{
    width:28px;
    height:28px;
    object-fit:contain;
}


/* Text */

.benefit-card h3{
    margin:0;

    font-family:"Manrope", sans-serif;
    font-size:18px;
    font-weight:600;
    line-height:26px;
    letter-spacing:-0.2px;

    color:#202A45;
}


/* ================================
   RESPONSIVE
================================ */

@media(max-width:700px){

    .physio-benefits{
        padding:64px 0;
    }

    .benefits-heading{
        margin-bottom:40px;
    }

    .benefits-heading h2{
        font-size:30px;
        line-height:40px;
    }

    .benefits-heading p{
        font-size:14px;
        line-height:23px;
    }

    .benefits-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .benefit-card{
        min-height:92px;
        padding:18px;
    }

    .benefit-card h3{
        font-size:16px;
        line-height:24px;
    }

    .benefit-icon{
        width:50px;
        height:50px;
        min-width:50px;
    }

    .benefit-icon img{
        width:24px;
        height:24px;
    }
}
/* ================================
   FAQ SECTION
================================ */

/* ================================
   FAQ SECTION
================================ */

/* =========================
   PHYSIOTHERAPY FAQ
========================= */

.physio-faq {
    padding: 88px 0;
    background: #ffffff;
}

.physio-faq-container {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 52px;

    align-items: start;
}


/* LEFT */

.physio-faq-left .eyebrow {
    display: block;
    margin-bottom: 20px;
}

.physio-faq-left h2 {
    margin-bottom: 30px;

    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1.5px;

    color: #111318;
}


/* ADVICE CARD */

.physio-advice-card {
    width: 100%;

    padding: 22px 20px;

    border-radius: 14px;

    background: #F1F2F2;
    border: 1px solid #DEE2E2;
}

.physio-advice-title {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;

    color: #075E52;
}

.physio-advice-icon {
    width: 16px;
    height: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #075E52;
    border-radius: 50%;

    font-size: 10px;
    font-weight: 700;
}

.physio-advice-card p {
    margin-bottom: 14px;

    font-size: 12px;
    line-height: 19px;

    color: #5C6167;
}

.physio-advice-btn {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 8px 17px;

    border-radius: 999px;

    background: #075E52;
    color: #ffffff;

    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;

    transition: 0.3s ease;
}

.physio-advice-btn:hover {
    background: #05483F;
}


/* RIGHT FAQ */

.physio-faq-right {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.physio-faq-right .faq-item {
    overflow: hidden;

    border: 1px solid #D9DDE2;
    border-radius: 12px;

    background: #ffffff;

    transition: 0.3s ease;
}

.physio-faq-right .faq-item:hover {
    border-color: #C9CED4;
}

.physio-faq-right .faq-question {
    width: 100%;

    min-height: 82px;

    padding: 22px 26px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background: transparent;

    text-align: left;

    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;

    color: #111318;
}

.physio-faq-right .faq-icon {
    flex-shrink: 0;

    font-size: 22px;
    font-weight: 400;

    color: #3E4349;
}

.physio-faq-right .faq-answer {
    display: none;

    padding: 0 26px 20px;
}

.physio-faq-right .faq-answer p {
    font-size: 13px;
    line-height: 21px;

    color: #575C64;
}

.physio-faq-right .faq-item.active .faq-answer {
    display: block;
}


/* =========================
   FAQ RESPONSIVE
========================= */

@media (max-width: 900px) {

    .physio-faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .physio-faq-left {
        max-width: 600px;
    }

    .physio-faq-left h2 {
        font-size: 40px;
    }
}

@media (max-width: 600px) {

    .physio-faq {
        padding: 64px 0;
    }

    .physio-faq-left h2 {
        font-size: 32px;
        line-height: 1.15;
    }

    .physio-faq-right .faq-question {
        min-height: 70px;
        padding: 18px 20px;

        font-size: 14px;
    }

    .physio-faq-right .faq-answer {
        padding: 0 20px 18px;
    }

    .physio-faq-right .faq-answer p {
        font-size: 12px;
        line-height: 20px;
    }
}