
        /* Hero Slider Styles */
        .luxury-hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
        }

        .hero-slide.active {
            opacity: 1;
            z-index: 1;
        }

        .hero-content {
            color: white;
            max-width: 600px;
            padding: 2rem;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hero-divider {
            width: 100px;
            height: 2px;
            background: #c19f63;
            margin: 2rem 0;
        }

        .hero-features {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
        }

        .hero-feature {
            text-align: left;
        }

        .feature-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }

        .feature-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: #c19f63;
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .slider-dots {
            display: flex;
            gap: 1rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: #c19f63;
            transform: scale(1.2);
        }

        /* Slider Arrows */
        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
            z-index: 10;
            transform: translateY(-50%);
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .slider-arrow:hover {
            background: #c19f63;
            transform: scale(1.1);
        }

        /* Luxury Button Styles */
        .btn-luxury-primary {
            background: #c19f63;
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 0;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-luxury-primary:hover {
            background: #a8854a;
            color: white;
            transform: translateY(-2px);
        }

        .btn-outline-light {
            border: 2px solid white;
            color: white;
            padding: 10px 28px;
            border-radius: 0;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-outline-light:hover {
            background: white;
            color: #000;
        }

       /* Responsive Design */
        @media (max-width: 768px) {
            .luxury-hero-slider {
                height: 70vh;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .hero-features {
                flex-direction: column;
                gap: 1rem;
            }
            
            .slider-arrows {
                padding: 0 1rem;
            }
            
            .slider-arrow {
                width: 40px;
                height: 40px;
            }

            .luxury-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .investment-stats {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .luxury-hero-slider {
                height: 60vh;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content {
                padding: 1rem;
            }

            .project-features {
                flex-direction: column;
            }
        }


   