/* ---------------------------------
           Global Styles & Variables
           --------------------------------- */
        :root {
            --primary-color: #6a1b9a; /* A slightly brighter purple */
            --secondary-color: #fce4ec; /* Soft Pink */
            --accent-gold: #ffc107; /* Vibrant Gold */
            --dark-bg: #1a0129;
            --light-text: #f3e5f5;
            --text-color: #333;
            --heading-font: 'Playfair Display', serif;
            --body-font: 'Lora', serif;
            --gradient-bg: linear-gradient(135deg, #4a0e6b, #1a0129);
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--body-font);
            margin: 0;
            padding: 0;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.7;
        }

        .container {
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Add box-sizing to all elements for easier layout */
        *, *::before, *::after {
            box-sizing: border-box;
        }

        h1, h2, h3, h4 {
            font-family: var(--heading-font);
            color: var(--accent-gold);
            margin-bottom: 0.5em;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        p {
            margin-bottom: 1.2em;
        }

        a {
            text-decoration: none;
            color: var(--accent-gold);
        }

        /* Page container */
        .page {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .page.active {
            display: block;
        }

        /* ---------------------------------
           Header & Navigation
           --------------------------------- */
        header {
            background-color: rgba(26, 1, 41, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--primary-color);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            width: 60px; /* Increased size */
            height: 60px;
            margin-right: 15px;
            border-radius: 50%;
            border: 2px solid var(--accent-gold);
        }

        .logo-text {
            font-family: var(--heading-font);
            font-size: 2rem; /* Increased size */
            font-weight: 700;
            color: #fff;
        }

        header nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        header nav li {
            margin-left: 2.5rem;
        }

        header nav a {
            font-weight: 700;
            padding-bottom: 5px;
            color: var(--light-text);
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        header nav a:hover,
        header nav a.active {
            color: var(--accent-gold);
            border-bottom-color: var(--accent-gold);
        }

        @media (max-width: 768px) {
            .logo-text { font-size: 1.5rem; }
            header nav ul { display: none; }
        }


        /* ---------------------------------
           Footer
           --------------------------------- */
        footer {
            background: var(--gradient-bg);
            color: var(--light-text);
            text-align: left; /* Changed from center */
            padding: 4rem 0 0 0; /* Add padding top, remove bottom */
            margin-top: 0; /* Removed margin-top as gallery has border */
            border-top: 1px solid var(--primary-color);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            padding-bottom: 3rem;
        }

        .footer-column h4 {
            font-family: var(--heading-font);
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        /* Underline for footer titles */
        .footer-column h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 50px;
            height: 2px;
            background-color: var(--accent-gold);
        }

        .footer-column p {
            color: var(--light-text);
            opacity: 0.8;
            max-width: 300px;
            font-size: 0.95rem;
        }

        ul.footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        ul.footer-links li {
            margin-bottom: 1rem;
        }

        ul.footer-links a {
            color: var(--light-text);
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        ul.footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            flex-direction: column; /* Stack links */
            gap: 1.2rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--light-text);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .social-links a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }

        .social-links a svg {
            width: 24px;
            height: 24px;
            stroke: var(--accent-gold);
            transition: all 0.3s ease;
        }

        .social-links a:hover svg {
            stroke: var(--accent-gold);
        }

        .copyright {
            text-align: center;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(106, 27, 154, 0.5); /* Lighter border */
            margin-top: 2rem;
        }

        .copyright p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* ---------------------------------
           Buttons
           --------------------------------- */
        .cta-button, .cta-button-secondary {
            display: inline-flex; /* Changed from inline-block */
            align-items: center;
            gap: 0.75rem; /* Space for icon */
            padding: 0.9rem 2rem;
            font-weight: 700;
            font-family: var(--body-font);
            border-radius: 50px; /* Rounded buttons */
            transition: all 0.3s ease;
            text-align: center;
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-buttons-container {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .cta-button {
            background-image: linear-gradient(to right, #ffc107, #ff9800);
            color: #1a0129;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 193, 7, 0.4);
        }

        .instagram-button {
            background-image: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
            color: #fff;
        }
        .instagram-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(220, 50, 50, 0.4);
        }

        .cta-button-secondary {
            background-color: transparent;
            color: var(--accent-gold);
            border: 2px solid var(--accent-gold);
        }
        .cta-button-secondary:hover {
            background-color: var(--accent-gold);
            color: var(--dark-bg);
            transform: translateY(-3px);
        }

        /* ---------------------------------
           Home Page: Hero & Featured Services
           --------------------------------- */
        .hero {
            background: #000;
            text-align: center;
            padding: 6rem 1rem;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url('assets/stardust.png'), linear-gradient(330deg, #1a0129 0%, #4a0e6b 50%, #0d0d0d 100%);
            background-size: auto, cover;
            animation: slowPan 30s linear infinite alternate;
            opacity: 0.9;
        }
        @keyframes slowPan {
            from { background-position: 0% 0%; }
            to { background-position: 100% 100%; }
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4rem;
            margin: 0;
            color: #fff;
        }

        .hero p {
            font-size: 1.3rem;
            color: var(--light-text);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) { .hero h1 { font-size: 2.8rem; } }

        .featured-services {
            padding: 4rem 0;
            padding-bottom: 5rem; /* Add more space */
            background-color: var(--dark-bg);
            border-bottom: 1px solid var(--primary-color); /* Add separation */
        }

        .featured-services h2 {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 3rem;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 800px; /* Centering the 2 items */
            margin: 0 auto; /* Centering the 2 items */
        }

        .service-card {
            /* REPLICATED FROM IMAGE 1 */
            background: linear-gradient(135deg, #6a1b9a, #4242e2); /* Gradient from image */
            border: 2px solid #ffcc00; /* Gold-orange border */
            box-shadow: 0 4px 20px rgba(0,0,0,0.2), 0 0 20px rgba(255,204,0,0.5); /* Added glow */
            padding: 2.5rem 2rem;
            text-align: center;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(106, 27, 154, 0.5), 0 0 30px rgba(255,204,0,0.8); /* Enhanced hover glow */
            border-color: #ffcc00; /* Keep gold on hover */
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #fff; /* White title for contrast on gradient */
        }

        /* REPLICATED FROM IMAGE 1: Specific button style for service card */
        .service-card .cta-button-secondary {
            background: transparent;
            color: #fff; /* White text for button */
            border: 2px solid #ffcc00; /* Gold border */
            padding: 0.9rem 2.5rem; /* Adjusted padding */
            border-radius: 50px;
            box-shadow: 0 0 10px rgba(255,204,0,0.3); /* Subtle glow */
        }

        .service-card .cta-button-secondary:hover {
            background-color: #ffcc00; /* Gold background on hover */
            color: #1a0129; /* Dark text on hover */
            transform: translateY(-5px); /* More pronounced lift */
            box-shadow: 0 7px 20px rgba(255, 193, 7, 0.4), 0 0 25px rgba(255,204,0,0.7); /* Enhanced shadow and glow */
        }


        /* ---------------------------------
           Home Page: Gallery (NEW SLIDESHOW)
           --------------------------------- */
        .gallery-section {
            padding: 4rem 0;
            /* NEW: Add a new background to differentiate */
            background-color: #0f011f; /* Slightly different dark purple */
            /* NEW: Add borders for separation */
            border-top: 1px dashed rgba(106, 27, 154, 0.5);
            border-bottom: 1px dashed rgba(106, 27, 154, 0.5);
        }
        .gallery-section h2 {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 3rem;
        }

        /* New Slideshow Styles */
        .slideshow-container {
            max-width: 800px; /* Set a max-width for the slideshow */
            position: relative;
            margin: auto;
            border: 2px solid var(--primary-color);
            border-radius: 15px;
            overflow: hidden; /* Ensures images stay within bounds */
            box-shadow: 0 8px 30px rgba(106, 27, 154, 0.5);
        }

        /* Hide all slides by default */
        .slide-item {
            display: none;
        }

        .slide-item img {
            width: 100%;
            height: 500px; /* Fixed height for all images */
            object-fit: cover;
            vertical-align: middle; /* Fixes potential bottom space */
            border-radius: 13px; /* Slightly less than container for fit */
        }

        /* Fading animation */
        .fade {
            animation-name: fade;
            animation-duration: 1.5s;
        }

        @keyframes fade {
            from {opacity: .4}
            to {opacity: 1}
        }

        /* Next & previous buttons */
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            margin-top: -22px;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 24px;
            transition: 0.3s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: rgba(0,0,0,0.3);
        }

        /* Position the "next button" to the right */
        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        .prev {
            left: 0;
        }

        /* On hover, add a black background color with a little bit see-through */
        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.8);
            color: var(--accent-gold);
        }


        /* Dots container */
        .dots-container {
            text-align: center;
            padding: 15px 0;
            margin-top: 10px;
        }

        /* The dots/bullets/indicators */
        .dot {
            cursor: pointer;
            height: 15px;
            width: 15px;
            margin: 0 5px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.6s ease;
        }

        .active-dot, .dot:hover {
            background-color: var(--accent-gold);
        }


        /* ---------------------------------
           Healing Section
           --------------------------------- */
        .healing-section {
            padding: 4rem 0;
            text-align: center;
            background: linear-gradient(135deg, #f3e5f5, #e1f5fe, #fce4ec); /* lavender, baby blue, blush pink */
            position: relative;
            overflow: hidden;
        }

        .healing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('assets/stardust.png');
            opacity: 0.1;
            pointer-events: none;
        }

        .healing-title {
            font-size: 2.8rem;
            margin-bottom: 3rem;
            color: #4a0e6b; /* Dark Purple Text */
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .healing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .healing-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            box-shadow: 0 8px 32px 0 rgba(106, 27, 154, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            text-align: left;
            color: #4a0e6b; /* Dark Purple Text */
        }

        .healing-card h3 {
            font-size: 1.8rem;
            color: #6a1b9a;
            text-align: center;
            text-shadow: 0 0 8px rgba(106, 27, 154, 0.3);
            margin-bottom: 1.5rem;
        }

        .healing-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
            text-align: center;
        }

        .healing-list li {
            margin-bottom: 0.75rem;
            position: relative;
            padding-left: 25px;
            text-align: left;
        }

        .healing-list li::before {
            content: '✧'; /* Using a star/sparkle motif */
            color: var(--accent-gold);
            position: absolute;
            left: 0;
            top: 0;
        }

        .healing-summary {
            font-style: italic;
            opacity: 0.9;
            text-align: center;
        }

        .healing-journey-button {
            background: var(--primary-color);
            color: #fff;
            border: none;
        }

        .healing-journey-button:hover {
             background: #4a0e6b;
             box-shadow: 0 7px 20px rgba(106, 27, 154, 0.4);
        }

        .healing-card .price-category {
            padding-top: 1.5rem;
            border-bottom: none;
        }

        .healing-card .price-item span {
            color: #4a0e6b; /* Dark Purple Text */
        }

        .healing-card .price-item .price {
            color: #6a1b9a; /* Brighter Purple */
        }


        /* ---------------------------------
           Services & Pricing Page
           --------------------------------- */
        .services-page { padding: 3rem 0; }
        .services-page h2 { font-size: 2.8rem; text-align: center; margin-bottom: 3rem; }

        .price-list-container {
            display: grid; grid-template-columns: 1fr 1fr; gap: 0;
            background: rgba(26, 1, 41, 0.5);
            border: 1px solid var(--primary-color);
            box-shadow: 0 8px 32px 0 rgba(0,0,0,0.3);
            border-radius: 15px; overflow: hidden;
        }
        .price-column { padding: 0; }
        .price-column:first-child { border-right: 1px solid var(--primary-color); }

        .price-header {
            /* REPLICATED FROM IMAGE 2 */
            background: #4242e2; /* Solid Blue */
            padding: 2rem; text-align: center;
        }
        /* REPLICATED FROM IMAGE 2: Specific background for the second column header */
        .price-column:last-child .price-header {
            background: #00bcd4; /* Solid Teal */
        }
        .price-header h3 { color: #fff; font-size: 1.8rem; margin: 0; }

        .price-category { padding: 2rem; border-bottom: 1px solid var(--primary-color); }
        .price-column .price-category:last-child { border-bottom: none; }
        .price-category h4 {
            font-family: var(--body-font); font-weight: 700;
            font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
            color: var(--accent-gold); border-bottom: none;
            padding-bottom: 0; display: block; margin-bottom: 1.5rem;
        }
        .price-item {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 1rem; font-size: 1.1rem;
        }
        .price-item span { color: var(--light-text); }
        .price-item .price { font-weight: 700; font-size: 1.3rem; color: var(--accent-gold); }

        .call-to-action-box {
            /* REPLICATED FROM IMAGE 3 */
            background: linear-gradient(135deg, #6a1b9a, #d32f2f); /* Purple to Red Gradient */
            color: #fff; text-align: center; padding: 3rem;
            border-radius: 15px; margin-top: 3rem;
            box-shadow: 0 8px 32px 0 rgba(0,0,0,0.3); /* Added shadow for depth */
        }
        .call-to-action-box h3 { color: #fff; font-size: 2.2rem; margin: 0 0 1rem; }
        .call-to-action-box p { margin: 0 0 1.5rem; font-size: 1.1rem; color: var(--light-text); }

        /* REPLICATED FROM IMAGE 3: Buttons inside CTA box */
        .call-to-action-box .cta-button {
            background-image: linear-gradient(to right, #ffeb3b, #ffc107); /* Yellow/Orange */
            color: #333; /* Dark text */
            box-shadow: 0 0 15px rgba(255,235,59,0.5); /* Yellow glow */
            border: none; /* No border for these buttons */
        }
        .call-to-action-box .cta-button:hover {
            box-shadow: 0 7px 20px rgba(255, 193, 7, 0.4), 0 0 25px rgba(255,235,59,0.8);
        }

        .call-to-action-box .instagram-button {
            background-image: linear-gradient(to right, #e91e63, #f44336); /* Pink/Red */
            color: #fff; /* White text */
            box-shadow: 0 0 15px rgba(233,30,99,0.5); /* Pink glow */
            border: none;
        }
        .call-to-action-box .instagram-button:hover {
            box-shadow: 0 7px 20px rgba(233, 30, 99, 0.4), 0 0 25px rgba(233,30,99,0.8);
        }

        .call-to-action-box .whatsapp-button {
            background-image: linear-gradient(to right, #25D366, #128C7E); /* WhatsApp Green */
            color: #fff; /* White text */
            box-shadow: 0 0 15px rgba(37, 211, 102, 0.5); /* Green glow */
            border: none;
        }
        .call-to-action-box .whatsapp-button:hover {
            box-shadow: 0 7px 20px rgba(37, 211, 102, 0.4), 0 0 25px rgba(37, 211, 102, 0.8);
        }

        .service-divider { border: 0; height: 1px; background: var(--primary-color); margin: 4rem auto; }
        .other-services { text-align: center; }
        .other-services h2 { font-size: 2.5rem; }
        .other-services h3 { font-size: 2rem; color: var(--light-text); }
        .other-services p { max-width: 700px; margin: 0 auto 1.5rem; color: var(--light-text); }

        .other-services .price-item {
            max-width: 700px; margin: 1rem auto; padding: 1.2rem;
            background: rgba(74, 14, 107, 0.2);
            border: 1px solid var(--primary-color); border-radius: 10px;
        }

        .other-services .cta-button-secondary { margin-top: 1rem; }

        /* --- NEW: Clickable Services --- */
        .price-item.clickable-service {
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 10px; /* Add radius for the hover effect */
            padding-left: 10px; /* Add padding for hover effect */
            padding-right: 10px;
            margin-left: -10px; /* Compensate for padding */
            margin-right: -10px;
        }

        .price-item.clickable-service:hover {
            background-color: rgba(106, 27, 154, 0.3); /* Purple highlight */
            transform: scale(1.02);
            box-shadow: 0 0 15px rgba(106, 27, 154, 0.7);
        }

        .other-services .cta-button-secondary:hover {
            /* Make sure the button hover is still good */
            background-color: var(--accent-gold);
            color: var(--dark-bg);
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 193, 7, 0.4);
        }


        @media (max-width: 768px) {
            .price-list-container { grid-template-columns: 1fr; }
            .price-column:first-child { border-right: none; border-bottom: 1px solid var(--primary-color); }
        }

        @media (max-width: 480px) {
            .cta-buttons-container {
                flex-direction: column;
                gap: 1rem;
            }
        }