body {
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

/* Luxury Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #B4941F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass Utility */
.glass-panel {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.nav-glass {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Image Masking for Property Cards */
.property-img-container {
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Page Transitions */
.page-section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    min-height: 100vh;
    padding-top: 100px;
}

.page-section.active {
    display: block;
    opacity: 1;
}

/* Input Styles */
.luxury-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s;
}

.luxury-input:focus {
    border-color: #D4AF37;
    outline: none;
    background: rgba(255, 255, 255, 0.05);
}