    :root {
            --primary-color: #1a1a1a;
            --accent-color: #c19a6b;
            --light-color: #f3f2ed;
            --dark-color: #2c2c2c;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--primary-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Premium Hero Section */
        .luxury-hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            width: 100%;
            overflow: hidden;
        }
        
        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            padding: 0 20px;
            text-align: center;
            color: white;
        }
        
        .exclusive-message {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 2.5rem;
            max-width: 900px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }
        
        /* Premium Filters */
        .premium-filters {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 25px;
            width: 90%;
            max-width: 1100px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.18);
            animation: fadeIn 1.2s ease-out 0.3s both;
        }
        
        .premium-filters form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .premium-filters select {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 0.95rem;
            color: var(--dark-color);
            cursor: pointer;
            transition: var(--transition);
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
        }
        
        .premium-filters select:focus {
            outline: none;
            box-shadow: 0 0 0 2px var(--accent-color);
        }
        
        .premium-filters select:hover {
            background-color: white;
            transform: translateY(-2px);
        }
        
        .premium-filters button {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .premium-filters button:hover {
            background: #b08a5f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Scroll up button */
        .scroll-up {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .scroll-up:hover {
            transform: translateY(-5px);
            background: #b08a5f;
        }
        
        .scroll-up img {
            width: 25px;
            height: 25px;
            filter: brightness(0) invert(1);
        }
        
        /* Discover section */
        .discover-section {
            height: 80px; 
            display: flex; 
            background-color: var(--light-color); 
            padding: 15px 30px; 
            align-items: center; 
            justify-content: center; 
            border-bottom: 1px solid #636363; 
            border-bottom-left-radius: 25px; 
            border-bottom-right-radius: 25px;
        }
        
        .discover-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem; 
            font-weight: 600; 
            color: #636363; 
            margin: 0; 
            text-align: center;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Responsive design */
        @media (max-width: 992px) {
            .exclusive-message {
                font-size: 2.8rem;
            }
            
            .premium-filters form {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .exclusive-message {
                font-size: 2.2rem;
            }
            
            .premium-filters form {
                grid-template-columns: 1fr;
            }
            
            .luxury-hero {
                min-height: 800px;
            }
        }
        
        @media (max-width: 576px) {
            .exclusive-message {
                font-size: 1.8rem;
            }
            
            .premium-filters {
                padding: 20px;
            }
            
            .discover-section h2 {
                font-size: 1.4rem;
            }
        }
        .sidebar {
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease;
    background-color: #f9f9f9;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar.open {
    width: 300px;
}
 .property-card {
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            background: white;
        }
        
        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        
        .slideshow-container {
            position: relative;
            height: 280px;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            color: #2C2C2C;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease, background 0.3s ease;
            z-index: 10;
        }
        
        .prev {
            left: 15px;
        }
        
        .next {
            right: 15px;
        }
        
        .property-card:hover .prev,
        .property-card:hover .next {
            opacity: 1;
        }
        
        .prev:hover, .next:hover {
            background: rgba(255, 255, 255, 1);
        }
        
       .fraction-indicator {
    position: absolute;
    bottom: 10px;  /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
    font-family: Arial, sans-serif;
    white-space: nowrap;
}

        .status-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 10;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .price-tag {
            background: linear-gradient(90deg, #D4AF37, #F4E4A6);
            color: #2C2C2C;
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 700;
            position: absolute;
            bottom: 15px;
            left: 15px;
            z-index: 10;
        }
        
        .info-button {
            position: relative;
            overflow: hidden;
            transition: color 0.3s ease;
        }
        
        .info-button::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #D4AF37;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.3s ease;
        }
        
        .info-button:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        
        .favorite-btn {
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 10;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .favorite-btn:hover {
            background: rgba(255, 255, 255, 1);
        }
        
        .favorite-btn i {
            color: #2C2C2C;
            transition: color 0.3s ease;
        }
        
        .favorite-btn.active i,
        .favorite-btn:hover i {
            color: #D4AF37;
        }
        
        /* Video player styles */
        .video-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .video-slide.active {
            opacity: 1;
            z-index: 2;
        }
        
        .video-slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 5;
            transition: all 0.3s ease;
        }
        
        .play-button:hover {
            background: rgba(255, 255, 255, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .play-button i {
            color: #D4AF37;
            font-size: 24px;
        }
        
        .media-indicator {
            position: absolute;
            top: 15px;
            left: 50px;
            z-index: 10;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 600;
            background: rgba(0, 0, 0, 0.6);
            color: white;
        }
        
        .video-controls {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            display: flex;
            align-items: center;
            padding: 0 15px;
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .video-slide:hover .video-controls {
            opacity: 1;
        }
        
        .progress-bar {
            flex-grow: 1;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            margin: 0 10px;
            overflow: hidden;
        }
        
        .progress {
            height: 100%;
            background: #D4AF37;
            width: 0%;
        }
        
        .volume-control {
            width: 80px;
            display: flex;
            align-items: center;
        }
        
        .volume-control input {
            width: 100%;
        }
        
        /* Video time display */
        .time-display {
            color: white;
            font-size: 0.8rem;
            margin: 0 10px;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Responsive design */
        @media (max-width: 992px) {
            .exclusive-message {
                font-size: 2.8rem;
            }
            
            .premium-filters form {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .exclusive-message {
                font-size: 2.2rem;
            }
            
            .premium-filters form {
                grid-template-columns: 1fr;
            }
            
            .luxury-hero {
                min-height: 800px;
            }
            
            .prev, .next {
                opacity: 1;
            }
            
            .video-controls {
                opacity: 1;
            }
        }
        
        @media (max-width: 576px) {
            .exclusive-message {
                font-size: 1.8rem;
            }
            
            .premium-filters {
                padding: 20px;
            }
            
            .discover-section h2 {
                font-size: 1.4rem;
            }
            
            .play-button {
                width: 50px;
                height: 50px;
            }
            
            .play-button i {
                font-size: 20px;
            }
        }