 /* ==========================================================
   PREMIUM HERO
========================================================== */

.hero{
    position:relative;
    height:760px;
    overflow:hidden;
    background:#000;
}

/* Background */

.hero picture,
.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.hero-bg{
    object-fit:cover;
    object-position:center top;
    user-select:none;
    pointer-events:none;
}

/* Overlay */

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.86) 0%,
        rgba(0,0,0,.72) 35%,
        rgba(0,0,0,.32) 60%,
        rgba(0,0,0,.05) 100%
    );
}

/* Container */

.hero-container{
    position:relative;
    z-index:2;
    max-width:1280px;
    height:100%;
    margin:auto;
    display:flex;
    align-items:center;
    padding:0 60px;
}

/* Content */

.hero-content{
    width:540px;
}

.hero-label{
    display:block;
    color:#fff;
    font-size:18px;
    font-weight:600;
    letter-spacing:.30em;
    text-transform:uppercase;
}

.hero h1{
    margin:12px 0;
    font-family:"Playfair Display",serif;
    font-size:90px;
    line-height:.9;
    color:#d6ad5a;
}

.hero h2{
    margin-bottom:18px;
    font-family:"Playfair Display",serif;
    font-size:38px;
    color:#fff;
}

.hero-type{
    display:flex;
    gap:14px;
    align-items:center;
    margin-bottom:28px;
    font-size:18px;
    font-weight:600;
    color:#fff;
    letter-spacing:.16em;
}

.hero-type span{
    color:#c89b4d;
}

.hero-list{
    margin:0;
    padding:0;
    list-style:none;
}

.hero-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:#fff;
    font-size:18px;
}

.hero-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:18px;
    height:18px;
    color:#d6ad5a;
    font-weight:700;
}

.hero-rating{
    margin-top:26px;
    color:#f7c54d;
    font-size:22px;
}

.hero-rating span{
    margin-left:10px;
    color:#fff;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:34px;
}

.hero-buttons button,
.hero-buttons a{

    width:230px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;

    border-radius:8px;

    transition:.3s;

}

.hero-buttons button{

    border:none;
    color:#111;

    background:linear-gradient(
        135deg,
        #f4d99d,
        #b88943
    );

    cursor:pointer;

}

.hero-buttons button:hover{

    transform:translateY(-2px);

}

.hero-buttons a{

    color:#fff;

    border:1px solid #b88943;

    text-decoration:none;

}

.hero-buttons a:hover{

    background:#b88943;

}


/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:768px){

.hero{

    height:880px;

}

.hero-bg{

    object-position:center top;

}

.hero-overlay{

    background:linear-gradient(

        180deg,

        rgba(0,0,0,.05) 0%,

        rgba(0,0,0,.15) 30%,

        rgba(0,0,0,.82) 70%,

        rgba(0,0,0,.96) 100%

    );

}

.hero-container{

    align-items:flex-end;

    padding:0 24px 110px;

}

.hero-content{

    width:100%;

}

.hero-label{

    font-size:14px;

    letter-spacing:.20em;

}

.hero h1{

    font-size:58px;

}

.hero h2{

    font-size:21px;

    margin-bottom:12px;

}

.hero-type{

    font-size:15px;

    gap:10px;

    margin-bottom:20px;

}

.hero-list li{

    font-size:16px;

    margin-bottom:10px;

}

.hero-rating{

    margin-top:20px;

    font-size:18px;

}

.hero-buttons{

    flex-direction:column;

    gap:14px;

    margin-top:24px;

}

.hero-buttons button,

.hero-buttons a{

    width:100%;

    height:56px;

}

}
/* ==========================================================
   LIGHT SECTION
========================================================== */

.light-section{

    background:#faf7f2;

    padding:80px 0;

}

.light-section-alt{

    background:#f4efe6;

    padding:80px 0;

}

/* Section Title */

.light-section-title{

    font-family:'Playfair Display',serif;

    font-size:34px;

    font-weight:700;

    text-align:center;

    color:#2b2b2b;

    margin-bottom:50px;

    letter-spacing:.05em;

}

.section-subtitle{

    color:#9c7a44;

    text-transform:uppercase;

    letter-spacing:.25em;

    font-size:13px;

    text-align:center;

    margin-bottom:12px;

}

/* Card */

.light-card{

    background:#ffffff;

    border:1px solid #eadfcf;

    border-radius:14px;

    box-shadow:0 6px 20px rgba(0,0,0,.05);

}

.light-card:hover{

    transform:translateY(-4px);

    transition:.35s;

    box-shadow:0 16px 40px rgba(0,0,0,.10);

}

/* Area Button */

.area-btn{

    background:#fff;

    border:1px solid #d9c19d;

    color:#6d4b20;

}

.area-btn:hover{

    background:#c89b4d;

    color:#fff;

}
/* ==========================================================
   FEATURED THERAPISTS
   Luxury Production Version
========================================================== */

.therapists-section{

    padding:100px 0;

    background:#f8f5ef;

    position:relative;

}

.therapists-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top right,
        rgba(202,161,70,.08),
        transparent 38%);

    pointer-events:none;

}

.container{

    width:min(1320px,92%);

    margin:auto;

}

/* ==========================================================
   Section Heading
========================================================== */

.section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}
/* ==========================================================
   SECTION TAG
========================================================== */
/* ==========================================================
   LUXURY SECTION TAG
========================================================== */

.section-tag{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    width:100%;

    margin:0 auto 20px;

    color:#c89b46;

    font-size:13px;

    font-weight:700;

    letter-spacing:.35em;

    text-transform:uppercase;

    text-align:center;

}

.section-tag::before,
.section-tag::after{

    content:"";

    width:70px;

    height:1px;

    background:linear-gradient(
        to right,
        transparent,
        #c89b46,
        transparent
    );

}

.section-title{

    font-family:'Playfair Display',serif;

    font-size:48px;

    font-weight:700;

    color:#1b1b1b;

    margin-bottom:18px;

}

.section-description{

    color:#666;

    font-size:17px;

    line-height:1.8;

}

/* ==========================================================
   Grid
========================================================== */

.therapist-grid{

    display:flex;

}

/* ==========================================================
   Card
========================================================== */

.therapist-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #ece5d8;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s;

    position:relative;

}

.therapist-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 30px 60px rgba(0,0,0,.12);

}

/* ==========================================================
   Image
========================================================== */

.therapist-image{

    position:relative;

    aspect-ratio:4/5;

    overflow:hidden;

    background:#f5f5f5;

}

.therapist-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .6s;

    display:block;

}

.therapist-card:hover img{

    transform:scale(1.08);

}

/* ==========================================================
   Badge
========================================================== */

.therapist-badge{

    position:absolute;

    top:18px;

    right:18px;

    background:#c89b4d;

    color:#fff;

    font-size:11px;

    font-weight:700;

    padding:7px 14px;

    border-radius:30px;

    letter-spacing:.08em;

    text-transform:uppercase;

}

/* ==========================================================
   Content
========================================================== */

.therapist-body{

    padding:26px;

}

.therapist-name{

    font-family:'Playfair Display',serif;

    font-size:28px;

    color:#1d1d1d;

    margin-bottom:6px;

}

.therapist-meta{

    color:#888;

    font-size:14px;

    margin-bottom:18px;

}

.therapist-specialty{

    color:#444;

    font-size:15px;

    line-height:1.7;

    min-height:52px;

    margin-bottom:18px;

}

/* ==========================================================
   Rating
========================================================== */

.therapist-rating{

    display:flex;

    align-items:center;

    gap:3px;

    color:#d4a53a;

    margin-bottom:22px;

    font-size:15px;

}

/* ==========================================================
   Button
========================================================== */

.therapist-btn{

    width:100%;

    height:54px;

    border:none;

    border-radius:12px;

    background:
        linear-gradient(135deg,
        #dcb977,
        #b8860b);

    color:#fff;

    font-weight:700;

    letter-spacing:.08em;

    cursor:pointer;

    transition:.35s;

}

.therapist-btn:hover{

    transform:translateY(-2px);

    box-shadow:
        0 12px 25px rgba(184,134,11,.35);

}

/* ==========================================================
   Hover Border
========================================================== */

.therapist-card::after{

    content:"";

    position:absolute;

    inset:0;

    border:2px solid transparent;

    border-radius:22px;

    transition:.35s;

    pointer-events:none;

}

.therapist-card:hover::after{

    border-color:#c89b4d;

}

/* ==========================================================
   Loading
========================================================== */

.therapist-image img{

    display:block;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center top;

    opacity:1;

    transition:transform .5s;

}


/* ==========================================================
   Tablet
========================================================== */

@media(max-width:1024px){

.section-title{

    font-size:40px;

}

.therapist-grid{

    grid-template-columns:repeat(2,1fr);

}

}

/* ==========================================================
   Mobile
========================================================== */

@media(max-width:768px){

.therapists-section{

    padding:70px 0;

}

.section-heading{

    margin-bottom:40px;

}

.section-title{

    font-size:34px;

}

.section-description{

    font-size:15px;

}

.therapist-grid{

    grid-template-columns:1fr;

    gap:24px;

}

.therapist-body{

    padding:20px;

}

.therapist-name{

    font-size:24px;

}

.therapist-btn{

    height:52px;

}

}

/* ==========================================================
   Small Mobile
========================================================== */

@media(max-width:480px){

.container{

    width:94%;

}

.section-title{

    font-size:30px;

}

.section-description{

    font-size:14px;

}

.therapist-name{

    font-size:22px;

}

}
/* ==========================================
   THERAPIST SLIDER
========================================== */

.therapistSwiper{
    width:100%;
    overflow:hidden;
    padding:10px 5px 40px;
}

.therapistSwiper .swiper-slide{
    height:auto;
}

.therapistSwiper .swiper-pagination-bullet{
    background:#b8860b;
    opacity:.4;
}

.therapistSwiper .swiper-pagination-bullet-active{
    opacity:1;
}

.therapistSwiper .swiper-button-next,
.therapistSwiper .swiper-button-prev{
    color:#b8860b;
}

@media(max-width:768px){

    .therapistSwiper{

        padding-bottom:30px;

    }

}
/* ==========================================
   SERVICE SLIDER
========================================== */

.serviceSwiper{

    width:100%;

    overflow:hidden;

    padding:10px 5px 40px;

}

.serviceSwiper .swiper-slide{

    height:auto;

}

.serviceSwiper .swiper-pagination-bullet{

    background:#b8860b;

    opacity:.4;

}

.serviceSwiper .swiper-pagination-bullet-active{

    opacity:1;

}

/* ==========================================================
   AREAS
========================================================== */

.areas-section{

    padding:90px 0;

    background:#fff;

}



/* ==========================================================
   AREA CARD
========================================================== */

.area-card{

    position:relative;

    display:block;

    width:100%;

    height:240px;

    overflow:hidden;

    border-radius:18px;

    background:#f5f5f5;

    box-shadow:
        0 12px 28px rgba(0,0,0,.15);

    transition:
        transform .35s,
        box-shadow .35s;

}

.area-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 24px 45px rgba(0,0,0,.22);

}

.area-card img{

    display:block;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center center;

    transition:
        transform .55s ease;

}

.area-card:hover img{

    transform:scale(1.08);

}

.area-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(

            to top,

            rgba(0,0,0,.88) 0%,

            rgba(0,0,0,.30) 45%,

            rgba(0,0,0,.05) 100%

        );

}


.area-name{

    position:absolute;

    left:22px;

    bottom:22px;

    z-index:5;

    color:#d7a748;

    font-family:"Playfair Display",serif;

    font-size:28px;

    font-weight:700;

    letter-spacing:.05em;

    text-transform:uppercase;

    text-shadow:
        0 3px 8px rgba(0,0,0,.55);

}

.btn-area{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:220px;

    height:54px;

    border:1px solid #d4a64f;

    color:#c89b46;

    text-decoration:none;

    border-radius:6px;

    letter-spacing:.08em;

    font-weight:600;

    transition:.3s;

}

.btn-area:hover{

    background:#c89b46;

    color:#fff;

}
/* ==========================================
   AREA PAGINATION
========================================== */

.areaSwiper{

    width:100%;
    overflow:hidden;
    padding:20px 5px 45px;

}

.areaSwiper .swiper-slide{

    height:auto;

}

.areaSwiper .swiper-pagination{

    position:relative;

    margin-top:25px;

}

.areaSwiper .swiper-pagination-bullet{

    width:10px;

    height:10px;

    background:#b8860b;

    opacity:.35;

    transition:.3s;

}

.areaSwiper .swiper-pagination-bullet-active{

    width:28px;

    border-radius:20px;

    opacity:1;

    background:#c89b46;

}
@media(max-width:768px){

    .area-card{

        height:220px;

        border-radius:16px;

    }

    .area-name{

        left:18px;

        bottom:18px;

        font-size:22px;

    }

}

/* ==========================================================
   AREAS HEADER
========================================================== */

.areas-title{

    font-family:"Playfair Display",serif;

    font-size:48px;

    font-weight:700;

    color:#1b1b1b;

    text-align:center;

    margin-bottom:18px;

}

.areas-description{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

    color:#666;

    font-size:17px;

    line-height:1.8;

}
/* ==========================================================
   THERAPISTS HEADER
========================================================== */

.therapists-title{

    font-family:"Playfair Display",serif;

    font-size:48px;

    font-weight:700;

    color:#1d1d1d;

    margin-bottom:18px;

}

@media(max-width:768px){

    .areas-title{

        font-size:34px;

    }

    .areas-description{

        font-size:15px;

        margin-bottom:40px;

    }

    .therapists-title{

        font-size:34px;

    }

}
/* ==========================================
   LIGHT CARD HEADINGS
========================================== */

.light-card h3{
    color:#111827 !important;
    font-family:"Playfair Display",serif;
    font-weight:700;
    line-height:1.25;
}

.light-card p{
    color:#475569 !important;
}

.light-card svg{
    color:#b8860b;
}
/* ==========================================================
   WHY WELLNESS (LIGHT VERSION)
========================================================== */

.why-wellness{
    background:#f8f5ef;
}

.why-wellness .luxury-card{

    background:#ffffff;

    border:1px solid #e7dcc5;

    border-radius:24px;

    padding:2rem;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s ease;

}

.why-wellness .luxury-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.why-wellness .luxury-card i{

    color:#b88528;

    width:52px;

    height:52px;

    margin-bottom:1rem;

}

.why-wellness .luxury-card h3{

    color:#111827;

    font-size:1.55rem;

    font-weight:700;

    margin-bottom:.8rem;

    font-family:"Playfair Display",serif;

}

.why-wellness .luxury-card p{

    color:#475569;

    line-height:1.8;

}

.why-wellness .section-description{

    color:#64748b;

}
/* ==========================================================
   THAI MASSAGE PROCESS
========================================================== */

.process-section .timeline-content h3{

    color:#111827 !important;

    font-family:"Playfair Display", serif;

    font-size:1.5rem;

    font-weight:700;

}

.process-section .timeline-content p{

    color:#475569 !important;

    line-height:1.8;

}

.process-section .timeline-number{

    background:linear-gradient(135deg,#c89b3c,#b8860b);

    color:#ffffff;

    font-weight:700;

}

.process-section .section-description{

    color:#64748b;

}
/* ==========================================
   THAI MASSAGE PROCESS (LIGHT VERSION)
========================================== */

.process-section{

    background:#f8f5ef;

}

.process-section .timeline-item{

    color:#111827;

}

.process-section .timeline-content{

    color:#475569;

}

.process-section .timeline-content h3{

    color:#111827 !important;

    font-family:"Playfair Display", serif;

    font-size:1.5rem;

    font-weight:700;

    margin-bottom:.75rem;

}

.process-section .timeline-content p{

    color:#64748b !important;

    line-height:1.8;

}

.process-section .timeline-number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:linear-gradient(135deg,#c89b3c,#b8860b);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.25rem;

    font-weight:700;

    flex-shrink:0;

}
/* =====================================================
   LUXURY PROCESS
===================================================== */

.process-luxury-section{

    background:#f7f3eb;

    padding:120px 0;

}

.process-timeline{

    max-width:1100px;

    margin:70px auto 0;

    position:relative;

}

.process-timeline::before{

    content:"";

    position:absolute;

    left:36px;

    top:40px;

    bottom:40px;

    width:2px;

    background:#d9b15a;

}

.process-item{

    display:flex;

    gap:35px;

    align-items:center;

    margin-bottom:40px;

}

.process-number{

    width:72px;

    height:72px;

    border-radius:50%;

    background:linear-gradient(135deg,#c89b3c,#b8860b);

    color:#fff;

    font-size:30px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    z-index:2;

    box-shadow:0 15px 35px rgba(184,134,11,.25);

}

.process-card{

    flex:1;

    background:#fff;

    border-radius:26px;

    display:flex;

    align-items:center;

    gap:30px;

    padding:35px;

    box-shadow:0 18px 50px rgba(0,0,0,.08);

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-6px);

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.process-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#faf6ef;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.process-icon svg{

    width:46px;

    height:46px;

    color:#b8860b;

}

.process-content h3{

    color:#111827;

    font-size:36px;

    font-family:"Playfair Display",serif;

    margin-bottom:12px;

}

.process-content p{

    color:#5b6470;

    line-height:1.9;

    font-size:20px;

}

@media(max-width:991px){

.process-timeline::before{

display:none;

}

.process-item{

flex-direction:column;

align-items:flex-start;

}

.process-card{

flex-direction:column;

text-align:center;

}

.process-content h3{

font-size:30px;

}

.process-content p{

font-size:18px;

}

}
/* ==========================================================
   READY TO RELAX (LIGHT LUXURY VERSION)
========================================================== */

.ready-relax-section{

    background:#f8f5ef;

    padding:120px 0;

}

.ready-relax-box{

    max-width:1000px;

    margin:0 auto;

    background:#ffffff;

    border:1px solid #e7dcc5;

    border-radius:30px;

    padding:70px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.ready-relax-box h2{

    font-family:"Playfair Display",serif;

    font-size:3rem;

    color:#111827;

    margin:20px 0;

    line-height:1.2;

}

.ready-relax-box p{

    max-width:760px;

    margin:0 auto 40px;

    color:#64748b;

    font-size:1.125rem;

    line-height:1.9;

}

.ready-relax-box .section-tag{

    display:inline-flex;

    align-items:center;

    gap:12px;

    color:#b8860b;

    font-weight:700;

    letter-spacing:.25em;

    text-transform:uppercase;

}

.ready-relax-box .section-tag::before,

.ready-relax-box .section-tag::after{

    content:"";

    width:70px;

    height:1px;

    background:#d8b36a;

}

.ready-relax-box .cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.ready-relax-box .btn-primary,

.ready-relax-box .btn-gold{

    min-width:240px;

}

@media(max-width:768px){

.ready-relax-box{

padding:40px 25px;

border-radius:24px;

}

.ready-relax-box h2{

font-size:2.2rem;

}

.ready-relax-box p{

font-size:1rem;

}

.ready-relax-box .section-tag::before,

.ready-relax-box .section-tag::after{

width:35px;

}

}
/* ระยะห่างของแต่ละ Section */

.light-section,
.light-section-alt,
.dark-section,
.process-luxury-section,
.ready-relax-section{

    padding-top:70px;
    padding-bottom:70px;

}

/* ลดระยะห่างของหัวข้อ */

.section-heading{

    margin-bottom:40px;

}

/* Grid ที่อยู่ต่อจากหัวข้อ */

.section-heading + .grid,
.section-heading + .process-timeline,
.section-heading + .pricing-grid,
.section-heading + .swiper,
.section-heading + .review-grid,
.section-heading + .faq-wrapper{

    margin-top:30px;

}
/* ==========================================================
   TRADITIONAL TECHNIQUES
========================================================== */

.techniques-section{

    background:#f8f5ef;

    padding:90px 0;

}

.techniques-section .section-description{

    color:#64748b;

}

.techniques-section img{

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.10);

}

.techniques-section .feature-list{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.techniques-section .feature-item{

    background:#ffffff;

    border:1px solid #eadfca;

    border-radius:22px;

    padding:28px 32px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

}

.techniques-section .feature-item:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 45px rgba(0,0,0,.10);

}

.techniques-section .feature-item h3{

    color:#111827;

    font-family:"Playfair Display",serif;

    font-size:1.6rem;

    margin-bottom:12px;

}

.techniques-section .feature-item p{

    color:#64748b;

    line-height:1.8;

}
/* ==========================================================
   BENEFITS SECTION
========================================================== */

.benefits-section{

    background:#fcfaf6;

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    margin-top:50px;

}

.benefit-card{

    background:#fff;

    border:1px solid #eadfca;

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.benefit-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.benefit-card svg{

    width:54px;

    height:54px;

    color:#b8860b;

    margin-bottom:20px;

}

.benefit-card h3{

    font-family:"Playfair Display",serif;

    font-size:1.6rem;

    color:#111827;

    margin-bottom:15px;

}

.benefit-card p{

    color:#64748b;

    line-height:1.8;

}

@media(max-width:992px){

.benefits-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.benefits-grid{

grid-template-columns:1fr;

}

}
/* ==========================================================
   COMMITMENT SECTION
========================================================== */

.commitment-section{

    background:#f8f5ef;

}

.commitment-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    margin-top:50px;

}

.commitment-card{

    background:#ffffff;

    border:1px solid #eadfca;

    border-radius:24px;

    padding:35px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.commitment-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 50px rgba(0,0,0,.10);

}

.commitment-card svg{

    width:54px;

    height:54px;

    color:#b8860b;

    margin-bottom:20px;

}

.commitment-card h3{

    font-family:"Playfair Display",serif;

    font-size:1.5rem;

    color:#111827;

    margin-bottom:15px;

}

.commitment-card p{

    color:#64748b;

    line-height:1.8;

}

/* Tablet */

@media(max-width:992px){

.commitment-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.commitment-grid{

grid-template-columns:1fr;

}

}
/* ==========================================================
   RELATED SERVICES
========================================================== */

.related-services-section{

    background:#fcfaf6;

}

.related-services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:55px;

}

.related-service-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.related-service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.related-service-card img{

    width:100%;

    aspect-ratio:16/10;

    object-fit:cover;

    display:block;

    transition:.4s;

}

.related-service-card:hover img{

    transform:scale(1.06);

}

.service-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.72)
    );

}

.service-overlay h3{

    color:#fff;

    font-family:"Playfair Display",serif;

    font-size:2rem;

    margin-bottom:10px;

}

.service-overlay span{

    color:#d8b36a;

    font-weight:600;

}

@media(max-width:992px){

.related-services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.related-services-grid{

grid-template-columns:1fr;

}

}
/* ==========================================================
   FINAL CTA
========================================================== */

.final-cta-section{

    background:#f8f5ef;

}

.final-cta-card{

    background:#fff;

    border-radius:30px;

    padding:60px;

    border:1px solid #eadfca;

    box-shadow:0 18px 50px rgba(0,0,0,.08);

}

.cta-feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-bottom:50px;

}

.cta-feature{

    text-align:center;

}

.cta-feature svg{

    width:52px;

    height:52px;

    color:#b8860b;

    margin-bottom:18px;

}

.cta-feature h3{

    font-family:"Playfair Display",serif;

    color:#111827;

    font-size:1.35rem;

    margin-bottom:12px;

}

.cta-feature p{

    color:#64748b;

    line-height:1.8;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

@media(max-width:992px){

.cta-feature-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.final-cta-card{

padding:35px 25px;

}

.cta-feature-grid{

grid-template-columns:1fr;

}

}
/* ==========================================================
   LUXURY CTA BUTTONS
========================================================== */

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:24px;

    flex-wrap:wrap;

    margin-top:45px;

}

.btn-luxury-primary,
.btn-luxury-secondary{

    min-width:260px;

    height:62px;

    border-radius:999px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    font-size:16px;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

    cursor:pointer;

}

.btn-luxury-primary{

    background:linear-gradient(135deg,#d4af37,#b8860b);

    color:#fff;

    border:none;

    box-shadow:0 15px 35px rgba(184,134,11,.25);

}

.btn-luxury-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 22px 50px rgba(184,134,11,.35);

}

.btn-luxury-secondary{

    background:#ffffff;

    color:#111827;

    border:2px solid #d4af37;

}

.btn-luxury-secondary:hover{

    background:#d4af37;

    color:#fff;

}

.btn-luxury-primary svg,
.btn-luxury-secondary svg{

    width:22px;

    height:22px;

}

@media(max-width:768px){

.btn-luxury-primary,
.btn-luxury-secondary{

width:100%;

min-width:100%;

}

}
/* ==========================================================
   SERVICE NAVIGATION
========================================================== */

.service-navigation-section{

    background:#fcfaf6;

}

.service-navigation-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;

}

.service-nav-card{

    background:#ffffff;

    border:1px solid #eadfca;

    border-radius:24px;

    padding:35px;

    text-decoration:none;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.service-nav-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 55px rgba(0,0,0,.10);

}

.service-nav-card.featured{

    background:linear-gradient(135deg,#faf6ef,#fffdf8);

    border:2px solid #d4af37;

}

.nav-label{

    display:inline-block;

    font-size:12px;

    letter-spacing:.18em;

    text-transform:uppercase;

    color:#b8860b;

    margin-bottom:15px;

    font-weight:700;

}

.service-nav-card h3{

    color:#111827;

    font-size:1.75rem;

    font-family:"Playfair Display",serif;

    margin-bottom:15px;

}

.service-nav-card p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:25px;

}

.nav-arrow{

    color:#b8860b;

    font-weight:700;

}

@media(max-width:992px){

.service-navigation-grid{

grid-template-columns:1fr;

}

}
/* ==========================================================
   PACKAGES
========================================================== */

.packages-section{

    background:#fcfaf6;

}

.packages-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:55px;

}
/* ==========================================================
   PACKAGES
========================================================== */

.packages-section{

    background:#fcfaf6;

}

.package-card{

    position:relative;

    display:flex;

    flex-direction:column;

    background:#ffffff;

    border:1px solid #eadfca;

    border-radius:28px;

    padding:45px 35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    width:100%;

    min-height:700px;

}

.package-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.10);

}

.package-card.featured{

    border:2px solid #d4af37;

}

.package-card.luxury{

    border:2px solid #b8860b;

}

.package-badge{

    position:absolute;

    top:-14px;

    left:50%;

    transform:translateX(-50%);

    background:#d4af37;

    color:#fff;

    padding:8px 18px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    letter-spacing:.08em;

}

.package-time{

    font-size:58px;

    font-weight:700;

    color:#b8860b;

    line-height:1;

    margin-top:10px;

}

.package-time span{

    display:block;

    margin-top:10px;

    font-size:15px;

    letter-spacing:.22em;

    color:#64748b;

}

.package-card h3{

    margin:28px 0 18px;

    font-family:"Playfair Display",serif;

    font-size:2rem;

    color:#111827;

}

.package-card p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:24px;

}

.package-card ul{

    list-style:none;

    padding:0;

    margin:0 0 35px;

    flex:1;

}

.package-card li{

    margin-bottom:14px;

    color:#475569;

}

.package-card button{

    margin-top:auto;

    width:100%;

}

.package-badge{

    position:absolute;

    top:-14px;

    left:50%;

    transform:translateX(-50%);

    background:#d4af37;

    color:#fff;

    padding:8px 18px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    letter-spacing:.08em;

}

.package-time{

    font-size:56px;

    font-weight:700;

    color:#b8860b;

    line-height:1;

}

.package-time span{

    display:block;

    font-size:14px;

    letter-spacing:.2em;

    color:#64748b;

    margin-top:10px;

}

.package-card h3{

    margin:25px 0 15px;

    font-size:2rem;

    font-family:"Playfair Display",serif;

    color:#111827;

}

.package-card p{

    color:#64748b;

    line-height:1.8;

}

.package-card ul{

    list-style:none;

    padding:0;

    margin:30px 0;

}

.package-card li{

    margin-bottom:14px;

    color:#475569;

}

.package-card button{

    width:100%;

}

@media(max-width:992px){

.packages-grid{

grid-template-columns:1fr;

}

.package-card.featured{

transform:none;

}

}
/* ==========================================================
   BANGKOK SERVICE AREAS
========================================================== */

.areas-section{

    background:#fcfaf6;

    padding:90px 0;

}

.areas-section .section-description{

    color:#64748b;

}

/* Swiper */

.areas-section .swiper{

    margin-top:55px;

}

/* Area Card */

.areas-section .area-card{

    background:#ffffff;

    border:1px solid #eadfca;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.areas-section .area-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.10);

}

.areas-section .area-card img{

    width:100%;

    aspect-ratio:4/3;

    object-fit:cover;

}

.areas-section .area-content{

    padding:24px;

}

.areas-section .area-content h3{

    color:#111827;

    font-family:"Playfair Display",serif;

    font-size:1.5rem;

    margin-bottom:10px;

}

.areas-section .area-content p{

    color:#64748b;

    line-height:1.8;

}

/* Pagination */

.areas-section .swiper-pagination-bullet{

    width:10px;

    height:10px;

    background:#d8c8a2;

    opacity:1;

}

.areas-section .swiper-pagination-bullet-active{

    width:30px;

    border-radius:999px;

    background:#b8860b;

}
/* ==========================================================
   THERAPISTS SECTION
========================================================== */

.therapists-section{

    background:#f8f5ef;

    padding:90px 0;

}

.therapists-section .section-description{

    color:#64748b;

}

/* Swiper */

.therapists-section .swiper{

    margin-top:55px;

}

/* Therapist Card */

.therapists-section .therapist-card{

    background:#ffffff;

    border:1px solid #eadfca;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.therapists-section .therapist-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.10);

}

.therapists-section .therapist-info{

    padding:24px;

}

.therapists-section .therapist-name{

    font-family:"Playfair Display",serif;

    font-size:1.65rem;

    color:#111827;

    margin-bottom:10px;

}

.therapists-section .therapist-specialty{

    color:#b8860b;

    font-weight:600;

    margin-bottom:12px;

}

.therapists-section .therapist-info p{

    color:#64748b;

    line-height:1.8;

}

/* Swiper Pagination */

.therapists-section .swiper-pagination-bullet{

    width:10px;

    height:10px;

    background:#d9c79b;

    opacity:1;

}

.therapists-section .swiper-pagination-bullet-active{

    width:32px;

    border-radius:999px;

    background:#b8860b;

}
/* ==========================================================
   REVIEWS
========================================================== */

.reviews-section{

    background:#fcfaf6;

    padding:90px 0;

}

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:55px;

}

.review-card{

    background:#ffffff;

    border:1px solid #eadfca;

    border-radius:26px;

    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.review-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.review-stars{

    color:#d4af37;

    font-size:22px;

    margin-bottom:20px;

    letter-spacing:3px;

}

.review-card p{

    color:#475569;

    line-height:1.9;

    font-style:italic;

    margin-bottom:30px;

}

.review-author{

    display:flex;

    align-items:center;

    gap:16px;

}

.review-author img{

    width:64px;

    height:64px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #d4af37;

}

.review-author h4{

    color:#111827;

    font-family:"Playfair Display",serif;

    margin-bottom:4px;

    font-size:1.2rem;

}

.review-author span{

    color:#b8860b;

    font-size:.9rem;

}

/* Tablet */

@media(max-width:992px){

.reviews-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.reviews-grid{

grid-template-columns:1fr;

}

}
/* ==========================================================
   TRUSTED PROFESSIONALS
========================================================== */

.trusted-section{

    background:#f8f5ef;

    padding:90px 0;

}

.trusted-box{

    background:#ffffff;

    border:1px solid #eadfca;

    border-radius:30px;

    padding:60px;

    box-shadow:0 18px 50px rgba(0,0,0,.08);

}

.trusted-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:50px;

}

.trusted-item{

    text-align:center;

}

.trusted-item svg{

    width:52px;

    height:52px;

    color:#b8860b;

    margin-bottom:18px;

}

.trusted-item h3{

    font-family:"Playfair Display",serif;

    color:#111827;

    font-size:1.35rem;

    margin-bottom:12px;

}

.trusted-item p{

    color:#64748b;

    line-height:1.8;

}

@media(max-width:992px){

.trusted-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.trusted-box{

padding:35px 25px;

}

.trusted-grid{

grid-template-columns:1fr;

}

}
/* ==========================================================
   FAQ
========================================================== */

.faq-section{

    background:#fcfaf6;

    padding:90px 0;

}

.faq-wrapper{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    background:#ffffff;

    border:1px solid #eadfca;

    border-radius:20px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    cursor:pointer;

    padding:26px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-align:left;

}

.faq-question span{

    font-size:1.2rem;

    font-weight:600;

    color:#111827;

}

.faq-question svg{

    color:#b8860b;

    width:24px;

    height:24px;

    transition:.3s;

}

.faq-item.active svg{

    transform:rotate(45deg);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 30px 28px;

    color:#64748b;

    line-height:1.9;

}
/* ==========================================================
   FINAL BOOKING CTA
========================================================== */

.booking-cta-section{

    background:#fcfaf6;

    padding:100px 0;

}

.booking-cta{

    max-width:1100px;

    margin:auto;

    background:#ffffff;

    border-radius:32px;

    padding:70px;

    border:1px solid #eadfca;

    text-align:center;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.booking-features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin:55px 0;

}

.booking-features div{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:15px;

}

.booking-features svg{

    width:50px;

    height:50px;

    color:#b8860b;

}

.booking-features span{

    color:#111827;

    font-weight:600;

}

.booking-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

@media(max-width:991px){

.booking-features{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.booking-cta{

padding:40px 25px;

}

.booking-features{

grid-template-columns:1fr;

gap:25px;

}

.booking-buttons{

flex-direction:column;

}

.booking-buttons a,
.booking-buttons button{

width:100%;

}

}
/* ==========================================================
   RELATED SERVICES
========================================================== */

.related-services-section{

    background:#f8f5ef;

}

.related-services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.related-card{

    position:relative;

    border-radius:28px;

    overflow:hidden;

    text-decoration:none;

    box-shadow:0 18px 50px rgba(0,0,0,.08);

    transition:.35s;

}

.related-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.related-card img{

    width:100%;

    aspect-ratio:4/3;

    object-fit:cover;

    transition:.45s;

}

.related-card:hover img{

    transform:scale(1.08);

}

.related-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    background:linear-gradient(
        transparent 30%,
        rgba(0,0,0,.82)
    );

}

.service-label{

    color:#d4af37;

    font-size:12px;

    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;

    margin-bottom:12px;

}

.related-overlay h3{

    color:#fff;

    font-family:"Playfair Display",serif;

    font-size:2rem;

    margin-bottom:12px;

}

.related-overlay p{

    color:#ececec;

    line-height:1.8;

    margin-bottom:22px;

}

.service-link{

    color:#d4af37;

    font-weight:700;

}

@media(max-width:991px){

.related-services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.related-services-grid{

grid-template-columns:1fr;

}

}/* ==========================================================
   PACKAGE SWIPER
========================================================== */

.packageSwiper{

    width:100%;

    overflow:hidden;

    padding:15px 5px 70px;

}

.packageSwiper .swiper-wrapper{

    align-items:stretch;

}

.packageSwiper .swiper-slide{

    display:flex;

    height:auto;

}

.packageSwiper .package-card{

    flex:1;

}

.package-pagination{

    position:relative;

    margin-top:25px;

}

.package-pagination .swiper-pagination-bullet{

    width:10px;

    height:10px;

    background:#b8860b;

    opacity:.35;

}

.package-pagination .swiper-pagination-bullet-active{

    width:28px;

    border-radius:20px;

    opacity:1;

}