 /* CSS Reset & Variables */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --gold: #c5a059;
            --dark: #1a1a1a;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        body { font-family: 'Poppins', sans-serif; }

        /* Header Styles */
        header {
            background-color: var(--dark);
            padding: 1rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            font-size: 1.5rem;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Desktop Menu */
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-links li { margin: 0 1.5rem; }

        .nav-links a {
            text-decoration: none;
            color: var(--white);
            font-size: 0.9rem;
            font-weight: 400;
            transition: var(--transition);
        }

        .nav-links a:hover { color: var(--gold); }

        /* Appointment Button */
        .btn-book {
            background-color: var(--gold);
            color: var(--dark) !important;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600 !important;
            transition: var(--transition);
        }

        .btn-book:hover {
            background-color: var(--white);
            transform: translateY(-2px);
        }

        /* Mobile Toggle */
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: var(--white);
            transition: var(--transition);
        }

        /* Responsive Breakpoint */
        @media (max-width: 992px) {
            .nav-links {
                position: absolute;
                right: 0px;
                height: 100vh;
                top: 0;
                background-color: var(--dark);
                flex-direction: column;
                width: 70%;
                padding-top: 100px;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
            }

            .nav-links li { margin: 1.5rem 0; }
            .hamburger { display: flex; z-index: 1001; }
            
            .nav-active { transform: translateX(0%); }

            /* Hamburger Animation */
            .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
            .toggle .line2 { opacity: 0; }
            .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
        }





         /* Hero Section Styles */
    .hero {
        height: 100vh;
        width: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&q=80&w=2070'); /* High-quality Spa Image */
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--white);
        padding: 0 5%;
    }

    .hero-content {
        max-width: 800px;
        animation: fadeInUp 1.2s ease;
    }

    .hero-content span {
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 4px;
        font-size: 0.9rem;
        display: block;
        margin-bottom: 1rem;
    }

    .hero-content h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 8vw, 4.5rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        color: #e0e0e0;
        line-height: 1.6;
        font-weight: 300;
    }

    .hero-btns {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .btn-primary {
        background-color: var(--gold);
        color: var(--dark);
        padding: 1rem 2.5rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: var(--transition);
        border: 2px solid var(--gold);
    }

    .btn-secondary {
        background-color: transparent;
        color: var(--white);
        padding: 1rem 2.5rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: var(--transition);
        border: 2px solid var(--white);
    }

    .btn-primary:hover {
        background-color: transparent;
        color: var(--white);
    }

    .btn-secondary:hover {
        background-color: var(--white);
        color: var(--dark);
    }

    /* Simple Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero-btns {
            flex-direction: column;
            align-items: center;
        }
        .btn-primary, .btn-secondary {
            width: 100%;
            max-width: 280px;
        }
    }




     /* About Section Styles */
    .about-section {
        padding: 100px 8%;
        background-color: #fafafa; /* Light off-white for contrast */
        display: flex;
        align-items: center;
        gap: 60px;
        overflow: hidden;
    }

    .about-image {
        flex: 1;
        position: relative;
    }

    .about-image img {
        width: 100%;
        border-radius: 15px;
        box-shadow: 20px 20px 0px var(--gold); /* Stylized gold border effect */
    }

    .about-experience-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--dark);
        color: var(--gold);
        padding: 25px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .about-experience-badge h2 {
        font-size: 2rem;
        font-family: 'Playfair Display', serif;
    }

    .about-content {
        flex: 1;
    }

    .about-content .sub-title {
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 10px;
        display: block;
    }

    .about-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        color: var(--dark);
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .about-content p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 30px;
        font-size: 1.05rem;
    }

    /* Modern Features List */
    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 500;
        color: var(--dark);
    }

    .feature-item i {
        color: var(--gold);
        font-size: 1.2rem;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .about-section {
            flex-direction: column;
            padding: 60px 5%;
            text-align: center;
        }

        .about-image {
            width: 90%;
            margin-bottom: 50px;
        }

        .about-features {
            justify-items: start;
            text-align: left;
        }
        
        .about-content h2 {
            font-size: 2.2rem;
        }
    }





      /* Services Section Styles */
    .services-section {
        padding: 100px 8%;
        background-color: var(--white);
        text-align: center;
    }

    .services-header {
        margin-bottom: 60px;
    }

    .services-header span {
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .services-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        color: var(--dark);
        margin-top: 10px;
    }

    /* Grid Layout */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    /* Service Card */
    .service-card {
        background: #fff;
        padding: 40px 30px;
        border-radius: 15px;
        border: 1px solid #eee;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0%;
        background: var(--dark);
        transition: var(--transition);
        z-index: -1;
    }

    .service-card:hover::before {
        height: 100%;
    }

    .service-card:hover h3, 
    .service-card:hover p {
        color: var(--white);
    }

    .service-card:hover .service-icon {
        background: var(--gold);
        color: var(--dark);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: #fdf8ef;
        color: var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 1.8rem;
        transition: var(--transition);
    }

    .service-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--dark);
        transition: var(--transition);
    }

    .service-card p {
        color: #777;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        transition: var(--transition);
    }

    .service-link {
        color: var(--gold);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .services-section {
            padding: 60px 5%;
        }
        .services-header h2 {
            font-size: 2.2rem;
        }
    }




     /* Why Choose Us Section */
    .why-choose-us {
        padding: 100px 8%;
        background-color: var(--dark); /* Dark background for a premium contrast */
        color: var(--white);
        display: flex;
        align-items: center;
        gap: 80px;
    }

    .why-image-container {
        flex: 1;
        position: relative;
    }

    /* Decorative frame for the image */
    .why-image-container img {
        width: 100%;
        border-radius: 200px 200px 0 0; /* Arch shape for elegance */
        border: 2px solid var(--gold);
        padding: 15px;
    }

    .why-content {
        flex: 1;
    }

    .why-content .sub-title {
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.9rem;
    }

    .why-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        margin: 15px 0 30px;
    }

    /* Benefit Items */
    .benefit-item {
        display: flex;
        gap: 20px;
        margin-bottom: 35px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        background: rgba(197, 160, 89, 0.1); /* Subtle gold tint */
        border: 1px solid var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--gold);
        font-size: 1.5rem;
    }

    .benefit-text h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        margin-bottom: 8px;
        color: var(--gold);
    }

    .benefit-text p {
        color: #ccc;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .why-choose-us {
            flex-direction: column-reverse; /* Image moves to bottom on mobile */
            padding: 60px 5%;
            text-align: center;
        }

        .benefit-item {
            flex-direction: column;
            align-items: center;
        }

        .why-content h2 {
            font-size: 2.2rem;
        }
    }




     /* What We Do - Detail Section */
    .wwd-details {
        padding: 100px 8%;
        background-color: #fff;
        text-align: center;
    }

    .wwd-intro {
        max-width: 700px;
        margin: 0 auto 60px;
    }

    .wwd-intro span {
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .wwd-intro h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        color: var(--dark);
        margin: 15px 0;
    }

    .wwd-intro p {
        color: #666;
        line-height: 1.6;
    }

    /* Grid Layout for the 6 items */
    .wwd-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 50px;
    }

    .wwd-item {
        text-align: left;
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        transition: var(--transition);
    }

    .wwd-item:hover {
        border-bottom: 1px solid var(--gold);
        transform: translateY(-5px);
    }

    .wwd-number {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        color: var(--gold);
        opacity: 0.5;
        margin-bottom: 15px;
        display: block;
    }

    .wwd-item h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        color: var(--dark);
        margin-bottom: 12px;
    }

    .wwd-item p {
        font-size: 0.95rem;
        color: #777;
        line-height: 1.6;
    }

    .wwd-contact-btn {
        margin-top: 20px;
        display: inline-block;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .wwd-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .wwd-grid {
            grid-template-columns: 1fr;
        }
        .wwd-intro h2 {
            font-size: 2.2rem;
        }
        .wwd-details {
            padding: 60px 5%;
        }
    }




       /* Styling for the Staff Section */
    .staff-section {
        padding: 0px 5%;
        background-color: #ffffff;
        text-align: center;
        font-family: 'Poppins', sans-serif;
    }

    .staff-header {
        margin-bottom: 50px;
    }

    .staff-header span {
        color: #8c8c8c;
        font-size: 0.9rem;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 10px;
    }

    .staff-header h2 {
        font-size: 2.5rem;
        color: #2d2d2d;
        font-weight: 600;
        margin: 0;
    }

    .staff-header h2 em {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: #bfa37e; /* Gold color from the image text */
        font-weight: 400;
    }

    /* Grid layout for 4 cards in a row */
    .staff-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Individual Card Design */
    .staff-card {
        background-color: #f9f6f0; /* Soft cream background from image */
        border-radius: 20px;
        padding: 40px 20px 0 20px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .staff-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    }

    .staff-card h3 {
        font-size: 1.3rem;
        color: #333;
        margin-bottom: 5px;
    }

    .staff-card p {
        font-size: 0.9rem;
        color: #777;
        margin-bottom: 30px;
    }

    /* Image container matching the reference */
    .staff-img-box {
        width: 100%;
        margin-top: auto;
    }

    .staff-img-box img {
        width: 100%;
        height: auto;
        display: block;
        /* Matches the bottom-aligned cutout look in the reference image */
        object-fit: cover;
    }

    /* Animated Social Tray */
    .social-tray {
        position: absolute;
        bottom: 80px; /* Positioned over the person's torso area */
        left: 20px;
        display: flex;
        gap: 8px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .staff-card:hover .social-tray {
        opacity: 1;
        transform: translateY(0);
    }

    .social-icon {
        width: 35px;
        height: 35px;
        background-color: #a68b6d; /* Brownish tone from the image icons */
        color: white;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 14px;
        font-weight: bold;
        transition: background 0.3s;
    }

    .social-icon:hover {
        background-color: #8c7156;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .staff-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
        .staff-grid { grid-template-columns: 1fr; }
        .staff-header h2 { font-size: 1.8rem; }
    }




      /* Testimonial Section Styles */
    .testimonial-section {
        padding: 100px 8%;
        background-color: #f9f6f0; /* Matching the staff card cream color */
        text-align: center;
        overflow: hidden;
    }

    .testi-header {
        margin-bottom: 50px;
    }

    .testi-header span {
        color: #bfa37e;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .testi-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        color: #2d2d2d;
        margin-top: 10px;
    }

    /* Testimonial Card UI */
    .testimonial-container {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        background: #ffffff;
        padding: 60px 40px;
        border-radius: 50px; /* Extra rounded for a soft look */
        box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    }

    /* Unique Large Floating Quote */
    .testimonial-container::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        font-family: 'Playfair Display', serif;
        font-size: 8rem;
        color: #bfa37e;
        opacity: 0.2;
        line-height: 1;
    }

    .testi-content p {
        font-family: 'Playfair Display', serif;
        font-size: 1.6rem;
        font-style: italic;
        color: #4a4a4a;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .testi-author {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .testi-author img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #bfa37e;
    }

    .testi-author h4 {
        font-size: 1.1rem;
        color: #2d2d2d;
        font-weight: 600;
        margin: 0;
    }

    .testi-author span {
        font-size: 0.85rem;
        color: #8c8c8c;
    }

    .testi-stars {
        color: #bfa37e;
        margin-top: 5px;
        font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .testimonial-section {
            padding: 80px 5%;
        }
        .testi-content p {
            font-size: 1.2rem;
        }
        .testimonial-container {
            padding: 40px 20px;
        }
    }






     /* Latest Blog Section Styles */
    .blog-section {
        padding: 100px 8%;
        background-color: var(--white); /* White background for contrast */
        text-align: center;
    }

    .blog-header {
        margin-bottom: 60px;
    }

    .blog-header span {
        color: var(--light-gold);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .blog-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        color: var(--dark);
        margin-top: 10px;
    }

    /* Blog Grid for 3 cards in a row */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Individual Blog Card */
    .blog-card {
        background-color: var(--cream); /* Matching cream background */
        border-radius: 15px;
        overflow: hidden;
        text-align: left;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    }

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

    .blog-image {
        width: 100%;
        height: 220px;
        overflow: hidden;
    }

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .blog-card:hover .blog-image img {
        transform: scale(1.05);
    }

    .blog-content {
        padding: 25px;
    }

    .blog-meta {
        font-size: 0.85rem;
        color: #888;
        margin-bottom: 10px;
        display: flex;
        gap: 15px;
    }

    .blog-meta span {
        display: flex;
        align-items: center;
    }

    .blog-meta i {
        margin-right: 5px;
        color: var(--gold);
    }

    .blog-content h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        color: var(--dark);
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .blog-content p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .blog-link {
        color: var(--light-gold);
        text-transform: uppercase;
        font-weight: 600;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        transition: var(--transition);
    }

    .blog-link:hover {
        color: var(--dark);
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .blog-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
        }
    }

    @media (max-width: 600px) {
        .blog-grid {
            grid-template-columns: 1fr; /* 1 column for mobile */
        }
        .blog-section {
            padding: 60px 5%;
        }
        .blog-header h2 {
            font-size: 2.2rem;
        }
    }









       /* Footer Styles */
    footer {
        background-color: var(--dark);
        color: var(--white);
        padding: 80px 8% 30px;
        font-family: 'Poppins', sans-serif;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
        margin-bottom: 50px;
    }

    .footer-column h3 {
        font-family: 'Playfair Display', serif;
        color: var(--gold);
        font-size: 1.4rem;
        margin-bottom: 25px;
        position: relative;
    }

    .footer-column h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 40px;
        height: 2px;
        background-color: var(--gold);
    }

    .footer-column p, .footer-column li {
        color: #b0b0b0;
        font-size: 0.9rem;
        line-height: 1.8;
        margin-bottom: 12px;
    }

    .footer-links li a {
        color: #b0b0b0;
        transition: var(--transition);
        display: block;
    }

    .footer-links li a:hover {
        color: var(--gold);
        transform: translateX(5px);
    }

    /* Contact Details */
    .contact-info li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .contact-info span {
        color: var(--gold);
        font-weight: 600;
    }

    /* Map Styling */
    .footer-map {
        width: 100%;
        height: 180px;
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid #333;
    }

    .footer-map iframe {
        width: 100%;
        height: 100%;
        filter: grayscale(1) invert(0.9) contrast(1.2); /* Makes map match dark theme */
    }

    /* Bottom Copyright Bar */
    .footer-bottom {
        border-top: 1px solid #333;
        padding-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        color: #666;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        border: 1px solid #444;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 0.9rem;
        transition: var(--transition);
    }

    .social-links a:hover {
        background-color: var(--gold);
        border-color: var(--gold);
        color: var(--dark);
    }

    /* Responsive Footer */
    @media (max-width: 1024px) {
        .footer-container {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 600px) {
        .footer-container {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .footer-column h3::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .contact-info li {
            justify-content: center;
        }
        .footer-bottom {
            justify-content: center;
        }
    }





    a:hover{
      color: #8c7156 !important;
    }