@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=Sacramento&family=Montserrat:wght@300;400;700&family=Dancing+Script:wght@400;700&display=swap');

:root {
    --color-primary: #AA336A;
    /* Dark Pink */
    --color-secondary: #F8CAD7;
    /* Light Pink */
    --color-white: #ffffff;
    --color-text-main: #5c2c43;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --font-script: 'Sacramento', cursive;
    --font-alt: 'Montserrat', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-secondary);
    color: var(--color-text-main);
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: var(--color-primary);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-phone {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 1000;
    transition: var(--transition-smooth);
    letter-spacing: 0.05em;
    margin: 0;
}

.header-phone:hover {
    color: var(--color-secondary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
}

.hamburger-menu span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-white);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Sleek Menu Animation */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.nav-links a:hover,
.dropdown:hover .dropdown-trigger {
    opacity: 1;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    top: 100%;
    left: 0;
    padding: 1rem 0;
    border-radius: 4px;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333333 !important;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0.05em;
    opacity: 1 !important;
    transition: background 0.2s;
}

.dropdown-content a:hover {
    background-color: #f8f8f8;
    color: var(--color-primary) !important;
}

/* Custom Scrollbar for Dropdown */
.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.logo {
    color: var(--color-white);
    font-family: var(--font-serif);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    line-height: 1;
}

.logo .main-text {
    font-size: 1.8rem;
    font-weight: 500;
}

.logo .sub-text {
    font-size: 0.5rem;
    font-family: var(--font-sans);
    letter-spacing: 0.1em;
    margin-top: 2px;
}

.header-cta .book-btn {
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.header-cta .book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.arrow-icon {
    width: 20px;
}

/* Hero Section Styles */
.hero {
    height: calc(100vh - 80px);
    /* Subtract header height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    background-image: url('images/da106043e48047aa91fd80c084e3c472.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-secondary);
    /* Solid light pink to hide the wallpaper entirely */
    z-index: 1;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.95;
    /* blend slightly */
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 3rem;
    font-weight: 700;
}

.hero-actions .cta-btn {
    display: inline-block;
    padding: 1rem 3.5rem;
    border: 1.5px solid var(--color-text-main);
    border-radius: 50px;
    text-decoration: none;
    color: var(--color-text-main);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.hero-actions .cta-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 60, 98, 0.2);
}


/* Trending Services Styles */
.trending-services {
    padding: 100px 5%;
    background-color: var(--color-secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-main);
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: #fff5f8;
    border-radius: 200px 200px 0 0;
    padding: 20px;
    text-align: left;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.card-image-arch {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
}

.card-image-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 10px 20px 30px;
    position: relative;
    flex-grow: 1;
}

.card-content h3 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-content p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.4;
    margin-right: 40px;
}

.card-arrow-btn {
    position: absolute;
    bottom: 25px;
    right: 20px;
    width: 35px;
    height: 35px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.card-arrow-btn svg {
    width: 18px;
    height: 18px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-card:hover .card-arrow-btn {
    background-color: var(--color-primary);
}

.section-footer {
    text-align: center;
}

.explore-btn {
    display: inline-block;
    padding: 0.8rem 3rem;
    border: 1px solid #1a1a1a;
    border-radius: 50px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.explore-btn:hover {
    background-color: #1a1a1a;
    color: var(--color-white);
}


/* Parallax Section Styles */
.parallax-section {
    height: 60vh;
    position: relative;
    background-image: url('images/da106043e48047aa91fd80c084e3c472.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    opacity: 0.35;
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}

.parallax-title {
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.4;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.parallax-btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 1.5px solid var(--color-white);
    border-radius: 50px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.parallax-btn:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* Our Place Section Styles */
.our-place {
    padding: 100px 0;
    background-color: var(--color-white);
}

.our-place-container {
    display: flex;
    align-items: center;
}

.our-place-text {
    flex: 1;
    padding: 0 8% 0 12%;
    text-align: center;
}

.our-place-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: #1a1a1a;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.our-place-subtitle {
    font-family: 'Dancing Script', cursive;
    /* Suggesting a handwriting font for that elegant look */
    font-style: italic;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.our-place-description {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.read-more-btn {
    display: inline-block;
    padding: 0.8rem 3rem;
    border: 1.5px solid #1a1a1a;
    border-radius: 50px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
}

.read-more-btn:hover {
    background-color: #1a1a1a;
    color: var(--color-white);
}

.our-place-image {
    flex: 1;
    height: 600px;
}

.our-place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Updated Responsive Adjustments */
@media (max-width: 991px) {
    .our-place-container {
        flex-direction: column;
    }

    .our-place-text {
        padding: 60px 5%;
        order: 1;
    }

    .our-place-image {
        width: 100%;
        height: 400px;
        order: 2;
    }
}


/* Reviews Section Styles */
.reviews {
    padding: 100px 5%;
    background-color: var(--color-secondary);
}

.review-card {
    background-color: #fff5f8;
    align-items: center;
}

.user-icon-bg {
    background-color: #222222;
    /* Changed to dark to match requested premium look? No, user didn't ask for color change, but in index.html I saw #F8CAD7 fill. I'll keep it white or black as appropriate. */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    /* Enlarged */
    height: 80px;
    /* Enlarged */
    border-radius: 50%;
    margin: 30px auto 0;
    /* Centered */
}

.user-icon-bg svg {
    width: 45px;
    /* Enlarged icon */
    height: 45px;
    /* Enlarged icon */
}

.text-center {
    text-align: center;
    padding: 10px 30px 40px !important;
}

.star-rating {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.review-card p {
    margin-right: 0 !important;
    font-style: italic;
}

/* Signature Services Styles - Refined 2.0 */
.signature-intro {
    background-color: #222222;
    color: var(--color-white);
    padding: 120px 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.typography-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
}

.explore-bg {
    font-family: var(--font-script);
    color: #444444;
    font-size: clamp(8rem, 20vw, 12rem);
    line-height: 0.8;
    letter-spacing: -0.02em;
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
}

.main-heading {
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    letter-spacing: 0.01em;
    white-space: nowrap;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    z-index: 2;
}

.intro-content p {
    font-family: var(--font-alt);
    max-width: 680px;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.03em;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
}

.signature-item {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
}

.signature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.signature-item-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    color: var(--color-white);
    text-align: left;
}

.signature-item-content h2 {
    font-family: var(--font-alt);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #000000 0%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.signature-item-content p {
    font-family: var(--font-alt);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #000000;
}

.signature-arrow-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, #000000 0%, #808080 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.signature-arrow-btn svg,
.card-arrow-btn svg {
    width: 24px;
    stroke: #ffffff !important;
}

.signature-arrow-btn:hover {
    background-color: #ffffff;
    transform: translateX(8px);
}

.signature-arrow-btn:hover svg {
    stroke: #000000 !important;
}

/* Strips Section */
.strips-section {
    width: 100%;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
}

.strip {
    width: 100%;
    height: 40px;
}

.strip-white {
    background-color: var(--color-white);
}

.strip-pink {
    background-color: var(--color-secondary);
}

/* Book Now Section */
.book-now-section {
    background-image: url('images/11062b_880c7b78f2784cb48e182e145a301663~mv2.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 120px 5%;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 6;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.book-now-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 202, 215, 0.2);
    /* Light pink overlay */
    z-index: 1;
}

.book-now-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.book-now-content h2 {
    font-family: var(--font-alt);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #222222;
}

.book-now-content p {
    font-family: var(--font-alt);
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 3rem;
    font-style: italic;
}

.book-btn {
    padding: 1rem 4rem;
    font-size: 1rem;
    letter-spacing: 0.2em;
    background-color: #222222;
    color: white;
    border: none;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}

.book-btn:hover {
    background-color: var(--color-primary);
    transform: translateY(-5px);
}

/* Footer Styles */
.footer-main {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 10%;
    font-family: var(--font-alt);
    position: relative;
    z-index: 10;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 6rem;
    /* Increased spacing */
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: #ffffff;
}

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    color: #cccccc;
    text-decoration: none;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-col a:hover {
    color: var(--color-secondary);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #cccccc;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #888888;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    display: inline;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.social-col {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.social-icon {
    width: 40px;
    height: 40px;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: var(--color-secondary);
    transform: scale(1.1);
}

/* About Us Story Sections */
.about-story-section {
    padding: 80px 5%;
    background-color: var(--color-white);
}

.about-story-section.alternate-bg {
    background-color: var(--color-secondary);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 4rem;
}

.story-container.reverse-layout {
    flex-direction: row-reverse;
}

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-heading {
    font-family: var(--font-alt);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.story-subheading {
    font-family: var(--font-alt);
    font-size: 1.2rem;
    color: #444444;
    font-weight: 400;
    margin-bottom: 2rem;
    font-style: italic;
}

.story-paragraph {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlight-text {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.story-image {
    flex: 1;
    display: flex;
    align-items: center;
    /* Center image vertically */
    justify-content: center;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Don't crop, but fit naturally within box */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 600px;
    /* Constrain height to match text roughly  */
}

/* Updated Responsive Adjustments */
/* Header & Mobile Menu Polish */
.mobile-book-btn {
    display: none !important;
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: transparent; 
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        
        pointer-events: none;
        visibility: hidden;
        transition: visibility 0s linear 0.6s; /* Wait for closing animation */
        z-index: 1001;
    }

    .nav-links.active {
        pointer-events: auto;
        visibility: visible;
        transition: visibility 0s;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: -50px;
        left: -50px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: var(--color-primary);
        /* Thick transparent borders using box-shadow */
        box-shadow: 
            0 0 0 15px rgba(170, 51, 106, 0.5), /* 50% transparent */
            0 0 0 30px rgba(170, 51, 106, 0.1); /* 90% transparent */
        transform: scale(0);
        transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: -1;
    }

    .nav-links.active::before {
        transform: scale(30); /* Enough to cover mobile screen */
    }

    /* Fade in links so they don't awkwardly appear before bg */
    .nav-links a {
        font-size: 1.5rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-links.active a {
        opacity: 1;
        transition: opacity 0.3s ease 0.3s;
    }

    .hamburger-menu {
        display: flex;
    }

    .header-phone {
        display: none;
        /* Hide in header CTA on mobile, maybe add to menu? */
    }

    .header-cta .book-btn {
        display: none !important;
    }

    .hero-content {
        text-shadow: none; /* Remove glow on mobile */
    }

    .mobile-book-btn {
        display: flex !important;
        background-color: var(--color-white);
        color: var(--color-primary) !important;
        padding: 0.8rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.2rem !important;
        font-weight: 600;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        margin-top: 2rem;
    }

    .mobile-book-btn svg {
        width: 30px;
        stroke: var(--color-primary) !important;
    }
}

@media (max-width: 768px) {

    .story-container,
    .story-container.reverse-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .story-image img {
        max-height: 350px;
    }

    .treatments-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .treatment-box {
        padding: 20px 10px !important;
    }

    .treatment-icon {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 15px !important;
    }

    .treatment-box h3 {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
    }

    .treatment-arrow {
        width: 25px !important;
        height: 25px !important;
    }

    .treatment-arrow svg {
        width: 10px !important;
        height: 10px !important;
    }

    /* Mobile Signature Service Background Overrides */
    .signature-services-scroll .signature-item:nth-of-type(1) {
        background-image: url('images/mobile/e75767_65988a2980b8411ea514454ee63fabcb~mv2.png') !important;
    }
    .signature-services-scroll .signature-item:nth-of-type(2) {
        background-image: url('images/mobile/e75767_f72df6cdec3a4d999a0c10873650514d~mv2.png') !important;
    }
    .signature-services-scroll .signature-item:nth-of-type(3) {
        background-image: url('images/mobile/e75767_52b1c977547b40ce895d77d5b0c73d97~mv2.png') !important;
    }
    .signature-services-scroll .signature-item:nth-of-type(4) {
        background-image: url('images/mobile/e75767_1b85ae927f9a411fba2050798774f079~mv2.png') !important;
    }
    .signature-services-scroll .signature-item:nth-of-type(5) {
        background-image: url('images/mobile/e75767_2b0d0ce9d05b492d83e0e63e49f8e24c~mv2.png') !important;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 40px;
    }

    .footer-main {
        padding: 80px 5% 40px;
    }

    .footer-col {
        margin-bottom: 2rem;
    }

    .footer-col h3 {
        margin-bottom: 1.5rem;
    }

    .social-col {
        justify-content: center;
        margin-top: 1rem;
    }

    .hour-row {
        max-width: 250px;
        margin: 0 auto;
        width: 100%;
    }

    #hero-canvas {
        display: none !important;
        /* Hide watery effect on mobile */
    }

    .header {
        padding: 1rem 5%;
    }

    .logo-container {
        position: absolute; /* Re-center logo on mobile */
        left: 50%;
        transform: translateX(-50%);
        order: initial;
    }

    .logo .main-text {
        font-size: 1.4rem; /* Slightly larger on mobile */
    }
}

/* About Us Page Styles */
.about-story-section {
    padding: 100px 5%;
    background-color: var(--color-white);
}

.about-story-section.alternate-bg {
    background-color: var(--color-secondary);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 4rem;
}

.story-container.reverse-layout {
    flex-direction: row-reverse;
}

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-heading {
    font-family: var(--font-alt);
    font-size: 2.5rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.story-subheading {
    font-family: var(--font-alt);
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
}

.story-paragraph {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-top: 3rem;
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
}

@media (max-width: 991px) {

    .story-container,
    .story-container.reverse-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .story-heading {
        font-size: 2rem;
    }
}

/* Services Grid Page Styles */
.services-grid-page {
    padding: 80px 5%;
    background-color: var(--color-white);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.treatment-box {
    background-color: #fceef3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    text-decoration: none;
    color: #333;
    transition: all var(--transition-smooth);
    aspect-ratio: 1 / 1;
}

.treatment-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.treatment-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.treatment-box:hover .treatment-icon {
    transform: scale(1.1);
}

.treatment-box h3 {
    font-family: var(--font-alt);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.4;
    color: #222;
}

.treatment-arrow {
    width: 32px;
    height: 32px;
    background-color: #f1dae2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.treatment-box:hover .treatment-arrow {
    background-color: var(--color-primary);
}

.treatment-box:hover .treatment-arrow svg {
    stroke: #fff;
}

.treatment-arrow svg {
    width: 14px;
    height: 14px;
    stroke: #222;
    transition: stroke 0.3s ease;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}