:root {
            --zen-bg: #fcfcfd;
            --zen-white: #ffffff;
            --zen-gray-light: #f4f6f8;
            --zen-gray-card: #f8fafc;
            --zen-gray-border: rgba(148, 163, 184, 0.2);
            --zen-text-main: #1e293b;
            --zen-text-muted: #64748b;
            --zen-text-light: #94a3b8;
            
            /* Cherry Blossom / Sakura Palette */
            --sakura-pink-light: #fff0f5;
            --sakura-pink-mid: #f9d8e3;
            --sakura-pink: #e899ad;
            --sakura-pink-dark: #c86b84;
            --sakura-accent: #b0526b;

            /* Luxury Gold Touch */
            --gold-accent: #c5a059;
            --gold-light: #f4e8cb;

            /* Glassmorphism Specs */
            --glass-bg: rgba(255, 255, 255, 0.72);
            --glass-bg-hover: rgba(255, 255, 255, 0.88);
            --glass-border: rgba(255, 255, 255, 0.85);
            --glass-shadow: 0 15px 35px -10px rgba(232, 153, 173, 0.15), 0 5px 15px rgba(0, 0, 0, 0.03);
            --glass-shadow-hover: 0 20px 45px -10px rgba(232, 153, 173, 0.28), 0 8px 25px rgba(0, 0, 0, 0.05);

            --border-radius-pill: 50px;
            --border-radius-card: 24px;
            --border-radius-sm: 16px;
        }

        /* Base & Typography */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Ensure html and body keep overflow visible so sticky viewport scrolling functions perfectly */
        html, body {
            overflow-x: visible;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--zen-bg);
            color: var(--zen-text-main);
            position: relative;
            line-height: 1.7;
        }

        h1, h2, h3, h4, .font-serif {
            font-family: 'Cormorant Garamond', serif;
            letter-spacing: -0.01em;
            color: #0f172a;
        }

        p {
            color: var(--zen-text-muted);
            font-weight: 400;
        }

        /* Ambient Petals Canvas (Restricted to Hero) */
        #sakura-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        /* Glassmorphism Utility */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius-card);
            box-shadow: var(--glass-shadow);
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .glass-card:hover {
            background: var(--glass-bg-hover);
            box-shadow: var(--glass-shadow-hover);
            transform: translateY(-4px);
        }

        .glass-pill {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius-pill);
        }

        /* Top Navbar */
        .navbar-zen {
            position: fixed;
            top: 20px;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 8px 18px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: var(--border-radius-pill);
            box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 0 1px 1px rgba(232, 153, 173, 0.1);
        }

        .navbar-brand-logo {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--sakura-pink-mid);
            box-shadow: 0 2px 10px rgba(232, 153, 173, 0.25);
        }

        .brand-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.45rem;
            font-weight: 700;
            line-height: 1.1;
            color: #0f172a;
            letter-spacing: 0.5px;
        }

        .brand-sub {
            font-size: 0.68rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            color: var(--sakura-accent);
            font-weight: 600;
            display: block;
        }

        .nav-link-zen {
            font-size: 0.9rem;
            font-weight: 500;
            color: #334155;
            padding: 8px 16px;
            border-radius: var(--border-radius-pill);
            transition: all 0.25s ease;
            text-decoration: none;
        }

        .nav-link-zen:hover {
            color: var(--sakura-accent);
            background: var(--sakura-pink-light);
        }

        /* Buttons */
        .btn-zen-primary {
            background: linear-gradient(135deg, var(--sakura-pink) 0%, var(--sakura-pink-dark) 100%);
            color: #ffffff !important;
            border: none;
            padding: 10px 24px;
            border-radius: var(--border-radius-pill);
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            box-shadow: 0 8px 20px -3px rgba(200, 107, 132, 0.35);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-zen-primary:hover {
            background: linear-gradient(135deg, var(--sakura-pink-dark) 0%, var(--sakura-accent) 100%);
            box-shadow: 0 12px 25px -4px rgba(200, 107, 132, 0.5);
            transform: translateY(-2px);
            color: #ffffff;
        }

        .btn-zen-outline {
            background: rgba(255, 255, 255, 0.8);
            color: #1e293b !important;
            border: 1px solid rgba(200, 107, 132, 0.25);
            padding: 10px 24px;
            border-radius: var(--border-radius-pill);
            font-weight: 600;
            font-size: 0.9rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-zen-outline:hover {
            background: #ffffff;
            border-color: var(--sakura-pink);
            color: var(--sakura-accent) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(232, 153, 173, 0.2);
        }

        /* Pinned Scroll Wrapper for the 1000px Zen Awakening */
        .hero-scroll-wrapper {
            position: relative;
            height: 2200px; /* Gives 1000px of pure pinned scroll interaction + viewport */
            overflow: visible !important;
            background: radial-gradient(circle at 50% 20%, rgba(255, 240, 245, 0.8) 0%, rgba(252, 252, 253, 1) 70%);
        }

        /* Hero Section (Sticky during the first 1000px) */
        .hero-section {
            position: -webkit-sticky !important;
            position: sticky !important;
            top: 0 !important;
            left: 0;
            width: 100%;
            height: 100vh;
            min-height: 100vh;
            padding-top: 90px;
            padding-bottom: 40px;
            display: flex;
            align-items: center;
            background: radial-gradient(circle at 50% 20%, rgba(255, 240, 245, 0.8) 0%, rgba(252, 252, 253, 0) 70%);
            overflow: hidden;
            z-index: 20;
        }

        /* Ambient Dawn Mist (Cool, serene morning at scroll 0) */
        .hero-dawn-mist {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 68% 60%, rgba(219, 234, 254, 0.5) 0%, rgba(243, 232, 255, 0.3) 40%, rgba(252, 252, 253, 0) 75%);
            pointer-events: none;
            z-index: 1;
            transition: opacity 0.3s ease;
        }

        /* Radiant Sunrise Illumination (Warm golden glow that blooms as the sun ascends) */
        .hero-sunrise-radiance {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 36%, rgba(255, 213, 79, 0.42) 0%, rgba(255, 171, 145, 0.28) 32%, rgba(255, 240, 245, 0.15) 55%, rgba(252, 252, 253, 0) 80%);
            pointer-events: none;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.1s linear;
        }

        /* Story Scroll Indicator Badge */
        .scroll-story-indicator {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(255, 255, 255, 0.95);
            border-radius: var(--border-radius-pill);
            padding: 8px 22px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(232, 153, 173, 0.25);
            z-index: 25;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
            user-select: none;
        }

        .scroll-story-indicator:hover {
            transform: translateX(-50%) translateY(-2px);
            box-shadow: 0 14px 35px rgba(232, 153, 173, 0.38);
            background: #ffffff;
        }

        .scroll-indicator-mouse {
            width: 16px;
            height: 24px;
            border: 2px solid var(--sakura-accent);
            border-radius: 10px;
            position: relative;
            flex-shrink: 0;
        }

        .scroll-indicator-wheel {
            position: absolute;
            top: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 6px;
            background: var(--sakura-accent);
            border-radius: 2px;
            animation: scroll-wheel 1.5s infinite;
        }

        @keyframes scroll-wheel {
            0% { opacity: 1; transform: translateX(-50%) translateY(0); }
            100% { opacity: 0; transform: translateX(-50%) translateY(8px); }
        }

        .scroll-story-text {
            font-size: 0.82rem;
            font-weight: 600;
            color: #334155;
            white-space: nowrap;
        }

        .scroll-progress-bar-wrap {
            width: 50px;
            height: 5px;
            background: rgba(226, 232, 240, 0.85);
            border-radius: 3px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .scroll-progress-bar-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--sakura-pink), var(--sakura-accent));
            border-radius: 3px;
            transition: width 0.08s linear;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            background: rgba(255, 240, 245, 0.85);
            border: 1px solid var(--sakura-pink-mid);
            border-radius: var(--border-radius-pill);
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--sakura-accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 22px;
        }

        .hero-title {
            font-size: 3.8rem;
            font-weight: 600;
            line-height: 1.08;
            margin-bottom: 24px;
            color: #0f172a;
        }

        .hero-title .highlight-sakura {
            color: var(--sakura-accent);
            font-style: italic;
            position: relative;
            display: inline-block;
        }

        .hero-title .highlight-sakura::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--sakura-pink-mid);
            opacity: 0.45;
            z-index: -1;
            border-radius: 4px;
        }

        .hero-desc {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--zen-text-muted);
            margin-bottom: 35px;
            max-width: 540px;
        }

        /* Hero Tree & Visual Composition */
        .hero-visual-box {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .cherry-tree-glow {
            position: absolute;
            width: 440px;
            height: 440px;
            background: radial-gradient(circle, rgba(255, 224, 130, 0.6) 0%, rgba(249, 216, 227, 0.5) 45%, rgba(255, 240, 245, 0.2) 65%, rgba(255, 255, 255, 0) 75%);
            border-radius: 50%;
            filter: blur(28px);
            z-index: 1;
            opacity: 0.35;
            transition: opacity 0.2s ease, transform 0.2s ease;
            will-change: transform, opacity;
        }

        .tree-illustration-wrap {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 500px;
            text-align: center;
            will-change: transform;
            perspective: 1000px;
        }

        .cherry-blossom-svg {
            width: 100%;
            max-height: 480px;
            filter: drop-shadow(0 20px 35px rgba(232, 153, 173, 0.22));
            overflow: visible;
            transform-origin: 50% 90%;
            transition: filter 0.4s ease;
        }

        /* Subtle organic breathing sway on blossom clusters */
        .blossom-cluster-1 {
            transform-origin: 190px 170px;
            animation: blossom-sway 6.5s ease-in-out infinite alternate;
        }

        .blossom-cluster-2 {
            transform-origin: 270px 140px;
            animation: blossom-sway 8s ease-in-out infinite alternate-reverse;
        }

        .blossom-cluster-3 {
            transform-origin: 360px 180px;
            animation: blossom-sway 7s ease-in-out infinite alternate;
        }

        @keyframes blossom-sway {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(1.4deg) scale(1.018); }
            100% { transform: rotate(-1.2deg) scale(0.985); }
        }

        /* Enso Zen Circle & Layers Parallax Targets */
        #zen-enso-circle {
            transform-origin: 270px 270px;
            will-change: transform;
            transition: transform 0.08s ease-out;
        }

        #sakura-blossoms-layer {
            transform-origin: 270px 280px;
            will-change: transform;
            transition: transform 0.1s ease-out;
        }

        #sakura-trunk-layer {
            transform-origin: 270px 450px;
            will-change: transform;
            transition: transform 0.12s ease-out;
        }

        .floating-stat-card {
            position: absolute;
            z-index: 3;
            padding: 12px 20px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float-card 5s ease-in-out infinite alternate;
        }

        .stat-card-1 {
            top: 15%;
            left: -5%;
        }

        .stat-card-2 {
            bottom: 12%;
            right: -2%;
            animation-delay: 2.5s;
        }

        @keyframes float-card {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-10px); }
        }

        .stat-icon-circle {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            background: var(--sakura-pink-light);
            color: var(--sakura-accent);
        }

        /* Section Dividers & Headers */
        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 55px auto;
        }

        .section-tag {
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--sakura-accent);
            display: inline-block;
            margin-bottom: 12px;
            position: relative;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--zen-text-muted);
            line-height: 1.7;
        }

        /* Services Section (Requested Light Gray Aesthetic) */
        .services-section {
            background-color: var(--zen-gray-light);
            padding: 100px 0;
            position: relative;
            border-top: 1px solid rgba(226, 232, 240, 0.8);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 45px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(203, 213, 225, 0.7);
            color: #475569;
            padding: 8px 20px;
            border-radius: var(--border-radius-pill);
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .filter-btn.active, .filter-btn:hover {
            background: #ffffff;
            color: var(--sakura-accent);
            border-color: var(--sakura-pink);
            box-shadow: 0 4px 14px rgba(232, 153, 173, 0.2);
        }

        /* Service Cards */
        .service-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.35s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
        }

        .service-card:hover {
            transform: translateY(-6px);
            background: #ffffff;
            box-shadow: 0 16px 35px -8px rgba(232, 153, 173, 0.25), 0 4px 15px rgba(0, 0, 0, 0.04);
            border-color: var(--sakura-pink-mid);
        }

        .service-img-wrap {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .service-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover .service-img-wrap img {
            transform: scale(1.06);
        }

        .service-badge-duration {
            position: absolute;
            top: 14px;
            right: 14px;
            background: rgba(15, 23, 42, 0.65);
            backdrop-filter: blur(8px);
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: var(--border-radius-pill);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .service-badge-tag {
            position: absolute;
            bottom: 14px;
            left: 14px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(8px);
            color: var(--sakura-accent);
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            padding: 4px 12px;
            border-radius: var(--border-radius-pill);
        }

        .service-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #0f172a;
        }

        .service-desc {
            font-size: 0.92rem;
            line-height: 1.65;
            color: var(--zen-text-muted);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .service-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid rgba(226, 232, 240, 0.8);
        }

        .service-benefits-pill {
            font-size: 0.78rem;
            color: var(--zen-text-light);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* About Gloria Section */
        .about-section {
            padding: 100px 0;
            background: #ffffff;
            position: relative;
        }

        .about-portrait-wrap {
            position: relative;
            max-width: 420px;
            margin: 0 auto;
        }

        .about-portrait-img {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12), 0 0 0 12px rgba(255, 240, 245, 0.6);
            object-fit: cover;
        }

        .about-cert-badge {
            position: absolute;
            bottom: -20px;
            right: -10px;
            background: #ffffff;
            padding: 14px 22px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--sakura-pink-mid);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-quote-box {
            background: rgba(255, 240, 245, 0.4);
            border-left: 3px solid var(--sakura-pink);
            padding: 20px 24px;
            border-radius: 0 16px 16px 0;
            margin: 25px 0;
            font-style: italic;
            color: #334155;
            font-size: 1.05rem;
        }

        /* Sanctuary / Clean White Space Section */
        .sanctuary-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff 0%, var(--zen-gray-light) 100%);
            position: relative;
        }

        .feature-card {
            background: #ffffff;
            border: 1px solid rgba(226, 232, 240, 0.9);
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        }

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: var(--sakura-pink-mid);
            box-shadow: 0 12px 30px rgba(232, 153, 173, 0.15);
        }

        .feature-icon-box {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px auto;
            border-radius: 50%;
            background: var(--sakura-pink-light);
            color: var(--sakura-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon-box {
            transform: scale(1.1) rotate(5deg);
        }

        /* Medical & Holistic Benefits Section */
        .benefits-section {
            padding: 90px 0;
            background: #ffffff;
        }

        .benefit-row-card {
            background: var(--zen-gray-card);
            border-radius: 18px;
            padding: 24px 28px;
            margin-bottom: 20px;
            border: 1px solid rgba(226, 232, 240, 0.8);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: all 0.25s ease;
        }

        .benefit-row-card:hover {
            background: #ffffff;
            border-color: var(--sakura-pink-mid);
            box-shadow: 0 8px 25px rgba(232, 153, 173, 0.12);
            transform: translateX(4px);
        }

        .benefit-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: #ffffff;
            border: 1px solid var(--sakura-pink-mid);
            color: var(--sakura-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 90px 0;
            background: var(--zen-gray-light);
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 30px 26px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            background: #ffffff;
            box-shadow: 0 12px 30px rgba(232, 153, 173, 0.15);
        }

        .stars-gold {
            color: #f59e0b;
            font-size: 0.9rem;
            margin-bottom: 12px;
        }

        /* Contact & Location Section */
        .contact-section {
            padding: 100px 0;
            background: #ffffff;
            position: relative;
        }

        .contact-card-info {
            background: linear-gradient(135deg, rgba(255, 240, 245, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
            border: 1px solid var(--sakura-pink-mid);
            border-radius: 24px;
            padding: 36px 30px;
            height: 100%;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }

        .contact-icon-wrap {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #ffffff;
            color: var(--sakura-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(232, 153, 173, 0.2);
            flex-shrink: 0;
        }

        .map-wrap {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(226, 232, 240, 0.8);
            height: 280px;
        }

        .form-control-zen {
            background: rgba(248, 250, 252, 0.8);
            border: 1px solid rgba(203, 213, 225, 0.8);
            border-radius: 14px;
            padding: 12px 18px;
            font-size: 0.92rem;
            color: #1e293b;
            transition: all 0.2s ease;
        }

        .form-control-zen:focus {
            background: #ffffff;
            border-color: var(--sakura-pink);
            box-shadow: 0 0 0 3px rgba(232, 153, 173, 0.2);
            outline: none;
        }

        /* Floating Widgets */
        .floating-zen-bar {
            position: fixed;
            bottom: 24px;
            left: 24px;
            z-index: 1050;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 8px 18px 8px 12px;
            border-radius: var(--border-radius-pill);
            border: 1px solid rgba(255, 255, 255, 0.95);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(232, 153, 173, 0.15);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .floating-zen-bar:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 35px rgba(232, 153, 173, 0.25);
        }

        .audio-play-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: none;
            background: linear-gradient(135deg, var(--sakura-pink) 0%, var(--sakura-pink-dark) 100%);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(200, 107, 132, 0.35);
            transition: transform 0.2s ease;
        }

        .audio-play-btn:hover {
            transform: scale(1.08);
        }

        .audio-track-info {
            font-size: 0.78rem;
            line-height: 1.2;
        }

        .audio-track-title {
            font-weight: 600;
            color: #1e293b;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .audio-track-status {
            color: var(--sakura-accent);
            font-size: 0.7rem;
        }

        .sound-wave {
            display: inline-flex;
            align-items: flex-end;
            gap: 2px;
            height: 12px;
        }

        .sound-bar {
            width: 2px;
            background-color: var(--sakura-accent);
            border-radius: 1px;
            animation: bounce-wave 0.8s ease-in-out infinite alternate;
        }

        .sound-bar:nth-child(2) { animation-delay: 0.2s; }
        .sound-bar:nth-child(3) { animation-delay: 0.4s; }

        @keyframes bounce-wave {
            0% { height: 3px; }
            100% { height: 12px; }
        }

        .sound-wave.paused .sound-bar {
            animation-play-state: paused;
            height: 3px;
        }

        /* Floating WhatsApp */
        .floating-whatsapp-btn {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 1050;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #25d366;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .floating-whatsapp-btn:hover {
            transform: scale(1.1) rotate(5deg);
            color: #ffffff;
            box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
        }

        /* Footer */
        .footer-zen {
            background: #0f172a;
            color: #94a3b8;
            padding: 60px 0 30px 0;
            font-size: 0.9rem;
        }

        .footer-zen h5 {
            color: #ffffff;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.35rem;
            margin-bottom: 18px;
        }

        .footer-zen a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-zen a:hover {
            color: var(--sakura-pink);
        }

        /* Modal Customization */
        .modal-zen .modal-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        /* Responsive Media Queries - Mobile-First Harmonization */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            /* Compact Floating Zen Navbar on Mobile */
            .navbar-zen {
                top: 8px !important;
                margin: 0 !important;
                left: 8px !important;
                right: 8px !important;
                padding: 0 !important;
            }
            .nav-container {
                padding: 5px 12px !important;
                border-radius: var(--border-radius-pill);
            }
            .navbar-brand-logo {
                width: 34px !important;
                height: 34px !important;
            }
            .brand-title {
                font-size: 1.12rem !important;
            }
            .brand-sub {
                font-size: 0.58rem !important;
                letter-spacing: 1.1px !important;
            }
            .navbar-zen .btn-zen-primary {
                padding: 6px 12px !important;
                font-size: 0.76rem !important;
                gap: 4px !important;
            }
            .navbar-zen .btn-zen-primary i {
                font-size: 0.85rem !important;
            }

            /* Snappy Touch Pinned Scroll Wrapper */
            .hero-scroll-wrapper {
                height: 1400px !important; /* Calibrated for ~2 smooth finger swipes */
                overflow: visible !important;
            }

            /* Hero Stage on Mobile: Full Viewport Harmony */
            .hero-section {
                position: -webkit-sticky !important;
                position: sticky !important;
                top: 0 !important;
                left: 0 !important;
                height: 100svh !important;
                height: 100dvh !important;
                min-height: 100dvh !important;
                padding-top: 74px !important;
                padding-bottom: 20px !important;
                display: flex !important;
                align-items: stretch !important;
                overflow: hidden !important;
            }
            .hero-main-row {
                height: 100% !important;
                display: flex !important;
                flex-direction: column !important;
                justify-content: space-between !important;
                align-items: center !important;
                text-align: center !important;
                margin: 0 !important;
                flex-wrap: nowrap !important;
            }
            .hero-text-col {
                width: 100% !important;
                flex: 0 0 auto !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                padding: 0 8px !important;
            }
            .hero-badge {
                font-size: 0.68rem !important;
                padding: 3px 12px !important;
                margin-bottom: 4px !important;
                letter-spacing: 0.5px !important;
            }
            .hero-title {
                font-size: clamp(1.25rem, 5.2vw, 1.7rem) !important;
                line-height: 1.18 !important;
                margin-bottom: 5px !important;
            }
            .hero-desc {
                font-size: 0.8rem !important;
                line-height: 1.35 !important;
                margin-bottom: 8px !important;
                max-width: 320px !important;
            }
            .hero-cta-group {
                justify-content: center !important;
                margin-bottom: 2px !important;
            }
            .hero-cta-group .btn-zen-primary {
                padding: 7px 18px !important;
                font-size: 0.82rem !important;
            }
            .hero-trust-indicators {
                margin-top: 4px !important;
                padding-top: 4px !important;
                font-size: 0.68rem !important;
                justify-content: center !important;
                gap: 8px !important;
                flex-wrap: nowrap !important;
                width: 100% !important;
            }
            .hero-trust-indicators .text-warning {
                font-size: 0.68rem !important;
                white-space: nowrap !important;
                letter-spacing: -0.5px !important;
            }
            .hero-trust-indicators span,
            .hero-trust-indicators .small {
                font-size: 0.68rem !important;
                white-space: nowrap !important;
            }

            /* Visual Tree & Sunrise Column on Mobile: Entire Tree, Roots, Earth & Sun visible! */
            .hero-visual-col {
                width: 100% !important;
                flex: 1 1 auto !important;
                display: flex !important;
                align-items: flex-end !important;
                justify-content: center !important;
                min-height: 0 !important;
                padding: 0 !important;
                margin-bottom: 30px !important; /* Clear space above bottom widgets */
            }
            .hero-visual-box {
                width: 100% !important;
                max-width: 330px !important;
                height: 100% !important;
                display: flex !important;
                align-items: flex-end !important;
                justify-content: center !important;
            }
            .tree-illustration-wrap {
                width: 100% !important;
                max-width: 320px !important;
                display: flex !important;
                justify-content: center !important;
                align-items: flex-end !important;
            }
            .cherry-blossom-svg {
                width: 100% !important;
                height: auto !important;
                max-height: clamp(230px, 42vh, 320px) !important;
                filter: drop-shadow(0 12px 24px rgba(232, 153, 173, 0.2)) !important;
            }
            .cherry-tree-glow {
                width: 240px !important;
                height: 240px !important;
            }

            /* Non-clashing Floating Widgets on Mobile */
            .floating-zen-bar {
                bottom: 12px !important;
                left: 12px !important;
                width: 42px !important;
                height: 42px !important;
                padding: 2px !important;
                border-radius: 50% !important;
                justify-content: center !important;
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
            }
            .floating-zen-bar .audio-track-info,
            .floating-zen-bar input[type="range"] {
                display: none !important;
            }
            .audio-play-btn {
                width: 36px !important;
                height: 36px !important;
            }
            .floating-whatsapp-btn {
                bottom: 12px !important;
                right: 12px !important;
                width: 44px !important;
                height: 44px !important;
                font-size: 1.45rem !important;
                box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35) !important;
            }
            .scroll-story-indicator {
                bottom: 12px !important;
                left: 50% !important;
                transform: translateX(-50%) !important;
                padding: 4px 10px !important;
                gap: 6px !important;
                max-width: calc(100vw - 126px) !important;
                box-shadow: 0 6px 18px rgba(232, 153, 173, 0.2) !important;
            }
            .scroll-story-text {
                font-size: 0.68rem !important;
                max-width: 140px !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
                white-space: nowrap !important;
            }
            .scroll-indicator-mouse {
                width: 11px !important;
                height: 16px !important;
            }
            .scroll-progress-bar-wrap {
                width: 30px !important;
                height: 4px !important;
            }

            /* General Content Mobile Typography & Spacing */
            .section-tag {
                font-size: 0.72rem !important;
                padding: 3px 12px !important;
            }
            .section-title {
                font-size: 1.85rem !important;
                line-height: 1.2 !important;
            }
            .section-subtitle {
                font-size: 0.92rem !important;
            }
            .filter-tabs {
                gap: 6px !important;
                margin-bottom: 25px !important;
            }
            .filter-btn {
                font-size: 0.78rem !important;
                padding: 6px 14px !important;
            }
            .service-card {
                margin-bottom: 10px;
            }
            .service-body {
                padding: 18px !important;
            }
            .service-title {
                font-size: 1.35rem !important;
            }
        }

        /* ==========================================================================
           APPOINTMENT BOOKING VIEWS (Gloria Zen Harmonization)
           ========================================================================== */
        body.appointment {
            padding-top: 130px !important;
            background: radial-gradient(circle at 50% 15%, rgba(255, 240, 245, 0.85) 0%, rgba(252, 252, 253, 1) 75%) !important;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        body.appointment .container {
            position: relative;
            z-index: 10;
        }

        /* Card Container with Zen Glassmorphism */
        body.appointment .card {
            background: rgba(255, 255, 255, 0.88) !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.95) !important;
            border-radius: var(--border-radius-card, 24px) !important;
            box-shadow: 0 20px 45px -12px rgba(232, 153, 173, 0.22), 0 4px 16px rgba(0, 0, 0, 0.03) !important;
            transition: all 0.3s ease;
        }

        /* Avatar Circle (Initial / User Icon) */
        body.appointment .bg-primary.rounded-circle {
            background: linear-gradient(135deg, var(--sakura-pink, #e899ad) 0%, var(--sakura-accent, #b0526b) 100%) !important;
            color: #ffffff !important;
            box-shadow: 0 10px 25px rgba(176, 82, 107, 0.35) !important;
            border: 3px solid #ffffff !important;
            font-family: 'Cormorant Garamond', serif !important;
            font-weight: 700 !important;
        }

        /* Agent Profile Header */
        body.appointment h3.fw-bold {
            font-family: 'Cormorant Garamond', serif !important;
            font-size: 2.2rem !important;
            font-weight: 700 !important;
            color: #0f172a !important;
            letter-spacing: -0.01em;
            margin-bottom: 6px;
        }

        body.appointment p.text-muted {
            color: var(--zen-text-muted, #64748b) !important;
            font-size: 0.95rem;
        }

        /* List Group Treatments / Services */
        body.appointment .list-group-flush {
            border-radius: 18px;
        }

        body.appointment .list-group-item {
            background: rgba(255, 255, 255, 0.65) !important;
            border: 1px solid rgba(232, 153, 173, 0.2) !important;
            border-radius: 16px !important;
            padding: 18px 22px !important;
            margin-bottom: 12px;
            transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body.appointment .list-group-item:last-child {
            margin-bottom: 0;
        }

        body.appointment .list-group-item:hover {
            background: rgba(255, 240, 245, 0.85) !important;
            border-color: var(--sakura-pink, #e899ad) !important;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(232, 153, 173, 0.22);
        }

        /* Treatment Name */
        body.appointment .list-group-item h5.text-primary,
        body.appointment h5.text-primary {
            color: var(--sakura-accent, #b0526b) !important;
            font-family: 'Cormorant Garamond', serif !important;
            font-size: 1.45rem !important;
            font-weight: 700 !important;
            letter-spacing: -0.01em;
        }

        /* Duration & Feature Badges */
        body.appointment .list-group-item .badge {
            background: var(--sakura-pink-light, #fff0f5) !important;
            color: var(--sakura-accent, #b0526b) !important;
            border: 1px solid var(--sakura-pink-mid, #f9d8e3) !important;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: var(--border-radius-pill, 50px);
            font-size: 0.82rem;
            box-shadow: 0 2px 6px rgba(232, 153, 173, 0.12);
        }

        body.appointment .list-group-item .badge i {
            color: var(--sakura-pink-dark, #c86b84);
            margin-right: 4px;
        }

        /* Chevron Icon */
        body.appointment .list-group-item .fa-chevron-right {
            color: var(--sakura-pink, #e899ad);
            transition: transform 0.25s ease, color 0.25s ease;
        }

        body.appointment .list-group-item:hover .fa-chevron-right {
            transform: translateX(4px);
            color: var(--sakura-accent, #b0526b);
        }

        /* Global Buttons in Appointment Views (Confirm, Submit, etc.) */
        body.appointment .btn-primary {
            background: linear-gradient(135deg, var(--sakura-pink, #e899ad) 0%, var(--sakura-accent, #b0526b) 100%) !important;
            border: none !important;
            color: #ffffff !important;
            border-radius: var(--border-radius-pill, 50px) !important;
            font-weight: 600 !important;
            box-shadow: 0 8px 22px rgba(176, 82, 107, 0.32) !important;
            padding: 12px 28px !important;
            transition: all 0.25s ease !important;
        }

        body.appointment .btn-primary:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 12px 28px rgba(176, 82, 107, 0.45) !important;
            filter: brightness(1.04);
        }

        /* Appointment Calendar & Multi-step Layout */
        body.appointment .appointment-container {
            background: rgba(255, 255, 255, 0.88) !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.95) !important;
            border-radius: var(--border-radius-card, 24px) !important;
            box-shadow: 0 20px 45px -12px rgba(232, 153, 173, 0.22) !important;
            overflow: hidden;
        }

        body.appointment .appointment-sidebar {
            background: rgba(255, 240, 245, 0.5) !important;
            border-right: 1px solid rgba(232, 153, 173, 0.2) !important;
        }

        body.appointment .slot-btn {
            border: 1px solid var(--sakura-pink, #e899ad) !important;
            background: #ffffff !important;
            color: var(--sakura-accent, #b0526b) !important;
            border-radius: 12px !important;
            font-weight: 600 !important;
            transition: all 0.2s ease;
        }

        body.appointment .slot-btn:hover,
        body.appointment .slot-btn.selected {
            background: linear-gradient(135deg, var(--sakura-pink, #e899ad) 0%, var(--sakura-accent, #b0526b) 100%) !important;
            color: #ffffff !important;
            border-color: transparent !important;
            box-shadow: 0 4px 14px rgba(176, 82, 107, 0.3);
        }

        body.appointment .cal-day.selected {
            background-color: var(--sakura-accent, #b0526b) !important;
            color: #ffffff !important;
            border-radius: 50%;
        }

        body.appointment .cal-day.available:hover {
            background-color: var(--sakura-pink-light, #fff0f5) !important;
            color: var(--sakura-accent, #b0526b) !important;
            border-radius: 50%;
        }

        /* Forms in Appointment Flow */
        body.appointment .form-control {
            border-radius: 12px !important;
            border: 1px solid rgba(232, 153, 173, 0.3) !important;
            padding: 12px 16px !important;
            background: rgba(255, 255, 255, 0.9) !important;
            font-size: 0.95rem;
        }

        body.appointment .form-control:focus {
            border-color: var(--sakura-pink, #e899ad) !important;
            box-shadow: 0 0 0 0.25rem rgba(232, 153, 173, 0.25) !important;
        }

        @media (max-width: 768px) {
            body.appointment {
                padding-top: 100px !important;
            }
            body.appointment .card {
                padding: 20px 16px !important;
            }
            body.appointment h3.fw-bold {
                font-size: 1.8rem !important;
            }
            body.appointment .list-group-item {
                padding: 15px 16px !important;
            }
        }

        /* Bono Regalo Section Aesthetics */
        .bono-regalo-section {
            border-top: 1px solid rgba(197, 160, 89, 0.15);
            border-bottom: 1px solid rgba(197, 160, 89, 0.15);
            position: relative;
            overflow: hidden;
        }

        .bono-regalo-section img {
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
        }

        .bono-regalo-section img:hover {
            transform: scale(1.02);
            box-shadow: 0 30px 60px -15px rgba(197, 160, 89, 0.35) !important;
        }