    :root {
            --beige: #f9f6f2;
            --powder-blue: #a3c9e2;
            --text-dark: #444;
            --text-light: #777;
        }

        html { /* Added for smooth scrolling */
            scroll-behavior: smooth;
            scroll-padding-top: 2rem; /* NEW: Adds space above scroll targets */
        }

        body {
            margin: 0;
            font-family: 'Raleway', sans-serif;
            background-color: var(--beige);
            color: var(--text-dark);
            line-height: 1.6;
        }

        h1, h2, h3 {
            font-family: 'Libre Baskerville', serif;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        header {
            background: linear-gradient(to bottom, var(--powder-blue) 0%, var(--beige) 100%);
            padding: 4rem 1rem 3rem;
            text-align: center;
        }

        .top-contacts{
            max-width: 560px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-around;
        }

        .top-contacts a{
            text-decoration: none;
        }

        .hero-content {
            max-width: 960px;
            margin: 0 auto;
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .hero-logo {
            max-width: 100%;
        }

        .hero-image {
            max-width: 160px;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .hero-text {
            text-align: center;
        }

        .hero-text h1 {
            font-size: 2.2rem;
            margin-top: 1rem;
        }

        .hero-text h2 {
            font-weight: normal;
            font-size: 1.2rem;
            margin: 0.5rem 0;
        }

        /* Style for the new location link in the hero text */
        .location-link {
            color: inherit; /* Inherits color from the parent <p> tag */
            text-decoration: underline; /* Common practice for links */
            cursor: pointer;
            font-weight: normal; /* Ensure it doesn't become bold if parent styles influence it */
        }

        .location-link:hover {
            color: var(--powder-blue); /* Change color on hover */
            /* text-decoration: none; */ /* Optional: remove underline on hover */
        }


        main {
            max-width: 960px;
            margin: auto;
            padding: 2rem 1rem;
        }

        section {
            margin-bottom: 1rem;
            border-bottom: 1px solid #ddd;
            padding-bottom: 2rem;
        }
        /* Remove last section's border-bottom for cleaner look */
        main section:last-of-type {
            border-bottom: none;
            margin-bottom: 0.5rem;
        }

        /* Add this new rule to your <style> block */
        .contact {
            text-align: center;
        }

        .section-title {
            font-size: 1.5rem;
			padding-top: 1rem;
            margin-bottom: 1rem;
        }

        .services ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            list-style: none;
            padding: 0;
            justify-content: center;
        }

        .services li {
            flex: 1 1 120px;
            background: #fff;
            padding: 0; /* Padding moved to the anchor tag */
            border-radius: 12px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.05);
            display: flex; /* Kept to manage the anchor tag layout */
            transition: box-shadow 0.2s ease, transform 0.2s ease; /* Added for hover effect */
        }

        .services li:hover {
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }

        .services li a {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: bold;
            flex-grow: 1; /* Make the link fill the entire li */
            padding: 1rem; /* Apply padding to the link for clickable area */
        }

        .before-after {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .before-after img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .before-after img:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .lightbox {
            display: none; /* Hidden by default */
            position: fixed;
            z-index: 999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }

        .lightbox.active {
            display: flex; /* Show when active */
        }

        .testimonials {
            display: grid;
            gap: 2rem;
        }



        /* Default styles for .testimonial (Wide Screens) */
        .testimonial {
            background: #fff;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            display: flex; /* Creates a flex container: image and text side-by-side */
            align-items: flex-start; /* Aligns items to the top */
            gap: 1.5rem; /* Space between image and text content block (increased slightly for better spacing) */
        }

        .testimonial img {
            width: 150px;       /* Fixed width for the image on wide screens */
            height: 150px;      /* Fixed height for the image */
            border-radius: 50%; /* Makes the image circular */
            object-fit: cover;  /* Ensures the image fills its bounds, cropping if necessary */
            flex-shrink: 0;     /* Prevents the image from shrinking if text content is long/wide */
            margin: auto 0;
        }

        .testimonial-content {
            flex: 1; /* Allows the text content to take up the remaining available space */
        }

        .testimonial-content strong {
            display: block; /* Makes the strong tag take its own line */
            margin-bottom: 0.5rem; /* Space below the name/location */
            font-size: 1.1em; /* Slightly larger font for the name */
        }

        .testimonial-content p {
            margin-top: 0; /* Remove default top margin from paragraph if any */
            line-height: 1.6; /* Adjust line height for readability */
        }

        /* Styles for Narrow Screens (e.g., Smartphones) */
        @media (max-width: 600px) { /* Breakpoint for narrow screens, adjust as needed */
            .testimonial {
                display: block; /* Change from flex to block to allow normal flow with floats */
                padding: 1rem;  /* Slightly reduce padding on smaller screens */
            }

            .testimonial img {
                float: left;           /* Floats the image to the left, text will wrap around it */
                width: 100px;          /* Smaller image size for mobile */
                height: 100px;         /* Maintain aspect ratio (if original is square) or adjust as needed */
                margin-right: 1rem;    /* Space between the image and the text wrapping around it */
                margin-bottom: 0.5rem; /* Space below the image, for text that flows underneath */
                /* flex-shrink is not applicable here as it's not a flex item anymore */
            }

            .testimonial-content {
                /* flex: 1 is not applicable here as parent is not display:flex in a row */
                /* Text will naturally flow around the floated image. */
                /* No specific styles needed unless you want to change font size, etc. */
            }

            /* Clearfix: Ensures the .testimonial container wraps around the floated image */
            .testimonial::after {
                content: "";
                display: table;
                clear: both;
            }
        }



        /* Styles for the new Email Inquiry Link */
        .email-inquiry-link {
            display: inline-block;
            background: var(--powder-blue);
            color: var(--text-dark);
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            font-family: 'Raleway', sans-serif;
            cursor: pointer;
            text-align: center;
            margin-top: 1rem; /* Spacing from section title */
            transition: opacity 0.2s ease-in-out;
        }
        .email-inquiry-link:hover {
            opacity: 0.85;
        }

        /* Styles for the Email Inquiry Modal */
        .email-modal {
            display: none; /* Hidden by default, shown with JS */
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto; /* Enable scroll if content is too long */
            background-color: rgba(0,0,0,0.6); /* Semi-transparent background */
            /* Flexbox for centering modal content */
            justify-content: center;
            align-items: center;
        }

        .email-modal-content {
            background-color: var(--beige);
            padding: 25px 30px;
            border: 1px solid #ccc;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            position: relative;
            color: var(--text-dark);
        }

        .email-modal-close {
            color: #aaa;
            font-size: 32px;
            font-weight: bold;
            position: absolute;
            top: 5px;
            right: 15px;
            line-height: 1; /* Ensure consistent vertical alignment */
        }

        .email-modal-close:hover,
        .email-modal-close:focus {
            color: var(--text-dark);
            text-decoration: none;
            cursor: pointer;
        }

        .email-modal-step h3 {
            /* Uses global h3 style, then overrides for modal context */
            margin-top: 0;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            text-align: center;
        }

        .email-modal-step #servicesSelection {
            margin-bottom: 1rem;
        }
        .email-modal-step #servicesSelection label {
            display: block;
            margin-bottom: 0.8rem;
            font-size: 1rem;
            cursor: pointer;
            padding-left: 5px; /* Align text better with checkboxes */
        }
        .email-modal-step #servicesSelection label:hover {
            color: var(--powder-blue); /* Interactive hover effect */
        }
        .email-modal-step input[type="checkbox"] {
            margin-right: 10px;
            transform: scale(1.2); /* Make checkboxes slightly larger */
            vertical-align: middle; /* Align checkbox with label text */
        }

        .email-modal-step input[type="text"] {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 0.5rem;
            border-radius: 6px;
            border: 1px solid #ccc;
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            box-sizing: border-box;
        }
        .email-modal-step input[type="text"]:focus {
            border-color: var(--powder-blue);
            outline: 2px solid var(--powder-blue); /* Clearer focus indicator */
            outline-offset: -1px; /* Keep outline visually inside border */
        }

        .email-modal-step button {
            background: var(--powder-blue);
            color: var(--text-dark);
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: bold;
            font-family: 'Raleway', sans-serif;
            cursor: pointer;
            font-size: 1rem;
            display: block;
            width: 100%;
            margin-top: 1.5rem;
            transition: opacity 0.2s ease-in-out;
        }
        .email-modal-step button:hover {
            opacity: 0.85;
        }
        .error-message {
            color: #c0392b; /* A more accessible red */
            font-size: 0.85em;
            margin-top: 0.2rem;
            margin-bottom: 0.8rem;
            text-align: left;
            min-height: 1em; /* Reserve space to prevent layout jumps */
            display: block; /* Ensure it takes up space even when empty for layout stability */
        }
        /* End of Modal Styles */

        footer {
            text-align: center;
            font-size: 0.9rem;
            padding: 2rem 1rem;
            color: var(--text-light);
        }


        .gallery {
            margin-top: 1rem;
            padding-bottom: 1rem;
        }

        .gallery + .gallery {
            margin-top: -4rem; /* Neutralize bottom margin of preceding section */
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
        }

        .gallery-card {
            background: #fff;
            border-radius: 8px;
            text-align: center;
            padding: 0.5rem;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        .gallery-card img {
            width: auto;
            height: 240px;
            border-radius: 6px;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .gallery-card img:hover {
            transform: scale(1.03);
        }

        .gallery-card p {
            margin-top: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-dark);
        }




        /* Swiper adjustments */
        .swiper {
            width: 100%;
            padding: 20px 50px 40px; /* Creates space on left/right for buttons */
            box-sizing: border-box; /* Ensures padding is part of width calculation */
            position: relative;
            overflow: hidden;
        }


        .swiper-slide {
            display: flex;
            justify-content: center;
            width: fit-content !important;
        }

        .swiper-button-prev,
        .swiper-button-next {
            width: 38px;
            height: 114px; /* 3x Taller */
            background: white;
            color: black;
            border-radius: 19px; /* "Pill" shape */
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        /* Bring arrows inside the padding area */
        .swiper-button-prev {
            left: 10px;
        }

        .swiper-button-next {
            right: 10px;
        }

        .swiper-button-prev::after,
        .swiper-button-next::after {
            font-size: 36px; /* 2x Taller icon */
        }

        /* Keyframe animation for the gentle flash effect */
        @keyframes section-flash {
            0%, 100% {
                background-color: var(--beige); /* Start and end with the default section color */
            }
            25%, 75% {
                background-color: #d5e6f2;   /* A gentle highlight color, light version of powder-blue */
            }
            50% {
                background-color: var(--beige); /* Return to default in the middle for the second flash */
            }
        }

        /* Class to apply the animation to the contact section */
        .contact.flash-on-view {
            animation: section-flash 1.5s ease-in-out;
        }

        /* Styles for the sticky booking button */
        #sticky-booking-button {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 80px;
            height: 80px;
            background-color: var(--powder-blue);
            color: var(--text-dark);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            z-index: 998; /* Below lightbox but above most content */
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            transform: scale(1);
            opacity: 1;
        }

        #sticky-booking-button:hover {
            opacity: 0.85;
        }

        #sticky-booking-button.hide {
            opacity: 0;
            transform: scale(0.5);
            pointer-events: none;
        }

        /* [NEW] Styles for the Share Button feature */
        .share-container {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 2em; /* Reserve space to prevent layout jump */
        }

        #share-button {
            background: none;
            border: none;
            padding: 0;
            font-family: 'Raleway', sans-serif;
            cursor: pointer;
            font-size: 1.1em;
            font-weight: bold;
            color: var(--powder-blue);
            display: inline-flex;
            align-items: center;
            transition: opacity 0.2s;
        }

        #share-button:hover {
            color: var(--text-dark);
            /* opacity: 0.75; */
        }

        #share-button svg {
            width: 24px;
            height: 24px;
            margin-left: 8px;
        }

        #share-message {
            font-style: italic;
            font-weight: bold;
            color: var(--powder-blue);
            margin-left: 10px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        #share-message.show {
            opacity: 1;
        }
