   :root {
        --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
        --border-radius: 16px;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Enhanced Typography */
    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        line-height: 1.6;
    }

    /* Property Slider Enhancements */
    .property-slider {
        width: 100%;
        height: 80vh;
        min-height: 600px;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        overflow: hidden;
        position: relative;
    }
    
    .property-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }
    
    .property-slider .swiper-slide:hover img {
        transform: scale(1.05);
    }

    /* Hero Content Overlay */
    .hero-overlay {
        background: linear-gradient(45deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
        backdrop-filter: blur(2px);
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        margin-bottom: 1rem;
        animation: slideInUp 1s ease-out;
    }
/* Hero section title color */
.hero-title,
.hero h1,
.hero-section h1,
.hero-content h1 {
    color: white !important;
}

/* Additional hero text elements that might need white color */
.hero-subtitle,
.hero p,
.hero-section p,
.hero-content p {
    color: white;
}
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        font-weight: 300;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        animation: slideInUp 1s ease-out 0.2s both;
    }

    .hero-price {
        font-size: clamp(1.5rem, 4vw, 3rem);
        font-weight: 700;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: slideInUp 1s ease-out 0.4s both;
    }

    /* Enhanced Cards */
    .property-card {
        background: white;
        border-radius: var(--border-radius);
        box-shadow: var(--card-shadow);
        transition: var(--transition);
        overflow: hidden;
        position: relative;
    }
    
    .property-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--card-shadow-hover);
    }

    .property-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--primary-gradient);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

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

    /* Enhanced Section Headers */
    .section-header {
        position: relative;
        padding-bottom: 1rem;
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        font-weight: 700;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
    }

    .section-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 3px;
        background: var(--primary-gradient);
        border-radius: 2px;
    }

    /* Enhanced Amenity Cards */
    .amenity-card {
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        border: 2px solid transparent;
        border-radius: 12px;
        padding: 1rem;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .amenity-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(99, 126, 234, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .amenity-card:hover {
        border-color: rgba(99, 126, 234, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(99, 126, 234, 0.15);
    }

    .amenity-card:hover::before {
        opacity: 1;
        animation: rotate 2s linear infinite;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* Property Specs Grid */
    .spec-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .spec-item {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

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

    .spec-item:hover::before {
        left: 100%;
    }

    .spec-item i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        display: block;
    }

    /* Enhanced Gallery */
    .gallery-item {
        cursor: pointer;
        transition: var(--transition);
        border-radius: 12px;
        overflow: hidden;
        position: relative;
    }
    
    .gallery-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(99, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    .gallery-item::after {
        content: '🔍';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        font-size: 2rem;
        z-index: 2;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover::before {
        opacity: 1;
    }

    .gallery-item:hover::after {
        transform: translate(-50%, -50%) scale(1);
    }

    .gallery-item:hover {
        transform: scale(1.05);
    }

    /* Enhanced Video/PDF Menu */
    .menu-container {
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        border-radius: var(--border-radius);
        padding: 1.5rem;
        box-shadow: var(--card-shadow);
    }

    .menu-item {
        transition: var(--transition);
        border-radius: 8px;
        position: relative;
        overflow: hidden;
    }
    
    .menu-item:hover {
        transform: translateX(8px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .menu-item.active {
        background: var(--primary-gradient) !important;
        color: white !important;
        box-shadow: 0 8px 20px rgba(99, 126, 234, 0.3);
    }

    /* Enhanced Sidebar */
    .sidebar-sticky {
        position: sticky;
        top: 2rem;
        transition: var(--transition);
    }

    /* Enhanced Contact Form */
    .contact-form {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: var(--border-radius);
        padding: 2rem;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .contact-form::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }

    .form-input {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 0.75rem 1rem;
        color: white;
        transition: var(--transition);
    }

    .form-input:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.4);
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    }

    .form-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    /* Enhanced Social Share */
    .social-share-btn {
        text-decoration: none !important;
        transition: var(--transition);
        border-radius: 12px;
        position: relative;
        overflow: hidden;
    }
    
    .social-share-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

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

    .social-share-btn:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* Responsive Animations */
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .content-item {
        animation: slideInUp 0.6s ease-out;
    }

    /* Loading States */
    .loading-skeleton {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
    }

    @keyframes loading {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }

    /* Enhanced Mobile Responsiveness */
    @media (max-width: 768px) {
        .property-slider {
            height: 60vh;
            min-height: 400px;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .spec-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        }
        
        .sidebar-sticky {
            position: static;
        }
        
        .contact-form {
            margin-top: 2rem;
        }
        
        /* Video section mobile fixes */
        .video-section-mobile {
            flex-direction: column;
        }
        
        .video-menu-mobile {
            order: 2;
            margin-top: 1rem;
        }
        
        .video-player-mobile {
            order: 1;
        }
        
        /* PDF brochure mobile fixes */
        .pdf-container {
            height: 60vh !important;
            min-height: 400px !important;
        }
        
        #pdf-controls {
            height: auto !important;
            padding: 1rem;
        }
        
        #pdf-controls .flex {
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        #pdf-controls a,
        #pdf-controls button {
            flex: 1;
            min-width: 120px;
            padding: 0.75rem 0.5rem;
            font-size: 0.875rem;
        }
        
        /* Amenities mobile - 2 columns */
        .amenities-mobile-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
        
        .amenity-card {
            padding: 0.75rem !important;
        }
        
        .amenity-card .flex {
            flex-direction: column;
            text-align: center;
            space-x: 0;
        }
        
        .amenity-card .flex > div:first-child {
            margin-bottom: 0.5rem;
        }
        
        .amenity-card h4 {
            font-size: 0.875rem;
        }
        
        .amenity-card p {
            font-size: 0.75rem;
            display: none; /* Hide description on mobile for space */
        }
    }

    @media (max-width: 640px) {
        .property-slider {
            height: 50vh;
            min-height: 350px;
        }
        
        .spec-grid {
            grid-template-columns: 1fr 1fr;
        }
        
        .gallery-item {
            height: 150px;
        }
        
        /* More mobile optimizations */
        .pdf-container {
            height: 50vh !important;
            min-height: 300px !important;
        }
        
        .video-menu-container {
            max-height: 200px;
        }
        
        .amenity-card .flex {
            flex-direction: column;
            align-items: center;
        }
        
        .amenity-card h4 {
            font-size: 0.8rem;
            margin-top: 0.25rem;
        }
    }

    /* Simple PDF Viewer */
    .pdf-container {
        width: 100%;
        height: 600px;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        border-radius: var(--border-radius);
        box-shadow: var(--card-shadow);
        overflow: hidden;
    }

    #pdf-frame {
        background-color: #f8f9fa;
    }

    #pdf-container::-webkit-scrollbar {
        width: 8px;
    }

    #pdf-container::-webkit-scrollbar-track {
        background: transparent;
    }

    #pdf-container::-webkit-scrollbar-thumb {
        background: rgba(99, 126, 234, 0.3);
        border-radius: 4px;
    }

    /* PDF Viewer Controls */
    .pdf-page-container {
        max-width: 100%;
        margin-bottom: 2rem;
        position: relative;
        transition: transform 0.2s ease;
    }

    .pdf-page-container:hover {
        transform: translateY(-2px);
    }

    .pdf-canvas {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-radius: 4px;
    }

    .pdf-header {
        position: sticky;
        top: 0;
        z-index: 10;
        background-color: rgba(255,255,255,0.95);
        backdrop-filter: blur(5px);
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding: 10px 0;
    }

    #enhanced-viewer::-webkit-scrollbar-thumb:hover {
        background: rgba(99, 126, 234, 0.5);
    }

    /* Image Modal Enhancements */
    #image-modal {
        backdrop-filter: blur(8px);
        background: rgba(0, 0, 0, 0.9);
    }

    #image-modal .modal-content {
        animation: modalZoomIn 0.3s ease-out;
    }

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

    /* Swiper Customizations */
    .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.5);
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background: white;
        transform: scale(1.2);
    }

    .swiper-button-next,
    .swiper-button-prev {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        width: 50px;
        height: 50px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
        color: white;
    }

    /* Enhanced Buttons */
    .btn-primary {
        background: var(--primary-gradient);
        border: none;
        border-radius: 8px;
        padding: 0.75rem 1.5rem;
        font-weight: 600;
        transition: var(--transition);
        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.2), transparent);
        transition: left 0.5s ease;
    }

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

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(99, 126, 234, 0.3);
    }