/* Base styles */
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --hibiscus-50: #fdf2f8;
    --hibiscus-100: #fce7f3;
    --hibiscus-300: #f9a8d4;
    --hibiscus-600: #db2777;
    --hibiscus-700: #be185d;
    --sage-50: #f8faf9;
    --sage-100: #f1f5f3;
    --sage-200: #e2eae6;
    --sage-300: #cfdbd5;
    --sage-400: #b0c3ba;
    --sage-500: #91aa9e;
    --sage-600: #749183;
    --sage-700: #5f776b;
    --gray-50: #f9fafb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-900: #111827;
    --hibiscus-200: #fbcfe8;
    --hibiscus-400: #f472b6;
    --hibiscus-500: #ec4899;
    --gradient-size: 200% auto;
}

/* Typography */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;800&display=swap");


body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.5;
}

html {
    overflow-x: hidden;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Layout */

.pad-1 {
    padding: 1rem;
}

.pad-2 {
    padding: 2rem;
}

.min-h-screen {
    min-height: 100vh;
}

.h-100 {
    height: 100%;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-no-wrap {
    flex-wrap: nowrap;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-grow {
    flex-grow: 1;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-center {
    justify-content: center;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.space-x-r {
    margin-right:1rem;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.mobile-services-menu {
    z-index: 100000;
}

.sq-w {
    min-width: 50px;
    min-height: 50px;
}



/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Spacing */
.section-padding {
    padding: 4rem 1rem;
}

.index-section-padding {
    padding: 1rem;
    padding-top: 0;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ma-1 {
    margin: 1rem;
}

.ma-05 {
    margin: 0.5rem;
}

.ma-025 {
    margin: 0.25rem;
}

.mxw-100 {
    max-width: 100%;
}

.mxw-250 {
    max-width: 250px;
}

.mxw-300 {
    max-width: 300px;
}

.mxw-400 {
    max-width: 400px;
}

.mxw-500 {
    max-width: 500px;
}

.mxh-250 {
    max-height: 250px;
}

.mxh-400 {
    max-height: 400px;
}

.w-100 {
    width: 100%;
}


/* Colors */
.bg-white {
    background-color: white;
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.bg-gray-900 {
    background-color: var(--gray-900);
}

.bg-hibiscus-100 {
    background-color: var(--hibiscus-100);
}

.bg-hibiscus-600 {
    background-color: var(--hibiscus-600);
}

.bg-sage-600 {
    background-color: var(--sage-600);
}

.text-white {
    color: white;
}

.text-gray-400 {
    color: var(--gray-400);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-900 {
    color: var(--gray-900);
}

.text-hibiscus-100 {
    color: var(--hibiscus-100);
}

.text-hibiscus-600 {
    color: var(--hibiscus-600);
}

/* Typography Sizes */
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem
}

.text-6xl {
    font-size: 3.75rem;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Components */

.HSTM_LF_P {
    display: flex;
    justify-content: center;
    align-items: center;
    
    overflow: hidden;
}

.HSTM_LF_WBP {
    width: auto;
    height: 400px;
    border-radius: 50px;
    box-shadow: inset 8px 8px 16px #000000,
                inset -8px -8px 16px #ffffff;
    overflow: hidden;
    background: #e0e0e0;
}

#hero-section {
    height: max-content;
    overflow: hidden;
}

.card_three_cross {
    max-width: 400px

}

.cardFaqCont {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    margin: 0 auto;
}

.cardFaq {
    font-family: 'Poppins', sans-serif;
    height: 250px;
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    border-radius: 39px;
    background: linear-gradient(145deg, #ccbcbc, #f0f0f0);
    box-shadow: 5px 5px 10px #797979,
                -5px -5px 10px #ffffff;
    transition: box-shadow 0.5s ease-in-out;
   
}

.cardFaq:hover {
    box-shadow: 14px 14px 15px #797979,
                -4px -4px 5px #ffffff;
}

.cardFaq h1 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.cardFaq p {
    font-size: 1rem;
    color: #666;
}

@media only screen and (max-width: 1200px) {
    .cardFaqCont {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 900px) {
    .cardFaqCont {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 600px) {
    .cardFaqCont {
        grid-template-columns: 1fr;
    }
    
    .cardFaq {
        margin: 0;
        margin-top: 1rem;
        width: 100%;
    }
} 




.card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--hibiscus-600);
    color: white;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: var(--hibiscus-700);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--hibiscus-600);
    color: var(--hibiscus-600);
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline:hover {
    background-color: var(--hibiscus-600);
    color: white;
}

/* Header */
header {
    background: linear-gradient(to right, var(--hibiscus-50), var(--sage-50));
    border-bottom: 1px solid var(--sage-200);
}

.max-w-7xl {
    max-width: 80rem;
}

.h-16 {
    height: 4rem;
}

/* Hero Section */
.bg-gradient-to-r {
    background: linear-gradient(to right, var(--hibiscus-50), var(--sage-50));
}

.from-hibiscus-600.to-hibiscus-700 {
    background: linear-gradient(to right, var(--hibiscus-600), var(--hibiscus-700));
}

/* Features */
.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.rounded-full {
    border-radius: 9999px;
}

.wh-10 {
    width: 10px;
    height: 10px;
}

.w-24 {
    width: 6rem;
}

.h-24 {
    height: 6rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.hidden_a {
    border-radius: 50px;
    background: #ffffff;
    box-shadow: 8px 8px 16px #ffffff;
    transition: all 1s ease-in-out;
}

.hidden_a:hover {
    border-radius: 50px;
    background: #fdf6f6;
    box-shadow: 8px 8px 16px #ebebeb,
                inset -8px -8px 16px #ffffff;
}

/* SVG Icons */
svg {
    display: inline-block;
    vertical-align: middle;
}

/* Responsive Design */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
    
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:text-4xl {
        font-size: 2.25rem;
    }
    
    .md\:text-5xl {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .lg\:text-6xl {
        font-size: 3.75rem;
    }
}

/* Utility Classes */
.max-w-2xl {
    max-width: 42rem;
}

.inline-block {
    display: inline-block;
}

.relative {
    position: relative;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Additional Utility Classes */
.z-10 {
    z-index: 10;
}

.opacity-10 {
    opacity: 0.10;
}

.opacity-15 {
    opacity: 0.15;
}

.opacity-20 {
    opacity: 0.20;
}

.bg-hibiscus-200 {
    background-color: var(--hibiscus-200);
}

.bg-hibiscus-400 {
    background-color: var(--hibiscus-400);
}

.bg-hibiscus-500 {
    background-color: var(--hibiscus-500);
}

.bg-sage-200 {
    background-color: var(--sage-200);
}

.bg-sage-500 {
    background-color: var(--sage-500);
}

.from-hibiscus-200.to-sage-200 {
    background: linear-gradient(to bottom right, var(--hibiscus-200), var(--sage-200));
}

.from-hibiscus-500.to-hibiscus-600 {
    background: linear-gradient(to bottom right, var(--hibiscus-500), var(--hibiscus-600));
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.rounded-xl {
    border-radius: 0.75rem;
}

.w-32 {
    width: 8rem;
}

.h-0 {
    height: 0;
}

.h-32 {
    height: 8rem;
}

.w-20 {
    width: 5rem;
}

.h-20 {
    height: 5rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

.-top-4 {
    top: -1rem;
}

.-right-4 {
    right: -1rem;
}

.-bottom-4 {
    bottom: -1rem;
}

.-left-4 {
    left: -1rem;
}

.-right-8 {
    right: -2rem;
}

.top-1\/2 {
    top: 50%;
}

.text-sm {
    font-size: 0.875rem;
}

/* Position utilities */
.absolute {
    position: absolute;
}

/* Hero Section Layout */
.hero-hstm-box {
    width: 100%;
    height: max-content;
    max-width: 900px;
    margin: 0 auto;
    z-index: 100;
    position: relative;
    padding: 2rem 1rem;
}

.hero-hstm-box .aspect-ratio-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-hstm-box .aspect-ratio-container {
        min-height: 500px;
        padding: 3rem 2rem;
    }
}

.hero-hstm-box .content-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    z-index: 100;
}

/* Responsive text for hero */
.hero-hstm-box .text-gradient {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.2;
    word-wrap: break-word;
}

/* Floating elements - keep them within bounds */
.hero-hstm-box .absolute {
    position: absolute;
}

.hero-hstm-box .absolute.-top-4 {
    top: 1rem;
}

.hero-hstm-box .absolute.-bottom-4 {
    bottom: 1rem;
}

.hero-hstm-box .absolute.-right-4,
.hero-hstm-box .absolute.-right-8 {
    right: 1rem;
}

.hero-hstm-box .absolute.-left-4 {
    left: 1rem;
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
    .hero-hstm-box {
        padding: 1rem 0.5rem;
    }
    
    .hero-hstm-box .aspect-ratio-container {
        min-height: 350px;
        padding: 1rem 0.5rem;
    }
    
    .hero-hstm-box .text-gradient {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }
    
    /* Make floating elements smaller on mobile */
    .hero-hstm-box .w-20 {
        width: 3rem;
        height: 3rem;
    }
    
    .hero-hstm-box .w-16 {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .hero-hstm-box .w-12 {
        width: 2rem;
        height: 2rem;
    }
}

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

/* Additional Typography */
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

/* Enhanced Hero Title */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5.5rem;
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--hibiscus-600) 0%, var(--hibiscus-500) 50%, var(--sage-500) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /*text-fill-color: transparent;*/
    display: inline-block;
    position: relative;
    animation: shimmer 8s ease-in-out infinite;
}

.text-gradient-reverse {
    background: linear-gradient(135deg, var(--sage-500) 0%, var(--hibiscus-500) 50%, var(--hibiscus-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /*text-fill-color: transparent;*/
    display: inline-block;
    position: relative;
    animation: shimmer 8s ease-in-out infinite reverse;
}

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

.block {
    display: block;
}

.text-gradient::after,
.text-gradient-reverse::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    filter: blur(30px);
    opacity: 0.3;
    z-index: -1;
}

/* Credentials Section */
.space-x-6 > * + * {
    margin-left: 0.75rem;
}

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.text-gray-300 {
    color: #d1d5db;
}

.pt-4 {
    padding-top: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

/* Ensure the credentials section wraps nicely on mobile */
@media (max-width: 640px) {
    .flex.items-center.space-x-6 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .flex.items-center.space-x-6 > * {
        margin-left: 0;
    }
    
    /* Hide dividers and separators on wrap */
    .flex.items-center.space-x-6 .h-4.w-px,
    .flex.items-center.space-x-6 .text-gray-300 {
        display: none;
    }
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bg-contain {
    background-size: contain;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-center {
    background-position: center;
}

.opacity-20 {
    opacity: 0.2;
}

.z-10 {
    z-index: 10;
}

/* Header Styles */
nav {
    position: relative;
    background-color: white;
    z-index: 1000; /* High z-index for the entire nav */
}

.nav-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    z-index: 1000;
}

@media (min-width: 640px) {
    nav {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    nav {
        padding: 0 2rem;
    }
}

.logo {
    flex-shrink: 0;
}

.logo-link {
    font-size: 1.875rem;
    font-family: 'Playfair Display', serif;
    color: var(--hibiscus-600);
    text-decoration: none;
    transition: color 0.2s;
}

.logo-link:hover {
    color: var(--hibiscus-700);
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 2rem;
    }
}

.nav-link {
    color: var(--sage-700);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--hibiscus-600);
}

/* Services Dropdown */
.services-dropdown {
    position: relative;
}

.dropdown-button {
    display: inline-flex;
    align-items: center;
    color: var(--sage-700);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.dropdown-button:hover {
    color: var(--hibiscus-600);
}

.dropdown-arrow {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
    transition: transform 0.2s;
}

.services-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.5rem;
    width: 12rem;
    background: white;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transform-origin: top;
    transition: all 0.2s;
    z-index: 50;
}

.services-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--sage-700);
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-content a:hover {
    color: var(--hibiscus-600);
    background: linear-gradient(to right, var(--hibiscus-50), var(--sage-50));
}

/* Mobile Menu Styles */
.mobile-menu-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200vh;
    background-image: url('../assets/images/mobile-menu-swipe-up.png');
    background-size: cover;
    background-position: center;
    transform: translateY(150vh);
    transition: transform 3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    z-index: 900;
}

.mobile-menu-background.show {
    transform: translateY(-50vh);
}

/* Update mobile menu styles to work with background */
.mobile-menu {
    display: none;
    position: fixed;
    top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background-color: transparent;
    padding: 1rem;
    opacity: 0;
    transition: all 3.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2999; /* Higher than background */
    max-width: 90%;
    width: 320px;
    color: white;
    text-align: center;
}

.mobile-menu.show {
    background-color: transparent;
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 3.5s ease-in-out;
}

/* Center the menu content with flex layout (default for portrait) */
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 3000;
    position: relative;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

/* Landscape orientation adjustments - switch to grid */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .mobile-menu {
        top: calc(50vh + 36px);
        left: 50%;
        transform: translate(-50%, -50%) scale(0.95);
        padding: 0.5rem;
        width: 400px;
        max-width: 95%;
    }
    
    .mobile-menu.show {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .mobile-menu-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        max-height: calc(100vh - 100px);
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.75rem 0.5rem;
    }
}

/* Very small landscape screens */
@media screen and (orientation: landscape) and (max-height: 400px) {
    .mobile-menu {
        top: calc(50vh + 36px);
        padding: 0.25rem;
        width: 450px;
    }
    
    .mobile-menu-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        max-height: calc(100vh - 90px);
    }
    
    .mobile-nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.25rem;
    }
}

.mobile-nav-link {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 3002;
}

.mobile-nav-link:hover {
    color: var(--hibiscus-100);
    transform: translateY(-2px);
}

/* Update dropdown styles */
.mobile-dropdown-button {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    position: relative; /* Create stacking context */
    z-index: 3002;
}

.mobile-dropdown-content {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 0.5rem;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    position: relative; /* Create stacking context */
    z-index: 3001;
}

.mobile-dropdown-content.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Ensure the menu button stays above everything */
#mobile-menu-button {
    position: relative;
    z-index: 3003;
}

/* Mobile Menu Button */
.mobile-menu-button {
    position: relative;
    display: none;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001; /* Slightly higher than the menu */
}

.menu-icon {
    width: 24px;
    height: 24px;
    color: var(--gray-700);
    transition: color 0.2s ease;
}

/* Show mobile menu button on smaller screens */
@media (max-width: 767px) {
    nav {
        position: relative;
        background: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-button {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }

    .mobile-menu {
        position: absolute;
        width: 100%;
        background: white;
    }
}

/* Mobile Services Menu */
.mobile-services-menu {
    position: relative;
}

.mobile-dropdown-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--sage-700);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.mobile-dropdown-button:hover {
    color: var(--hibiscus-600);
}

.mobile-dropdown-arrow {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s;
}

.mobile-services-menu.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    padding-left: 1rem;
}

.mobile-services-menu.active .mobile-dropdown-content {
    display: block;
}

/* Services Page Specific Styles */
.hero-section {
    background: linear-gradient(to right, var(--hibiscus-50), var(--sage-50));
    padding: 4rem 1rem;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 1rem auto;
}

.services-section {
    padding: 4rem 1rem;
    background-color: var(--gray-50);
}

.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-list {
    margin: 1.5rem 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--sage-100);
}

.price-item:last-child {
    border-bottom: none;
}

.price {
    font-weight: 600;
    color: var(--hibiscus-600);
}

.price-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    font-style: italic;
}

.book-button {
    display: inline-block;
    background: linear-gradient(to right, var(--hibiscus-600), var(--hibiscus-700));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.book-button:hover {
    opacity: 0.9;
}

.benefits-section {
    padding: 4rem 1rem;
    background: white;
}

.benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    padding: 1.5rem;
    background: linear-gradient(to bottom right, var(--hibiscus-50), var(--sage-50));
    border-radius: 1rem;
    text-align: center;
}

.benefit-subtitle {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

.main-content {
    flex: 1;
}

/* Neumorphic Service Options */
.pink-neu-card {
    border-radius: 48px;
    background: linear-gradient(145deg, #cb1a64, #ab1654);
    box-shadow:  26px 26px 52px #ba185b,
             -26px -26px 52px #c2185f;
             max-width: 400px;

}

.massage-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 20px 20px 60px #d1d1d1, -20px -20px 60px #ffffff;
    margin-bottom: 3rem;
}
.massage-card-flex {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 20px 20px 60px #d1d1d1, -20px -20px 60px #ffffff;
    margin-bottom: 3rem;
    max-width: 550px;
}

.massage-card-flex-tall {
    color:white;
    background: var(--hibiscus-500);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 20px 20px 60px #d1d1d1, -20px -20px 60px #ffffff;
    margin-bottom: 3rem;
    max-width: 350px;
    min-height: 400px;
}

.massage-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

.massage-description {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.time-options {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
    .time-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .time-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

.time-option-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: var(--gray-900);
    box-shadow: 8px 8px 16px #d1d1d1,
                -8px -8px 16px #ffffff;
    transition: all 0.3s ease, background 0.75s ease-in-out;
}

.time-option-button:hover {
    background: linear-gradient(145deg, var(--hibiscus-100), #ffd700);
    transform: translateY(-2px);
    color: var(--gray-900);
}

.time-option-button:active {
    box-shadow: inset 4px 4px 8px #d1d1d1,
                inset -4px -4px 8px #ffffff;
    transform: translateY(0);
}

.time-duration {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.time-price {
    font-size: 1.5rem;
    color: var(--hibiscus-600);
    font-weight: 700;
}

.time-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    text-align: center;
    font-style: italic;
}

/* Service Selection Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    max-width: 90%;
    width: 500px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-overlay.show {
    display: block;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.modal-description {
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-buttons {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.modal-button {
    padding: 1rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    box-shadow: 8px 8px 16px #d1d1d1,
                -8px -8px 16px #ffffff;
}

.modal-button:hover {
    transform: translateY(-2px);
}

.modal-button.new-client {
    background: linear-gradient(145deg, var(--hibiscus-50), var(--hibiscus-100));
    color: var(--gray-900);
}

.modal-button.returning-client {
    background: linear-gradient(145deg, var(--sage-50), var(--sage-100));
    color: var(--gray-900);
}

.modal-button-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal-button-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Animation for floating elements */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.flower-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: var(--hibiscus-600);
}

.flower-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.flower {
    position: absolute;
    width: 30px;
    height: 30px;
    fill: var(--hibiscus-100);
    opacity: 0.6;
    pointer-events: none;
}

.flower.falling {
    animation: fallAndFade var(--fall-duration, 3s) linear forwards;
}

.flower.rising {
    animation: riseAndFade var(--fall-duration, 3s) linear forwards;
}

@keyframes fallAndFade {
    0% {
        transform: translateY(-100%) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg) scale(0.8);
        opacity: 0;
    }
}

@keyframes riseAndFade {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100%) rotate(-360deg) scale(0.8);
        opacity: 0;
    }
}

/* Hero Title Styles */
h1.text-center {
    background: linear-gradient(to right, var(--hibiscus-600), var(--sage-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    margin-bottom: 2rem;
    transition: font-size 0.3s ease;
}

.text-shadow-tight {
    text-shadow: 2px 2px 2px rgba(13, 0, 83, 0.2);
}

@media (max-width: 640px) {
    h1.text-center {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    h1.text-center {
        font-size: 2.25rem;
        padding: 0 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    h1.text-center {
        font-size: 2.75rem;
        padding: 0 3rem;
    }
}

@media (min-width: 1025px) {
    h1.text-center {
        font-size: 3.25rem;
        padding: 0 4rem;
    }
}

/* Share Button Styles */
.share-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--hibiscus-700);
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: white;
    box-shadow: 8px 8px 16px #d1d1d1,
                -8px -8px 16px #ffffff;
    transition: all 0.3s ease, background 0.75s ease-in-out;
    width: 100%;
    margin-top: 1rem;
}

.share-button:hover {
    background: linear-gradient(145deg, var(--hibiscus-100), #ffd700);
    transform: translateY(-2px);
    color: var(--gray-900);
}

.share-button:active {
    box-shadow: inset 4px 4px 8px #d1d1d1,
                inset -4px -4px 8px #ffffff;
    transform: translateY(0);
}

.share-button-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.share-button-subtext {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-align: center;
    font-style: italic;
}