        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #0a0a0a;
            color: #ece9e0;
        }

        /* Hero Slider Section - replaces original .hero */
        .hero-slider-section {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 680px;
            overflow: hidden;
            background-color: #0c0b0a;
        }

        /* Slides Container */
        .slides-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s linear 0.9s;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
            transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s linear 0s;
            z-index: 2;
        }

        /* Dark overlay for text readability */
        .slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
            z-index: 1;
            pointer-events: none;
        }

        /* TEXT SLIDE FROM RIGHT TO LEFT animation */
        .slide-content {
            position: relative;
            z-index: 3;
            max-width: 680px;
            padding: 2rem 3rem 2rem 5%;
            margin-left: 5%;
            opacity: 0;
            transform: translateX(70px);  /* start from right side */
            transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.2), opacity 0.6s ease;
        }

        /* When slide becomes active, text elegantly slides from right to original position */
        .slide.active .slide-content {
            opacity: 1;
            transform: translateX(0);
        }

        .slide h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.8rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 1.2rem;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .slide h1 span {
            font-weight: 700;
            background: linear-gradient(135deg, #f5e6d3, #d4af7a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .slide p {
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 400;
            color: rgba(255, 250, 240, 0.92);
            margin-bottom: 2rem;
            max-width: 560px;
            text-shadow: 0 1px 4px rgba(0,0,0,0.2);
        }

        .btn {
            display: inline-block;
            padding: 0.9rem 2.3rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.4s ease;
            border-radius: 40px;
            font-size: 1rem;
            letter-spacing: 1px;
            backdrop-filter: blur(2px);
        }

        .outline-btn {
            border: 1.5px solid #e9d6b0;
            background: transparent;
            color: #f7efdc;
        }

        .outline-btn:hover {
            background: #d4af7a;
            border-color: #d4af7a;
            color: #0a0a0a;
            transform: translateY(-3px);
            box-shadow: 0 12px 24px -12px rgba(0,0,0,0.4);
        }

        /* Floating card (luxury element) consistent across slides */
        .floating-card {
            position: absolute;
            bottom: 10%;
            right: 5%;
            z-index: 20;
            background: rgba(20, 18, 16, 0.75);
            backdrop-filter: blur(12px);
            border-radius: 24px;
            padding: 1.3rem 1.8rem;
            max-width: 260px;
            border: 1px solid rgba(212, 175, 122, 0.4);
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .floating-card:hover {
            transform: translateY(-6px);
            background: rgba(20, 18, 16, 0.85);
            border-color: rgba(212, 175, 122, 0.7);
        }

        .floating-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.6rem;
            letter-spacing: -0.3px;
        }

        .floating-card h3 span {
            color: #d4af7a;
            font-weight: 700;
        }

        .floating-card p {
            font-size: 0.85rem;
            line-height: 1.4;
            color: #e2d9ce;
            margin-bottom: 0;
        }

        /* Navigation Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
            width: 48px;
            height: 48px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 25;
            transition: all 0.3s;
            border: 1px solid rgba(212, 175, 122, 0.5);
            color: #f0e2cf;
            font-size: 1.5rem;
        }

        .slider-arrow:hover {
            background: rgba(212, 175, 122, 0.8);
            border-color: #e9d6b0;
            color: #0a0a0a;
        }

        .arrow-left {
            left: 2%;
        }

        .arrow-right {
            right: 2%;
        }

        /* Dots indicators */
        .slider-dots {
            position: absolute;
            bottom: 6%;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 14px;
            z-index: 25;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 10px;
            background: rgba(255, 248, 235, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
            backdrop-filter: blur(2px);
        }

        .dot.active {
            width: 28px;
            background: #d4af7a;
            box-shadow: 0 0 8px rgba(212, 175, 122, 0.8);
        }

        /* Loading indicator */
        .loading-indicator {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 100;
            color: #d4af7a;
            font-size: 1.2rem;
            background: rgba(0,0,0,0.7);
            padding: 15px 25px;
            border-radius: 40px;
            backdrop-filter: blur(8px);
        }

        /* Responsive adjustments */
        @media (max-width: 900px) {
            .slide-content {
                margin-left: 5%;
                padding: 1rem 2rem;
                max-width: 85%;
            }
            .slide h1 {
                font-size: 2.6rem;
            }
            .slide p {
                font-size: 1rem;
            }
            .floating-card {
                bottom: 12%;
                right: 3%;
                padding: 1rem 1.4rem;
                max-width: 230px;
            }
            .slider-arrow {
                width: 38px;
                height: 38px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 650px) {
            .floating-card {
                display: none;
            }
            .slide h1 {
                font-size: 2rem;
            }
            .arrow-left {
                left: 4%;
            }
            .arrow-right {
                right: 4%;
            }
            .btn {
                padding: 0.7rem 1.8rem;
            }
        }

        .hero-slider-section {
            animation: fadeInSection 0.4s ease;
        }
        @keyframes fadeInSection {
            from { opacity: 0; }
            to { opacity: 1; }
        }

