/*
======================================================
PHYSIOTHERAPIST PORTFOLIO
Relax Thai Massage
Production Ready CSS
PART 1
======================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#D4A373;
    --primary-dark:#8B5E3C;
    --background:#F9F6F2;
    --background-alt:#FFFDFB;
    --heading:#2F3E46;
    --text:#5E5E5E;
    --white:#fff;
    --radius:22px;
    --shadow:0 15px 45px rgba(0,0,0,.08);
    --shadow-hover:0 25px 60px rgba(0,0,0,.14);
    --transition:.35s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}
body{
    font-family:'Plus Jakarta Sans',sans-serif;
    background:var(--background);
    color:var(--text);
    line-height:1.75;
    font-size:17px;
    font-weight:400;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    text-rendering:optimizeLegibility;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Plus Jakarta Sans',sans-serif;
    color:var(--heading);
    font-weight:700;
    line-height:1.15;
    letter-spacing:-0.03em;
}

p{
    color:var(--text);
    font-weight:400;
}

img{
    display:block;
    width:100%;
    height:auto;
}

a{
    text-decoration:none;
    color:inherit;
    transition:.3s;
}

.container{
    width:min(92%,1240px);
    margin:auto;
}

section{
    padding:110px 0;
}

h1,h2,h3,h4{
    font-family:'Cormorant Garamond',serif;
    color:var(--heading);
    font-weight:600;
    line-height:1.1;
    letter-spacing:-.5px;
}

p{
    color:var(--text);
}

.section-subtitle{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#F3E8DC;
    color:var(--primary-dark);
    font-weight:600;
    font-size:14px;
    margin-bottom:18px;
}

.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-heading h2{
    font-size:48px;
    margin-bottom:18px;
}

.section-heading p{
    font-size:18px;
}

.btn-primary,
.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    min-height:58px;
    border-radius:50px;
    font-weight:600;
}

.btn-primary{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid var(--primary);
    color:var(--primary-dark);
}




.physio-hero{
    padding-top:180px;
    background:linear-gradient(#fffdfb,#f9f6f2);
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.hero-tag{
    display:inline-block;
    margin-bottom:18px;
    color:var(--primary-dark);
    font-weight:600;
}

.hero-content h1{
    font-size:74px;
    margin-bottom:18px;
}

.hero-content h2{
    font-size:40px;
    color:var(--primary-dark);
    margin-bottom:25px;
}

.hero-content p{
    max-width:620px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-bottom:40px;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.hero-features div,
.about-highlights div,
.stat-card{
    background:#fff;
    border-radius:22px;
    box-shadow:var(--shadow);
}

.hero-features div{
    padding:18px;
}

.hero-image img,
.about-image img{
    border-radius:30px;
    object-fit:cover;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-content h2{
    font-size:48px;
    margin-bottom:24px;
}

.about-content p{
    margin-bottom:18px;
}

.about-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.about-highlights div{
    padding:18px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

.stat-card{
    padding:40px 25px;
    text-align:center;
    transition:var(--transition);
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}


/*
======================================================
PHYSIOTHERAPIST PORTFOLIO
PART 2
Treatments • Why Choose • Benefits • FAQ
======================================================
*/

.treatments-section{
    background:var(--background-alt);
}

.treatment-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:36px;
}

.treatment-card{
    background:#fff;
    border-radius:28px;
    padding:40px;
    box-shadow:var(--shadow);
    transition:var(--transition);
    position:relative;
    overflow:hidden;
}

.treatment-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--primary),var(--primary-dark));
}

.treatment-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

.treatment-icon{
    width:78px;
    height:78px;
    border-radius:20px;
    background:#F4ECE4;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
}

.treatment-icon i{
    font-size:30px;
    color:var(--primary-dark);
}

.treatment-card h3{
    font-size:36px;
    margin-bottom:18px;
}

.treatment-card p{
    margin-bottom:28px;
}

.treatment-box{
    background:#FCFAF7;
    border:1px solid rgba(212,163,115,.18);
    border-radius:18px;
    padding:24px;
    margin-top:20px;
}

.treatment-box h4{
    font-size:22px;
    margin-bottom:14px;
}

.treatment-box ul{
    list-style:none;
}

.treatment-box li{
    padding:8px 0 8px 28px;
    position:relative;
}

.treatment-box li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--primary-dark);
    font-weight:700;
}

.why-section{
    background:linear-gradient(#FFFDFB,#F9F6F2);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

.why-card{
    background:#fff;
    border-radius:24px;
    padding:36px 28px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

.why-card i{
    width:72px;
    height:72px;
    margin:0 auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:#F4ECE4;
    color:var(--primary-dark);
    font-size:28px;
}

.why-card h3{
    font-size:28px;
    margin-bottom:14px;
}

.benefits-section{
    background:var(--background-alt);
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.benefit-card{
    background:#fff;
    border-radius:24px;
    padding:34px 28px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

.benefit-card i{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    background:#F4ECE4;
    color:var(--primary-dark);
    font-size:28px;
}

.benefit-card h3{
    font-size:28px;
    margin-bottom:14px;
}

.faq-section{
    background:linear-gradient(#FFFDFB,#F9F6F2);
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:var(--shadow);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:26px 30px;
    font-family:'Inter',sans-serif;
    font-size:18px;
    font-weight:600;
    color:var(--heading);
}

.faq-question i{
    color:var(--primary-dark);
    transition:.3s;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

.faq-answer{
    display:none;
    padding:0 30px 26px;
}

.faq-item.active .faq-answer{
    display:block;
}

/*
======================================================
PHYSIOTHERAPIST PORTFOLIO
PART 3
CTA • Footer • Floating Button • Responsive
======================================================
*/

.physio-cta{
    background:linear-gradient(135deg,var(--primary-dark),var(--primary));
    padding:120px 0;
    position:relative;
    overflow:hidden;
}

.physio-cta::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    right:-150px;
    top:-150px;
}

.cta-card{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    text-align:center;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:32px;
    padding:65px;
}

.cta-card .section-subtitle{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.cta-card h2{
    color:#fff;
    font-size:58px;
    margin:22px 0;
}

.cta-card p{
    color:rgba(255,255,255,.92);
    max-width:700px;
    margin:0 auto 40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.cta-buttons .btn-primary{
    background:#fff;
    color:var(--primary-dark);
}

.cta-buttons .btn-outline{
    border-color:#fff;
    color:#fff;
}

.cta-buttons .btn-outline:hover{
    background:#fff;
    color:var(--primary-dark);
}

.floating-book{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:999;
    display:flex;
    align-items:center;
    gap:10px;
    padding:16px 26px;
    border-radius:60px;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    box-shadow:0 18px 45px rgba(0,0,0,.22);
    transition:.35s;
}

.floating-book:hover{
    transform:translateY(-5px);
}

.physio-footer{
    background:#2F3E46;
    color:#fff;
    text-align:center;
    padding:36px 0;
}

.physio-footer p{
    color:rgba(255,255,255,.75);
}

/* ---------- Tablet ---------- */

@media(max-width:992px){

.hero-grid,
.about-grid{
grid-template-columns:1fr;
gap:50px;
text-align:center;
}

.hero-content p{
margin-left:auto;
margin-right:auto;
}

.hero-buttons{
justify-content:center;
}

.hero-features,
.about-highlights,
.stats-grid,
.why-grid,
.benefits-grid{
grid-template-columns:repeat(2,1fr);
}

.treatment-grid{
grid-template-columns:1fr;
}

.section-heading h2{
font-size:42px;
}

.hero-content h1{
font-size:58px;
}

.hero-content h2{
font-size:34px;
}

.about-content h2{
font-size:42px;
}

.cta-card{
padding:50px;
}

.cta-card h2{
font-size:46px;
}

}

/* ---------- Mobile ---------- */

@media(max-width:768px){

section{
padding:80px 0;
}

.physio-nav{
height:78px;
}

.physio-nav ul{
display:none;
}



.btn-primary,
.btn-outline{
width:100%;
}

.hero-content h1{
font-size:44px;
}

.hero-content h2{
font-size:28px;
}

.hero-buttons{
flex-direction:column;
}

.hero-features,
.about-highlights,
.stats-grid,
.why-grid,
.benefits-grid{
grid-template-columns:1fr;
}

.section-heading h2{
font-size:34px;
}

.about-content h2{
font-size:34px;
}

.treatment-card{
padding:30px;
}

.treatment-card h3{
font-size:30px;
}

.cta-card{
padding:38px 25px;
}

.cta-card h2{
font-size:36px;
}

.floating-book{
left:15px;
right:15px;
bottom:15px;
justify-content:center;
}

}

/* ---------- Small phones ---------- */

@media(max-width:480px){

.container{
width:94%;
}

.hero-content h1{
font-size:36px;
}

.hero-content h2{
font-size:24px;
}

.section-heading h2{
font-size:30px;
}

.cta-card h2{
font-size:30px;
}

}


.physio-nav ul li a.active{

    color:var(--primary-dark);

}

.physio-nav ul li a.active::after{

    width:100%;

}

/*======================================================
PREMIUM NAVIGATION
======================================================*/

.physio-header{
    position:fixed;
    top:20px;
    left:0;
    width:100%;
    z-index:1000;
    transition:.35s ease;
}

.physio-header.scrolled{
    top:10px;
}

.physio-nav{

    display:flex;
    align-items:center;
    justify-content:space-between;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.35);

    border-radius:100px;

    padding:16px 24px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}




.desktop-menu{

    display:flex;
    align-items:center;
    gap:40px;

}

.nav-links{

    display:flex;
    list-style:none;
    gap:34px;

}

.nav-links a{

    position:relative;

    font-size:15px;
    font-weight:600;

    color:var(--heading);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--primary-dark)
    );

    transition:.35s;

}

.nav-links a:hover::after{

    width:100%;

}

.nav-book{

    min-width:185px;

}



/*======================================================
BURGER
======================================================*/

.menu-toggle{

    display:none;

    width:52px;
    height:52px;

    border:none;

    background:#4B2F21;

    border-radius:50%;

    cursor:pointer;

    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:6px;

    transition:.35s;

    z-index:3000;

}

.menu-toggle span{

    width:22px;
    height:2px;

    background:#fff;

    border-radius:20px;

    transition:.35s;

}

.menu-toggle.active{

    background:#2F3E46;

}

.menu-toggle.active span:nth-child(1){

    transform:translateY(8px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-8px) rotate(-45deg);

}



/*======================================================
MOBILE MENU
======================================================*/

.mobile-menu{

    position:fixed;

    inset:0;

    background:#F9F6F2;

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:9000;

}

.mobile-menu.active{

    opacity:1;
    visibility:visible;

}

.mobile-menu-inner{

    width:100%;
    max-width:420px;

    text-align:center;

    padding:30px;

}

.mobile-menu ul{

    list-style:none;

    margin:60px 0 40px;

}

.mobile-menu li{

    margin:18px 0;

}

.mobile-menu a{

    font-size:28px;
    font-weight:700;

    color:var(--heading);

}

.mobile-book{

    width:100%;

    background:#4B2F21;

    color:#ffffff !important;

    min-height:60px;

    border-radius:100px;

    font-size:18px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    box-shadow:0 18px 40px rgba(75,47,33,.22);

}

body.menu-open{

    overflow:hidden;

}



/*======================================================
RESPONSIVE
======================================================*/

@media(max-width:992px){

.desktop-menu{

    display:none;

}

.menu-toggle{

    display:flex;

}



}

@media(min-width:993px){

.mobile-menu{

    display:none;

}

}

@media(max-width:768px){

.physio-header{

    top:12px;

}

.physio-nav{

    padding:12px 18px;

}



.mobile-menu a{

    font-size:24px;

}

}

@media(max-width:480px){



.mobile-menu a{

    font-size:22px;

}

}


.logo{

    display:flex;
    align-items:center;
    gap:12px;

    flex-shrink:0;

}

.logo i{

    font-size:30px;
    color:var(--primary-dark);

    transition:.3s;

}

.logo a{

    white-space:nowrap;

    font-size:30px;
    font-weight:800;

    color:var(--heading);

    line-height:1;
}

.logo:hover i{

    transform:rotate(-10deg);

}

.logo:hover a{

    color:var(--primary-dark);

}

@media(max-width:768px){

.logo{

    gap:8px;

}

.logo i{

    font-size:20px;

}

.logo a{

    font-size:20px;

}

}


/*=========================================
CLOSE BUTTON
=========================================*/

.menu-close{

    position:absolute;

    top:28px;
    right:24px;

    width:54px;
    height:54px;

    border:none;

    border-radius:50%;

    background:#4B2F21;

    cursor:pointer;

    display:flex;

    align-items:center;
    justify-content:center;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.menu-close span{

    position:absolute;

    width:22px;
    height:2px;

    background:#fff;

    border-radius:20px;

}

.menu-close span:first-child{

    transform:rotate(45deg);

}

.menu-close span:last-child{

    transform:rotate(-45deg);

}

/*======================================================
PREMIUM FOOTER
======================================================*/

.physio-footer{

    background:#243238;

    color:#fff;

    margin-top:120px;

    padding:90px 0 35px;

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1.5fr;

    gap:70px;

    padding-bottom:60px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-brand .logo{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:25px;

}

.footer-brand .logo i{

    color:#D4A373;

    font-size:30px;

}

.footer-brand .logo span{

    font-size:30px;

    font-weight:800;

    color:#fff;

}

.footer-brand p{

    color:rgba(255,255,255,.72);

    max-width:430px;

    line-height:1.9;

}

.footer-links h4,
.footer-contact h4{

    margin-bottom:22px;

    color:#fff;

    font-size:22px;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.footer-links a{

    color:rgba(255,255,255,.72);

    transition:.3s;

}

.footer-links a:hover{

    color:#D4A373;

    transform:translateX(6px);

}

.footer-contact p{

    color:rgba(255,255,255,.72);

    margin-bottom:30px;

    line-height:1.8;

}

.footer-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border-radius:100px;

    background:linear-gradient(
        135deg,
        #D4A373,
        #8B5E3C
    );

    color:#fff;

    font-weight:700;

    transition:.35s;

}

.footer-btn:hover{

    transform:translateY(-4px);

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:35px;

    gap:20px;

    flex-wrap:wrap;

}

.footer-bottom p{

    color:rgba(255,255,255,.6);

}

.footer-bottom a{

    color:#D4A373;

    font-weight:600;

}

@media(max-width:992px){

.footer-top{

    grid-template-columns:1fr;

    gap:50px;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

}

}

@media(max-width:768px){

.physio-footer{

    padding:70px 0 25px;

}

.footer-brand .logo span{

    font-size:24px;

}

.footer-links h4,
.footer-contact h4{

    font-size:20px;

}

.footer-btn{

    width:100%;

}

}