:root {
    --primary-navy: #d86ea3;
    --accent-burgundy: #681f46;
    --highlight-coral: #F45B69;
    --accent-green: #27AE60;
    --cream: #4f314b;
    --background: #e4b1d447;
    --glass-white: rgb(136 50 100 / 14%);
    --glass-blur: 5px;
    --border-glass: rgba(139, 75, 107, 0.2);
    --shadow-glass: 0 8px 32px rgba(139, 75, 107, 0.15);
    --gradient-primary: linear-gradient(135deg, #9a5b7a 0%, #ad93cc 100%);
    --gradient-accent: linear-gradient(135deg, #ad93cc 0%, #F45B69 100%);
}







/* Dark theme colors */
:root.dark-mode {
    --primary-navy: #26547C;
    --accent-burgundy: #672A4E;
    --highlight-coral: #F45B69;
    --accent-green: #3F784C;
    --cream: #FFFCF9;
    --background: #0a0a0a;
    --glass-white: rgba(255, 252, 249, 0.1);
    --glass-blur: 5px;
    --border-glass: rgba(255, 255, 255, 0.2);
    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.15);
    --gradient-primary: linear-gradient(135deg, #26547C 0%, #672A4E 100%);
    --gradient-accent: linear-gradient(135deg, #F45B69 0%, #672A4E 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--cream);
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Fix for horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Animated Background - Beauty Themed */
.beauty-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(139, 75, 107, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 165, 116, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(230, 126, 34, 0.1) 0%, transparent 50%),
        var(--background);
    transition: background 0.3s ease;
}

:root.dark-mode .beauty-background {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(103, 42, 78, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(38, 84, 124, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(244, 91, 105, 0.1) 0%, transparent 50%),
        var(--background);
}

/* Enhanced Animated Lash Elements */
.floating-lash {
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 252, 249, 0.1) 20%,
        rgba(244, 91, 105, 0.4) 50%,
        rgba(255, 252, 249, 0.1) 80%,
        transparent 100%);
    border-radius: 50px;
    filter: blur(0.5px);
    will-change: transform, opacity;
}

.floating-lash::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(-25deg);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 252, 249, 0.15) 30%,
        rgba(244, 91, 105, 0.3) 50%,
        rgba(255, 252, 249, 0.15) 70%,
        transparent 100%);
    border-radius: 50px;
    filter: blur(0.3px);
}

.floating-lash::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%) rotate(25deg);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 252, 249, 0.15) 30%,
        rgba(244, 91, 105, 0.3) 50%,
        rgba(255, 252, 249, 0.15) 70%,
        transparent 100%);
    border-radius: 50px;
    filter: blur(0.3px);
}

@keyframes float-lash {
    0% {
        transform: translate(-120px, 100vh) rotate(0deg) scale(0.6);
        opacity: 0;
    }
    5% {
        opacity: 0.4;
    }
    15% {
        opacity: 0.8;
    }
    85% {
        opacity: 0.8;
    }
    95% {
        opacity: 0.4;
    }
    100% {
        transform: translate(calc(100vw + 120px), -120px) rotate(720deg) scale(1.4);
        opacity: 0;
    }
}

/* Variation animations for different lash types */
@keyframes float-lash-slow {
    0% {
        transform: translate(-100px, 100vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    8% {
        opacity: 0.6;
    }
    92% {
        opacity: 0.6;
    }
    100% {
        transform: translate(calc(100vw + 100px), -100px) rotate(360deg) scale(1.1);
        opacity: 0;
    }
}

@keyframes float-lash-curved {
    0% {
        transform: translate(-150px, 80vh) rotate(0deg) scale(0.7);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    25% {
        transform: translate(25vw, 40vh) rotate(90deg) scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: translate(50vw, 20vh) rotate(180deg) scale(1.0);
        opacity: 0.8;
    }
    75% {
        transform: translate(75vw, 40vh) rotate(270deg) scale(1.1);
        opacity: 0.7;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translate(calc(100vw + 150px), 80vh) rotate(360deg) scale(1.3);
        opacity: 0;
    }
}

/* Enhanced Sparkle Effects */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 1) 0%,
        rgba(244, 91, 105, 0.8) 30%,
        rgba(255, 252, 249, 0.6) 60%,
        transparent 100%);
    border-radius: 50%;
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(244, 91, 105, 0.4),
        0 0 30px rgba(255, 252, 249, 0.2);
    will-change: transform, opacity;
}

.sparkle-small {
    width: 3px;
    height: 3px;
    animation: sparkle-small 4s infinite ease-in-out;
}

.sparkle-medium {
    width: 5px;
    height: 5px;
    animation: sparkle-medium 3.5s infinite ease-in-out;
}

.sparkle-large {
    width: 8px;
    height: 8px;
    animation: sparkle-large 5s infinite ease-in-out;
}

.sparkle-twinkle {
    animation: sparkle-twinkle 2.5s infinite ease-in-out;
}

@keyframes sparkle-small {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    25% {
        opacity: 0.6;
        transform: scale(0.8) rotate(90deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
    75% {
        opacity: 0.6;
        transform: scale(0.8) rotate(270deg);
    }
}

@keyframes sparkle-medium {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    20% {
        opacity: 0.4;
        transform: scale(0.6) rotate(72deg);
    }
    40% {
        opacity: 0.8;
        transform: scale(1.1) rotate(144deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.2) rotate(216deg);
    }
    80% {
        opacity: 0.8;
        transform: scale(1.1) rotate(288deg);
    }
}

@keyframes sparkle-large {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    15% {
        opacity: 0.3;
        transform: scale(0.5) rotate(54deg);
    }
    30% {
        opacity: 0.7;
        transform: scale(0.9) rotate(108deg);
    }
    45% {
        opacity: 1;
        transform: scale(1.3) rotate(162deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.4) rotate(216deg);
    }
    75% {
        opacity: 0.7;
        transform: scale(0.9) rotate(270deg);
    }
    85% {
        opacity: 0.3;
        transform: scale(0.5) rotate(324deg);
    }
}

@keyframes sparkle-twinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
        filter: brightness(1);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.2);
        filter: brightness(1.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(2);
    }
    75% {
        opacity: 0.8;
        transform: scale(1.2);
        filter: brightness(1.5);
    }
}

/* Beauty Orbs */
.beauty-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float-orb 30s infinite ease-in-out;
    opacity: 0.3;
}

.beauty-orb:nth-child(1) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-burgundy), transparent);
    top: -150px;
    left: -150px;
}

.beauty-orb:nth-child(2) {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-navy), transparent);
    bottom: -200px;
    right: -200px;
    animation-delay: -10s;
}

.beauty-orb:nth-child(3) {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--highlight-coral), transparent);
    top: 50%;
    left: 50%;
    animation-delay: -20s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* Gradient Mesh Background */
.gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background-image:
        radial-gradient(at 40% 20%, rgba(244, 91, 105, 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(103, 42, 78, 0.2) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(38, 84, 124, 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(63, 120, 76, 0.2) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(244, 91, 105, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(103, 42, 78, 0.3) 0px, transparent 50%),
        radial-gradient(at 0% 0%, rgba(38, 84, 124, 0.2) 0px, transparent 50%);
    animation: mesh-animation 20s ease-in-out infinite;
}

@keyframes mesh-animation {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(3deg) scale(1.1);
    }
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e0c8d5;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Glass Morphism Base */
.glass {
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 0px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(249, 222, 213, 0.452);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(139, 75, 107, 0.2);
    transition: all 0.3s ease;
}

:root.dark-mode nav.scrolled {
    background: rgba(10, 10, 10, 0.705);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(360deg) scale(1.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight-coral);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    margin: -10px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 1;
}

.hero-card {
    padding: 4rem 3rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0.1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--highlight-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Fixed Bottom Deposit Notice */
.fixed-deposit-notice {
    position: fixed;
    bottom: 80px;
    left: 20px;
    z-index: 161;
    animation: slideUpFade 0.8s ease-out;
    transition: all 0.3s ease;
}

.fixed-deposit-notice:hover {
    transform: translateY(-5px);
    z-index: 170;
}

/* Fixed Fee Policy Notice - More Prominent */
.fixed-fee-notice {
    position: fixed;
    bottom: 15px;
    left: 20px;
    z-index: 160;
    animation: slideUpFade 1s ease-out 0.3s both;
    transition: all 0.3s ease;
}

.fixed-fee-notice:hover {
    transform: translateY(-5px);
    z-index: 170;
}

/* When deposit notice is hidden, move fee notice up */
.fixed-fee-notice.move-up {
    bottom: 20px;
    transition: bottom 0.5s ease;
}

.deposit-notice-forward {
    bottom: 20px;
    transition: bottom 0.5s ease;
}

.deposit-notice-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gradient-accent);
    color: rgb(255, 255, 255);
    padding: 0.8rem 1.3rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(244, 91, 105, 0.4);
    border: 2px solid rgba(255, 255, 255);
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.deposit-notice-content i {
    font-size: 1.1rem;
    color: white;
}

.close-notice {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0 0 0 0.5rem;
    margin-left: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.close-notice:hover {
    opacity: 1;
}

/* Fee Notice Content - Serious Red Styling */
.fee-notice-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #d780df 0%, #5a378a 100%);
    color: white;
    padding: 1rem 1.1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.4);
    border: 2px solid rgba(255, 255, 255);
    white-space: nowrap;
    position: relative;
    max-width: 90vw;
}

.fee-notice-content i {
    font-size: 1.3rem;
    color: #ffeb3b;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.fee-text {
    text-align: center;
}

.fee-subtext {
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.3rem;
    opacity: 0.9;
    font-style: italic;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 91, 105, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    position: relative;
}

/* Deposit Notice Banner */
.deposit-notice {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    background: var(--gradient-accent);
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(244, 91, 105, 0.2);
    border: 2px solid rgb(255, 255, 255);
}

.deposit-notice i {
    font-size: 1.5rem;
    color: white;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-category {
    margin-top: 1.5rem;
}

.price-category h4 {
    font-size: 1.1rem;
    color: var(--highlight-coral);
    margin-bottom: 0.5rem;
    font-weight: 600;
}


/* Update service cards to be more interactive */
.service-card {
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Add expand indicator */
.service-card::after {
    content: '\f078'; /* Font Awesome chevron down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 1.2rem;
    color: var(--highlight-coral);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.service-card.expanded::after {
    content: '\f077'; /* Font Awesome chevron up */
    transform: rotate(180deg);
}

/* Hover state to indicate clickability */
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::after {
    opacity: 1;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Click me hint for first service card */

.service-card:first-child::before {
    content: 'Click to see pricing details';
    position: absolute;
    bottom: 1rem;
    right: 3.5rem;
    background: var(--highlight-coral);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 1;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s;
}

.service-card.expanded:first-child::before {
    opacity: 0;
    transition: opacity 0.3s;
}

@keyframes hint-animation {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(-5px); }
}

/* Enhanced expanded state */
.service-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    opacity: 0;
    position: relative;
}

.service-card.expanded .service-details {
    max-height: 800px;
    opacity: 1;
    overflow-y: auto;
    padding-right: 1rem; 
    margin-right: -0.5rem; 
}

.service-details::-webkit-scrollbar {
    width: 6px;
}

.service-details::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.service-details::-webkit-scrollbar-thumb {
    background: var(--highlight-coral);
    border-radius: 3px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Style the refill prices when expanded */
.refill-prices {
    display: grid;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--highlight-coral) transparent;
}

.refill-prices::-webkit-scrollbar {
    width: 6px;
}

.refill-prices::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.refill-prices::-webkit-scrollbar-thumb {
    background: var(--highlight-coral);
    border-radius: 3px;
}

.refill-prices::-webkit-scrollbar-thumb:hover {
    background: rgba(244, 91, 105, 0.8);
}

.refill-prices > div {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    line-height: 1.4;
}

.refill-prices > div:last-child {
    border-bottom: none;
}

.refill-prices > div:hover {
    padding-left: 0.5rem;
    color: var(--highlight-coral);
}

/* Add "View Details" text on hover */
.service-card:not(.expanded) .service-price::after {
    content: 'View Details →';
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:not(.expanded):hover .service-price::after {
    opacity: 0.8;
}

/* Visual feedback on click */
.service-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Add subtle glow when expanded */
.service-card.expanded {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(244, 91, 105, 0.1);
    border-color: rgba(244, 91, 105, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight-coral);
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: 7rem 2rem;
    background: rgba(139, 75, 107, 0.05);
    transition: background-color 0.3s ease;
}

:root.dark-mode .testimonials {
    background: rgba(0, 0, 0, 0.3);
}

.reviews-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 100px);
    text-align: center;
    margin-top: -1rem;
    margin-bottom: 2rem;
    color: var(--highlight-coral);
    font-weight: 600;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
}

/* Gallery */
.gallery {
    padding: 5rem 2rem;
}

.gallery-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 100px);
    text-align: center;
    margin-top: -1rem;
    margin-bottom: 2rem;
    color: var(--highlight-coral);
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: rgba(139, 75, 107, 0.08);
    transition: background-color 0.3s ease;
}

:root.dark-mode .contact {
    background: rgba(0, 0, 0, 0.5);
}

.contact-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 100px);
    text-align: center;
    margin-top: -1rem;
    margin-bottom: 2rem;
    color: var(--highlight-coral);
    font-weight: 600;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    padding: 2rem;
    border-radius: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--highlight-coral);
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    background: rgba(139, 75, 107, 0.1);
    text-align: center;
    transition: background-color 0.3s ease;
}

:root.dark-mode footer {
    background: rgba(0, 0, 0, 0.8);
}

/* Theme Toggle Button */
.theme-toggle-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 200;
}

.theme-toggle {
    background: rgba(230, 126, 34, 0.1);
    border: 2px solid var(--highlight-coral);
    color: var(--highlight-coral);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    z-index: 200;
}

.theme-toggle:hover {
    background: var(--highlight-coral);
    color: var(--background);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.theme-toggle:active {
    transform: translateY(0);
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--cream);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--highlight-coral);
    transform: translateY(-3px);
}

/* FIXED: Lunch Special Banner */
.lunch-special {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    background: var(--gradient-accent);
    color: white;
    font-weight: 600;
    cursor: pointer;
    z-index: 100;
    animation: pulse-banner 2s ease-in-out infinite;
    max-width: 300px;
    transition: opacity 0.3s ease;
}

/* Fixed animation that doesn't cause mobile issues */
@keyframes pulse-banner {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(244, 91, 105, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(244, 91, 105, 0.5);
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 10px;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
    padding: 1rem;
}

.booking-content {
    width: 90%;
    max-width: 600px;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
}

.booking-options {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.booking-option {
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: #e0c8d5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.booking-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Booking Modal Phone Number Styling */
.booking-option[href^="tel:"] {
    background: var(--gradient-accent);
    color: white;
    border: 2px solid rgba(244, 91, 105, 0.3);
}

.booking-option[href^="tel:"]:hover {
    background: linear-gradient(135deg, #ff6b7a 0%, #7a3a5e 100%);
    box-shadow: 0 15px 35px rgba(244, 91, 105, 0.4);
    border-color: rgba(244, 91, 105, 0.6);
}

.booking-option[href^="sms:"] {
    background: linear-gradient(135deg, var(--accent-green) 0%, #2d5a38 100%);
    color: white;
    border: 2px solid rgba(63, 120, 76, 0.3);
}

.booking-option[href^="sms:"]:hover {
    background: linear-gradient(135deg, #5fa76f 0%, #2d5a38 100%);
    box-shadow: 0 15px 35px rgba(63, 120, 76, 0.4);
    border-color: rgba(63, 120, 76, 0.6);
}

/* About Section */
.about {
    padding: 5rem 2rem;
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 100px);
    margin-bottom: 2rem;
    color: var(--highlight-coral);
    font-weight: 600;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-nav {
    list-style: none;
    margin-top: 3rem;
}

.mobile-nav li {
    margin-bottom: 1.5rem;
}

.mobile-nav a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Close button styling */
.close-menu {
    text-align: right;
    margin-bottom: 2rem;
}

.close-menu i {
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    margin: -10px;
}

/* Overlay for mobile menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    /* Hero adjustments */
    .hero-card {
        padding: 2rem 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    /* Fixed floating notices mobile adjustments */
    .fixed-deposit-notice {
        bottom: 120px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }

    .fixed-deposit-notice:hover {
        transform: translateY(-5px);
    }

    .fixed-fee-notice {
        bottom: 5px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }

    .fixed-fee-notice:hover {
        transform: translateY(-5px);
    }

    .fixed-fee-notice.move-up {
        bottom: 65px;
    }

    .deposit-notice-content {
        font-size: -11rem;
        padding: 0.7rem 1.2rem;
        gap: 0.6rem;
        white-space: normal;
        text-align: center;
        justify-content: center;
    }

    .deposit-notice-content i {
        font-size: 1rem;
    }

    .fee-notice-content {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
        gap: 0.8rem;
        white-space: normal;
        text-align: center;
        justify-content: center;
        flex-direction: column;
        max-width: 100%;
    }

    .fee-notice-content i {
        font-size: 1.2rem;
    }

    .fee-text {
        text-align: center;
    }

    .fee-subtext {
        font-size: 0.75rem;
        margin-top: 0.2rem;
    }

    .close-notice {
        position: absolute;
        top: -5px;
        right: 8px;
        font-size: 1.1rem;
        padding: 0;
        margin: 0;
    }

    /* Services */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Deposit notice mobile adjustments */
    .deposit-notice {
        margin: 0 1rem 2rem;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-card.expanded .service-details {
        max-height: 900px;
    }

    .refill-prices {
        font-size: 0.85rem;
        padding: 1rem;
        gap: 0.5rem;
        max-height: 700px;
    }

    .refill-prices > div {
        padding: 0.3rem 0;
        line-height: 1.3;
    }

    .service-price {
        font-size: 1.5rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 2rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .gallery-item {
        height: 200px;
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
    }

    /* Footer */
    .social-links {
        gap: 1.5rem;
    }

    /* FIXED: Lunch special for mobile */
    .lunch-special {
        display: none;
    }

    /* Booking modal */
    .booking-content {
        padding: 2rem;
    }

    /* Lightbox */
    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    /* Team grid */
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    /* Beauty orbs - reduce size on mobile */
    .beauty-orb:nth-child(1) {
        width: 200px;
        height: 200px;
    }

    .beauty-orb:nth-child(2) {
        width: 250px;
        height: 250px;
    }

    .beauty-orb:nth-child(3) {
        width: 150px;
        height: 150px;
    }

    /* Reduce padding on sections */
    .services, .testimonials, .gallery, .contact, .about {
        padding: 3rem 1rem;
    }

    /* Hide hint animation on mobile */
    .service-card:first-child::before {
        display: none;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .booking-option {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}

/* Performance optimizations */
.glass {
    will-change: transform;
    transform: translateZ(0);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    nav, .lunch-special, .booking-modal, .lightbox, .beauty-background, .gradient-mesh {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .glass {
        background: white !important;
        border: 1px solid black !important;
    }
}

/* Additional fixes for better usability */
/* Ensure all interactive elements have proper touch targets */
button, a, .service-card, .gallery-item, .booking-option {
    min-height: 44px;
    min-width: 44px;
}

/* Improve focus indicators for accessibility */
*:focus {
    outline: 2px solid var(--highlight-coral);
    outline-offset: 2px;
}

/* Prevent text selection on interactive elements */
.service-card, .gallery-item, .cta-button, .booking-option {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Ensure floating elements don't cause overflow */
#lashContainer, #sparkleContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

/* New Contact Section Styles */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-eyebrow {
    color: #d90669; /* A shade of orange */
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.contact-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -40px;
    width: 30px;
    height: 1px;
    background-color: #ffffff;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--cream);
}

.contact-container-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.contact-item-new {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon-new {
    background-color: #FF516A; /* A shade of orange */
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
}

.contact-details-new h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--cream);
}

.contact-details-new p {
    color: var(--cream);
    opacity: 0.8;
    line-height: 1.6;
}

/* Phone and Text Number Styling */
.contact-details-new a[href^="tel:"] {
    color: var(--highlight-coral);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-details-new a[href^="tel:"]:hover {
    color: #ff7a8a;
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(244, 91, 105, 0.4);
}

.contact-details-new a[href^="sms:"] {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-details-new a[href^="sms:"]:hover {
    color: #5fa76f;
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(63, 120, 76, 0.4);
}

/* Add subtle glow effect */
.contact-details-new a[href^="tel:"]:before {
    content: '📞 ';
    margin-right: 0.3rem;
    font-size: 0.9em;
}

.contact-details-new a[href^="sms:"]:before {
    content: '💬 ';
    margin-right: 0.3rem;
    font-size: 0.9em;
}


.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

@media (max-width: 768px) {
    .contact-container-new {
        grid-template-columns: 1fr;
    }

}
