
    /* ========================= */
    /* CSS Variables for palette, typography, spacing, effects */
    :root {
            /* Elegant Rose Pink, Deep Green & Gold Palette */
            --deep-forest: #ffffff;
            --forest-green: rgba(240, 214, 214, 0.98);
            --warm-white: rgba(16, 16, 16, 0.98);
            --cream: #F8F3EF;
            --rose-pink: #E8B4B8;
            --deep-rose: #D4939A;
            --elegant-gold: #edc17a;
            --champagne-gold: #F0DEC2;
            --soft-grey: #9A9495;
            --accent-green: #5D4B46;

            /* Typography */
            --font-display: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;

            /* Spacing */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2rem;
            --space-xl: 3rem;
            --space-2xl: 4rem;
            --space-3xl: 6rem;

            /* Effects */
            --shadow-subtle: 0 1px 3px rgba(27, 59, 54, 0.05);
            --shadow-medium: 0 4px 12px rgba(27, 59, 54, 0.1);
            --shadow-bold: 0 8px 30px rgba(27, 59, 54, 0.15);
            --gradient-luxury: linear-gradient(135deg, var(--elegant-gold) 0%, var(--champagne-gold) 100%);
            --gradient-dark: linear-gradient(135deg, var(--deep-forest) 0%, var(--forest-green) 100%);
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

    /* Universal box-sizing and reset */
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

    /* Body styles: font, background, color, layout */
    body {
            font-family: var(--font-body);
            background: var(--warm-white);
            color: var(--deep-forest);
            line-height: 1.6;
            overflow-x: hidden;
        }

    /* ========================= */
    /* Header - Minimalist & Floating */
    /* ========================= */
    /* Header bar styles */
    .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: var(--space-xs) 0;
            background: rgba(16, 16, 16, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(27, 59, 54, 0.05);
            transition: var(--transition);
        }

            /* Responsive: Hide Aesthetics & Beauty on mobile */
            @media (max-width: 600px) {
                .header .logo .hide-mobile-aesthetics,
                .header .logo .hide-mobile-and,
                .header .logo .hide-mobile-beauty {
                    display: none !important;
                }
                /* No rules for hiding About or Reviews links */
            }

    /* Navigation container styles */
    .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

    /* Logo styles */
    .logo {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 400;
            color: var(--deep-forest);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .logo .lush-cursive {
            font-family: 'Dancing Script', cursive;
            font-weight: 300;
            letter-spacing: 0.02em;
            font-size: 2.65rem;
            vertical-align: middle;
        }
    /* Navigation menu styles */
    .nav-menu {
            display: flex;
            list-style: none;
            gap: var(--space-xl);
        }

    /* Navigation link styles */
    .nav-link {
            font-weight: 400;
            color: var(--forest-green);
            text-decoration: none;
            position: relative;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--elegant-gold);
            transition: var(--transition);
        }

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

    /* Call-to-action nav button */
    .cta-nav {
            background: var(--gradient-luxury);
            /*color: var(--warm-white);*/
            color: #333333;
            padding: var(--space-xs) var(--space-md);
            border-radius: 10px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            box-shadow: var(--shadow-subtle);
        }

        .cta-nav:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

    /* ========================= */
    /* Hero - Cinematic & Bold */
    /* ========================= */
    /* Hero section container */
    .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: var(--gradient-dark);
            overflow: hidden;
        }

            /* Add black outline to all text in hero section */
            /* Subtle black outline for hero text, excluding buttons */
            .hero :not(.btn-primary):not(.btn-secondary):not(button) {
                text-shadow:
                    0 0 2px rgba(0,0,0,0.15),
                    0 0 2px rgba(0,0,0,0.10);
            }
            
    /* Hero background video styles */
    .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

    /* Overlay for video gradient */
    .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(16, 16, 16, 0.15) 0%,
                rgba(212, 147, 154, 0.10) 40%,
                rgba(232, 180, 184, 0.08) 70%,
                rgba(237, 193, 122, 0.06) 100%);
            z-index: 2;
        }

    /* SVG grain overlay for hero */
    .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grain"><stop offset="0%" stop-color="white" stop-opacity="0.03"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            opacity: 0.5;
            z-index: 3;
        }

    /* Hero text/content container */
    .hero-content {
            max-width: 1400px;
            margin: calc(var(--space-lg) * 2) auto 0 auto;
            padding: 0 var(--space-lg);
            position: relative;
            z-index: 4;
            color:#ffffff;
        }

    /* Hero badge styles */
    .hero-badge {
            display: inline-block;
            background: rgba(16, 16, 16, 0.98);
            border: 1px solid rgba(232, 180, 184, 0.2);
            padding: var(--space-xs) var(--space-md);
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: var(--space-lg);
            color: var(--rose-pink);
        }

    /* Main hero title styles */
    .hero-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 300;
            line-height: 0.9;
            margin-bottom: var(--space-md);
            letter-spacing: -0.02em;
        }

        .hero-title .accent {
            color: var(--rose-pink);
            font-style: italic;
        }

    /* Hero subtitle styles */
    .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-bottom: var(--space-xl);
            opacity: 0.8;
            max-width: 600px;
            font-weight: 300;
        }

    /* Hero call-to-action button group */
    .hero-cta-group {
            display: flex;
            gap: var(--space-md);
            flex-wrap: wrap;
        }

    /* Primary button styles */
    .btn-primary {
            background: var(--gradient-luxury);
            color: #000000;
            padding: var(--space-md) var(--space-xl);
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-medium);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-bold);
        }

    /* Secondary button styles */
    .btn-secondary {
            background: transparent;
            color: var(--deep-forest);
            padding: var(--space-md) var(--space-xl);
            border: 2px solid rgb(255, 255, 255);
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .btn-secondary:hover {
            background: rgba(254, 252, 248, 0.1);
            border-color: var(--rose-pink);
        }

    /* ========================= */
    /* Floating Elements */
    /* ========================= */
    /* Decorative floating circles in hero */
    .floating-element {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-dark);
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
            z-index: 3;
        }

        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 20%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 80px;
            height: 80px;
            top: 80%;
            right: 5%;
            animation-delay: 4s;
        }

    /* Animation for floating elements */
    @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

    /* ========================= */
    /* Services - Grid Layout */
    /* ========================= */
    /* Services section container */
    .services {
            padding: var(--space-3xl) 0;
            background: var(--cream);
        }

    /* Generic container for layout */
    .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

    /* Section header styles */
    .section-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .section-badge {
            display: inline-block;
            background: var(--rose-pink);
            color: var(--deep-forest);
            padding: var(--space-xs) var(--space-md);
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: var(--space-lg);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            color: var(--warm-white);
            margin-bottom: var(--space-md);
            line-height: 1.1;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--soft-grey);
            max-width: 600px;
            margin: 0 auto;
        }

    /* Grid for service cards */
    .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--space-xl);
            margin-top: var(--space-3xl);
        }

    /* Individual service card styles */
    .service-card {
            background: var(--warm-white);
            border-radius: var(--border-radius);
            padding: var(--space-xl);
            box-shadow: var(--shadow-subtle);
            transition: var(--transition);
            border: 1px solid rgba(27, 59, 54, 0.05);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-luxury);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-bold);
        }

    /* Icon for each service */
    .service-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-luxury);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-lg);
            font-size: 1.5rem;
        }

        .service-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--deep-forest);
            margin-bottom: var(--space-sm);
        }

        .service-description {
            color: var(--soft-grey);
            margin-bottom: var(--space-lg);
            line-height: 1.7;
        }

        .service-price {
            font-weight: 600;
            color: var(--elegant-gold);
            font-size: 1.1rem;
            margin-bottom: var(--space-md);
        }

        .service-link {
            color: var(--accent-green);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            transition: var(--transition);
        }

        .service-link:hover {
            color: var(--elegant-gold);
            transform: translateX(4px);
        }

    /* ========================= */
    /* About Section - Split Layout */
    /* ========================= */
    /* About section container */
    .about {
            padding: var(--space-3xl) 0;
            background: var(--warm-white);
        }

    /* About section grid layout */
    .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3xl);
            align-items: center;
        }

    /* About section heading */
    .about-text h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            color: var(--deep-forest);
            margin-bottom: var(--space-lg);
            line-height: 1.2;
        }

        .about-text p {
            color: var(--soft-grey);
            margin-bottom: var(--space-lg);
            font-size: 1.1rem;
            line-height: 1.8;
        }

    /* Grid for about section stats */
    .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
            margin: var(--space-xl) 0;
        }

        .stat-item {
            text-align: center;
            padding: var(--space-lg);
            background: var(--cream);
            border-radius: var(--border-radius);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--elegant-gold);
            display: block;
        }

        .stat-label {
            color: var(--soft-grey);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

    /* Visual placeholder in about section */
    .about-visual {
            position: relative;
            min-height: 500px;
            background: var(--gradient-dark);
            border-radius: var(--border-radius);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-visual::before {
            content: '✨';
            font-size: 4rem;
            opacity: 0.3;
            color: var(--rose-pink);
        }

    /* ========================= */
    /* Testimonials - Carousel Style */
    /* ========================= */
    /* Testimonials section container */
    .testimonials {
            padding: var(--space-3xl) 0;
            background: var(--deep-forest);
            color: var(--warm-white);
        }

    /* Individual testimonial card */
    .testimonial-card {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: var(--space-2xl);
        }

        .testimonial-quote {
            font-family: var(--font-display);
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-style: italic;
            margin-bottom: var(--space-xl);
            line-height: 1.6;
            color: var(--rose-pink);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-md);
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-luxury);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--deep-forest);
        }

        .author-info h4 {
            font-weight: 500;
            margin-bottom: 2px;
        }

        .author-info p {
            opacity: 0.7;
            font-size: 0.9rem;
        }

    /* ========================= */
    /* Contact CTA */
    /* ========================= */
    /* Contact call-to-action section */
    .contact-cta {
            padding: var(--space-3xl) 0;
            background: var(--cream);
            text-align: center;
        }

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

        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            color: var(--warm-white);
            margin-bottom: var(--space-md);
        }

        .cta-subtitle {
            font-size: 1.1rem;
            color: var(--soft-grey);
            margin-bottom: var(--space-xl);
        }

    /* Contact form grid layout */
    .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-md);
            max-width: 600px;
            margin: var(--space-xl) auto 0;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-input {
            padding: var(--space-md);
            border: 2px solid rgba(27, 59, 54, 0.1);
            border-radius: var(--border-radius);
            font-family: var(--font-body);
            font-size: 1rem;
            background: var(--warm-white);
            transition: var(--transition);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--elegant-gold);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

    /* ========================= */
    /* Footer */
    /* ========================= */
    /* Footer section container */
    .footer {
            background: #181818; /* much darker background for contrast */
            color: #fff; /* pure white text for visibility */
            padding: var(--space-2xl) 0 var(--space-lg);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-xl); /* even gap between columns */
            margin-bottom: var(--space-xl);
        }

        .footer-section h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            margin-bottom: var(--space-md);
            color: var(--forest-green);
        }

        .footer-section p,
        .footer-section a {
            color: #fff;
            text-decoration: none;
            margin-bottom: var(--space-xs);
            display: block;
            transition: var(--transition);
        }

        .footer-section a:hover {
            color: var(--rose-pink);
        }

        .footer-bottom {
            text-align: center;
            padding-top: var(--space-lg);
            border-top: 1px solid rgba(254, 252, 248, 0.1);
            opacity: 0.6;
        }

    /* ========================= */
    /* Mobile Responsiveness */
    /* ========================= */
    /* Hide nav menu on smaller screens */
    @media (max-width: 980px) {
            .nav-menu {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-cta-group {
                flex-direction: column;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }

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

            .contact-form {
                grid-template-columns: 1fr;
            }

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

    /* ========================= */
    /* Smooth Scrolling */
    /* ========================= */
    /* Enable smooth scroll for anchor links */
    html {
            scroll-behavior: smooth;
        }

    /* ========================= */
    /* Loading Animation */
    /* ========================= */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

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