:root {
    --brand-gold: #C5A065;
    --brand-black: #0a0a0a;
    --brand-dark: #1a1a1a;
    --text-primary: #ffffff;
    --text-muted: #888;
    --max-width: 1200px;
}
body.light-theme {
    --brand-black: #f4f6f8;
    --brand-dark: #ffffff;
    --text-primary: #212529;
    --text-muted: #6c757d;
}
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--brand-black);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.font-playfair {
    font-family: 'Playfair Display', serif;
}
.text-gold {
    color: var(--brand-gold) !important;
}
.bg-darker {
    background-color: var(--brand-dark);
    transition: background-color 0.3s ease;
}
.text-muted-visible {
    color: #b0b0b0;
}
body.light-theme .text-muted-visible {
    color: #6c757d;
}
.btn-gold {
    background-color: var(--brand-gold);
    color: #000;
    border: none;
    font-weight: 500;
}
.btn-gold:hover {
    background-color: #d4af76;
    color: #000;
}
.btn-outline-gold {
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
}
.btn-outline-gold:hover {
    background-color: var(--brand-gold);
    color: #000;
}
body.light-theme .btn-outline-gold {
    color: #9e7f4e;
    border-color: #9e7f4e;
}
.container-fluid,
.container {
    max-width: var(--max-width);
}
#login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}
body.light-theme #login-section {
    background: radial-gradient(circle at center, #ffffff 0%, #e9ecef 100%);
}
.gdrive-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #555;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
body.light-theme .gdrive-badge {
    background: rgba(0, 0, 0, 0.05);
    border-color: #ccc;
    color: #333;
}
.dashboard-container {
    display: none;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
}
.property-card {
    background: var(--brand-dark);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}
body.light-theme .property-card {
    border-color: #dfe6ed;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.property-card:hover {
    border-color: var(--brand-gold);
}
.property-card h5.text-white {
    color: var(--text-primary) !important;
}
.bg-black {
    background-color: #000 !important;
}
body.light-theme .bg-black {
    background-color: #f8f9fa !important;
    color: #000 !important;
    border: 1px solid #dee2e6 !important;
}
body.light-theme .modal-content {
    background-color: #ffffff;
    color: #000;
}
body.light-theme .btn-close-white {
    filter: invert(1);
}
:root {
    --z-peek: 150;
    --z-header: 130;
    --z-mobile-nav: 140;
    --z-chatbot-window: 110;
    --z-chatbot-toggler: 100;
}
.chatbot-toggler { bottom: 85px !important; }
.chatbot-window { bottom: 80px !important; }
@media (max-width: 480px) {
    .chatbot-window {
        bottom: 0 !important;
        height: 550px !important;
        max-height: calc(100dvh - 120px) !important;
    }
}