:root {
            --primary: #cda69d;
            --secondary: #3a2d2d;
            --light: #f8f5f3;
            --dark: #222222;
            --accent: #a58e82;
            --text: #5a5a5a;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            color: var(--dark);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            line-height: 1.2;
        }

        p,span,a,li, strong{
            font-family: 'Syne', sans-serif !important;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.41), rgba(0, 0, 0, 0.421)), url(images/head\ massage-banner.jpeg);
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            color: var(--white);
            margin-bottom: 60px;
            height: 70vh;
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
            font-size: 0.9rem;
        }

        .breadcrumb li {
            margin: 0 10px;
        }

        .breadcrumb a {
            color: var(--light);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: var(--light);
        }

        @media (max-width: 768px) {
            .page-header h1{
                font-size: 2rem;
            }
            .breadcrumb{
                flex-direction: column;
            }
            
        }

        /* Service Intro */
        .service-intro {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 80px;
            align-items: center;
        }

        .service-image {
            flex: 1;
            min-width: 300px;
            height: 510px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            display: block;
            transition: var(--transition);
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        .service-content {
            flex: 1;
            min-width: 300px;
        }

        .service-tag {
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.9rem;
            position: relative;
            padding-left: 15px;
            margin-bottom: 15px;
            display: inline-block;
            text-transform: uppercase;
        }

        .service-tag::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 100%;
            background-color: var(--secondary);
            border-radius: 2px;
        }

        .service-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .service-content p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.7;
        }


        
/* //////services section//// */
.services-section{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    background-color: #e1d7cb;
    padding: 30px;
    margin-top: 50px;
}

.benefit-heading{
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #3a2d2d;
    font-weight: 600;
}

.benefit-para{
    width: 100%;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
    max-width: 900px;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 200px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.service-card:hover{
    transform: translateY(-10px);
}

.icon-wrapper {
    margin-bottom: 20px;
}

.icon-wrapper i {
    font-size: 60px;
    color: #928575;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333333;
}

/* --- Responsive Layout --- */

@media (max-width: 768px) {
    .service-container {
        flex-direction: row;
        justify-content: center;
    }
    .service-card {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 480px) {
    .service-card {
        flex: 1 1 100%;
    }
}




       
        /* Process Section */
             
        /* Process Section */
        .process-section {
            padding: 50px 0;
            background-color: var(--white);
            position: relative;
            width: 100%;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            flex-wrap: wrap;
            position: relative;
        }
        
        .process-step {
            flex: 0 0 calc(25% - 30px);
            text-align: center;
            position: relative;
            margin-bottom: 30px;
            padding: 0 15px;
        }
        
        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 40px;
            right: -15%;
            width: 30%;
            height: 2px;
            background: var(--primary);
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #9285751e;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }
        
        .process-step:hover .step-number {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.1);
        }
        
        .step-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .step-description {
            color: #666;
            font-size: 0.95rem;
        }
 

        @media (max-width: 786px){
            .process-step:not(:last-child):after{
                display: none;
            }
            .process-steps{
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
        }


        /* ////////////.massage-section //////////  */



.massage-section {
    padding: 50px 20px;
    text-align: center;
}

.massage-subtitle {
    font-size: .9rem;
    font-weight: 500;
    color: #a08c6a; 
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.massage-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.massage-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 950px;
    margin: 0 auto;
}

.massage-grid {
    display: flex;
    flex-wrap: wrap; 
    width: 100%;
    margin-bottom: 80px;
}

.massage-card {
    flex: 1 1 23%; 
    height: 500px; 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative; 
    overflow: hidden; 
    transition: all 0.5s ease-out; 
    cursor: pointer;
}

.massage-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45); 
    transition: background 0.5s;
    z-index: 1; 
}

.massage-card:hover::after {
    background: rgba(0, 0, 0, 0.25); 
}

.massage-card:hover {
    flex: 1 1 25%; 
}

.massage-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    color: #fff;
    z-index: 2; 
    width: 100%;
    transform: translateY(0); 
    transition: transform 0.5s ease-out;
    font-family: 'Syne', sans-serif !important;
            
}

.massage-card:hover .massage-content {
    transform: translateY(-80px); 
}

.massage-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.massage-info {
    font-size: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); 
    font-family: 'Syne', sans-serif !important;
            
}

.massage-points {
    color: #fff;
    padding: 10px 20px;
    letter-spacing: 1px;
    font-weight: 500;
    position: absolute; 
    bottom: -50px; 
    left: 30px; 
    opacity: 0;
    z-index: 3; 
    transition: bottom 0.5s ease-out, opacity 0.4s ease-out;
    font-family: 'Syne', sans-serif !important;
            
}

.massage-card:hover .massage-points {
    bottom: 10px; 
    opacity: 1; 
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .massage-card {
        flex: 1 1 50%;
        height: 400px;
    }
}

@media (max-width: 600px) {
    .massage-card {
        flex: 1 1 100%;
        height: 350px;
    }

    .massage-title {
        font-size: 2.5rem;
    }
}
 




        /* Gallery Section */
        .gallery-container{
            background-color: #ffffff;
            padding: 40px 50px;
        }
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .section-header p {
            font-size: 1.1rem;
            /* color: #666; */
            max-width: 1000px;
            margin: 0 auto;
        }

        .gallery-section {
            margin-top: 40px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            overflow: hidden;
            position: relative;
            height: 250px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: var(--white);
            font-size: 2rem;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            overflow: hidden;
        }

        .modal-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-image {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 30px;
            color: var(--white);
            font-size: 2.5rem;
            cursor: pointer;
            z-index: 1001;
            transition: var(--transition);
        }

        .close-btn:hover {
            color: #ff5252;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--white);
            font-size: 2.5rem;
            cursor: pointer;
            z-index: 1001;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .prev-btn {
            left: 30px;
        }

        .next-btn {
            right: 30px;
        }

        .action-buttons {
            position: absolute;
            top: 20px;
            right: 80px;
            display: flex;
            gap: 15px;
            z-index: 1001;
        }

        .action-btn {
            color: var(--white);
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            font-size: 1.1rem;
            padding: 5px 15px;
            border-radius: 20px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(images/head-mess.jpeg);
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            color: var(--white);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            max-width: 860px;
            margin: 0 auto 30px;
            font-size: 1rem;
            font-family: 'Syne', sans-serif !important;
        }

        .cta-btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--secondary);
            color: var(--white);
            border: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }

        .cta-btn:hover {
            background: black;
            transform: translateY(-3px);
        }

        /* New Section: Process Steps */
        

        /* Responsive Styles */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .service-content h2 {
                font-size: 2rem;
            }
            
            .benefits-section h2,
            .types-section h2,
            .process-section h2,
            .section-header h2 {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .step {
                flex-direction: column;
                text-align: center;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .types-container {
                grid-template-columns: 1fr;
            }
            
            .nav-btn {
                width: 50px;
                height: 50px;
                font-size: 2rem;
            }
            
            .prev-btn {
                left: 15px;
            }
            
            .next-btn {
                right: 15px;
            }
            
            .action-buttons {
                right: 70px;
            }
            
            .action-btn {
                width: 40px;
                height: 40px;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .service-intro {
                flex-direction: column;
            }
            
            .service-image, .service-content {
                min-width: 100%;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }