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

:root {
    /* === Original Color Palette (Preserved) === */
    --cream-bg: rgb(253, 246, 235);
    --cream: rgb(253, 246, 235);
    --dark-text: rgb(64, 64, 65);
    --white: #FFFFFF;
    --black: #000000;
    --primary-pink: #D88EB0;
    
    /* === Extended Wellness Palette === */
    --blush: #E8C4D4;
    --rose-gold: #B76E79;
    --sage: #9CAF88;
    --lavender: #C8A2C8;
    --warm-gold: #C9A961;
    --accent-gold: #c9a961;
    --accent-gold-dark: #b8944d;

    /* === Aurora & Glow Effects === */
    --aurora-pink: rgba(216, 142, 176, 0.15);
    --aurora-cream: rgba(253, 246, 235, 0.8);
    --aurora-soft: rgba(216, 142, 176, 0.08);
    --aurora-1: rgba(216, 142, 176, 0.15);
    --aurora-2: rgba(200, 162, 200, 0.12);
    --aurora-3: rgba(156, 175, 136, 0.10);
    --glow-pink: rgba(216, 142, 176, 0.6);
    --glow-soft: rgba(216, 142, 176, 0.25);
    --glow-intense: rgba(216, 142, 176, 0.8);
    --glass-white: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: rgba(0, 0, 0, 0.08);
    --glass-blur: 20px;
    
    /* === Premium Shadows === */
    --shadow-sm: 0 2px 8px rgba(64, 64, 65, 0.06);
    --shadow-md: 0 8px 30px rgba(64, 64, 65, 0.10);
    --shadow-lg: 0 20px 60px rgba(64, 64, 65, 0.15);
    --shadow-glow: 0 0 40px var(--glow-soft);
    --shadow-float: 0 30px 60px rgba(64, 64, 65, 0.18);

    /* === Animation Timing === */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-zen: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* === Timing (Calm, slow, holistic) === */
    --duration-fast: 0.4s;
    --duration-normal: 0.6s;
    --duration-slow: 1s;
    --duration-zen: 1.5s;
    
    /* === Global Holistic Transition === */
    --holistic-transition: all 0.6s ease-in-out;
}

/* ================================================
   GLOBAL CALM & HOLISTIC TRANSITIONS
   ================================================ */

/* All buttons - calm, slow transitions */
button,
.btn,
[class*="-btn"],
input[type="submit"],
input[type="button"] {
    transition: all 0.6s ease-in-out !important;
}

/* All inputs and form elements - gentle focus transitions */
input,
textarea,
select {
    transition: all 0.5s ease-in-out !important;
}

/* Links - smooth color transitions */
a {
    transition: color 0.5s ease-in-out, background 0.5s ease-in-out, transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Cards and containers - gentle hover states */
[class*="-card"],
[class*="-box"],
[class*="-container"] {
    transition: all 0.6s ease-in-out;
}

/* ================================================
   WELLNESS-THEMED KEYFRAME ANIMATIONS
   ================================================ */

/* Aurora Gradient Float - Calming color wave */
@keyframes auroraFloat {

    0%,
    100% {
        background-position: 0% 50%;
        opacity: 0.6;
    }

    25% {
        background-position: 50% 0%;
        opacity: 0.8;
    }

    50% {
        background-position: 100% 50%;
        opacity: 0.6;
    }

    75% {
        background-position: 50% 100%;
        opacity: 0.8;
    }
}

/* Breathing Pulse - 4 second calm breathing rhythm */
@keyframes breathingPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--glow-soft);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 30px 10px var(--glow-soft);
    }
}

/* Floating Lotus Petal Animation */
@keyframes lotusFloat {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Lotus Petal Horizontal Sway */
@keyframes lotusSway {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(30px);
    }
}

/* Shimmer Text Effect */
@keyframes shimmerText {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Card Shine Sweep */
@keyframes cardShine {
    0% {
        left: -100%;
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Morphing Blob Animation */
@keyframes morphBlob {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }

    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    50% {
        border-radius: 50% 60% 30% 60% / 30% 50% 70% 50%;
        transform: rotate(180deg) scale(1.05);
    }

    75% {
        border-radius: 60% 30% 60% 50% / 60% 40% 50% 30%;
    }
}

/* Zen Circle Rotation */
@keyframes zenCircle {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.5;
    }

    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

/* Rotating Gradient Border */
@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Staggered Reveal Animation */
@keyframes staggerIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Text Reveal Animation */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Icon Bounce Animation */
@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Divider Shine Effect */
@keyframes dividerShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Scroll Indicator Pulse */
@keyframes scrollIndicator {

    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateY(10px);
    }
}

/* Cursor Glow Pulse */
@keyframes cursorGlowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Sparkle Twinkle */
@keyframes sparkleTwinkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Button Pulse Glow */
@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px var(--glow-soft);
    }

    50% {
        box-shadow: 0 8px 30px var(--glow-pink);
    }
}

/* Float Gentle */
@keyframes floatGentle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(2deg);
    }

    66% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

/* ================================================
   GLOBAL WELLNESS STYLES
   ================================================ */

/* Cursor Glow Trail */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--glow-soft) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    mix-blend-mode: screen;
}

.cursor-glow.active {
    opacity: 1;
    animation: cursorGlowPulse 3s ease-in-out infinite;
}

/* Floating Lotus Petals Container */
.floating-lotus-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.lotus-petal {
    position: absolute;
    width: 20px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-pink), var(--aurora-pink));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0;
    animation: lotusFloat 15s linear infinite, lotusSway 3s ease-in-out infinite;
    left: var(--start, 50%);
    animation-delay: var(--delay, 0s);
    filter: blur(1px);
}

.lotus-petal:nth-child(odd) {
    animation-duration: 18s, 4s;
    width: 15px;
    height: 22px;
}

.lotus-petal:nth-child(3n) {
    background: linear-gradient(135deg, rgba(253, 246, 235, 0.6), var(--aurora-pink));
}

/* Zen Circle Elements */
.zen-circle {
    position: absolute;
    border: 2px solid var(--aurora-pink);
    border-radius: 50%;
    animation: zenCircle 20s linear infinite;
    pointer-events: none;
}

.zen-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.zen-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 3%;
    animation-delay: -5s;
    animation-duration: 25s;
}

/* Morphing Blob */
.morph-blob {
    position: absolute;
    background: linear-gradient(135deg, var(--aurora-pink), var(--aurora-soft));
    animation: morphBlob 15s ease-in-out infinite;
    filter: blur(40px);
    pointer-events: none;
}

/* Aurora Background Layer */
.aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            transparent 0%,
            var(--aurora-soft) 25%,
            transparent 50%,
            var(--aurora-pink) 75%,
            transparent 100%);
    background-size: 400% 400%;
    animation: auroraFloat 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Shimmer Text Utility */
.shimmer-text {
    background: linear-gradient(90deg,
            var(--dark-text) 0%,
            var(--dark-text) 40%,
            var(--primary-pink) 50%,
            var(--dark-text) 60%,
            var(--dark-text) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s linear infinite;
}

/* Glassmorphism Utility */
.glass-effect {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
}

/* Card Shine Effect */
.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-25deg);
    transition: none;
    z-index: 10;
    pointer-events: none;
}

.card-shine:hover::before {
    animation: cardShine 0.8s ease-out;
}

/* Gradient Border Utility */
.gradient-border {
    position: relative;
    background: var(--cream-bg);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(135deg,
            var(--primary-pink),
            var(--cream-bg),
            var(--primary-pink));
    background-size: 200% 200%;
    animation: gradientRotate 3s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.gradient-border:hover::before,
.gradient-border:focus-within::before {
    opacity: 1;
}

/* Breathing Button */
.breathing-btn {
    animation: breathingPulse 4s ease-in-out infinite;
}

.breathing-btn:hover {
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 10px 40px var(--glow-pink);
}

/* Magnetic Button Container */
.magnetic-btn-wrap {
    display: inline-block;
}

/* Stagger Animation Utility */
.stagger-item {
    opacity: 0;
    transform: translateY(40px);
}

.stagger-item.visible {
    animation: staggerIn 0.6s var(--ease-smooth) forwards;
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {

    .cursor-glow,
    .lotus-petal,
    .zen-circle,
    .morph-blob,
    .aurora-bg,
    .shimmer-text,
    .card-shine::before,
    .breathing-btn {
        animation: none !important;
    }

    .lotus-petal {
        display: none;
    }
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, Helvetica, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--cream-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

@supports (padding: env(safe-area-inset-left)) {
    .site-header {
        padding-left: max(50px, env(safe-area-inset-left));
        padding-right: max(50px, env(safe-area-inset-right));
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

/* Flash Messages */
.flash-messages-container {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 0 2rem;
}

.flash-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flash-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.flash-text {
    flex: 1;
}

.flash-error {
    background: #fee;
    color: #c33;
    border-left: 4px solid #c33;
}

.flash-error .flash-icon {
    color: #c33;
}

.flash-success {
    background: #efe;
    color: #2a7;
    border-left: 4px solid #2a7;
}

.flash-success .flash-icon {
    color: #2a7;
}

.flash-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.flash-warning .flash-icon {
    color: #ffc107;
}

.flash-info {
    background: #e7f3ff;
    color: #0066cc;
    border-left: 4px solid #0066cc;
}

.flash-info .flash-icon {
    color: #0066cc;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 246, 235, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 50px;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s var(--ease-smooth);
}

/* Glassmorphism effect when scrolled */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    padding: 10px 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.site-header.scrolled .site-logo {
    height: 55px;
}

/* Gradient underline effect */
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-pink) 25%, 
        var(--lavender) 50%, 
        var(--primary-pink) 75%, 
        transparent 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.site-header.scrolled::after {
    opacity: 1;
    animation: gradientRotate 4s linear infinite;
}

/* Hide header on scroll down, show on scroll up */
.site-header.hide-nav {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-container a {
    display: flex;
    align-items: center;
    transition: transform 0.6s ease-in-out, opacity 0.5s ease-in-out;
}

.logo-container a:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

.mobile-menu-toggle {
    display: none;
}

.site-logo {
    height: 80px;
    width: auto;
    transition: all 0.6s ease-in-out;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.6s ease-in-out;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, var(--primary-pink), var(--dark-text));
    transition: all 0.6s ease-in-out;
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-pink);
}

.nav-menu a.active {
    font-weight: 600;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 110px;
}

/* Add padding when holiday banner is present */
body.holiday-christmas .hero-section,
body.holiday-black-friday .hero-section,
body.holiday-new-year .hero-section {
    margin-top: 180px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(1.1);
    animation: heroZoom 25s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroZoom {
    0% {
        transform: scale(1) translateY(0);
    }
    100% {
        transform: scale(1.15) translateY(-2%);
    }
}

/* Aurora Overlay for Hero - Enhanced */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(216, 142, 176, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 162, 200, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
    animation: auroraFloat 20s ease-in-out infinite;
    background-size: 200% 200%;
}

/* Vignette overlay */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Floating Zen Decorations for Hero */
.hero-section .hero-zen-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: zenCircle 30s linear infinite;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.hero-section .hero-zen-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: 5%;
    right: -100px;
    animation-delay: 0s;
}

.hero-section .hero-zen-circle:nth-child(2) {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: -60px;
    animation-delay: -10s;
    animation-duration: 35s;
}

.hero-section .hero-zen-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 10%;
    animation-delay: -5s;
    animation-duration: 25s;
    border-color: rgba(216, 142, 176, 0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 40px;
    max-width: 1000px;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.8;
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    animation: heroTextReveal 1s ease-out 0.1s both;
}

@keyframes heroTextReveal {
    0% {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-subtitle {
    font-size: 2.2rem;
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 300;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: heroTextReveal 1s ease-out 0.25s both;
}

.hero-tagline {
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: heroTextReveal 1s ease-out 0.4s both;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollIndicatorPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollIndicatorPulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(5px); }
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 0.8; }
    50% { transform: scaleY(0.5); opacity: 0.4; }
}

.philosophy-section {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.philosophy-section.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.philosophy-section.animate-in .philosophy-image {
    animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.philosophy-section.animate-in .philosophy-text {
    animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px) rotate(-5deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.section-label {
    font-size: 0.875rem;
    letter-spacing: 3px;
    color: var(--dark-text);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 300;
}

.section-label-center {
    font-size: 0.875rem;
    letter-spacing: 3px;
    color: var(--dark-text);
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
}

.section-title {
    font-size: 3rem;
    color: var(--dark-text);
    font-weight: 400;
    line-height: 1.3;
}

.section-title-center {
    font-size: 3rem;
    color: var(--dark-text);
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.philosophy-image img {
    width: 100%;
    border-radius: 50%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.philosophy-image img:hover {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.philosophy-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--dark-text);
}

.philosophy-text p {
    margin-bottom: 25px;
}

.philosophy-quote {
    margin: 50px 0;
    padding: 40px 50px;
    background: var(--white);
    border: none;
    font-style: italic;
    text-align: center;
}

.philosophy-quote p {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    line-height: 1.6;
}

.philosophy-quote cite {
    font-style: normal;
    color: var(--dark-text);
    font-size: 1rem;
}

.philosophy-label {
    font-size: 0.875rem;
    letter-spacing: 3px;
    color: var(--dark-text);
    margin-top: 40px;
    text-transform: uppercase;
    font-weight: 300;
}

.services-image-strip {
    width: 100%;
    --bg-overlay-color: transparent;
    --bg-gradient: none;
    --padding: 0px;
    --margin: 0px;
    --firstChildMarginTop: -1px;
    --lastChildMarginBottom: -1px;
    --direction: ltr;
}

.strip-bg-layers {
    height: 100%;
    left: 0;
    -webkit-mask-image: var(--mask-image, none);
    mask-image: var(--mask-image, none);
    -webkit-mask-position: var(--mask-position, 0);
    mask-position: var(--mask-position, 0);
    -webkit-mask-repeat: var(--mask-repeat, no-repeat);
    mask-repeat: var(--mask-repeat, no-repeat);
    -webkit-mask-size: var(--mask-size, 100%);
    mask-size: var(--mask-size, 100%);
    overflow: hidden;
    pointer-events: var(--fill-layer-background-media-pointer-events);
    position: absolute;
    top: 0;
    width: 100%;
}

.strip-color-underlay {
    background-color: var(--bg-overlay-color);
    background-image: var(--bg-gradient);
    transition: var(--inherit-transition);
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.strip-bg-media {
    height: 100%;
}

.strip-columns {
    column-gap: var(--margin);
    direction: var(--direction);
    display: flex;
    margin: 0 auto;
    position: relative;
    width: calc(100% - var(--padding)*2);
}

.image-column {
    --fill-layer-image-opacity: 1;
    --bg-overlay-color: transparent;
    --bg-gradient: none;
    width: 100%;
    --column-width: 980px;
    --column-flex: 980;
}

.column-bg-layers {
    height: 100%;
    left: 0;
    -webkit-mask-image: var(--mask-image, none);
    mask-image: var(--mask-image, none);
    -webkit-mask-position: var(--mask-position, 0);
    mask-position: var(--mask-position, 0);
    -webkit-mask-repeat: var(--mask-repeat, no-repeat);
    mask-repeat: var(--mask-repeat, no-repeat);
    -webkit-mask-size: var(--mask-size, 100%);
    mask-size: var(--mask-size, 100%);
    overflow: hidden;
    pointer-events: var(--fill-layer-background-media-pointer-events);
    position: absolute;
    top: 0;
    width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
    .column-bg-layers {
        overflow: clip;
    }
}

.column-color-underlay {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.column-bg-media {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
    .column-bg-media {
        will-change: var(--motion-bgreveal-will-change);
        height: calc(100% + 200lvh);
        margin-top: -100lvh;
        overflow: clip;
        isolation: isolate;
    }
}

.column-bg-img {
    height: var(--fill-layer-image-height, 100%);
    opacity: var(--fill-layer-image-opacity);
}

@media (prefers-reduced-motion: no-preference) {
    .column-bg-img {
        position: sticky;
        height: max(100lvh, calc(100% - 200lvh));
        width: 100%;
        top: 0px;
        margin-bottom: calc(100lvh - max(100lvh, var(--motion-comp-height, 100%)));
        display: block;
        padding: 0px;
    }
}

.column-inline-content {
    height: auto;
    width: 100%;
    position: static;
    min-height: 822px;
}

.column-content-grid {
    pointer-events: none;
}

.services-section {
    background: var(--white);
    padding: 80px 0 100px;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-section.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

.service-card {
    padding: 45px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(253, 246, 235, 0.5) 100%);
    border-radius: 24px;
    transition: all 0.6s var(--ease-smooth);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 3px solid transparent;
    background-clip: padding-box;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Animated gradient border - always visible */
.service-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 27px;
    background: linear-gradient(
        135deg,
        var(--primary-pink),
        var(--lavender),
        var(--blush),
        #fff,
        var(--primary-pink),
        var(--lavender)
    );
    background-size: 400% 400%;
    animation: serviceGradientFlow 12s ease-in-out infinite;
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}

.service-card:hover::before {
    opacity: 1;
    animation: serviceGradientFlow 8s ease-in-out infinite;
}

@keyframes serviceGradientFlow {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}


/* Card Shine Sweep Effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: skewX(-25deg);
    transition: none;
    z-index: 10;
    pointer-events: none;
}

.service-card:hover::after {
    animation: cardShine 1.2s ease-out;
}


.service-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.12), 
        0 15px 40px var(--glow-soft),
        0 0 0 1px rgba(216, 142, 176, 0.2);
    border-color: transparent;
}

.service-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--dark-text);
    font-weight: 500;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    line-height: 1.3;
}

.service-content {
    font-size: 0.95rem;
    line-height: 1.8;
}

.service-content p {
    color: var(--dark-text);
    margin-bottom: 15px;
}

.service-content p strong {
    font-weight: 600;
    color: var(--dark-text);
}

.pricing-note {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(64, 64, 65, 0.7);
}

.service-link {
    display: inline-block;
    padding: 12px 32px;
    background: var(--dark-text);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.6s ease-in-out;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.service-link:hover {
    background: rgba(64, 64, 65, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-section {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--cream-bg);
    opacity: 0;
    transform: translateY(80px) scale(0.9);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-section.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-section.animate-in .contact-text {
    animation: fadeInSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.contact-section.animate-in .contact-form {
    animation: fadeInSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 50px;
}

.contact-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--dark-text);
}

.contact-text p {
    margin-bottom: 25px;
}

.contact-phone {
    font-weight: 400;
    color: var(--dark-text);
    font-size: 1rem;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

/* Subtle Aurora Gradient on Form */
.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--aurora-soft) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(64, 64, 65, 0.1);
    border-radius: 12px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    transition: all 0.4s var(--ease-smooth);
    background: var(--cream-bg);
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 142, 176, 0.15), 0 0 0 4px rgba(216, 142, 176, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--dark-text) 0%, #2a2a2b 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover gradient overlay for smooth transition */
.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #c77a9e 100%);
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: -1;
    border-radius: 12px;
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(216, 142, 176, 0.3), 0 6px 20px var(--glow-soft);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 0;
    text-align: center;
    font-weight: 400;
    display: none;
}

.form-message.success {
    background: #D4EDDA;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #F8D7DA;
    color: #721C24;
    display: block;
}

.google-map-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.google-map-container iframe {
    width: 100%;
    display: block;
}

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Aurora effect in footer */
.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(216, 142, 176, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 50%, rgba(200, 162, 200, 0.06) 0%, transparent 40%);
    animation: auroraFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 30px;
}

/* Newsletter Section */
.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    max-width: 400px;
}

.newsletter-title {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #fff, #e8b4b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease-in-out;
}

.newsletter-input-group:focus-within {
    border-color: var(--primary-pink);
    box-shadow: 0 0 30px rgba(232, 180, 184, 0.2);
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 24px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-group input:focus {
    outline: none;
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-pink), #d4a0a4);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.8s ease-in-out;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.4);
}

.newsletter-btn .btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.8s ease-in-out;
}

.newsletter-btn:hover .btn-icon {
    transform: translateX(4px);
}

.newsletter-message {
    margin-top: 12px;
    font-size: 0.875rem;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
}

.newsletter-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none !important;
    transition: all 0.6s ease-in-out;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(232, 180, 184, 0.3);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer p {
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

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

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        padding: 50px 20px 25px;
    }

    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .newsletter-content {
        max-width: none;
    }

    .newsletter-title {
        font-size: 1.75rem;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 12px;
        padding: 8px;
    }

    .newsletter-input-group input {
        padding: 16px 20px;
        text-align: center;
    }

    .newsletter-btn {
        justify-content: center;
        width: 100%;
        padding: 16px;
        border-radius: 8px;
    }
}

@media (max-width: 1024px) {
    .site-header {
        padding: 15px 30px;
    }

    .site-logo {
        height: 60px;
    }

    .nav-menu {
        gap: 30px;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .philosophy-content {
        grid-template-columns: 250px 1fr;
        gap: 50px;
    }

    .philosophy-image img {
        max-width: 250px;
    }

    .services-image-strip {
        width: 100%;
    }

    .services-grid {
        padding: 0 30px;
        gap: 50px 30px;
    }

    .contact-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 10px 20px;
    }

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

    .site-logo {
        height: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--cream-bg);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
        margin: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.6s ease-in-out;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu a {
        font-size: 1.2rem;
        display: block;
        padding: 15px;
    }

    .nav-menu a::after {
        bottom: 5px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
        position: relative;
    }

    .mobile-menu-toggle span {
        width: 30px;
        height: 3px;
        background: var(--dark-text);
        border-radius: 10px;
        transition: all 0.6s ease-in-out;
        transform-origin: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

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

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .mobile-overlay.active {
        display: block;
        opacity: 1;
    }

    .hero-section {
        margin-top: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .philosophy-section {
        padding: 60px 20px;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-image img {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-title-center {
        font-size: 2.5rem;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-image-strip {
        width: 100%;
        min-width: auto;
    }

    .image-column {
        --motion-comp-height: 300px !important;
    }

    .column-inline-content {
        min-height: 300px;
    }

    .column-bg-media {
        height: 100% !important;
        margin-top: 0 !important;
        overflow: visible !important;
    }

    .column-bg-img {
        position: relative !important;
        height: 50vh !important;
        margin-bottom: 0 !important;
    }

    .column-bg-img img {
        width: 100% !important;
        height: 100% !important;
    }

    .services-section {
        padding: 40px 0 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 30px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-content {
        font-size: 0.9rem;
    }

    .service-link {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 14px;
        font-size: 0.95rem;
    }

    .footer {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 8px 15px;
    }

    .site-logo {
        height: 45px;
    }

    .hero-section {
        margin-top: 65px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .philosophy-section {
        padding: 50px 15px;
    }

    .section-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-title-center {
        font-size: 1.75rem;
    }

    .philosophy-image img {
        max-width: 180px;
    }

    .philosophy-text {
        font-size: 0.95rem;
    }

    .philosophy-quote p {
        font-size: 1.1rem;
    }

    .philosophy-quote cite {
        font-size: 0.85rem;
    }

    .services-section {
        padding: 30px 0 50px;
    }

    .services-grid {
        padding: 0 15px;
        gap: 25px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 1.35rem;
        margin-bottom: 15px;
    }

    .service-content {
        font-size: 0.85rem;
    }

    .service-link {
        padding: 10px 24px;
        font-size: 0.8rem;
    }

    .contact-section {
        padding: 50px 15px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .footer {
        padding: 40px 15px;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .nav-menu {
        width: 80%;
        padding: 70px 20px 20px;
        gap: 25px;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 12px;
    }
}

.booking-section {
    padding: 80px 50px;
    background: var(--cream-bg);
}

.section-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--dark-text);
    font-size: 1.1rem;
    opacity: 0.8;
}

.booking-places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

@media (min-width: 1600px) {
    .booking-places-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.booking-place-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.booking-place-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.booking-place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.booking-place-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.booking-place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-place-card:hover .booking-place-image img {
    transform: scale(1.1);
}

.booking-place-content {
    padding: 25px;
}

.booking-place-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.booking-place-description {
    color: var(--dark-text);
    opacity: 0.8;
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 0.95rem;
    overflow: hidden;
    max-height: 6.8em; /* Approximately 4 lines */
    transition: max-height 0.8s ease-in-out, opacity 0.5s ease-in-out;
}

.booking-place-description.expanded {
    max-height: 1000px; /* Large enough for any content */
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 15px;
    text-decoration: underline;
    opacity: 0.7;
    transition: opacity 0.5s ease-in-out;
}

.read-more-btn:hover {
    opacity: 1;
}

.booking-place-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--dark-text);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.6s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.booking-place-btn:hover {
    background: rgb(50, 50, 51);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 64, 65, 0.3);
}

.empty-booking-text {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--dark-text);
    opacity: 0.6;
    font-size: 1.1rem;
}

/* Experiences Section */
.experiences-section {
    padding: 80px 50px;
    background: var(--white);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.experience-card {
    background: var(--cream-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.8s ease-in-out;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.experience-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease-in-out;
}

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

/* Group Package Badge for One-Time Bookings */
.experience-image {
    position: relative;
}

.experience-image.no-image {
    background: linear-gradient(135deg, #f5f0e8 0%, #ebe5d9 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 80px;
    padding: 12px;
}

.group-package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #8B7355 0%, #a08060 50%, #b89070 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.experience-image.no-image .group-package-badge {
    position: relative;
    top: 0;
    right: 0;
}

.group-package-badge svg {
    flex-shrink: 0;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.group-package-badge span {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes shimmer {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(184, 134, 11, 0.6), 0 0 20px rgba(240, 192, 64, 0.3);
    }
}

.experience-content {
    padding: 25px;
}

.experience-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.experience-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--dark-text);
    opacity: 0.8;
}

.experience-date,
.experience-duration {
    display: flex;
    align-items: center;
    gap: 5px;
}

.experience-description {
    color: var(--dark-text);
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 50px;
}

.experience-description p {
    margin-bottom: 1rem;
}

.experience-description p:last-child {
    margin-bottom: 0;
}

.experience-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(64, 64, 65, 0.1);
    margin-bottom: 20px;
}

.experience-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

.experience-price .price-label {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.7;
}

.experience-spots {
    font-size: 0.9rem;
    color: var(--dark-text);
    font-weight: 500;
}

.experience-spots.fully-booked {
    color: #d32f2f;
}

.experience-spots.unavailable {
    color: #78909c;
    font-style: italic;
}

.book-experience-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--dark-text);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.book-experience-btn:hover:not(:disabled) {
    background: rgb(50, 50, 51);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 64, 65, 0.3);
}

.book-experience-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.experience-booking-form .booking-summary {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.experience-booking-form .booking-summary h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.experience-booking-form .booking-summary p {
    margin: 8px 0;
    color: var(--dark-text);
}

.booking-total {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.total-amount {
    color: var(--dark-text);
    font-size: 1.5rem;
}

.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: background 0.6s ease-in-out;
}

.booking-modal.active {
    background: rgba(0, 0, 0, 0.7);
}

.booking-modal-content {
    background: var(--cream-bg);
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(50px);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.booking-modal.active .booking-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.booking-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid rgba(64, 64, 65, 0.1);
}

.booking-modal-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--dark-text);
}

.booking-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--dark-text);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.booking-modal-close:hover {
    background: rgba(64, 64, 65, 0.1);
    transform: rotate(90deg);
}

#booking-modal-body {
    padding: 30px;
}

.booking-step {
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(64, 64, 65, 0.1);
    border: none;
    border-radius: 6px;
    color: var(--dark-text);
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.back-btn:hover {
    background: rgba(64, 64, 65, 0.2);
}

.step-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.selected-date-info {
    background: rgba(64, 64, 65, 0.05);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--dark-text);
    text-align: center;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
}

.date-btn {
    background: var(--white);
    border: 2px solid rgba(64, 64, 65, 0.1);
    border-radius: 12px;
    padding: 16px 12px;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.date-btn:hover {
    border-color: var(--dark-text);
    background: var(--dark-text);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(64, 64, 65, 0.2);
}

.date-day {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 4px;
}

.date-number {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.date-month {
    font-size: 0.85rem;
    opacity: 0.8;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.time-slot-option {
    background: var(--white);
    border: 2px solid rgba(64, 64, 65, 0.1);
    border-radius: 10px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
}

.time-slot-option:hover {
    border-color: var(--dark-text);
    background: var(--dark-text);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(64, 64, 65, 0.2);
}

.time-display {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.time-availability {
    font-size: 0.85rem;
    opacity: 0.7;
}

.booking-form {
    margin-top: 20px;
}

.booking-summary {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(64, 64, 65, 0.1);
}

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

.summary-label {
    font-weight: 500;
    opacity: 0.7;
}

.summary-value {
    font-weight: 600;
}

.submit-booking-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--dark-text);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.6s ease-in-out;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
}

.submit-booking-btn:hover:not(:disabled) {
    background: rgb(50, 50, 51);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(64, 64, 65, 0.3);
}

.submit-booking-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.discount-code-section {
    background: rgba(34, 139, 34, 0.05);
    border: 2px dashed rgba(34, 139, 34, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.discount-code-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.discount-code-input-group {
    display: flex;
    gap: 10px;
}

.discount-code-input-group input {
    flex: 1;
}

.btn-apply-code {
    padding: 12px 24px;
    background: var(--dark-text);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.btn-apply-code:hover:not(:disabled) {
    background: rgb(50, 50, 51);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 64, 65, 0.3);
}

.btn-apply-code:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#discount-message {
    margin-top: 12px;
}

#discount-message .success-message {
    color: rgb(34, 139, 34);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

#discount-message .error-message {
    color: rgb(220, 38, 38);
    font-weight: 500;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.booking-success {
    text-align: center;
    padding: 40px 20px;
}

.booking-success svg {
    color: #10b981;
    margin-bottom: 20px;
}

.booking-success h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.booking-success p {
    color: var(--dark-text);
    opacity: 0.8;
    margin-bottom: 12px;
    line-height: 1.7;
}

.booking-ref {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    margin: 20px 0;
}

.btn-primary {
    padding: 14px 32px;
    background: var(--dark-text);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
    background: rgb(50, 50, 51);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 64, 65, 0.3);
}

.booking-no-slots {
    text-align: center;
    padding: 40px 20px;
}

.booking-no-slots svg {
    color: rgba(64, 64, 65, 0.3);
    margin-bottom: 20px;
}

/* Duration Selection */
.duration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.duration-btn {
    background: var(--white);
    border: 2px solid rgba(64, 64, 65, 0.1);
    border-radius: 12px;
    padding: 24px 16px;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.duration-btn:hover {
    border-color: var(--dark-text);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(64, 64, 65, 0.15);
}

.duration-btn.selected {
    background: var(--dark-text);
    border-color: var(--dark-text);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(64, 64, 65, 0.25);
}

.duration-time {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.duration-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.step-description {
    text-align: center;
    color: rgba(64, 64, 65, 0.7);
    margin: 12px 0 24px;
    font-size: 0.95rem;
}

/* Time Slot Buttons */
.time-slot-btn {
    background: var(--white);
    border: 2px solid rgba(64, 64, 65, 0.1);
    border-radius: 10px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.time-slot-btn:hover {
    border-color: var(--dark-text);
    background: var(--dark-text);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(64, 64, 65, 0.2);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

.time-slots-grid::-webkit-scrollbar {
    width: 6px;
}

.time-slots-grid::-webkit-scrollbar-track {
    background: rgba(64, 64, 65, 0.05);
    border-radius: 10px;
}

.time-slots-grid::-webkit-scrollbar-thumb {
    background: rgba(64, 64, 65, 0.2);
    border-radius: 10px;
}

.time-slots-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(64, 64, 65, 0.3);
}

/* Selected Info */
.selected-info {
    background: var(--white);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
}

.info-item {
    padding: 8px 0;
    color: var(--dark-text);
}

.info-item strong {
    margin-right: 8px;
}

/* Loading Spinner */
.loading-spinner-center {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner-center .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(64, 64, 65, 0.1);
    border-top-color: var(--dark-text);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

.loading-spinner-center p {
    color: rgba(64, 64, 65, 0.7);
    font-size: 0.95rem;
}

/* Utility Classes */
.mt-4 {
    margin-top: 24px;
}

/* Month Navigation */
.month-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 24px 0;
    padding: 16px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid rgba(64, 64, 65, 0.1);
}

.month-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    flex: 1;
    text-align: center;
}

.month-nav-btn {
    background: var(--white);
    border: 2px solid rgba(64, 64, 65, 0.15);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    color: var(--dark-text);
    flex-shrink: 0;
}

.month-nav-btn:hover:not(:disabled) {
    background: var(--dark-text);
    border-color: var(--dark-text);
    color: var(--white);
    transform: scale(1.1);
}

.month-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.month-nav-btn svg {
    width: 20px;
    height: 20px;
}

.booking-no-slots h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.booking-no-slots p {
    color: var(--dark-text);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .booking-section {
        padding: 60px 20px;
    }

    .booking-places-grid {
        grid-template-columns: 1fr;
    }

    .date-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }

    .time-slots-grid {
        grid-template-columns: 1fr;
    }

    .booking-modal-content {
        max-height: 95vh;
    }

    #booking-modal-body {
        padding: 20px;
    }
}

/* Autocomplete Suggestions */
.autocomplete-suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 4px;
    width: 100%;
}

.autocomplete-item {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.autocomplete-item:hover {
    background: #f8f9fa;
}

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

.customer-name {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.customer-email {
    font-size: 0.9rem;
    color: #666;
}

/* Rendered HTML content in admin panel */
.rendered-content {
    line-height: 1.6;
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.rendered-content p {
    margin: 0 0 8px 0;
}

.rendered-content ul,
.rendered-content ol {
    margin: 8px 0;
    padding-left: 20px;
}

.rendered-content strong {
    font-weight: 600;
}

.rendered-content em {
    font-style: italic;
}

/* ===================================
   Gift Voucher Page Styles
   =================================== */

.gift-voucher-hero {
    background: linear-gradient(135deg, var(--cream-bg) 0%, #f5e6d3 100%);
    padding: 120px 50px 80px;
    text-align: center;
}

.gift-voucher-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.gift-voucher-hero-content .section-description {
    font-size: 1.2rem;
    color: var(--dark-text);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.gift-voucher-main {
    padding: 80px 50px;
    background: var(--white);
}

.gift-voucher-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.gift-voucher-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.gift-voucher-info>p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
    opacity: 0.8;
    margin-bottom: 40px;
}

.gift-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gift-benefit {
    display: flex;
    align-items: start;
    gap: 15px;
    opacity: 0;
    transform: translateX(-20px);
    animation: benefitSlideIn 0.8s ease-out forwards;
    transition: all 0.6s ease-in-out;
}

.gift-benefit:nth-child(1) { animation-delay: 0.1s; }
.gift-benefit:nth-child(2) { animation-delay: 0.2s; }
.gift-benefit:nth-child(3) { animation-delay: 0.3s; }
.gift-benefit:nth-child(4) { animation-delay: 0.4s; }
.gift-benefit:nth-child(5) { animation-delay: 0.5s; }

.gift-benefit:hover {
    transform: translateX(10px);
}

.gift-benefit:hover .benefit-icon {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(216, 142, 176, 0.4);
}

@keyframes benefitSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.6s ease-in-out;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.gift-benefit h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 5px 0;
}

.gift-benefit p {
    font-size: 0.95rem;
    color: var(--dark-text);
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

.gift-voucher-form-card {
    background: var(--cream-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gift-voucher-form-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--dark-text);
    margin: 0 0 30px 0;
}

.form-section {
    margin-bottom: 35px;
}

.form-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 20px 0;
}

.preset-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.amount-btn {
    padding: 18px;
    border: 2px solid #e0d5c7;
    background: white;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    transition: all 0.6s ease-in-out;
}

.amount-btn:hover {
    border-color: var(--primary-pink);
    background: var(--white);
    transform: translateY(-2px);
}

.amount-btn.selected {
    border-color: var(--primary-pink);
    background: var(--primary-pink);
    color: white;
}

.custom-amount-input {
    margin-top: 20px;
}

.custom-amount-input label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.currency-input {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
}

.currency-input input {
    width: 100%;
    padding: 14px 14px 14px 38px;
    border: 2px solid #e0d5c7;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.6s ease-in-out;
}

.currency-input input:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0d5c7;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.6s ease-in-out;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.form-summary {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
}

.summary-amount {
    color: var(--primary-pink);
    font-size: 1.5rem;
}

.btn-purchase {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    background: var(--primary-pink);
    color: white;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.btn-purchase:hover {
    background: #c78ca0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 142, 176, 0.3);
}

/* Discount Code Input Styles */
.discount-code-section {
    background: var(--cream-bg);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.discount-code-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 15px 0;
}

.discount-code-input-group {
    display: flex;
    gap: 10px;
}

.discount-code-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0d5c7;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.discount-code-input-group input:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.btn-apply-code {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: var(--primary-pink);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.btn-apply-code:hover {
    background: #c78ca0;
}

.btn-apply-code:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.discount-applied {
    background: #e8f5e9;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount-applied-text {
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-remove-code {
    background: none;
    border: none;
    color: #d32f2f;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
}

.discount-error {
    color: #d32f2f;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .gift-voucher-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gift-voucher-hero {
        padding: 100px 30px 60px;
    }

    .gift-voucher-main {
        padding: 60px 30px;
    }

    .gift-voucher-form-card {
        padding: 30px 25px;
    }
}

@media (max-width: 600px) {
    .preset-amounts {
        grid-template-columns: 1fr;
    }

    .gift-voucher-hero-content h1 {
        font-size: 2.2rem;
    }

    .discount-code-input-group {
        flex-direction: column;
    }

    .btn-apply-code {
        width: 100%;
    }
}

/* Gift Voucher Promo Section on Home Page */
.gift-voucher-promo-section {
    padding: 120px 50px;
    background: linear-gradient(135deg, #f8f3ec 0%, #fdf6eb 50%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.gift-voucher-promo-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(216, 142, 176, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    animation: gentleFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.gift-voucher-promo-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 162, 200, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: gentleFloat 25s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
    75% { transform: translateY(-35px) rotate(1deg); }
}

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

.gift-voucher-promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gift-voucher-promo-text .section-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.gift-voucher-promo-text .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--dark-text);
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.gift-voucher-promo-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
    opacity: 0.85;
    margin-bottom: 35px;
}

.gift-voucher-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.gift-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--dark-text);
    opacity: 0;
    transform: translateX(-15px);
    animation: featureSlideIn 0.8s ease-out forwards;
    transition: all 0.6s ease-in-out;
}

.gift-feature:nth-child(1) { animation-delay: 0.1s; }
.gift-feature:nth-child(2) { animation-delay: 0.2s; }
.gift-feature:nth-child(3) { animation-delay: 0.3s; }
.gift-feature:nth-child(4) { animation-delay: 0.4s; }
.gift-feature:nth-child(5) { animation-delay: 0.5s; }

.gift-feature:hover {
    transform: translateX(8px);
    color: var(--primary-pink);
}

.gift-feature:hover svg {
    transform: scale(1.2);
}

@keyframes featureSlideIn {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gift-feature svg {
    transition: all 0.6s ease-in-out;
    color: var(--primary-pink);
    flex-shrink: 0;
}

.gift-voucher-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--primary-pink);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.8s ease-in-out;
    box-shadow: 0 4px 15px rgba(216, 142, 176, 0.3);
    position: relative;
    z-index: 10;
}

.gift-voucher-cta-btn:hover {
    background: #c78ca0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 142, 176, 0.4);
}

.gift-voucher-cta-btn svg {
    transition: transform 0.8s ease-in-out;
}

.gift-voucher-cta-btn:hover svg {
    transform: translateX(5px);
}

/* Gift Card Mockup */
.gift-voucher-promo-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.gift-card-mockup {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1.6;
    perspective: 1500px;
    animation: cardFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 40px 80px rgba(216, 142, 176, 0.3));
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: translateY(-15px) rotateY(3deg) rotateX(2deg);
    }
    50% {
        transform: translateY(-25px) rotateY(-2deg) rotateX(-1deg);
    }
    75% {
        transform: translateY(-10px) rotateY(1deg) rotateX(1deg);
    }
}

.gift-card-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        var(--primary-pink) 0%, 
        #c78ca0 40%,
        var(--lavender) 70%,
        var(--primary-pink) 100%
    );
    background-size: 200% 200%;
    animation: gradientRotate 8s ease infinite;
    border-radius: 24px;
    padding: 30px 35px;
    box-shadow: 
        0 30px 80px rgba(216, 142, 176, 0.4),
        0 15px 40px rgba(216, 142, 176, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Holographic shine effect */
.gift-card-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 20%,
        rgba(255, 255, 255, 0.1) 35%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 65%,
        transparent 80%
    );
    transform: rotate(45deg);
    pointer-events: none;
    animation: holoShine 5s ease-in-out infinite;
}

@keyframes holoShine {
    0%, 100% { transform: rotate(45deg) translateX(-100%); }
    50% { transform: rotate(45deg) translateX(100%); }
}

.gift-card-pattern {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gift-card-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gift-card-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.gift-card-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
}

.gift-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gift-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gift-card-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: white;
    line-height: 1;
}

.gift-card-code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-top: 4px;
}

/* Responsive Design for Gift Voucher Promo */
@media (max-width: 1024px) {
    .gift-voucher-promo-content {
        gap: 50px;
    }

    .gift-voucher-promo-text .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .gift-voucher-promo-section {
        padding: 80px 30px;
    }

    .gift-voucher-promo-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .gift-voucher-promo-text .section-title {
        font-size: 2.5rem;
    }

    .gift-card-mockup {
        max-width: 350px;
    }

    .gift-card-inner {
        padding: 20px 25px;
    }

    .gift-card-logo {
        font-size: 1.4rem;
    }

    .gift-card-value {
        font-size: 2.4rem;
    }

    .gift-card-code {
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .gift-voucher-promo-section {
        padding: 60px 20px;
    }

    .gift-voucher-promo-text .section-title {
        font-size: 2rem;
    }

    .gift-voucher-promo-description {
        font-size: 1rem;
    }

    .gift-voucher-cta-btn {
        padding: 16px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .gift-card-mockup {
        max-width: 280px;
    }

    .gift-card-inner {
        padding: 18px 22px;
    }

    .gift-card-logo {
        font-size: 1.2rem;
    }

    .gift-card-value {
        font-size: 2rem;
    }
}

/* ================================================
   Service Book Now Button
   ================================================ */

.service-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent-gold, #c9a961) 0%, var(--accent-gold-dark, #b8944d) 100%);
    color: var(--cream, #fdf6eb);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.8s ease-in-out;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
    margin-top: 16px;
}

.service-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
    background: linear-gradient(135deg, var(--accent-gold-dark, #b8944d) 0%, var(--accent-gold, #c9a961) 100%);
}

.service-book-btn:active {
    transform: translateY(0);
}

.service-book-btn svg {
    flex-shrink: 0;
}

/* ================================================
   Place Selection Grid for Service Booking
   ================================================ */

.places-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.place-selection-card {
    border: 2px solid rgba(64, 64, 65, 0.1);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white, #ffffff);
    transition: all 0.6s ease-in-out;
    display: flex;
    flex-direction: column;
}

.place-selection-card:hover {
    border-color: var(--accent-gold, #c9a961);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.place-selection-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(64, 64, 65, 0.05);
}

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

.place-selection-card:hover .place-selection-image img {
    transform: scale(1.05);
}

.place-selection-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.place-selection-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary, #404041);
    margin-bottom: 12px;
}

.place-selection-description {
    color: rgba(64, 64, 65, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    max-height: 6.4em; /* Approximately 4 lines */
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
}

.place-selection-description.expanded {
    max-height: 1000px; /* Large enough for any content */
}

.choose-place-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--primary, #404041);
    color: var(--white, #ffffff);
    border: none;
    border-radius: 8px;
    transition: all 0.6s ease-in-out;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    margin-top: auto;
}

.choose-place-btn:hover {
    background: var(--primary-dark, #2b2b2c);
    transform: translateX(4px);
}

.choose-place-btn svg {
    transition: transform 0.3s ease;
}

.choose-place-btn:hover svg {
    transform: translateX(4px);
}

/* Duration Button States */
.duration-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(64, 64, 65, 0.05);
}

.duration-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .places-selection-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .place-selection-image {
        height: 180px;
    }

    .service-book-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================================================
   Wider Modal for Place Selection Step
   ================================================ */

.booking-modal.place-selection-modal .booking-modal-content {
    max-width: 1200px;
    width: 95%;
}

/* Override for place selection step specifically */
body.wide-modal .booking-modal-content {
    max-width: 1200px !important;
    width: 95% !important;
}

/* ================================================
   Masonry-Style Place Grid (Like Old Booking Grid)
   ================================================ */

.places-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 32px;
    align-items: start;
    /* Masonry alignment */
}

/* Enhanced Place Cards */
.place-selection-card {
    border: 2px solid rgba(64, 64, 65, 0.08);
    border-radius: 20px;
    overflow: hidden;
    background: var(--white, #ffffff);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.place-selection-card:hover {
    border-color: var(--accent-gold, #c9a961);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.2);
    transform: translateY(-6px);
}

.place-selection-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(64, 64, 65, 0.05) 100%);
    position: relative;
}

.place-selection-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.place-selection-card:hover .place-selection-image::after {
    opacity: 1;
}

.place-selection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.place-selection-card:hover .place-selection-image img {
    transform: scale(1.08);
}

.place-selection-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.place-selection-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary, #404041);
    margin-bottom: 16px;
    line-height: 1.3;
}

.place-selection-description {
    color: rgba(64, 64, 65, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.choose-place-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary, #404041) 0%, #2b2b2c 100%);
    color: var(--white, #ffffff);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(64, 64, 65, 0.2);
}

.choose-place-btn:hover {
    background: linear-gradient(135deg, #2b2b2c 0%, var(--primary, #404041) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 64, 65, 0.3);
}

.choose-place-btn svg {
    transition: transform 0.6s ease-in-out;
}

.choose-place-btn:hover svg {
    transform: translateX(6px);
}

/* Mobile Responsive for Masonry Grid */
@media (max-width: 1024px) {
    .places-selection-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }

    body.wide-modal .booking-modal-content {
        max-width: 95% !important;
    }
}

@media (max-width: 768px) {
    .places-selection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .place-selection-image {
        height: 200px;
    }

    .place-selection-content {
        padding: 24px;
    }

    body.wide-modal .booking-modal-content {
        max-width: 100% !important;
        width: 100% !important;
    }
}