 .faq-item {
            border-bottom: solid 1px green;
            margin-top: 11px;
        }

        .FaqSection {
            background: #000;
            padding-top: 40px;
            padding-bottom: 40px
        }

        .sectionHead b a {
            color: #ff9042
        }

        .sectionHead b a:hover {
            color: #00f
        }

        .HomeBTN {
            display: inline-block;
            margin: 5px 0;
            background: yellow;
            color: black;
            padding: 10px 15px;
            border-radius: 5px;
            width: 195px;
        }

        .therapist-img-box {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
        }

        .therapist-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
      
        /* ===== Banner Contact & Trusted Section ===== */
        .bct-section {
            background: #000;
            padding: 30px 20px 35px;
        }
        .bct-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* CTA Buttons */
        .bct-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }
        .bct-btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 0.4px;
            transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
            cursor: pointer;
        }
        .bct-btn:hover {
            transform: translateY(-3px);
            opacity: 0.92;
            box-shadow: 0 8px 28px rgba(0,0,0,0.45);
            text-decoration: none;
        }
        .bct-btn-call {
            background: linear-gradient(135deg, #9b7b5e 0%, #c6a96b 100%);
            color: #fff;
            box-shadow: 0 4px 16px rgba(155,123,94,0.4);
        }
        .bct-btn-whatsapp {
            background: linear-gradient(135deg, #7a9b6e 0%, #a8c46a 100%);
            color: #fff;
            box-shadow: 0 4px 16px rgba(122,155,110,0.4);
        }
        .bct-btn-book {
            background: linear-gradient(135deg, #8e7a5e 0%, #c9b46a 100%);
            color: #fff;
            box-shadow: 0 4px 16px rgba(142,122,94,0.4);
        }

        /* Stats Tiles */
        .bct-stats {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }
        .bct-stat-item {
            background: linear-gradient(135deg, rgba(60,50,100,0.75) 0%, rgba(80,60,120,0.6) 100%);
            border: 1px solid rgba(120,100,200,0.25);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 10px;
            padding: 18px 28px;
            min-width: 130px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .bct-stat-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(80,60,150,0.45);
        }
        .bct-stat-number {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }
        .bct-stat-label {
            font-size: 13px;
            color: rgba(220,215,255,0.85);
            font-weight: 400;
            line-height: 1.3;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .bct-stats {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .bct-buttons {
                flex-direction: column;
                gap: 12px;
                padding: 0 10px;
            }
            .bct-btn {
                width: 100%;
                justify-content: center;
            }
        }
        @media (max-width: 576px) {
            .bct-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .bct-stat-item {
                padding: 14px 8px;
                min-width: 0;
            }
            .bct-stat-number {
                font-size: 19px;
            }
            .bct-stat-label {
                font-size: 11.5px;
            }
            /* Make the 5th item span full width on small mobile */
            .bct-stat-item:last-child {
                grid-column: 1 / -1;
            }
        }

        /* ===== Why Customers Keep Coming Back Section ===== */
        .wcb-section {
            background: #0a0a0a;
            padding: 60px 20px 70px;
        }
        .wcb-header {
            text-align: center;
            margin-bottom: 42px;
        }
        .wcb-header h2 {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .wcb-header p {
            font-size: 15px;
            color: #d4a96a;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .wcb-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .wcb-card {
            background: linear-gradient(160deg, #2a1208 0%, #1a0c04 100%);
            border: 1px solid rgba(180, 100, 40, 0.22);
            border-radius: 14px;
            padding: 28px 22px;
            color: #fff;
            transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
            position: relative;
            overflow: hidden;
        }
        .wcb-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, #8b4513, #d4a96a, #8b4513);
            opacity: 0;
            transition: opacity 0.28s ease;
        }
        .wcb-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(139, 69, 19, 0.35);
            border-color: rgba(212, 169, 106, 0.4);
        }
        .wcb-card:hover::before {
            opacity: 1;
        }
        .wcb-card h3 {
            font-size: 16.5px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.35;
        }
        .wcb-card p {
            font-size: 13.5px;
            color: rgba(220, 200, 180, 0.85);
            line-height: 1.65;
            margin: 0;
            text-align: justify;
        }
        @media (max-width: 992px) {
            .wcb-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 576px) {
            .wcb-grid { grid-template-columns: 1fr; }
            .wcb-header h2 { font-size: 20px; letter-spacing: 2px; }
        }

        /* ===== Benefits of Professional Massage Therapy — Box Style ===== */
        .bop-section {
            background: #000;
            padding: 60px 20px 70px;
        }
        .bop-header {
            text-align: center;
            margin-bottom: 44px;
        }
        .bop-label {
            display: inline-block;
            background: #1a4fd6;
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            padding: 5px 16px;
            border-radius: 3px;
            margin-bottom: 10px;
        }
        .bop-header h2 {
            font-size: 30px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 2px;
            margin-bottom: 16px;
            line-height: 1.25;
        }
        .bop-header > p {
            font-size: 15px;
            color: rgba(220, 220, 235, 0.8);
            max-width: 860px;
            margin: 0 auto;
            line-height: 1.75;
        }
        .bop-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            max-width: 1180px;
            margin: 0 auto;
            border: 1px solid rgba(255,255,255,0.18);
        }
        .bop-card {
            background: #0a0a0a;
            border: 1px solid rgba(255,255,255,0.18);
            padding: 30px 26px 28px;
            position: relative;
            transition: background 0.28s ease;
            box-sizing: border-box;
        }
        .bop-card:hover {
            background: #111118;
        }
        .bop-icon {
            font-size: 26px;
            margin-bottom: 12px;
            display: block;
            line-height: 1;
        }
        .bop-card h3 {
            font-size: 21px; 
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .bop-card p {
            font-size: 13.5px;
            color: rgba(205, 205, 215, 0.82);
            line-height: 1.72;
            margin: 0;
            text-align: justify;
        }
        .bop-accent { display: none; }

        @media (max-width: 992px) {
            .bop-grid { grid-template-columns: repeat(2, 1fr); }
            .bop-header h2 { font-size: 24px; }
        }
        @media (max-width: 576px) {
            .bop-grid { grid-template-columns: 1fr; }
            .bop-header h2 { font-size: 20px; letter-spacing: 1px; }
            .bop-card { padding: 22px 18px; }
            .bop-section { padding: 44px 14px 54px; }
        }

        /* ===== The Environment Section — Premium Design ===== */
        .env-section {
            background: linear-gradient(180deg, #080808 0%, #0d0806 100%);
            padding: 80px 0;
            overflow: hidden;
        }
        .env-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 55% 45%;
            gap: 0;
            align-items: stretch;
        }
        /* ---- Left Text Panel ---- */
        .env-text {
            padding: 48px 52px 48px 0;
            border-right: 1px solid rgba(255,255,255,0.07);
        }
        .env-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 600;
            color: #c9935a;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }
        .env-label::before {
            content: '';
            display: inline-block;
            width: 28px;
            height: 2px;
            background: #c9935a;
            border-radius: 2px;
        }
        .env-text h2 {
            font-size: 36px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 18px;
            line-height: 1.18;
            letter-spacing: 0.5px;
        }
        .env-intro {
            font-size: 15px;
            color: rgba(215,210,200,0.78);
            line-height: 1.8;
            margin-bottom: 36px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }
        .env-features {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .env-feature {
            display: grid;
            grid-template-columns: 44px 1fr;
            gap: 14px;
            align-items: flex-start;
        }
        .env-feature-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(201,147,90,0.18), rgba(201,147,90,0.06));
            border: 1px solid rgba(201,147,90,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .env-feature-body h4 {
            font-size: 21px; 
            color: #ffffff;
            margin: 0 0 5px;
            line-height: 1.3;
        }
        .env-feature-body p {
            font-size: 13.5px;
            color: rgba(210,205,195,0.78);
            line-height: 1.72;
            margin: 0;
        }
        /* ---- Right Image Panel ---- */
        .env-image-wrap {
            position: relative;
            overflow: hidden;
        }
        .env-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            min-height: 520px;
            filter: brightness(0.88) saturate(1.1);
            transition: transform 6s ease, filter 0.4s ease;
        }
        .env-image-wrap:hover img {
            transform: scale(1.04);
            filter: brightness(0.95) saturate(1.2);
        }
        .env-image-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(180,40,10,0.18) 0%, transparent 60%);
            z-index: 1;
            pointer-events: none;
        }
        .env-image-wrap::after {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #c9935a, #8b3a10);
            z-index: 2;
        }
        /* ---- Responsive ---- */
        @media (max-width: 960px) {
            .env-inner {
                grid-template-columns: 1fr;
            }
            .env-text {
                padding: 40px 24px;
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.08);
            }
            .env-text h2 { font-size: 26px; }
            .env-image-wrap img { min-height: 320px; }
            .env-image-wrap::after { display: none; }
        }
        @media (max-width: 576px) {
            .env-section { padding: 50px 0; }
            .env-inner { padding: 0; }
            .env-text { padding: 32px 18px; }
            .env-text h2 { font-size: 22px; }
            .env-image-wrap img { min-height: 240px; }
        }

        /* ===== Client Reviews Section ===== */
        .rev-section {
            background: #050505;
            padding: 70px 20px 80px;
        }
        .rev-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .rev-tag {
            display: inline-block;
            background: linear-gradient(90deg, #e8472a, #f97316);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            padding: 5px 16px;
            border-radius: 4px;
            margin-bottom: 12px;
        }
        .rev-header h2 {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
        }
        .rev-header p {
            font-size: 14px;
            color: rgba(210,210,220,0.7);
        }
        .rev-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1180px;
            margin: 0 auto;
        }
        .rev-card {
            background: #0e0e14;
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 14px;
            padding: 26px 24px 22px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
        }
        .rev-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 40px rgba(232,71,42,0.18);
            border-color: rgba(232,71,42,0.3);
        }
        .rev-top {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .rev-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e8472a, #f97316);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
        }
        .rev-meta { flex: 1; min-width: 0; }
        .rev-name {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .rev-sub {
            font-size: 11.5px;
            color: rgba(180,175,200,0.65);
            margin-top: 2px;
        }
        .rev-google { margin-left: auto; flex-shrink: 0; }
        .rev-google svg { width: 20px; height: 20px; }
        .rev-stars {
            display: flex;
            align-items: center;
            gap: 2px;
        }
        .rev-star { color: #f5a623; font-size: 15px; line-height: 1; }
        .rev-date {
            font-size: 11px;
            color: rgba(170,165,190,0.6);
            margin-left: 6px;
        }
        .rev-text {
            font-size: 13.5px;
            color: rgba(210,205,220,0.82);
            line-height: 1.7;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin: 0;
        }
        .rev-footer {
            font-size: 11px;
            color: rgba(150,145,175,0.6);
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 12px;
        }
        @media (max-width: 900px) {
            .rev-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 560px) {
            .rev-grid { grid-template-columns: 1fr; }
            .rev-header h2 { font-size: 22px; }
            .rev-section { padding: 50px 14px 60px; }
        }

        /* ===== Reviews Rating Summary Panel ===== */
        .rev-summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1180px;
            margin: 0 auto 40px;
            background: #0e0e14;
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 16px;
            padding: 26px 32px;
        }
        .rev-summary-left {
            display: flex;
            align-items: center;
            gap: 22px;
            flex-wrap: wrap;
        }
        .rev-summary-score {
            font-size: 56px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }
        .rev-summary-info {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .rev-summary-biz {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
        }
        .rev-summary-stars {
            display: flex;
            gap: 3px;
        }
        .rev-summary-star {
            color: #f5a623;
            font-size: 20px;
            line-height: 1;
        }
        .rev-summary-count {
            font-size: 12.5px;
            color: rgba(190,185,210,0.7);
        }
        .rev-summary-cat {
            font-size: 12px;
            color: rgba(160,155,190,0.65);
        }
        .rev-write-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: #1a1a2e;
            font-size: 13px;
            font-weight: 700;
            padding: 11px 22px;
            border-radius: 8px;
            text-decoration: none;
            transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
            white-space: nowrap;
        }
        .rev-write-btn:hover {
            background: #f0f0f0;
            color: #1a1a2e;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .rev-write-btn svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }
        @media (max-width: 600px) {
            .rev-summary { flex-direction: column; align-items: flex-start; padding: 20px 18px; }
            .rev-summary-score { font-size: 44px; }
        }

        /* ===== Find Us Section ===== */
        .find-section {
            background: #080808;
            padding: 80px 0;
            position: relative;
        }
        .find-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .find-text {
            color: #fff;
        }
        .find-tag {
            font-size: 14px;
            font-weight: 500;
            color: rgba(220,220,230,0.8);
            letter-spacing: 3px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 10px;
        }
        .find-title {
            font-size: 40px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 35px;
            letter-spacing: 1px;
        }
        .find-title span {
            display: block;
        }
        .find-info-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 35px;
        }
        .find-info-item {
            font-size: 15px;
            color: rgba(215,215,225,0.9);
            line-height: 1.6;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .find-info-item .icon {
            font-size: 18px;
            line-height: 1.4;
        }
        .find-info-item strong {
            color: #0dcaf0;
            font-weight: 700;
        }
        .find-info-item a {
            color: rgba(215,215,225,0.9);
            text-decoration: underline;
        }
        .find-directions h4 {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }
        .find-directions ul {
            list-style: disc;
            padding-left: 20px;
            margin: 0;
        }
        .find-directions li {
            font-size: 15px;
            color: rgba(210,210,220,0.8);
            margin-bottom: 8px;
            line-height: 1.6;
        }
        .find-map iframe {
            width: 100%;
            height: 100%;
            min-height: 550px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            display: block;
        }
        @media (max-width: 992px) {
            .find-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .find-map iframe { min-height: 350px; }
        }
        @media (max-width: 576px) {
            .find-section { padding: 50px 0; }
            .find-title { font-size: 28px; }
            .find-inner { padding: 0 20px; }
            .find-map iframe { min-height: 300px; }
        }

        /* ===== Book Your Massage Section ===== */
        .book-section {
            background: #030303;
            padding: 80px 0;
            text-align: center;
        }
        .book-header {
            margin-bottom: 45px;
            padding: 0 20px;
        }
        .book-header-top {
            font-size: 22px;
            color: rgba(255,255,255,0.85);
            letter-spacing: 4px;
            font-weight: 400;
            margin-bottom: 8px;
        }
        .book-header-main {
            font-size: 44px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 18px;
            letter-spacing: 2px;
        }
        .book-header p {
            font-size: 19px;
            color: #fff;
            margin: 0;
            font-weight: 300;
        }
        .book-container {
            max-width: 950px;
            margin: 0 auto;
            display: flex;
            background: #000;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
        }
        .book-image {
            flex: 1;
            min-height: 500px;
        }
        .book-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .book-content {
            flex: 1;
            background: linear-gradient(135deg, #1b1e36 0%, #101014 100%);
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        .book-content h3 {
            display: inline-block;
            background: #1449b8;
            padding: 6px 14px;
            font-size: 30px;
            font-weight: 600;
            color: #fff;
            margin: 0 0 15px 0;
            line-height: 1.2;
        }
        .book-content .price {
            font-size: 20px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 45px;
        }
        .book-btns {
            width: 100%;
            max-width: 260px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 45px;
        }
        .book-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 15px 20px;
            background: #333;
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 4px;
            transition: background 0.3s ease;
        }
        .book-btn:hover {
            background: #444;
            color: #fff;
            text-decoration: none;
        }
        .btn-wa {
            background: #25d366;
            color: #fff;
        }
        .btn-wa:hover {
            background: #1ebc59;
        }
        .btn-call {
            background: #1449b8;
            color: #fff;
        }
        .btn-call:hover {
            background: #0f368c;
        }
        .book-address {
            font-size: 16px;
            color: #fff;
            line-height: 1.6;
            font-weight: 300;
        }
        .book-address .pin {
            color: #ef4444;
            margin-right: 4px;
        }
        @media (max-width: 768px) {
            .book-container {
                flex-direction: column;
                max-width: 500px;
                margin: 0 20px;
            }
            .book-image {
                min-height: 350px;
            }
            .book-header-main { font-size: 34px; }
            .book-content { padding: 40px 20px; }
        }