/* CyEstate Frontend - Modern Light Premium */
/* --- 1. IMPORTS & VARIABLES --- */
/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;700;800&display=swap');

*/
:root {
    --lux-navy: #091221;
    --lux-navy-light: #111D35;
    --lux-obsidian: #0A0A0C;
    --lux-charcoal: #18181B;
    --lux-gold: #D4AF37;
    --lux-gold-hover: #b5952f;
    --lux-gold-light: #E8D7B8;
    --lux-bg: #F7F7F8;
    --lux-surface: #FFFFFF;
    --lux-text: #111111;
    --lux-text-muted: #71717A;
    --lux-border: #E4E4E7;
    --lux-border-dark: rgba(255, 255, 255, 0.1);
    
    --lux-font-display: 'Ubuntu', sans-serif;
    --lux-font-body: 'Ubuntu', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. BASE & TYPOGRAPHY --- */
body {
    margin: 0;
    padding: 0;
    font-family: var(--lux-font-body);
    background-color: var(--lux-bg);
    color: var(--lux-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main { flex: 1; }

h1, h2, h3, h4, h5, h6 { 
    font-family: var(--lux-font-display); 
    letter-spacing: -0.02em; 
    margin-top: 0; 
    color: var(--lux-obsidian); 
}

.lux-container { 
    max-width: 1440px; 
    margin: 0 auto; 
    padding: 0 5%; 
    width: 100%; 
    box-sizing: border-box; 
}

.lux-section { padding: 100px 0; }
.lux-section-dark { background-color: var(--lux-navy); color: #fff; position: relative; }
.lux-section-dark h2, .lux-section-dark h3 { color: #fff; }

.lux-label { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 0.2em; 
    font-weight: 600; 
    color: var(--lux-gold); 
    display: block; 
    margin-bottom: 1rem; 
    position: relative; 
    z-index: 2;
}

.lux-heading { font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 1rem; color: var(--lux-text); }
.lux-subheading { font-size: 1.15rem; font-weight: 400; color: var(--lux-text-muted); line-height: 1.6; max-width: 650px; }
.lux-section-dark .lux-subheading, .lux-subheading-dark { color: rgba(255,255,255,0.6); }

/* --- 3. BUTTONS --- */
.lux-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 32px; font-family: var(--lux-font-display); font-weight: 600; 
    font-size: 0.9rem; letter-spacing: 0.05em; text-decoration: none; 
    border-radius: 4px; transition: var(--transition-smooth); cursor: pointer; 
    text-transform: uppercase;
}
.lux-btn-primary { background: var(--lux-gold); color: var(--lux-obsidian); border: 1px solid var(--lux-gold); }
.lux-btn-primary:hover { background: transparent; color: var(--lux-gold); }
.lux-btn-outline { background: transparent; color: var(--lux-obsidian); border: 1px solid var(--lux-border); }
.lux-btn-outline:hover { background: var(--lux-surface); border-color: var(--lux-obsidian); }
.lux-btn-outline-light { background: transparent; color: var(--lux-surface); border: 1px solid rgba(255,255,255,0.3); }
.lux-btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.lux-btn-link { padding: 0; color: var(--lux-gold); text-decoration: none; border-bottom: 1px solid transparent; font-weight: 600; }
.lux-btn-link:hover { border-bottom-color: var(--lux-gold); }
.lux-btn-submit {
    background: var(--lux-gold); color: var(--lux-obsidian); border: none;
    padding: 16px 32px; font-family: var(--lux-font-display); font-weight: 700;
    font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em;
    border-radius: 6px; cursor: pointer; transition: var(--transition-smooth);
    grid-column: 1 / -1; margin-top: 10px;
}
.lux-btn-submit:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255,255,255,0.1); }

/* --- 4. HEADER & NAVIGATION --- */
.lux-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lux-border);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.lux-header-inner { max-width: 1440px; margin: 0 auto; padding: 0 5%; height: 80px; display: flex; align-items: center; justify-content: space-between; }
.lux-brand { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.lux-brand-text { color: var(--lux-navy); font-family: var(--lux-font-display); font-size: 1.3rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.lux-brand-logo { max-height: 42px; width: auto; }

.lux-nav { display: flex; align-items: center; gap: 2.5rem; }
.lux-nav a { color: var(--lux-text-muted); text-decoration: none; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; transition: var(--transition-smooth); }
.lux-nav a:hover { color: var(--lux-gold); }
.lux-header-cta { background: var(--lux-navy); color: var(--lux-gold) !important; padding: 12px 28px; border-radius: 4px; border: 1px solid var(--lux-navy); }
.lux-header-cta:hover { background: transparent; color: var(--lux-navy) !important; }
.lux-nav-toggle { display: none; background: transparent; border: none; color: var(--lux-navy); cursor: pointer; padding: 0; }

/* --- 5. HERO SECTIONS --- */
/* Home Hero */
.lux-hero { 
    position: relative; min-height: 85vh; display: flex; align-items: center; 
    background: var(--lux-obsidian); overflow: hidden; padding: 80px 0 100px;
}
.lux-hero-bg { position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 60%); pointer-events: none; }
.lux-hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.lux-hero-content { position: relative; z-index: 10; padding-right: 20px;}
.lux-hero h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.03em; }
.lux-hero-banner-wrap { position: relative; z-index: 10; border-radius: 12px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); aspect-ratio: 4/3; }
.lux-hero-banner-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lux-hero-banner-fallback { width: 100%; height: 100%; background: linear-gradient(135deg, var(--lux-charcoal), var(--lux-navy)); }
.lux-hero-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to top right, rgba(10,10,12,0.4), transparent); pointer-events: none; }

/* Properties Page Hero */
.lux-hero-page { background: var(--lux-navy); color: #fff; padding: 120px 0 80px; text-align: center; position: relative; overflow: hidden; min-height: auto; }
.lux-hero-page h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; margin-bottom: 1rem; position: relative; z-index: 2; }
.lux-hero-page p { margin: 0 auto; position: relative; z-index: 2; }
.lux-hero-page .lux-hero-bg { background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 70%); }

/* --- 6. METRICS & SERVICES --- */
.lux-metrics-bar { position: relative; margin-top: -50px; z-index: 20; }
.lux-metrics-inner { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); padding: 30px 0; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--lux-border); }
.lux-metric { text-align: center; border-right: 1px solid var(--lux-border); }
.lux-metric:last-child { border-right: none; }
.lux-metric-val { font-family: var(--lux-font-display); font-size: 2.2rem; font-weight: 700; color: var(--lux-obsidian); line-height: 1; margin-bottom: 0.5rem; }
.lux-metric-lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lux-text-muted); font-weight: 600; }

.lux-services { padding: 100px 0 60px; background: var(--lux-surface); }
.lux-service-link { display: flex; align-items: center; justify-content: space-between; padding: 35px 0; border-bottom: 1px solid var(--lux-border); text-decoration: none; color: var(--lux-obsidian); transition: var(--transition-smooth); }
.lux-service-link:first-child { border-top: 1px solid var(--lux-border); }
.lux-service-link h3 { margin: 0; font-size: 1.8rem; font-weight: 400; transition: var(--transition-smooth); }
.lux-service-link p { margin: 0; color: var(--lux-text-muted); font-size: 1rem; transition: var(--transition-smooth); }
.lux-service-icon { font-size: 2rem; color: var(--lux-border); transition: var(--transition-smooth); font-family: var(--lux-font-body); font-weight: 300;}
.lux-service-link:hover { padding-left: 15px; padding-right: 15px; }
.lux-service-link:hover h3 { color: var(--lux-gold); }
.lux-service-link:hover .lux-service-icon { color: var(--lux-gold); transform: translate(5px, -5px); }

/* --- 7. FORMS, FILTERS & INPUTS --- */
.lux-filter-card { 
    background: var(--lux-surface); border-radius: 12px; padding: 30px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.04); margin-top: -60px; 
    position: relative; z-index: 10; border-top: 4px solid var(--lux-gold);
}
.lux-filter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.lux-input { 
    width: 100%; padding: 14px 16px; border: 1px solid var(--lux-border); border-radius: 6px; 
    font-family: var(--lux-font-body); font-size: 0.95rem; color: var(--lux-text); background: var(--lux-bg);
    transition: var(--transition-smooth); box-sizing: border-box;
}
.lux-input:focus { outline: none; border-color: var(--lux-gold); background: var(--lux-surface); box-shadow: 0 0 0 3px rgba(212,175,55,0.1); }
.lux-input-dark {
    width: 100%; padding: 16px 20px; background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 6px; color: #fff; 
    font-family: var(--lux-font-body); font-size: 0.95rem; transition: var(--transition-smooth); box-sizing: border-box;
}
.lux-input-dark::placeholder { color: rgba(255,255,255,0.3); }
.lux-input-dark:focus { outline: none; border-color: var(--lux-gold); background: rgba(255,255,255,0.06); box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1); }
.lux-filter-actions { display: flex; gap: 10px; grid-column: 1 / -1; justify-content: flex-end; margin-top: 10px; }

/* --- 8. PROPERTY CARDS & GRIDS --- */
.lux-grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.lux-grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }

.lux-prop-card { text-decoration: none; color: inherit; display: block; height: 100%; }
.lux-prop-card-inner { background: var(--lux-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--lux-border); box-shadow: 0 4px 6px rgba(0,0,0,0.02); transition: var(--transition-smooth); display: flex; flex-direction: column; height: 100%; }
.lux-prop-card:hover .lux-prop-card-inner { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: transparent; }
.lux-prop-img-box { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #f0f0f0; }
.lux-prop-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.lux-prop-card:hover .lux-prop-img { transform: scale(1.05); }
.lux-image-fallback { width: 100%; height: 100%; background: #e9ecef; display: flex; align-items: center; justify-content: center; color: var(--lux-text-muted); }
.lux-prop-badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.95); color: var(--lux-obsidian); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; padding: 6px 12px; border-radius: 4px; z-index: 2; backdrop-filter: blur(4px); }
.lux-prop-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.lux-prop-price { font-family: var(--lux-font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; color: var(--lux-obsidian); }
.lux-prop-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 12px; color: var(--lux-text); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lux-prop-meta { margin-top: auto; padding-top: 15px; border-top: 1px solid var(--lux-border); display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--lux-text-muted); }
.lux-status { font-weight: 600; letter-spacing: 0.05em; color: var(--lux-navy); text-transform: uppercase;}
.lux-card-actions { margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--lux-border); }
.lux-card-actions .lux-btn { width: 100%; padding: 10px; font-size: 0.8rem; }

.trend-pill { padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }
.trend-up { background: rgba(212, 175, 55, 0.1); color: var(--lux-gold); }
.trend-down { background: #f4f4f5; color: var(--lux-text-muted); }

/* --- 9. MARKET INTELLIGENCE CARDS --- */
.lux-data-panel-dark { 
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); 
    border-radius: 16px; padding: 35px 30px; backdrop-filter: blur(10px); transition: var(--transition-smooth);
}
.lux-data-panel-dark:hover { background: rgba(255,255,255,0.04); border-color: rgba(212, 175, 55, 0.3); }
.lux-data-header { margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px dashed rgba(255,255,255,0.1); }
.lux-data-panel-dark h4 { font-size: 1.8rem; margin: 0; color: #fff; font-weight: 500; }
.lux-data-panel-dark .loc { display: block; color: var(--lux-gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; margin-top: 5px; }

.stat-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed rgba(255,255,255,0.08); padding-bottom: 14px; margin-bottom: 14px; gap: 15px; }
.stat-row:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0;}
.stat-label { color: rgba(255,255,255,0.5); font-size: 0.9rem; font-weight: 500; white-space: nowrap; }
.stat-val { color: #fff; font-size: 1.1rem; font-weight: 600; text-align: right; font-family: var(--lux-font-display); }
.stat-val.up { color: #4ade80; text-shadow: 0 0 10px rgba(74, 222, 128, 0.2); }
.stat-val.down { color: #f4f4f5; }

.lux-data-panel-light { 
    background: var(--lux-surface); border-radius: 12px; padding: 35px 30px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); position: relative; overflow: hidden;
}
.lux-data-panel-light::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--lux-gold); }
.lux-cat-title { font-size: 1.4rem; font-weight: 700; color: var(--lux-obsidian); margin-bottom: 25px; letter-spacing: 0; }
.lux-data-panel-light .stat-row { border-bottom: 1px solid #f4f4f5; }
.lux-data-panel-light .stat-label { color: var(--lux-text-muted); }
.lux-data-panel-light .stat-val { color: var(--lux-obsidian); }

/* --- 10. LISTINGS EXTRAS --- */
.lux-list-head { margin: 50px 0 30px; display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid var(--lux-border); padding-bottom: 15px; }
.lux-list-head h3 { margin: 0; font-size: 1.5rem; font-weight: 500; }
.lux-empty-state { text-align: center; padding: 80px 20px; color: var(--lux-text-muted); font-size: 1.1rem; background: var(--lux-surface); border-radius: 12px; border: 1px dashed var(--lux-border); }

.lux-pagination-wrap { display: flex; justify-content: center; gap: 8px; margin-top: 60px; }
.lux-page-link { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: var(--lux-surface); border: 1px solid var(--lux-border); border-radius: 6px; color: var(--lux-obsidian); text-decoration: none; font-weight: 600; transition: var(--transition-smooth); }
.lux-page-link:hover:not(.disabled):not(.active) { border-color: var(--lux-gold); color: var(--lux-gold); }
.lux-page-link.active { background: var(--lux-gold); color: var(--lux-obsidian); border-color: var(--lux-gold); }
.lux-page-link.disabled { opacity: 0.5; pointer-events: none; background: transparent; }

/* --- 11. MODAL --- */
.lux-modal-backdrop { position: fixed; inset: 0; background: rgba(10, 10, 12, 0.85); backdrop-filter: blur(8px); z-index: 9998; opacity: 1; visibility: visible; transition: all 0.3s ease; }
.lux-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; visibility: visible; opacity: 1; transition: all 0.3s ease; }
.lux-modal-backdrop[hidden], .lux-modal[hidden] { opacity: 0; visibility: hidden; pointer-events: none; display: flex; }
.lux-modal[hidden] .lux-modal-dialog { transform: translateY(30px) scale(0.98); opacity: 0; }
.lux-modal-dialog { background: var(--lux-surface); width: 100%; max-width: 500px; border-radius: 12px; box-shadow: 0 25px 50px rgba(0,0,0,0.2); overflow: hidden; transform: translateY(0) scale(1); opacity: 1; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.lux-modal-header { padding: 25px 30px; border-bottom: 1px solid var(--lux-border); display: flex; justify-content: space-between; align-items: center; background: var(--lux-bg); }
.lux-modal-header h4 { margin: 0; font-size: 1.5rem; }
.lux-modal-close { background: transparent; border: none; font-size: 1.5rem; cursor: pointer; color: var(--lux-text-muted); transition: color 0.2s; padding: 0; line-height: 1; }
.lux-modal-close:hover { color: var(--lux-obsidian); }
.lux-modal-body { padding: 30px; display: grid; gap: 16px; }
.lux-form-note { background: rgba(212,175,55,0.1); color: var(--lux-obsidian); padding: 12px 15px; border-radius: 6px; font-size: 0.9rem; border-left: 3px solid var(--lux-gold); }
.lux-form-actions { display: flex; gap: 15px; justify-content: flex-end; margin-top: 10px; }
.lux-form-actions .lux-btn { padding: 12px 24px; }

/* --- 12. FOOTER & PRIVATE MANDATE --- */
.lux-footer { background-color: var(--lux-obsidian); color: #fff; padding: 0; margin-top: auto; position: relative; }
.lux-footer-container { max-width: 1440px; margin: 0 auto; padding: 0 5%; }

.lux-footer-requirement {
    background: linear-gradient(145deg, #111D35 0%, #091221 100%);
    border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 16px;
    padding: 50px; transform: translateY(-40px); box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative; overflow: hidden;
}
.lux-footer-requirement::before {
    content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%); pointer-events: none;
}
.lux-footer-requirement-head { text-align: center; margin-bottom: 40px; position: relative; z-index: 2; }
.lux-footer-requirement-head h3 { color: #fff; font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; }
.lux-footer-requirement-head p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin: 0; }
.lux-footer-requirement-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; position: relative; z-index: 2; }

.lux-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 60px; }
.lux-footer-col h4 { color: #fff; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 25px; text-transform: uppercase; }
.lux-footer-col p { color: #A1A1AA; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.lux-footer-link { display: block; color: #A1A1AA; text-decoration: none; font-size: 0.95rem; margin-bottom: 16px; transition: color 0.3s ease; }
.lux-footer-link:hover { color: var(--lux-gold); }

.lux-socials { display: flex; gap: 15px; margin-top: 25px; }
.lux-social-icon { width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: var(--transition-smooth); }
.lux-social-icon:hover { background: var(--lux-gold); border-color: var(--lux-gold); color: var(--lux-obsidian); transform: translateY(-3px); }

.lux-footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 30px 0; display: flex; justify-content: space-between; align-items: center; color: #71717A; font-size: 0.85rem; }
.lux-footer-bottom-links a { color: #71717A; text-decoration: none; margin-left: 24px; transition: color 0.3s; }
.lux-footer-bottom-links a:hover { color: var(--lux-gold); }

/* --- 13. RESPONSIVE QUERIES --- */
@media (max-width: 992px) {
    .lux-hero-layout { grid-template-columns: 1fr; text-align: center; }
    .lux-hero-content { padding-right: 0; }
    .lux-hero h1 { font-size: 3rem; }
    .lux-metrics-inner { grid-template-columns: 1fr 1fr; gap: 20px 0; }
    .lux-metric:nth-child(2) { border-right: none; }
    .lux-metric:nth-child(n+3) { padding-top: 0; }
    .lux-footer-grid { grid-template-columns: 1fr 1fr; }
    .lux-footer-requirement { padding: 30px; }
}
@media (max-width: 768px) {
    .lux-nav { 
        display: none; position: absolute; top: 80px; left: 0; right: 0; 
        background: #fff; flex-direction: column; padding: 20px; 
        border-bottom: 1px solid var(--lux-border); box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
    }
    .lux-nav.active { display: flex; }
    .lux-nav-toggle { display: block; }
    
    .lux-metrics-inner { grid-template-columns: 1fr; padding: 20px 0; }
    .lux-metric { border-right: none; border-bottom: 1px solid var(--lux-border); padding: 15px 0; }
    .lux-metric:last-child { border-bottom: none; }
    
    .lux-grid-4, .lux-grid-3 { grid-template-columns: 1fr; }
    
    .lux-service-link { flex-direction: column; align-items: flex-start; gap: 10px; }
    .lux-service-icon { display: none; }
    
    .lux-footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .lux-footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .lux-footer-bottom-links a { margin: 0 10px; }
    .lux-footer-requirement { transform: translateY(-20px); padding: 25px; }
}
/* --- 13. CONTACT PAGE & MANDATE FORM --- */
.lux-contact-layout { 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: 80px; 
    align-items: flex-start; 
}

.lux-contact-info h3 { 
    font-size: 2.8rem; 
    margin-bottom: 1rem; 
}

.lux-contact-lead { 
    font-size: 1.15rem; 
    color: var(--lux-text-muted); 
    margin-bottom: 3rem; 
    line-height: 1.7; 
}

.lux-contact-item { 
    margin-bottom: 2.5rem; 
    display: flex; 
    gap: 20px; 
}

.lux-contact-icon { 
    width: 56px; 
    height: 56px; 
    background: rgba(212, 175, 55, 0.1); 
    color: var(--lux-gold); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.2rem; 
    flex-shrink: 0; 
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.lux-contact-details strong { 
    display: block; 
    font-family: var(--lux-font-display); 
    font-size: 1.2rem; 
    margin-bottom: 0.35rem; 
    color: var(--lux-obsidian); 
    font-weight: 700;
}

.lux-contact-details p, .lux-contact-details a { 
    margin: 0; 
    color: var(--lux-text-muted); 
    line-height: 1.6; 
    text-decoration: none;
    transition: var(--transition-smooth);
}

.lux-contact-details a:hover {
    color: var(--lux-gold);
}

.lux-contact-form-card { 
    background: var(--lux-surface); 
    padding: 50px; 
    border-radius: 12px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.04); 
    border: 1px solid var(--lux-border); 
    border-top: 4px solid var(--lux-gold); 
}

.lux-contact-form-card h3 { 
    font-size: 2rem; 
    margin-bottom: 0.5rem; 
}

.lux-contact-form-card > p { 
    color: var(--lux-text-muted); 
    margin-bottom: 35px; 
    line-height: 1.6;
}

.lux-form-grid-2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    margin-bottom: 20px; 
}

.lux-form-grid-full { 
    grid-column: 1 / -1; 
}

@media (max-width: 992px) {
    .lux-contact-layout { 
        grid-template-columns: 1fr; 
        gap: 50px; 
    }
    .lux-contact-form-card { 
        padding: 40px 30px; 
    }
}

@media (max-width: 768px) {
    .lux-form-grid-2 { 
        grid-template-columns: 1fr; 
    }
    .lux-contact-info h3 { 
        font-size: 2.2rem; 
    }
}
/* --- 14. GOOGLE MAP CONTAINER --- */
.lux-map-wrap {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--lux-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 320px;
    position: relative;
    background: #e9ecef;
}

.lux-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* Optional: Add grayscale for a more editorial/luxury look */
    filter: grayscale(100%) contrast(1.1) opacity(0.8);
}
/* --- 15. AGENT CALCULATOR & BENEFITS --- */
.lux-benefits-list { list-style: none; padding: 0; margin: 0 0 40px 0; }
.lux-benefits-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 1.05rem; color: var(--lux-text-muted); line-height: 1.6; }
.lux-benefits-list li svg { flex-shrink: 0; color: var(--lux-gold); width: 24px; height: 24px; margin-top: 2px; }
.lux-benefits-list strong { color: var(--lux-obsidian); font-family: var(--lux-font-display); font-size: 1.15rem; display: block; margin-bottom: 2px; }

/* Interactive Calculator Card */
.lux-calculator-card {
    background: linear-gradient(145deg, #111D35 0%, #091221 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}
.lux-calculator-card::before {
    content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%); pointer-events: none;
}
.lux-calc-header { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 25px; margin-bottom: 30px; }
.lux-calc-header h4 { color: #fff; font-size: 1.8rem; margin: 0 0 5px 0; }
.lux-calc-header p { color: rgba(255,255,255,0.6); margin: 0; font-size: 0.95rem; }

/* Range Slider */
.lux-range-wrap { margin-bottom: 35px; }
.lux-range-label { display: flex; justify-content: space-between; color: #fff; font-weight: 600; margin-bottom: 15px; font-family: var(--lux-font-display); font-size: 1.2rem; }
.lux-range-label span.val { color: var(--lux-gold); font-size: 1.5rem; }

input[type=range].lux-slider {
    -webkit-appearance: none; width: 100%; background: transparent; margin: 10px 0;
}
input[type=range].lux-slider:focus { outline: none; }
input[type=range].lux-slider::-webkit-slider-runnable-track {
    width: 100%; height: 6px; cursor: pointer; background: rgba(255,255,255,0.1); border-radius: 3px;
}
input[type=range].lux-slider::-webkit-slider-thumb {
    height: 24px; width: 24px; border-radius: 50%; background: var(--lux-gold); cursor: pointer;
    -webkit-appearance: none; margin-top: -9px; box-shadow: 0 0 15px rgba(212,175,55,0.5);
    border: 3px solid #fff; transition: transform 0.1s;
}
input[type=range].lux-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

/* Results */
.lux-calc-results { background: rgba(0,0,0,0.3); border-radius: 12px; padding: 25px; border: 1px solid rgba(255,255,255,0.05); }
.lux-calc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.lux-calc-row:last-child { margin-bottom: 0; border-top: 1px dashed rgba(255,255,255,0.1); padding-top: 15px; margin-top: 15px; }
.lux-calc-lbl { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.lux-calc-val { color: #fff; font-family: var(--lux-font-display); font-weight: 600; font-size: 1.1rem; }
.lux-calc-row.highlight .lux-calc-lbl { color: var(--lux-gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.lux-calc-row.highlight .lux-calc-val { color: #4ade80; font-size: 2rem; text-shadow: 0 0 20px rgba(74, 222, 128, 0.2); }

/* Visual Split Graph */
.lux-split-graph { display: flex; height: 8px; border-radius: 4px; overflow: hidden; margin-top: 15px; }
.lux-split-platform { background: rgba(255,255,255,0.2); width: 60%; }
.lux-split-agent { background: #4ade80; width: 40%; }
.lux-split-legend { display: flex; justify-content: space-between; margin-top: 8px; font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* --- 16. ROADMAP / TRAVEL TIMELINE --- */
.lux-roadmap-section {
    background: var(--lux-bg);
    padding: 100px 0;
    border-top: 1px solid var(--lux-border);
}

.lux-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

/* The Central Golden Road */
.lux-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, rgba(212,175,55,0.1) 0%, var(--lux-gold) 50%, rgba(212,175,55,0.1) 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.lux-timeline-item {
    padding: 0 50px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.lux-timeline-item:nth-child(odd) {
    left: 0;
}

.lux-timeline-item:nth-child(even) {
    left: 50%;
}

/* The glowing dot on the road */
.lux-timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--lux-bg);
    border: 4px solid var(--lux-gold);
    border-radius: 50%;
    top: 20px;
    z-index: 2;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.lux-timeline-item:nth-child(odd) .lux-timeline-dot {
    right: -12px;
}

.lux-timeline-item:nth-child(even) .lux-timeline-dot {
    left: -12px;
}

/* The content card */
.lux-timeline-content {
    background: var(--lux-surface);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--lux-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.lux-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Giant background numbers */
.lux-step-num {
    position: absolute;
    top: -10px;
    right: 10px;
    font-family: var(--lux-font-display);
    font-size: 6rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.05);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.lux-timeline-content:hover .lux-step-num {
    color: rgba(212, 175, 55, 0.12);
    transform: scale(1.1) rotate(5deg);
}

.lux-timeline-content h4 {
    font-size: 1.3rem;
    color: var(--lux-obsidian);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.lux-timeline-content p {
    color: var(--lux-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Mobile responsive timeline (Collapses to the left) */
@media screen and (max-width: 768px) {
    .lux-timeline::after {
        left: 20px;
    }
    .lux-timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
    }
    .lux-timeline-item:nth-child(even) {
        left: 0;
    }
    .lux-timeline-item:nth-child(odd) .lux-timeline-dot,
    .lux-timeline-item:nth-child(even) .lux-timeline-dot {
        left: 8px;
        right: auto;
    }
    .lux-step-num {
        font-size: 4.5rem;
    }
}/* --- 17. PROPERTY DETAIL PAGE --- */
.lux-detail-gallery { border: 1px solid var(--lux-border); border-radius: 14px; overflow: hidden; background: var(--lux-surface); }
.lux-detail-main-image-wrap { width: 100%; background: var(--lux-bg); aspect-ratio: 16/10; overflow: hidden; }
.lux-detail-main-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.lux-detail-main-image-empty { min-height: 420px; font-size: 1rem; }
.lux-detail-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 8px; padding: 10px; border-top: 1px solid var(--lux-border); }
.lux-detail-thumb { border: 1px solid var(--lux-border); background: #fff; padding: 0; border-radius: 8px; overflow: hidden; cursor: pointer; transition: var(--transition-smooth); }
.lux-detail-thumb img { width: 100%; height: 72px; object-fit: cover; display: block; }
.lux-detail-thumb:hover { border-color: var(--lux-gold); transform: translateY(-1px); }
.lux-detail-thumb.active { border-color: var(--lux-gold); box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25); }
.lux-detail-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.lux-detail-pill { display: inline-flex; align-items: center; padding: 8px 12px; border: 1px solid var(--lux-border); border-radius: 999px; font-size: 0.82rem; font-weight: 600; background: var(--lux-bg); color: var(--lux-text); }
.lux-detail-table th { width: 32%; color: var(--lux-text-muted); font-weight: 600; background: var(--lux-bg); }
.lux-detail-table td { color: var(--lux-text); }

@media (max-width: 991.98px) {
  .lux-detail-main-image-empty { min-height: 280px; }
}

/* --- 18. PROPERTY LIGHTBOX --- */
.lux-lightbox { position: fixed; inset: 0; background: rgba(6, 10, 18, 0.92); z-index: 10050; display: flex; align-items: center; justify-content: center; }
.lux-lightbox[hidden] { display: none !important; }
.lux-lightbox-stage { width: min(92vw, 1200px); height: min(84vh, 820px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.lux-lightbox-stage img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45); }
.lux-lightbox-caption { color: rgba(255,255,255,0.88); font-size: 0.9rem; letter-spacing: 0.02em; }
.lux-lightbox-close { position: absolute; top: 16px; right: 20px; background: transparent; border: 0; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }
.lux-lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); color: #fff; cursor: pointer; font-size: 1.3rem; }
.lux-lightbox-nav.prev { left: 16px; }
.lux-lightbox-nav.next { right: 16px; }
.lux-lightbox-nav:hover { background: rgba(255,255,255,0.16); }
.lux-detail-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: start;
}

/* Gallery */
.lux-gallery { margin-bottom: 40px; }
.lux-main-img-wrap {
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #e9ecef;
    box-shadow: var(--shadow-sm);
    cursor: zoom-in;
    position: relative;
}
.lux-main-img {
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.lux-main-img-wrap:hover .lux-main-img { transform: scale(1.03); }
.lux-main-img-empty { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--lux-text-muted); font-weight: 500; }

.lux-thumb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}
.lux-thumb {
    aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; 
    border: 2px solid transparent; cursor: pointer; 
    transition: var(--transition-smooth); opacity: 0.5; 
    padding: 0; background: transparent;
}
.lux-thumb:hover { opacity: 0.8; }
.lux-thumb.active { opacity: 1; border-color: var(--lux-gold); box-shadow: 0 4px 12px rgba(212,175,55,0.2); }
.lux-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Detail Content Cards */
.lux-detail-card {
    background: var(--lux-surface);
    border-radius: 16px;
    border: 1px solid var(--lux-border);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}
.lux-detail-card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 25px; border-bottom: 1px solid var(--lux-border); padding-bottom: 15px; }

/* Snapshot Grid */
.lux-snapshot-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px;
    background: var(--lux-bg); padding: 25px; border-radius: 12px; border: 1px dashed var(--lux-border);
}
.lux-snap-item { display: flex; flex-direction: column; }
.lux-snap-lbl { font-size: 0.8rem; color: var(--lux-text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.lux-snap-val { font-family: var(--lux-font-display); font-size: 1.25rem; font-weight: 700; color: var(--lux-obsidian); }

/* Detail Table */
.lux-detail-table { width: 100%; border-collapse: collapse; }
.lux-detail-table th, .lux-detail-table td { padding: 16px 0; border-bottom: 1px solid #f4f4f5; text-align: left; vertical-align: top; }
.lux-detail-table tr:last-child th, .lux-detail-table tr:last-child td { border-bottom: none; padding-bottom: 0; }
.lux-detail-table th { color: var(--lux-text-muted); font-weight: 500; width: 35%; font-size: 0.95rem; }
.lux-detail-table td { color: var(--lux-obsidian); font-weight: 600; font-family: var(--lux-font-display); font-size: 1.05rem; }

/* Sticky Sidebar */
.lux-sidebar-sticky { position: sticky; top: 100px; }

/* Fullscreen Lightbox */
.lux-lightbox {
    position: fixed; inset: 0; background: rgba(10, 10, 12, 0.95); backdrop-filter: blur(10px);
    z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 1; visibility: visible; transition: var(--transition-smooth);
}
.lux-lightbox[hidden] { opacity: 0; visibility: hidden; pointer-events: none; }
.lux-lightbox-close {
    position: absolute; top: 30px; right: 40px; background: transparent; border: none;
    color: #fff; font-size: 3rem; font-weight: 300; cursor: pointer; transition: color 0.2s; line-height: 1;
}
.lux-lightbox-close:hover { color: var(--lux-gold); }
.lux-lightbox-stage { position: relative; max-width: 90vw; max-height: 80vh; display: flex; flex-direction: column; align-items: center; }
.lux-lightbox-stage img { max-width: 100%; max-height: 75vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.lux-lightbox-caption { color: var(--lux-gold); font-family: var(--lux-font-display); font-size: 1.1rem; letter-spacing: 0.1em; margin-top: 20px; text-transform: uppercase; }
.lux-lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); color: #fff; width: 60px; height: 60px; border-radius: 50%;
    font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition-smooth); backdrop-filter: blur(4px);
}
.lux-lightbox-nav:hover { background: var(--lux-gold); border-color: var(--lux-gold); color: var(--lux-obsidian); }
.lux-lightbox-nav.prev { left: 30px; }
.lux-lightbox-nav.next { right: 30px; }

@media (max-width: 992px) {
    .lux-detail-layout { grid-template-columns: 1fr; gap: 40px; }
    .lux-sidebar-sticky { position: static; }
    .lux-snapshot-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .lux-detail-card { padding: 25px; }
    .lux-detail-table th, .lux-detail-table td { display: block; width: 100%; }
    .lux-detail-table th { padding-bottom: 5px; border-bottom: none; }
    .lux-detail-table td { padding-top: 0; }
    .lux-lightbox-nav { width: 40px; height: 40px; font-size: 1rem; }
    .lux-lightbox-nav.prev { left: 10px; }
    .lux-lightbox-nav.next { right: 10px; }
}