/* --- CSS Variables and Global Styles --- */
:root {
    /* Refined, modern color palette */
    --dark-sienna: #3c1518;
    --rust: #a44200;
    --golden-ochre: #d58936;
    --ivory-yellow: #f2f3ae;
    --burgundy-plum: #5c374c;
    --white: #ffffff;
    --light-gray: #f8f9fa; /* A slightly cooler, cleaner light gray */
    --font-heading: 'Poppins', sans-serif; /* Modern, geometric sans-serif */
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-sienna); /* Use dark text for the light background */
    /* --- Modern Calm Animated Background --- */
    background: linear-gradient(-45deg, #e8d7e2, #d8e2dc, #e9d8d1, #d1dce4);
    background-size: 400% 400%;
    animation: calm-gradient 30s ease infinite;
}

/* Class to add top padding to main content to offset fixed header */
.main-content-with-header {
    padding-top: 100px;
}

/* Dark background for specific pages like booking */
body.dark-background {
    /* A lighter, calmer animated gradient */
    background: linear-gradient(-45deg, #e8d7e2, #d8e2dc, #e9d8d1, #d1dce4);
    background-size: 400% 400%;
    animation: calm-gradient 30s ease infinite;
    color: var(--dark-sienna); /* Revert to default dark text color */
}

@keyframes calm-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--burgundy-plum);
    margin-bottom: 1rem;
    font-weight: 600; /* Bolder headings for more impact */
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

.container {
    max-width: 1100px;
    margin: 0 auto; 
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
}

.btn {
    position: relative; /* Required for the pseudo-element */
    display: inline-block;
    padding: 0.8rem 2.2rem;
    font-size: 1.1rem;
    color: var(--rust);
    background: transparent;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--rust); 
    border-radius: 8px; /* Modern squared-off radius */
    transition: all 0.3s ease; /* Smoother transition */
    overflow: hidden; /* Hides the pseudo-element when it's outside */
    cursor: pointer;
    z-index: 1;
}

/* The background fill element */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--rust);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: -1;
}

.btn:hover {
    color: var(--white);
    box-shadow: 0 4px 15px rgba(164, 66, 0, 0.2); /* Add a subtle glow on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}
.btn:hover::before {
    transform: translateX(0);
}

/* --- Primary Button Modifier --- */
.btn.btn-primary {
    background-color: var(--golden-ochre);
    color: var(--white);
    border-color: var(--golden-ochre);
    box-shadow: 0 4px 15px rgba(213, 137, 54, 0.2);
    
}

/* Override the default slide-in effect for the primary button */
.btn.btn-primary::before {
    background-color: var(--rust); /* Darker color for hover */
}

.btn.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(164, 66, 0, 0.3); /* Stronger shadow on hover */
    border-color: var(--rust);
    color: white;
}


/* --- Header --- */
.main-header {
    background: rgba(248, 249, 250, 0.7); /* Use light gray for a cleaner glass effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.main-header .logo, .main-header .logo:hover {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark-sienna);
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
}

.main-header .logo img {
    height: 50px; /* Adjust height as needed */
    width: auto;
    display: block; /* Removes any extra space below the image */
}

.main-nav ul {
    margin: 0;
    display: flex;
    align-items: center; /* Ensure all items are vertically centered */
    list-style: none;
    /* Use a responsive gap instead of fixed margins */
    gap: clamp(0.5rem, 1.5vw, 1.2rem);
}

.main-nav li {
    /* margin is no longer needed, gap is used on the parent ul */
}

.main-nav a {
    text-decoration: none;
    color: var(--dark-sienna);
    font-weight: 500;
    padding: 0.6rem 1.2rem; /* Add padding to create the pill shape */
    border-radius: 50px; /* Fully rounded corners for the pill */
    transition: color 0.3s ease, background-color 0.3s ease;
}

.main-nav a:hover {
    color: var(--rust);
    background-color: rgba(60, 21, 24, 0.05); /* Very subtle background on hover */
}

/* Exclude the primary button from the standard nav link hover effect */
.main-nav .btn.btn-primary {
    padding: 0.6rem 1.5rem; /* Match vertical padding of other links, add more horizontal padding */
    width: 135px; /* Allow width to adjust based on content */
    text-align: center;
}
.main-nav .btn.btn-primary:hover {
    background-color: var(--rust); /* Keep the primary button's hover effect */
    color: var(--white);
}

/* --- Mobile Navigation Toggle --- */
.mobile-nav-toggle {
    display: none; /* Hidden on desktop */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001; /* Above the header's z-index */
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    display: block;
    background-color: var(--dark-sienna);
    height: 3px;
    width: 25px;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.hamburger-icon::before {
    transform: translateY(-8px);
}

.hamburger-icon::after {
    transform: translateY(5px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place images behind the overlay and content */
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.prev-btn { left: 1rem; }
.next-btn { right: 1rem; }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(60, 21, 24, 0.5); /* Semi-transparent dark-sienna */
    z-index: 1; /* Sits above images, below content */
}

.hero-content h1 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--ivory-yellow);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* --- Hero Button Specific Styles --- */
.hero .btn {
    background-color: var(--golden-ochre);
    color: var(--white);
    border-color: var(--golden-ochre);
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 5px 20px rgba(213, 137, 54, 0.3);
    animation: pulse-glow 2.5s infinite ease-in-out;
}

.hero .btn::before {
    /* Change the hover fill to a slightly darker shade for a nice effect */
    background-color: var(--rust);
}

.hero .btn:hover {
    box-shadow: 0 8px 25px rgba(213, 137, 54, 0.4);
    animation-play-state: paused; /* Pause the pulse on hover */
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(213, 137, 54, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(213, 137, 54, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(213, 137, 54, 0.3);
    }
}

/* --- New Hero Section --- */
.hero {
    position: relative;
    height: calc(100vh - 82px); /* Full viewport height minus the header height */
    margin-top: 82px; /* Offset for the fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden; /* Ensures the pseudo-element doesn't overflow */
}

/* --- Hero Carousel Styles --- */
.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place images behind the overlay and content */
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: zoom-in 20s infinite; /* Subtle zoom effect on all slides */
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area without distortion */
}

/* --- Service Detail Hero (No changes here) --- */
.service-hero {
    position: relative;
    height: 50vh; /* Half the height of the main hero */
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
    text-align: right; /* Align text to the right */
    color: var(--white);
    background-size: cover;
    background-position: center;
    margin-top: 82px; /* Offset for the fixed header */
}

.service-hero .hero-content {
    padding-right: 5%; /* Add some space from the right edge */
}

.service-hero .hero-content h1 {
    font-size: 3rem;
    color: var(--dark-sienna); /* Changed for readability */
    text-align: left; /* Align title to the left */
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.4); /* Light shadow for depth */
}

.service-hero .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto; /* Keep auto margin on the left */
    margin-right: 0; /* Remove auto margin on the right */
    text-align: left; /* Align text to the left for readability */
    color: var(--dark-sienna); /* Changed for readability */
    text-shadow: none; /* Remove shadow as background provides contrast */
    /* Add a glass-like background for readability */
    background: rgba(255, 255, 255, 0.7); /* Removed blur and increased opacity */
    padding: 1rem;
    border-radius: 8px;
}

/* --- About Section --- */
#about {
    background-color: var(--white);
    padding: 5rem 0;
}
.about-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.about-image {
    flex: 1;
}
.about-image img {
    width: 100%;
    border-radius: 12px; /* Consistent, modern radius */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-content {
    flex: 1;
}
#about .about-content h2 {
    color: var(--rust);
}
#about .about-content p {
    font-size: 1.1rem;
    color: var(--burgundy-plum);
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
        margin-bottom: 2rem;
    }
}

/* --- Services Section --- */
#services {
    background-color: transparent;
}

#services h2 {
    text-align: center;
    color: var(--rust);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem; 
    margin-top: 3rem; 
}

/* --- Gallery Section --- */
#gallery {
    background-color: var(--burgundy-plum);
    color: var(--white);
    text-align: center;
}
#gallery h2 {
    color: var(--ivory-yellow);
}
#gallery p {
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Index Page: #services section specific styles (moved from inline) --- */
#services .font-serif-display {
    font-family: 'Playfair Display', serif;
    color: #ffd3aa;
}

#services .card-container {
    position: relative;
    display: block;
    flex: 1 1 300px; /* Allow flexbox to control the width */
    max-width: 380px;
    aspect-ratio: 9 / 12;
    border-radius: 1.75rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow:
        0 0 0 2px rgba(255, 214, 102, 0.4),
        0 0 25px 8px rgba(255, 214, 102, 0.15);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s ease-out;
    cursor: pointer;
    will-change: transform, box-shadow;
}

#services .card-container:hover {
    box-shadow:
        0 0 0 3px rgba(255, 214, 102, 0.6),
        0 0 35px 12px rgba(255, 214, 102, 0.25);
}

#services .inner-border-overlay {
    position: absolute;
    inset: 14px;
    border-radius: 1.375rem;
    pointer-events: none;
    z-index: 10;
    box-shadow:
        inset 0.5px 0.5px 1.5px rgba(213, 137, 54, 0.5), /* Lighter brown highlight */
        inset -1px -1px 1px rgba(60, 21, 24, 0.6),      /* Darker brown shadow */
        inset 3px 3px 6px rgba(0, 0, 0, 0.25);
    transform: translateZ(30px);
    will-change: transform;
    border: 1px solid rgba(164, 66, 0, 0.2); /* Faint brown border */
}

#services .content-area {
    position: absolute;
    inset: 14px;
    border-radius: 1.375rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 5;
    padding: 1.5rem;
    transform: translateZ(60px);
    will-change: transform;
    color: #f8fafc; /* Set text color to a light gray/white */
    text-shadow: 0 2px 4px rgba(0,0,0,0.6); /* Add a stronger shadow for readability */
}

#services .gradient-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 75%;
    background: linear-gradient(to top, rgba(60, 21, 24, 0.9) 0%, rgba(92, 55, 76, 0.5) 50%, transparent 100%);
    pointer-events: none;
    z-index: -1; /* Place it behind the text within the content-area */
    border-radius: 1.375rem; /* Match the content-area's border radius */
    transform: translateZ(5px);
    will-change: transform;
}




.live-instagram-feed {
    /* This container will hold the widget you embed */
    margin-bottom: 3rem;
}


.gallery-btn {
    border-color: var(--ivory-yellow);
    color: var(--ivory-yellow);
}

.gallery-btn::before {
    background: var(--ivory-yellow);
}

.gallery-btn:hover {
    color: var(--burgundy-plum);
}

/* --- Liquid Background Effect --- */
.liquid-background {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

@keyframes move-blobs {
    0% { transform: translate(0, 0); }
    25% { transform: translate(30px, -50px) scale(1.1); }
    50% { transform: translate(-20px, 40px); }
    75% { transform: translate(40px, 20px) scale(0.9); }
    100% { transform: translate(0, 0); }
}

.liquid-background::before,
.liquid-background::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: move-blobs 25s infinite linear;
}

.liquid-background::before {
    width: 350px;
    height: 350px;
    background: var(--golden-ochre);
    top: -100px;
    left: -150px;
}

.liquid-background::after {
    width: 300px;
    height: 300px;
    background: var(--rust);
    bottom: -120px;
    right: -100px;
    animation-delay: -12s;
}

/* --- Rewards Page List --- */
.rewards-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 2rem;
    position: relative; /* Ensure list is above blobs */
    z-index: 2;
}

.rewards-list li {
    display: flex;
    align-items: center;
    /* Modernized Glassmorphism effect */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px; /* Consistent modern radius */
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06); /* Softer shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rewards-list li:hover {
    transform: translateY(-4px); /* Slightly more lift */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1); /* Stronger shadow on hover */
}

.reward-details {
    display: flex;
    justify-content: start;
    margin-left: 2rem;
    flex-grow: 1; /* This makes the container take up the remaining space */
    position: relative; /* Needed for absolute positioning of the discount */
}

.reward-details span:first-child {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-sienna);
}

.reward-discount {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--rust);
    position: absolute;
    right: 0; /* Align to the right edge of the reward-details container */
}

.reward-stars {
    color: var(--golden-ochre);
    font-size: 1rem; /* Adjust star size if needed */
    min-width: 120px; /* Ensures alignment for all rows */
    display: flex; 
    justify-content: flex-end; /* Align stars to the left */
    flex-shrink: 0; /* Prevents stars from shrinking */
    margin-right: 1.5rem;
}

.reward-stars i {
    margin: 0 1px;
}

.rewards-note {
    text-align: center;
    margin-top: 3rem;
    font-style: italic;
    color: var(--burgundy-plum);
}

/* --- Price List Section --- */
#price-list {
    background-color: transparent; /* Allow body background to show through */
}

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

/* Modifier for a single-column layout on the services page */
.price-grid.single-column {
    grid-template-columns: 1fr;
    max-width: 800px; /* Constrain width for better readability */
    margin-left: auto;
    margin-right: auto;
}

.price-category {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px; /* Modern radius */
    box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 10px 20px rgba(0,0,0,0.04); /* Very subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* Replicating H3 styles for the new div */
.category-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--burgundy-plum);
    margin-bottom: 1rem;
}

.price-category .category-title {
    color: var(--burgundy-plum);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--golden-ochre);
    margin-bottom: 1.5rem;
}
.category-title sub {
    font-size: 0.9rem;
    font-weight: 400; /* Use normal font weight */
    vertical-align: middle; /* Align text vertically */
    margin-left: 0.25rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align to bottom to match text baseline */
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 82px; /* Stick below the main navigation (adjust if header height changes) */
    /* Glassmorphism Effect */
    background: rgba(248, 249, 250, 0.85); /* Semi-transparent version of --light-gray */
    margin: 0 -1rem; /* Counteract padding on li */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* For Safari */
    z-index: 2;
    padding: 0.5rem 0; /* Increased padding for more space */
    border-bottom: 1px solid rgba(60, 21, 24, 0.1); /* Subtle border */
}

.category-header .category-title {
    flex-grow: 1;
    padding-left: 1rem; /* Add padding back */
}

.service-type-labels {
    display: flex;
    font-size: 0.95rem; /* Increased for better visibility */
    font-weight: 600;
    /* margin-right: 15px; */ /* Removed for flex alignment */
    flex-shrink: 0; /* Prevent labels from shrinking */
}

.service-type-labels span {
    width: 80px;
    text-align: center;
    

}

/* Color for "Regular" price label */
.service-type-labels span:first-child {
    color: var(--dark-sienna);
    margin-right: 0.5rem;
}
/* Color for "Gel" price label */
.service-type-labels span:last-child {
    color: var(--rust);
    margin-right: 2rem;
}

.service-values {
    display: flex;
    flex-shrink: 0; /* Prevent prices from shrinking */
}

.service-values span {
    width: 80px;
    text-align: center;
    font-weight: 500;
}

/* Color for "Regular" price value */
.service-values span:first-child {
    color: var(--dark-sienna);
}
/* Color for "Gel" price value */
.service-values span:last-child {
    color: var(--rust);
}

.price-category-subtitle {
    font-size: 0.9rem;
    color: var(--rust);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.category-note {
    font-size: 0.9rem;
    color: var(--burgundy-plum);
    font-style: italic;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
}

.service-items li small {
    display: block;
    font-size: 0.8rem;
    color: var(--burgundy-plum);
}

.service-items {
    list-style: none;
}

.service-items li {
    display: block; /* Change from flex to block for stacking */
    padding: 1rem;
    font-size: 1rem;
    background-color: #fff; /* Ensure pure white for contrast */
    border-radius: 5px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.04);
}

.service-name {
    display: flex; /* This will keep the name and price on one line */
    justify-content: space-between;
    align-items: flex-start; /* Align to top for multi-line service names */
    gap: 1rem; /* Add space between name and prices */
}

.service-name > span {
    font-weight: bold;
    font-size: 1.1rem;
    flex-grow: 1; /* Allow service name to take available space */
}

.service-name > span:only-child {
    flex-grow: 0; /* Prevent single-price items from stretching */
}

.service-name sub {
    font-size: 0.8rem;
    font-weight: 400; /* Use normal font weight */
    vertical-align: middle; /* Align text vertically */
    margin-left: 0.25rem;
}

.service-description {
    font-size: 0.9rem;
    color: var(--burgundy-plum);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(60, 21, 24, 0.2);
    padding-left: 1rem;
}

.text-right {
    text-align: right;
}

.service-items li span:first-child {
    color: var(--dark-sienna);
    padding-right: 1rem; /* Space between name and price */
}
.service-items li span:last-child {
    font-weight: 500;
}

/* --- Contact & Hours Section --- */
#contact {
    background-color: transparent;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.contact-info, .hours-info { 
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem; /* More padding */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-info h3, .hours-info h3 {
    color: var(--rust);
}
.contact-info ul, .hours-info ul {
    list-style: none;
}
.contact-info li, .hours-info li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}
.contact-info a {
    color: var(--dark-sienna);
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info a:hover {
    color: var(--rust);
}

.shop-status-container {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
}

.status-open {
    background-color: #e8f5e9; /* Light Green */
    color: #2e7d32; /* Dark Green */
}

.status-closing {
    background-color: #fff3e0; /* Light Orange */
    color: #ef6c00; /* Dark Orange */
}

.status-closed {
    background-color: #ffebee; /* Light Red */
    color: #c62828; /* Dark Red */
}

.social-heading {
    margin-top: 1.5rem;
}

.social-media-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-media-contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    border: 1px solid var(--dark-sienna);
    border-radius: 50%;
    position: relative; /* For pseudo-element positioning */
    overflow: hidden;   /* To hide the sliding elements */
    transition: background-color 0.3s ease;
    z-index: 1;
}

.social-media-contact a i {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}

/* Create the tooltip text from the aria-label */
.social-media-contact a::before {
    content: '';
    position: absolute;
    /* Use attr() to get the aria-label text. Note: This is not widely supported for `content` yet, so we'll use a trick. */
    /* For now, we will create a slide-up background effect and a different text effect. */
    content: attr(aria-label);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white);
    top: 100%; /* Start below the button */
    width: 100%;
    text-align: center;
    transition: top 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.social-media-contact a:hover i {
    transform: translateY(-200%);
}

.social-media-contact a:hover::before {
    top: 50%;
    transform: translateY(-50%);
}

/* --- Social Media Brand Colors --- */
.social-media-contact a[href*="facebook.com"] {
    color: #1877F2;
    border-color: #1877F2;
}
.social-media-contact a[href*="facebook.com"]:hover {
    background-color: #1877F2;
    color: var(--white);
}

.social-media-contact a[href*="instagram.com"] {
    color: #E4405F;
    border-color: #E4405F;
}
.social-media-contact a[href*="instagram.com"]:hover {
    background-color: #E4405F;
    color: var(--white);
}

.social-media-contact a[href*="tiktok.com"] {
    color: #000000;
    border-color: #000000;
}
.social-media-contact a[href*="tiktok.com"]:hover {
    background-color: #000000;
    color: var(--white);
}

.social-media-contact a[href*="x.com"] {
    color: #000000;
    border-color: #000000;
}
.social-media-contact a[href*="x.com"]:hover {
    background-color: #000000;
    color: var(--white);
}

.social-media-contact a[href*="yelp.com"] {
    color: #D32323;
    border-color: #D32323;
}
.social-media-contact a[href*="yelp.com"]:hover {
    background-color: #D32323;
    color: var(--white);
}

.social-media-contact a[href*="goo.gl"] {
    color: #4285F4;
    border-color: #4285F4;
}
.social-media-contact a[href*="goo.gl"]:hover {
    background-color: #4285F4;
    color: var(--white);
}

.map-container {
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    display: block; /* Removes bottom space/gap */
}

/* --- Corner Pop-Out Menu --- */
.corner-menu {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.menu-toggle {
    width: 60px;
    height: 60px;
    background-color: var(--rust);
    color: var(--white);
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
    z-index: 2; /* Above menu items initially */
}

.menu-toggle:hover {
    background-color: var(--dark-sienna);
}

.corner-menu.active .menu-toggle {
    transform: rotate(45deg);
}



.menu-item {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    position: absolute;
    bottom: 5px; /* Align with center of toggle button */
    right: 5px;  /* Align with center of toggle button */
    transform: translate(0, 0);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease, background-color 0.3s ease;
    z-index: 1;
}

.menu-item:hover {
    /* Elevate the hovered item to ensure its tooltip is visible above others */
    z-index: 3;
}

/* Tooltip styles */
.menu-item::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 120%; /* Position to the left of the button */
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--dark-sienna);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 10;
}

.corner-menu.active .menu-item:hover::after {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s; /* Show tooltip after a short delay when menu is active */
}

/* --- Angled Tooltips for Corner Menu --- */

/* For icons that move vertically (Directions & Text Us), show tooltip on top */
.corner-menu .menu-item:nth-child(1)::after, /* Text Us */
.corner-menu .menu-item:nth-child(3)::after  /* Directions */ {
    top: -100%; /* Position above the icon */
    left: 50%;
    right: auto; /* Reset the right property */
    transform: translateX(-50%); /* Center horizontally */
}

/* Left icon (Call Us) - default is already good, but we can be explicit */
/* For icons that move horizontally (Book Online & Call Us), the default left-side tooltip is correct */

/* --- Corner Menu Icon Colors --- */
/* Call Us - Green */
.menu-item[href^="tel:"] { background-color: #25D366; }
/* Text Us - Blue */
.menu-item[href^="sms:"] { background-color: #34B7F1; }
/* Book Online - Site Theme Color */
.menu-item[href*="booking"] {
    background-color: var(--rust);
}
/* Directions - A neutral, map-like color */
.menu-item[id="directions-link"] {
    background-color: #4285F4; /* Google Maps blue */
}

/* Position items in an arc when active */
.corner-menu.active .menu-item {
    opacity: 1;
}

/* Note: nth-child is 1-based */
/* Positions updated for a top-left quadrant layout */
.corner-menu.active .menu-item:nth-child(1) { transform: translate(-70px, 0); transition-delay: 0.3s; }    /* Left */
.corner-menu.active .menu-item:nth-child(2) { transform: translate(0, -70px); transition-delay: 0.2s; }    /* Top */
.corner-menu.active .menu-item:nth-child(3) { transform: translate(-140px, 0); transition-delay: 0.1s; }  /* Far Left */
.corner-menu.active .menu-item:nth-child(4) { transform: translate(0, -140px); transition-delay: 0s; }   /* Far Top */

/* --- Payment Toggle --- */
.payment-toggle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 998; /* Below corner menu */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-toggle button {
    border: none;
    background: transparent;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--dark-sienna);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-toggle button.active {
    background: var(--rust);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(164, 66, 0, 0.3);
}

/* --- Footer --- */
footer {
    background-color: var(--dark-sienna);
    color: var(--ivory-yellow);
    padding: 3rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Flexible columns */
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-column {
    /* Revert to a simple padded column without dividers */
    padding: 1.5rem;
}

.footer-column h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--golden-ochre);
}

.footer-column p, .footer-column a {
    color: var(--ivory-yellow);
    text-decoration: none;
    line-height: 1.8;
}

.footer-column a:hover {
    color: var(--white);
    text-decoration: underline;
}

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

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

.footer-hours-list {
    list-style: none;
    list-style-type: none;
    padding: 0;
}

.footer-hours-list li {
    display: flex;
}

.footer-hours-list li span:first-child {
    font-weight: 500;
    width: 95px; /* Creates a fixed space for alignment */
    flex-shrink: 0;
}

.footer-social a {
    /* This is the fix: Set default color to white */
    color: var(--white) !important; 
}

.footer-social a:hover {
    /* The hover color is already white, this ensures it stays white */
    color: var(--white) !important; 
}

/* --- Footer Social Brand Colors --- */
/* Keep the border colors, but the icon color will be white due to the rule above */
.footer-social a[href*="facebook.com"] {
    border-color: #1877F2;
}

.footer-social a[href*="instagram.com"] {
    border-color: #E4405F;
}

.footer-social a[href*="tiktok.com"],
.footer-social a[href*="x.com"] {
    border-color: #000000;
}

.footer-social a[href*="yelp.com"] {
    border-color: #D32323;
}

.footer-social a[href*="goo.gl"] {
    border-color: #4285F4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(242, 243, 174, 0.2);
    font-size: 0.9rem;
}

.footer-bottom p {
    color: rgba(242, 243, 174, 0.8);
}
/* --- Responsive Design --- */ 
@media (max-width: 992px) {
    .main-header .container {
        justify-content: space-between;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(248, 249, 250, 0.95); /* Cleaner mobile menu background */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        padding-top: 6rem; /* Space for close button and logo */
    }

    .main-nav.active {
        right: 0; /* Slide in */
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav li {
        margin: 1.5rem 0;
    }

    .mobile-nav-toggle {
        display: block;
    }

    /* Hamburger animation to 'X' */
    .mobile-nav-toggle.active .hamburger-icon {
        background-color: transparent; /* Middle bar disappears */
    }
    .mobile-nav-toggle.active .hamburger-icon::before {
        transform: translateY(0) rotate(45deg);
    }
    .mobile-nav-toggle.active .hamburger-icon::after {
        transform: translateY(-3px) rotate(-45deg);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* --- Mobile Footer Adjustments --- */
    .footer-grid {
        text-align: center; /* Center text content in columns */
    }

    .footer-column h4::after {
        left: 50%; /* Center the heading underline */
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center; /* Center the social media icons */
    }

}

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

    .main-header .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    section { padding: 3rem 0; }
    .container { padding: 0 1rem; }
}

/* --- Policy & Service Detail Pages --- */
#policy-page .policy-content,
#service-detail-page .service-detail-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    max-width: 800px;
    margin: 0 auto;
}

/* --- Policy Page Specific Styles --- */
#policy-page h1 {
    text-align: center;
    color: var(--rust);
    font-size: 2.5rem;
}

#policy-page .policy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}
#policy-page h3 {
    color: var(--burgundy-plum);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--golden-ochre);
    margin-bottom: 1.5rem;
    text-align: center;
}

#policy-page ul, #policy-page dl {
    padding-left: 1rem;
}

#policy-page dt {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

#policy-page dd,
#policy-page li {
    margin-bottom: 1.25rem;
    padding-left: 0.5rem; /* Adds slight indentation for readability */
}

.payment-info {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem; margin: 1rem 0; font-size: 1.5rem;
}

/* --- Service Detail Page (Pearly Pedicure) --- */
.service-detail-content {
    padding: 0; /* Remove padding to allow full-width sections */
}

.core-benefits {
    display: grid;
    /* Mobile First: 1 column by default */
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.benefit-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.benefit-item h4 {
    font-size: 1.1rem;
    color: var(--burgundy-plum);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--dark-sienna);
}

.scent-collection {
    margin-top: 2rem;
}

.scent-title {
    text-align: center;
    color: var(--rust);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--golden-ochre);
    margin-bottom: 2rem;
}

.scent-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
}

.scent-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.scent-card h4 {
    margin-bottom: 0.5rem;
}

.scent-card details {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.scent-card summary {
    cursor: pointer;
    font-weight: bold;
    color: var(--rust);
}

.scent-detail-expanded {
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 0.5rem;
}

.scent-detail-expanded h5 {
    font-size: 1rem;
    color: var(--burgundy-plum);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.scent-detail-expanded ol, .scent-detail-expanded ul {
    padding-left: 1.5rem;
}

.scent-detail-expanded .ingredient-list {
    font-size: 0.85rem;
    color: var(--dark-sienna);
}

.service-detail-cta {
    text-align: center;
    margin-top: 2rem;
}

/* --- Responsive adjustments for Core Benefits --- */
@media (min-width: 544px) {
    /* 2 columns for smaller tablets and large phones */
    .core-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    /* 4 columns for desktops */
    .core-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .scent-card {
        flex-direction: column; /* Stack image on top of details */
        gap: 1.5rem;
    }

    .scent-card img {
        width: 100%; /* Make image full width of the card */
        height: 200px; /* Adjust height for a better aspect ratio on mobile */
    }
}

@media (min-width: 769px) {
    /* Make scent card image sticky on desktop */
    .scent-card img {
        position: -webkit-sticky; /* For Safari */
        position: sticky;
        top: 100px; /* 82px for header + 18px margin */
    }
}

/* --- Back to Services Button --- */
.back-to-services-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 190px; /* Set initial width for the full text */
    height: 50px; 
    background-color: var(--burgundy-plum);
    color: var(--white);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    gap: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    /* Added width and padding to the transition for smooth shrinking */
    transition: transform 0.3s ease, background-color 0.3s ease, width 0.5s ease, padding 0.5s ease;
    z-index: 998;
    overflow: hidden; /* Hide text as it shrinks */
    white-space: nowrap; /* Prevent text from wrapping during transition */
}

.back-to-services-btn span {
    font-size: 1rem;
    transition: opacity 0.2s ease; /* Faster fade out */
}

/* The icon itself */
.back-to-services-btn i {
    transition: transform 0.4s ease;
    transform: translateX(0); /* Start at its normal position */
}

.back-to-services-btn:hover {
    transform: scale(1.05); /* Slightly reduce hover scale for a more subtle effect */
    background-color: var(--dark-sienna);
}

.back-to-services-btn.mini {
    width: 50px; /* Shrink to circle width */
    gap: 0; /* Remove the gap when mini */
}
.back-to-services-btn.mini span {
    opacity: 0; /* Fade out the text */
    width: 0; /* Collapse the span's width */
}
.back-to-services-btn.mini i {
    transform: translateX(0); /* Ensure icon is centered */
}

/* --- General Section Styling --- */
.section-title-accent {
    text-align: center;
    color: var(--rust);
    margin-bottom: 2rem;
    font-size: 2.2rem;
}


/* --- About Page Specifics --- */
#about-page-content {
    padding: 4rem 0;
}

.about-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(60, 21, 24, 0), rgba(60, 21, 24, 0.3), rgba(60, 21, 24, 0));
    margin: 4rem auto;
    max-width: 500px;
}

.about-section h2 {
    color: var(--rust);
}

.about-section p {
    font-size: 1.1rem;
    color: var(--dark-sienna);
}

.values-grid {
    display: grid;
    /* Mobile-first: 1 column by default */
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--rust);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--burgundy-plum);
    margin-bottom: 0.5rem;
}

.about-split-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
}

.about-split-image {
    flex: 1;
    max-width: 45%;
}

.about-split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-split-content {
    flex: 1;
}

@media (max-width: 767px) {
    .about-split-section {
        flex-direction: column;
    }
    .about-split-image {
        max-width: 100%;
    }
}
@media (min-width: 768px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    /* On larger desktops, the values grid becomes 4 columns */
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Error Pages (404, 403) --- */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - 82px - 350px); /* Full viewport height - header height - footer height estimate */
    padding: 2rem 0;
}

.error-page h1 {
    font-size: 8rem;
    color: var(--burgundy-plum);
    margin-bottom: 0;
    line-height: 1;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.error-page h2 {
    font-size: 2.5rem;
    color: var(--rust);
    margin-top: 0;
    margin-bottom: 1rem;
}

.error-page p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Apply error page styles to the #not-found ID as well */
#not-found {
    min-height: calc(100vh - 82px - 350px); /* Full viewport height - header height - footer height estimate */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- Special Branding Fonts for "D&D" --- */
.brand-d {
    font-family: "Great Vibes", cursive;
    font-weight: bold; /* Often needed to render script fonts nicely */
}

.brand-amp {
    font-family: "Tangerine", cursive;
    font-weight: normal;
}
@media (max-width: 768px) {
    .page_container h1 {
        font-size: 2.8rem;
    }
    .page_container h2 {
        font-size: 2rem;
    }
    .page_container p,
    .page_container h2 small {
        font-size: 1rem;
    }
}

/* --- Contact Page Specific Styles (Moved from contact.html) --- */
#contact-page {
    padding: 4rem 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 3rem;
}

.contact-details, .contact-form-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.contact-details h2, .contact-form-container h2 {
    color: var(--rust);
    margin-top: 0;
    text-align: center;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-info-item i {
    font-size: 1.2rem;
    color: var(--burgundy-plum);
    margin-top: 0.25rem;
    width: 20px;
    text-align: center;
}

.contact-info-item a {
    color: var(--dark-sienna);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--rust);
}

.business-hours ul {
    list-style: none;
    padding-left: 0;
}

.business-hours li {
    display: flex;
    justify-content: flex-start; /* Change to flex-start */
    align-items: center;
}
.business-hours li span:first-child {
    width: 100px; /* Give the day a fixed width to create space */
}

/* Responsive adjustments for contact page grid */
@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}
}