            /* Discreet return link. Sits in the spa's gutter, picks up the
               spa's gold on hover, doesn't fight the cream palette.
               Hidden during the 2s loading screen + dissolve (spa_demo.js
               removes #loadingScreen at t=2.0s with a transition tail), then
               fades in cleanly so it never overlaps the intro wordmark. */
            .back-to-studio {
                position: fixed;
                bottom: 20px;
                left: 22px;
                z-index: 10001;
                color: rgba(60, 50, 38, 0.55);
                padding: 6px 10px;
                background: rgba(250, 247, 242, 0.78);
                backdrop-filter: blur(8px) saturate(140%);
                -webkit-backdrop-filter: blur(8px) saturate(140%);
                border: 1px solid rgba(212, 165, 116, 0.35);
                border-radius: 2px;
                text-decoration: none;
                font-family: "Inter", system-ui, -apple-system, sans-serif;
                font-size: 11px;
                font-weight: 500;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                display: inline-flex;
                align-items: center;
                gap: 8px;
                opacity: 0;
                pointer-events: none;
                transform: translateY(-4px);
                animation: backShow 0.55s cubic-bezier(0.16, 1, 0.3, 1) 2.6s forwards;
                transition: color 250ms ease, border-color 250ms ease, background 250ms ease;
            }
            @keyframes backShow {
                to {
                    opacity: 1;
                    pointer-events: auto;
                    transform: translateY(0);
                }
            }
            @media (prefers-reduced-motion: reduce) {
                .back-to-studio {
                    opacity: 1;
                    pointer-events: auto;
                    transform: none;
                    animation: none;
                }
            }
            .back-to-studio:hover {
                color: var(--primary-dark, #b8855a);
                border-color: var(--primary, #d4a574);
                background: rgba(250, 247, 242, 0.95);
            }
            .back-to-studio svg {
                width: 10px;
                height: 10px;
                stroke-width: 2.4;
                transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
            }
            .back-to-studio:hover svg {
                transform: translateX(-2px);
            }
            :root {
                --primary: #d4a574;
                --primary-dark: #b8855a;
                --accent: #8fb3a8;
                --cream: #faf7f2;
                --cream-dark: #f0ebe0;
                --text: #2c2c2c;
                --text-light: #6b6b6b;
                --white: #ffffff;
            }

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

            html {
                scroll-behavior: smooth;
                /* Clip horizontally at the document root so off-canvas mobile
                   nav (right: -100%), decorative absolute-positioned .shape
                   blobs, and slide-left scroll animations don't expand the
                   document width on small viewports. */
                overflow-x: clip;
            }

            body {
                font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
                color: var(--text);
                background: var(--cream);
                overflow-x: clip;
                /* Establish a containing block for fixed-position elements so
                   the off-canvas .nav-links panel can't push body width past
                   the viewport on mobile. */
                position: relative;
            }

            /* Loading Screen */
            .loading-screen {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: var(--cream);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                z-index: 10000;
                transition: opacity 0.5s ease;
            }

            .loading-screen.hidden {
                opacity: 0;
                pointer-events: none;
            }

            .loading-logo {
                font-family: Georgia, 'Times New Roman', serif;
                font-size: 3rem;
                font-weight: 700;
                color: var(--primary);
                margin-bottom: 2rem;
                animation: fadeInScale 1s ease;
            }

            .loading-bar {
                width: 200px;
                height: 3px;
                background: var(--cream-dark);
                border-radius: 10px;
                overflow: hidden;
            }

            .loading-progress {
                height: 100%;
                background: var(--primary);
                width: 0%;
                animation: loadProgress 2s ease forwards;
            }

            @keyframes fadeInScale {
                from {
                    opacity: 0;
                    transform: scale(0.8);
                }
                to {
                    opacity: 1;
                    transform: scale(1);
                }
            }

            @keyframes loadProgress {
                to {
                    width: 100%;
                }
            }

            /* Scroll Progress Bar */
            .scroll-progress {
                position: fixed;
                top: 0;
                left: 0;
                width: 0%;
                height: 4px;
                background: linear-gradient(
                    90deg,
                    var(--primary) 0%,
                    var(--accent) 100%
                );
                z-index: 9999;
                transition: width 0.1s ease;
            }

            /* Navigation */
            .nav {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1000;
                background: rgba(250, 247, 242, 0.95);
                backdrop-filter: blur(10px);
                padding: 1.5rem 5%;
                display: flex;
                justify-content: space-between;
                align-items: center;
                transition: all 0.3s ease;
            }

            .nav.scrolled {
                padding: 1rem 5%;
                box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            }

            .logo {
                font-family: Georgia, 'Times New Roman', serif;
                font-size: 2rem;
                font-weight: 700;
                color: var(--primary);
                letter-spacing: 1px;
                transition: all 0.3s ease;
            }

            .logo:hover {
                transform: scale(1.05);
            }

            .nav-links {
                display: flex;
                gap: 3rem;
                list-style: none;
            }

            .nav-links a {
                color: var(--text);
                text-decoration: none;
                font-weight: 500;
                font-size: 0.9rem;
                letter-spacing: 0.5px;
                transition: all 0.3s ease;
                position: relative;
            }

            .nav-links a::after {
                content: "";
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--primary);
                transition: width 0.3s ease;
            }

            .nav-links a:hover {
                color: var(--primary);
            }

            .nav-links a:hover::after {
                width: 100%;
            }

            .nav-cta {
                background: var(--primary);
                color: var(--white);
                padding: 0.8rem 2rem;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 600;
                font-size: 0.9rem;
                letter-spacing: 0.5px;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .nav-cta::before {
                content: "";
                position: absolute;
                top: 50%;
                left: 50%;
                width: 0;
                height: 0;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.3);
                transform: translate(-50%, -50%);
                transition: all 0.5s ease;
            }

            .nav-cta:hover::before {
                width: 300px;
                height: 300px;
            }

            .nav-cta:hover {
                background: var(--primary-dark);
                transform: translateY(-2px);
                box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
            }

            /* Mobile Menu Toggle */
            .menu-toggle {
                display: none;
                flex-direction: column;
                gap: 5px;
                cursor: pointer;
                z-index: 1001;
            }

            .menu-toggle span {
                width: 30px;
                height: 3px;
                background: var(--primary);
                transition: all 0.3s ease;
                border-radius: 3px;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }

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

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }

            /* Hero Section */
            .hero {
                height: 100vh;
                display: flex;
                align-items: center;
                position: relative;
                overflow: hidden;
                background: linear-gradient(
                    135deg,
                    var(--cream) 0%,
                    var(--cream-dark) 100%
                );
            }

            .hero-background {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                opacity: 0.15;
            }

            .floating-shapes {
                position: absolute;
                width: 100%;
                height: 100%;
            }

            .shape {
                position: absolute;
                border-radius: 50%;
                filter: blur(60px);
                animation: float 20s infinite ease-in-out;
            }

            .shape1 {
                width: 400px;
                height: 400px;
                background: var(--primary);
                top: 10%;
                left: -10%;
                animation-delay: 0s;
            }

            .shape2 {
                width: 300px;
                height: 300px;
                background: var(--accent);
                bottom: 10%;
                right: -5%;
                animation-delay: -5s;
            }

            .shape3 {
                width: 250px;
                height: 250px;
                background: var(--primary);
                top: 50%;
                right: 10%;
                animation-delay: -10s;
            }

            @keyframes float {
                0%,
                100% {
                    transform: translate(0, 0) scale(1);
                }
                33% {
                    transform: translate(50px, -50px) scale(1.1);
                }
                66% {
                    transform: translate(-30px, 30px) scale(0.9);
                }
            }

            .hero-content {
                position: relative;
                z-index: 2;
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 5%;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                align-items: center;
            }

            .hero-text {
                animation: slideInLeft 1s ease-out;
            }

            .hero-badge {
                display: inline-block;
                background: var(--white);
                padding: 0.5rem 1.5rem;
                border-radius: 50px;
                font-size: 0.85rem;
                font-weight: 600;
                color: var(--primary);
                margin-bottom: 2rem;
                letter-spacing: 1px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            }

            .hero h1 {
                font-family: Georgia, 'Times New Roman', serif;
                font-size: 4.5rem;
                font-weight: 700;
                line-height: 1.1;
                margin-bottom: 1.5rem;
                color: var(--text);
            }

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

            .hero h1 .highlight::after {
                content: "";
                position: absolute;
                bottom: 10px;
                left: 0;
                width: 100%;
                height: 15px;
                background: var(--primary);
                opacity: 0.2;
                z-index: -1;
                animation: underlineExpand 1s ease forwards;
                animation-delay: 0.5s;
                transform: scaleX(0);
                transform-origin: left;
            }

            @keyframes underlineExpand {
                to {
                    transform: scaleX(1);
                }
            }

            .hero p {
                font-size: 1.2rem;
                line-height: 1.8;
                color: var(--text-light);
                margin-bottom: 3rem;
                max-width: 600px;
            }

            .hero-buttons {
                display: flex;
                gap: 1.5rem;
            }

            .btn-primary {
                background: var(--primary);
                color: var(--white);
                padding: 1.2rem 3rem;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 600;
                font-size: 1rem;
                letter-spacing: 0.5px;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                border: 2px solid var(--primary);
                display: inline-block;
                position: relative;
                overflow: hidden;
            }

            .btn-primary::before {
                content: "";
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(
                    90deg,
                    transparent,
                    rgba(255, 255, 255, 0.3),
                    transparent
                );
                transition: left 0.5s ease;
            }

            .btn-primary:hover::before {
                left: 100%;
            }

            .btn-primary:hover {
                transform: translateY(-3px) scale(1.02);
                box-shadow: 0 15px 35px rgba(212, 165, 116, 0.4);
            }

            .btn-secondary {
                background: transparent;
                color: var(--text);
                padding: 1.2rem 3rem;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 600;
                font-size: 1rem;
                letter-spacing: 0.5px;
                transition: all 0.4s ease;
                border: 2px solid var(--text);
                display: inline-block;
            }

            .btn-secondary:hover {
                background: var(--text);
                color: var(--white);
                transform: translateY(-3px);
            }

            .hero-image {
                position: relative;
                animation: slideInRight 1s ease-out;
            }

            .hero-image-container {
                position: relative;
                border-radius: 300px 300px 30px 30px;
                overflow: hidden;
                box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
                aspect-ratio: 3/4;
                transform-style: preserve-3d;
                transition: transform 0.3s ease;
            }

            .hero-image-container:hover {
                transform: rotateY(5deg) rotateX(-5deg);
            }

            .hero-image-container::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(
                    180deg,
                    transparent 0%,
                    rgba(0, 0, 0, 0.3) 100%
                );
                z-index: 1;
            }

            .hero-image-container svg {
                width: 100%;
                height: 100%;
            }

            .stats-float {
                position: absolute;
                background: var(--white);
                padding: 2rem 2.5rem;
                border-radius: 20px;
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
                animation: floatStat 3s ease-in-out infinite;
                backdrop-filter: blur(10px);
            }

            .stat-top {
                top: 10%;
                right: -20%;
                animation-delay: 0s;
            }

            .stat-bottom {
                bottom: 15%;
                left: -15%;
                animation-delay: -1.5s;
            }

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

            .stat-number {
                font-family: Georgia, 'Times New Roman', serif;
                font-size: 3rem;
                font-weight: 700;
                color: var(--primary);
                line-height: 1;
            }

            .stat-label {
                font-size: 0.9rem;
                color: var(--text-light);
                margin-top: 0.5rem;
                font-weight: 500;
            }

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

            @keyframes slideInRight {
                from {
                    opacity: 0;
                    transform: translateX(50px);
                }
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }

            /* Services Section */
            .services {
                padding: 8rem 5%;
                background: var(--white);
                position: relative;
            }

            .section-header {
                text-align: center;
                max-width: 800px;
                margin: 0 auto 5rem;
            }

            .section-tag {
                font-size: 0.9rem;
                font-weight: 600;
                color: var(--primary);
                letter-spacing: 2px;
                text-transform: uppercase;
                margin-bottom: 1rem;
            }

            .section-title {
                font-family: Georgia, 'Times New Roman', serif;
                font-size: 3.5rem;
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 1.5rem;
            }

            .section-description {
                font-size: 1.1rem;
                line-height: 1.8;
                color: var(--text-light);
            }

            .services-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 2.5rem;
                max-width: 1400px;
                margin: 0 auto;
            }

            .service-card {
                background: var(--cream);
                border-radius: 30px;
                overflow: hidden;
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                cursor: pointer;
                position: relative;
                transform-style: preserve-3d;
            }

            .service-card::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(
                    135deg,
                    var(--primary) 0%,
                    var(--accent) 100%
                );
                opacity: 0;
                transition: opacity 0.5s ease;
                z-index: 1;
            }

            .service-card:hover {
                transform: translateY(-15px) rotateX(5deg);
                box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
            }

            .service-card:hover::before {
                opacity: 0.1;
            }

            .service-icon {
                width: 100%;
                height: 280px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: linear-gradient(
                    135deg,
                    var(--cream-dark) 0%,
                    var(--cream) 100%
                );
                position: relative;
                z-index: 2;
                overflow: hidden;
            }

            .service-icon::before {
                content: "";
                position: absolute;
                top: 50%;
                left: 50%;
                width: 0;
                height: 0;
                background: radial-gradient(
                    circle,
                    var(--primary) 0%,
                    transparent 70%
                );
                opacity: 0;
                transform: translate(-50%, -50%);
                transition: all 0.5s ease;
            }

            .service-card:hover .service-icon::before {
                width: 300px;
                height: 300px;
                opacity: 0.1;
            }

            .service-icon svg {
                width: 120px;
                height: 120px;
                transition: all 0.5s ease;
                filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
            }

            .service-card:hover .service-icon svg {
                transform: scale(1.15) rotate(5deg);
            }

            .service-content {
                padding: 2rem;
                position: relative;
                z-index: 2;
            }

            .service-title {
                font-family: Georgia, 'Times New Roman', serif;
                font-size: 1.8rem;
                font-weight: 700;
                margin-bottom: 1rem;
                color: var(--text);
                transition: color 0.3s ease;
            }

            .service-card:hover .service-title {
                color: var(--primary);
            }

            .service-description {
                font-size: 1rem;
                line-height: 1.7;
                color: var(--text-light);
                margin-bottom: 1.5rem;
            }

            .service-link {
                color: var(--primary);
                font-weight: 600;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                transition: gap 0.3s ease;
            }

            .service-link:hover {
                gap: 1rem;
            }

            /* Before/After Section */
            .before-after {
                padding: 8rem 5%;
                background: var(--cream);
            }

            .ba-container {
                max-width: 1200px;
                margin: 0 auto;
                position: relative;
                border-radius: 30px;
                overflow: hidden;
                box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
                height: 600px;
            }

            .ba-image {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(
                    135deg,
                    var(--cream-dark) 0%,
                    var(--primary) 100%
                );
                display: flex;
                align-items: center;
                justify-content: center;
                font-family: Georgia, 'Times New Roman', serif;
                font-size: 4rem;
                color: var(--white);
                font-weight: 700;
            }

            .ba-after {
                clip-path: inset(0 50% 0 0);
            }

            .ba-slider {
                position: absolute;
                top: 0;
                left: 50%;
                width: 4px;
                height: 100%;
                background: var(--white);
                cursor: ew-resize;
                z-index: 10;
            }

            .ba-slider::before {
                content: "⟷";
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 60px;
                height: 60px;
                background: var(--white);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
                color: var(--primary);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            }

            .ba-label {
                position: absolute;
                top: 2rem;
                background: var(--white);
                padding: 1rem 2rem;
                border-radius: 50px;
                font-weight: 600;
                color: var(--text);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: opacity 0.15s ease;
            }

            .ba-label.before {
                left: 2rem;
            }

            .ba-label.after {
                right: 2rem;
            }

            /* Promo Section */
            .promo {
                padding: 8rem 5%;
                background: linear-gradient(
                    135deg,
                    var(--primary) 0%,
                    var(--primary-dark) 100%
                );
                position: relative;
                overflow: hidden;
            }

            .promo::before {
                content: "";
                position: absolute;
                top: -50%;
                right: -20%;
                width: 600px;
                height: 600px;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                filter: blur(100px);
                animation: float 15s infinite ease-in-out;
            }

            .promo-content {
                max-width: 1400px;
                margin: 0 auto;
                position: relative;
                z-index: 2;
            }

            .promo-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 3rem;
            }

            .promo-card {
                background: rgba(255, 255, 255, 0.15);
                backdrop-filter: blur(10px);
                border: 2px solid rgba(255, 255, 255, 0.2);
                border-radius: 25px;
                padding: 3rem;
                text-align: center;
                transition: all 0.4s ease;
                position: relative;
                overflow: hidden;
            }

            .promo-card::before {
                content: "";
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: radial-gradient(
                    circle,
                    rgba(255, 255, 255, 0.1) 0%,
                    transparent 70%
                );
                transform: scale(0);
                transition: transform 0.6s ease;
            }

            .promo-card:hover::before {
                transform: scale(1);
            }

            .promo-card:hover {
                background: rgba(255, 255, 255, 0.25);
                transform: translateY(-10px);
                border-color: rgba(255, 255, 255, 0.4);
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            }

            .promo-percentage {
                font-family: Georgia, 'Times New Roman', serif;
                font-size: 5rem;
                font-weight: 700;
                color: var(--white);
                line-height: 1;
                margin-bottom: 1rem;
                position: relative;
                z-index: 1;
            }

            .promo-title {
                font-family: Georgia, 'Times New Roman', serif;
                font-size: 2rem;
                font-weight: 700;
                color: var(--white);
                margin-bottom: 1rem;
                position: relative;
                z-index: 1;
            }

            .promo-description {
                color: rgba(255, 255, 255, 0.9);
                font-size: 1.05rem;
                line-height: 1.7;
                margin-bottom: 2rem;
                position: relative;
                z-index: 1;
            }

            .promo-link {
                background: var(--white);
                color: var(--primary);
                padding: 1rem 2.5rem;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 600;
                display: inline-block;
                transition: all 0.3s ease;
                position: relative;
                z-index: 1;
            }

            .promo-link:hover {
                transform: scale(1.05);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            }

            /* Testimonials */
            .testimonials {
                padding: 8rem 5%;
                background: var(--cream);
            }

            .testimonial-carousel {
                max-width: 1200px;
                margin: 0 auto;
                position: relative;
                padding: 0 80px;
            }

            .testimonial-wrapper {
                overflow: hidden;
                position: relative;
                width: 100%;
            }

            .testimonial-track {
                display: flex;
                transition: transform 0.5s ease;
                width: 100%;
            }

            .testimonial {
                background: transparent;
                border-radius: 40px;
                padding: 4rem;
                text-align: center;
                min-width: 100%;
                max-width: 100%;
                flex-shrink: 0;
                box-sizing: border-box;
            }

            .stars {
                font-size: 2rem;
                color: var(--primary);
                margin-bottom: 2rem;
            }

            .testimonial-text {
                font-size: 1.3rem;
                line-height: 1.8;
                color: var(--text);
                margin-bottom: 2rem;
                font-style: italic;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }

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

            .testimonial-location {
                color: var(--text-light);
                font-size: 0.95rem;
                margin-top: 0.5rem;
            }

            .carousel-nav {
                display: flex;
                justify-content: center;
                gap: 1rem;
                margin-top: 3rem;
            }

            .carousel-dot {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: var(--cream-dark);
                border: none;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .carousel-dot.active {
                background: var(--primary);
                transform: scale(1.5);
            }

            .carousel-arrow {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 50px;
                height: 50px;
                background: var(--white);
                border: none;
                border-radius: 50%;
                font-size: 1.5rem;
                color: var(--primary);
                cursor: pointer;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                z-index: 10;
            }

            .carousel-arrow:hover {
                transform: translateY(-50%) scale(1.1);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            }

            .carousel-arrow.prev {
                left: 0;
            }

            .carousel-arrow.next {
                right: 0;
            }

            /* CTA Section */
            .cta {
                padding: 8rem 5%;
                background: var(--white);
                text-align: center;
            }

            .cta-content {
                max-width: 800px;
                margin: 0 auto;
            }

            .cta-title {
                font-family: Georgia, 'Times New Roman', serif;
                font-size: 4rem;
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 2rem;
            }

            .cta-description {
                font-size: 1.2rem;
                line-height: 1.8;
                color: var(--text-light);
                margin-bottom: 3rem;
            }

            .cta-buttons {
                display: flex;
                gap: 1.5rem;
                justify-content: center;
            }

            /* Footer */
            .footer {
                background: var(--text);
                color: var(--white);
                padding: 5rem 5% 2rem;
            }

            .footer-content {
                max-width: 1400px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 4rem;
                margin-bottom: 3rem;
            }

            .footer-logo {
                font-family: Georgia, 'Times New Roman', serif;
                font-size: 2.5rem;
                font-weight: 700;
                color: var(--primary);
                margin-bottom: 1rem;
            }

            .footer-description {
                color: rgba(255, 255, 255, 0.7);
                line-height: 1.7;
            }

            .footer-title {
                font-family: Georgia, 'Times New Roman', serif;
                font-size: 1.5rem;
                font-weight: 700;
                margin-bottom: 1.5rem;
            }

            .footer-links {
                list-style: none;
            }

            .footer-links li {
                margin-bottom: 1rem;
            }

            .footer-links a {
                color: rgba(255, 255, 255, 0.7);
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .footer-links a:hover {
                color: var(--primary);
                padding-left: 5px;
            }

            .footer-bottom {
                max-width: 1400px;
                margin: 0 auto;
                padding-top: 2rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                text-align: center;
                color: rgba(255, 255, 255, 0.5);
            }

            /* Chatbot Widget */
            .chatbot-widget {
                position: fixed;
                bottom: 30px;
                right: 30px;
                z-index: 999;
            }

            .chatbot-button {
                width: 70px;
                height: 70px;
                border-radius: 50%;
                background: linear-gradient(
                    135deg,
                    var(--primary) 0%,
                    var(--primary-dark) 100%
                );
                border: none;
                box-shadow: 0 10px 40px rgba(212, 165, 116, 0.4);
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
                position: relative;
            }

            .chatbot-button:hover {
                transform: scale(1.1);
                box-shadow: 0 15px 50px rgba(212, 165, 116, 0.6);
            }

            .chatbot-button svg {
                width: 32px;
                height: 32px;
                fill: var(--white);
            }

            .chatbot-notification {
                position: absolute;
                top: 0;
                right: 0;
                width: 22px;
                height: 22px;
                background: #ff4444;
                border: 3px solid var(--cream);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 0.7rem;
                color: white;
                font-weight: bold;
                animation: pulse 2s infinite;
                z-index: 10;
            }

            .chatbot-window {
                position: absolute;
                bottom: 90px;
                right: 0;
                width: 380px;
                height: 550px;
                background: var(--white);
                border-radius: 25px;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
                display: none;
                flex-direction: column;
                overflow: hidden;
                animation: slideUp 0.3s ease;
            }

            .chatbot-window.active {
                display: flex;
            }

            @keyframes slideUp {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .chatbot-header {
                background: linear-gradient(
                    135deg,
                    var(--primary) 0%,
                    var(--primary-dark) 100%
                );
                padding: 1.5rem;
                color: var(--white);
                display: flex;
                align-items: center;
                gap: 1rem;
            }

            .chatbot-avatar {
                width: 45px;
                height: 45px;
                border-radius: 50%;
                background: var(--white);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
            }

            .chatbot-info h3 {
                font-family: Georgia, 'Times New Roman', serif;
                font-size: 1.3rem;
                font-weight: 700;
                margin-bottom: 0.2rem;
            }

            .chatbot-status {
                font-size: 0.85rem;
                opacity: 0.9;
            }

            .chatbot-status::before {
                content: "●";
                color: #4ade80;
                margin-right: 0.3rem;
                animation: pulse 2s infinite;
            }

            .chatbot-messages {
                flex: 1;
                padding: 1.5rem;
                overflow-y: auto;
                background: var(--cream);
            }

            .chat-message {
                margin-bottom: 1rem;
                display: flex;
                gap: 0.75rem;
                animation: fadeIn 0.3s ease;
            }

            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .message-avatar {
                width: 35px;
                height: 35px;
                border-radius: 50%;
                background: var(--primary);
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--white);
                font-size: 1rem;
                flex-shrink: 0;
            }

            .message-content {
                background: var(--white);
                padding: 1rem 1.2rem;
                border-radius: 15px 15px 15px 5px;
                max-width: 70%;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            }

            .message-content-user {
                background: var(--primary);
                color: var(--white);
                border-radius: 15px 15px 5px 15px;
                margin-left: auto;
            }

            .message-time {
                font-size: 0.75rem;
                color: var(--text-light);
                margin-top: 0.5rem;
            }

            .chat-quick-replies {
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;
                margin-top: 1rem;
            }

            .quick-reply {
                background: var(--white);
                border: 2px solid var(--primary);
                color: var(--primary);
                padding: 0.6rem 1.2rem;
                border-radius: 20px;
                font-size: 0.85rem;
                cursor: pointer;
                transition: all 0.3s ease;
                font-weight: 500;
            }

            .quick-reply:hover {
                background: var(--primary);
                color: var(--white);
                transform: translateY(-2px);
            }

            .chatbot-input {
                padding: 1.2rem;
                border-top: 1px solid var(--cream-dark);
                display: flex;
                gap: 0.75rem;
            }

            .chatbot-input input {
                flex: 1;
                padding: 0.9rem 1.2rem;
                border: 2px solid var(--cream-dark);
                border-radius: 25px;
                font-size: 0.95rem;
                outline: none;
                transition: all 0.3s ease;
            }

            .chatbot-input input:focus {
                border-color: var(--primary);
            }

            .chatbot-send {
                width: 45px;
                height: 45px;
                border-radius: 50%;
                background: var(--primary);
                border: none;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .chatbot-send:hover {
                background: var(--primary-dark);
                transform: scale(1.1);
            }

            .chatbot-send svg {
                width: 20px;
                height: 20px;
                fill: var(--white);
            }

            /* Scroll Animations */
            .fade-in {
                opacity: 0;
                transform: translateY(50px);
                transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .fade-in.visible {
                opacity: 1;
                transform: translateY(0);
            }

            .slide-left {
                opacity: 0;
                transform: translateX(-100px);
                transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .slide-left.visible {
                opacity: 1;
                transform: translateX(0);
            }

            .slide-right {
                opacity: 0;
                transform: translateX(100px);
                transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .slide-right.visible {
                opacity: 1;
                transform: translateX(0);
            }

            .scale-in {
                opacity: 0;
                transform: scale(0.8);
                transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .scale-in.visible {
                opacity: 1;
                transform: scale(1);
            }

            .rotate-in {
                opacity: 0;
                transform: rotate(-10deg) translateY(30px);
                transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .rotate-in.visible {
                opacity: 1;
                transform: rotate(0) translateY(0);
            }

            .stagger-1 {
                transition-delay: 0.15s;
            }
            .stagger-2 {
                transition-delay: 0.3s;
            }
            .stagger-3 {
                transition-delay: 0.45s;
            }
            .stagger-4 {
                transition-delay: 0.6s;
            }

            /* Responsive */
            @media (max-width: 1024px) {
                .hero-content {
                    grid-template-columns: 1fr;
                    text-align: center;
                }

                .hero-text {
                    order: 2;
                }

                .hero-image {
                    order: 1;
                    max-width: 500px;
                    margin: 0 auto;
                }

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

                .hero h1 {
                    font-size: 3.5rem;
                }

                .nav-links {
                    position: fixed;
                    top: 0;
                    right: -100%;
                    width: 300px;
                    height: 100vh;
                    background: var(--cream);
                    flex-direction: column;
                    padding: 6rem 2rem;
                    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
                    transition: right 0.3s ease;
                }

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

                .menu-toggle {
                    display: flex;
                }

                .chatbot-window {
                    width: 90vw;
                    right: 5vw;
                }

                .carousel-arrow {
                    display: none;
                }
            }

            @media (max-width: 768px) {
                .hero h1 {
                    font-size: 2.5rem;
                }

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

                .services-grid {
                    grid-template-columns: 1fr;
                }

                .promo-grid {
                    grid-template-columns: 1fr;
                }

                .hero-buttons,
                .cta-buttons {
                    flex-direction: column;
                }

                .btn-primary,
                .btn-secondary {
                    width: 100%;
                    text-align: center;
                }

                .stat-top,
                .stat-bottom {
                    position: static;
                    margin: 1rem auto;
                }

                .ba-container {
                    height: 400px;
                }

                .testimonial-carousel {
                    padding: 0;
                }

                .testimonial {
                    padding: 2rem;
                }

                .testimonial-text {
                    font-size: 1.1rem;
                }

                .stars {
                    font-size: 1.5rem;
                }
            }
