:root {
    /* Real Estate Color Palette */
    --primary: #0f172a; /* Deep Navy */
    --primary-hover: #1e293b;
    --secondary: #10b981; /* Emerald Green */
    --accent: #f59e0b; /* Golden Amber */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    --grad-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--dark);
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Modern Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
    filter: brightness(1.1);
}

/* Header Adjustments */
.main_header {
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0 !important;
}

.main_header_nav_links .link {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    color: var(--light) !important;
}

.main_header_nav_links .link:hover {
    background: var(--glass) !important;
    color: var(--secondary) !important;
}

/* Footer Adjustments */
.main_footer {
    background: #000 !important;
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
    padding: 60px 0 !important;
}

/* Blog Modern Styles */
.blog_article {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 0;
    border: 1px solid transparent;
}

.blog_article img {
    border-radius: 20px 20px 0 0 !important;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Products/Properties Grid Modern */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--dark-light);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}
