/* REM - Luxury Real Estate Theme - ImmoVision Style */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&family=Space+Grotesk:wght@400;600;700&display=swap');

:root {
    --navy: #0F172A;
    --navy-light: #1E293B;
    --gold: #D4A853;
    --gold-light: #F0C97A;
    --white: #FAFAFA;
    --slate: #334155;
    --slate-light: #64748B;
    --emerald: #10B981;
    --bg: #F8F7F4;
    --card: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-data: 'Space Grotesk', sans-serif;
}

.dark {
    --bg: #0A0A0A;
    --card: #1A1612;
    --white: #FAFAFA;
}

/* Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background: var(--bg); color: var(--navy); }

/* NAV */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: rgba(15,23,42,0.95);
backdrop-filter: blur(20px);
padding: 0 40px;
display: flex; align-items: center; justify-content: space-between;
height: 70px;
border-bottom: 1px solid rgba(212,168,83,0.2);
}
.logo {
font-family: var(--font-heading);
font-size: 1.6rem; font-weight: 700;
color: var(--white);
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
color: rgba(255,255,255,0.7);
text-decoration: none; font-size: 0.9rem; font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
background: var(--gold);
color: var(--navy) !important;
padding: 9px 22px; border-radius: 8px;
font-weight: 600 !important; font-size: 0.85rem !important;
}

/* Mobile nav - bottom */
.mobile-nav {
display: none;
position: fixed; bottom: 0; left: 0; right: 0;
background: var(--navy); z-index: 99;
padding: 10px 20px; padding-bottom: calc(10px + env(safe-area-inset-bottom));
border-top: 1px solid rgba(212,168,83,0.2);
}
.mobile-nav-items { display: flex; justify-content: space-around; }
.mobile-nav-item {
display: flex; flex-direction: column; align-items: center;
color: rgba(255,255,255,0.6); text-decoration: none;
font-size: 0.7rem; gap: 4px;
}
.mobile-nav-item.active { color: var(--gold); }
.mobile-nav-item svg { width: 22px; height: 22px; }

@media (max-width: 768px) {
    nav { display: none; }
    .mobile-nav { display: block; }
    body { padding-bottom: 70px; }
}

/* HERO */
.hero {
min-height: 100vh;
background: linear-gradient(135deg, var(--navy) 0%, #1a2744 50%, var(--navy) 100%);
position: relative; overflow: hidden;
display: flex; align-items: center; justify-content: center;
text-align: center; padding: 100px 40px 60px;
}
.hero::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(ellipse 80% 60% at 20% 50%, rgba(212,168,83,0.08) 0%, transparent 60%),
radial-gradient(ellipse 60% 80% at 80% 30%, rgba(16,185,129,0.05) 0%, transparent 60%);
}
.hero-grid {
position: absolute; inset: 0; opacity: 0.04;
background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-badge {
display: inline-flex; align-items: center; gap: 8px;
background: rgba(212,168,83,0.15);
border: 1px solid rgba(212,168,83,0.3);
color: var(--gold-light); font-size: 0.8rem; font-weight: 500;
padding: 6px 16px; border-radius: 100px; margin-bottom: 30px;
letter-spacing: 0.05em;
}
.hero h1 {
font-family: var(--font-heading);
font-size: clamp(2.8rem, 6vw, 5rem);
font-weight: 900; line-height: 1.1;
color: white; margin-bottom: 20px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
color: rgba(255,255,255,0.6); font-size: 1.15rem;
max-width: 540px; margin: 0 auto 50px; line-height: 1.7;
}

/* SEARCH BOX */
.search-box {
background: white;
border-radius: 20px;
padding: 10px;
display: flex; align-items: center; gap: 8px;
box-shadow: 0 25px 80px rgba(0,0,0,0.4);
max-width: 780px; margin: 0 auto 40px;
}
.search-tabs {
display: flex; gap: 4px; padding: 4px;
background: var(--bg); border-radius: 14px; margin-right: 4px;
}
.search-tab {
padding: 9px 18px; border-radius: 10px;
font-size: 0.85rem; font-weight: 600; cursor: pointer;
border: none; background: transparent; color: var(--slate);
transition: all 0.2s;
}
.search-tab.active { background: var(--navy); color: white; }
.search-input-wrap {
flex: 1; display: flex; align-items: center; gap: 10px;
padding: 0 12px; border-right: 1px solid #E2E8F0;
}
.search-input-wrap input {
border: none; outline: none; font-size: 0.95rem;
font-family: var(--font-body); color: var(--navy);
flex: 1; background: transparent;
}
.search-select {
padding: 0 16px; display: flex; align-items: center; gap: 8px;
font-size: 0.85rem; color: var(--slate); cursor: pointer;
border-right: 1px solid #E2E8F0; height: 44px;
}
.search-btn {
background: var(--gold); color: var(--navy);
border: none; border-radius: 14px;
padding: 12px 28px; font-weight: 700; font-size: 0.9rem;
cursor: pointer; white-space: nowrap;
}

/* STATS */
.hero-stats {
display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
font-family: var(--font-data);
font-size: 1.8rem; font-weight: 700; color: white;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 2px; }

/* SECTIONS */
.section { padding: 80px 40px; max-width: 1280px; margin: 0 auto; }
.section-label {
display: inline-flex; align-items: center; gap: 8px;
color: var(--gold); font-size: 0.8rem; font-weight: 600;
letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
font-family: var(--font-heading);
font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700;
color: var(--navy); margin-bottom: 8px;
}
.section-sub { color: var(--slate-light); font-size: 1rem; margin-bottom: 40px; }
.bg-alt { background: var(--bg); }

/* PROPERTY CARDS */
.listings-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 24px;
}
.prop-card {
background: white; border-radius: 20px;
overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 2px 20px rgba(15,23,42,0.06);
}
.dark .prop-card { background: #1A1612; }
.prop-card:hover {
transform: translateY(-6px);
box-shadow: 0 20px 60px rgba(15,23,42,0.12);
}
.prop-img {
height: 220px; position: relative; overflow: hidden;
background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
}
.prop-img-bg {
position: absolute; inset: 0; background-size: cover;
background-position: center; transition: transform 0.5s;
}
.prop-card:hover .prop-img-bg { transform: scale(1.08); }
.prop-tag {
position: absolute; top: 14px; left: 14px;
padding: 5px 12px; border-radius: 8px;
font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
text-transform: uppercase;
background: var(--navy); color: white;
}
.prop-tag.location { background: var(--emerald); }
.prop-heart {
position: absolute; top: 14px; right: 14px;
width: 36px; height: 36px; border-radius: 50%;
background: rgba(255,255,255,0.9);
display: flex; align-items: center; justify-content: center;
font-size: 1rem; cursor: pointer; color: #CBD5E1;
}
.prop-heart:hover { color: #EF4444; }
.prop-body { padding: 20px; }
.prop-price {
font-family: var(--font-data);
font-size: 1.4rem; font-weight: 700; color: var(--navy);
margin-bottom: 6px;
}
.dark .prop-price { color: var(--gold); }
.prop-price small {
font-size: 0.8rem; color: var(--slate-light); font-weight: 400;
}
.prop-title {
font-weight: 600; font-size: 0.95rem; color: var(--navy);
margin-bottom: 4px;
}
.dark .prop-title { color: var(--white); }
.prop-loc { color: var(--slate-light); font-size: 0.83rem; margin-bottom: 14px; }
.prop-specs {
display: flex; gap: 16px;
padding-top: 14px; border-top: 1px solid #F1F5F9;
}
.dark .prop-specs { border-color: #2A2418; }
.prop-spec { font-size: 0.8rem; color: var(--slate); display: flex; align-items: center; gap: 5px; }
.prop-spec strong { font-weight: 600; color: var(--navy); }
.dark .prop-spec strong { color: var(--white); }
.prop-footer {
display: flex; align-items: center; justify-content: space-between;
padding: 12px 20px; background: #F8FAFC;
border-top: 1px solid #F1F5F9;
}
.dark .prop-footer { background: #0D0B09; border-color: #2A2418; }
.agency-mini { display: flex; align-items: center; gap: 8px; }
.agency-avatar {
width: 28px; height: 28px; border-radius: 50%;
background: var(--navy); display: flex; align-items: center;
justify-content: center; color: var(--gold); font-size: 0.7rem; font-weight: 700;
}
.agency-name { font-size: 0.78rem; color: var(--slate); font-weight: 500; }
.days-badge {
font-size: 0.72rem; color: var(--slate-light);
background: #F1F5F9; padding: 3px 8px; border-radius: 6px;
}

/* REELS */
.reels-row {
display: flex; gap: 16px; overflow-x: auto;
padding-bottom: 16px; scrollbar-width: none;
}
.reels-row::-webkit-scrollbar { display: none; }
.reel-card {
flex-shrink: 0; width: 200px; height: 360px;
border-radius: 20px; position: relative;
overflow: hidden; cursor: pointer;
background: linear-gradient(135deg, #1E293B, var(--navy));
}
.reel-card:hover .reel-bg { transform: scale(1.05); }
.reel-overlay {
position: absolute; inset: 0;
background: linear-gradient(to top, rgba(0,0,0,0.85) 40%, transparent 70%);
}
.reel-play {
position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
width: 48px; height: 48px; border-radius: 50%;
background: rgba(255,255,255,0.2); backdrop-filter: blur(10px);
display: flex; align-items: center; justify-content: center;
color: white; font-size: 1.2rem;
opacity: 0; transition: opacity 0.2s;
}
.reel-card:hover .reel-play { opacity: 1; }
.reel-badge {
position: absolute; top: 12px; left: 12px;
background: var(--gold); color: var(--navy);
font-size: 0.65rem; font-weight: 700; padding: 3px 8px;
border-radius: 6px; letter-spacing: 0.05em;
}
.reel-info {
position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
}
.reel-price {
font-family: var(--font-data);
font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 4px;
}
.reel-loc { color: rgba(255,255,255,0.7); font-size: 0.75rem; }
.reel-actions {
position: absolute; right: 12px; bottom: 70px;
display: flex; flex-direction: column; gap: 12px;
}
.reel-action {
width: 36px; height: 36px; border-radius: 50%;
background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
display: flex; align-items: center; justify-content: center;
color: white; font-size: 0.9rem; cursor: pointer;
}

/* ESTIMATION */
.estimation-section {
background: var(--navy);
padding: 80px 40px; position: relative; overflow: hidden;
}
.estimation-section::before {
content: '';
position: absolute; inset: 0;
background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(212,168,83,0.08), transparent);
}
.estimation-inner {
max-width: 1280px; margin: 0 auto;
display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 768px) {
    .estimation-inner { grid-template-columns: 1fr; gap: 40px; }
}
.estimation-text .section-title { color: white; }
.estimation-text .section-sub { color: rgba(255,255,255,0.5); }
.estimation-features { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.est-feature {
display: flex; align-items: flex-start; gap: 16px;
padding: 20px; border-radius: 16px;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.08);
}
.est-icon {
width: 44px; height: 44px; border-radius: 12px;
background: rgba(212,168,83,0.15); border: 1px solid rgba(212,168,83,0.3);
display: flex; align-items: center; justify-content: center;
font-size: 1.2rem; flex-shrink: 0;
}
.est-feature h4 { color: white; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.est-feature p { color: rgba(255,255,255,0.4); font-size: 0.83rem; line-height: 1.5; }
.estimation-widget {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 24px; padding: 32px;
position: relative; z-index: 1;
}
.widget-title {
font-family: var(--font-heading);
color: white; font-size: 1.3rem; font-weight: 600;
margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; font-weight: 500; margin-bottom: 8px; display: block; }
.form-control {
width: 100%; padding: 12px 16px; border-radius: 12px;
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.12);
color: white; font-family: var(--font-body); font-size: 0.9rem;
outline: none; transition: border-color 0.2s;
}
.form-control:focus { border-color: rgba(212,168,83,0.5); }
.form-control::placeholder { color: rgba(255,255,255,0.25); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.estimate-btn {
width: 100%; padding: 14px;
background: var(--gold); color: var(--navy); border: none; border-radius: 14px;
font-family: var(--font-body); font-weight: 700;
font-size: 0.95rem; cursor: pointer; margin-top: 8px;
}

/* FOOTER */
footer {
background: var(--navy);
padding: 60px 40px 30px;
color: rgba(255,255,255,0.5);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 40px; margin-bottom: 40px;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; }
.footer-col a {
display: block; color: rgba(255,255,255,0.45);
text-decoration: none; font-size: 0.83rem;
margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08);
display: flex; justify-content: space-between; align-items: center;
font-size: 0.8rem;
}
@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* CATEGORIES */
.categories-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 16px;
}
.category-card {
background: white; border-radius: 16px; padding: 24px;
text-align: center; transition: all 0.3s;
border: 2px solid transparent;
}
.dark .category-card { background: #1A1612; }
.category-card:hover {
border-color: var(--gold);
transform: translateY(-4px);
}
.category-icon {
width: 50px; height: 50px; margin: 0 auto 12px;
background: var(--navy); border-radius: 12px;
display: flex; align-items: center; justify-content: center;
font-size: 1.5rem;
}
.category-card h4 { font-size: 0.9rem; font-weight: 600; }
.category-card p { font-size: 0.75rem; color: var(--slate-light); margin-top: 4px; }

/* BUTTONS */
.btn-luxury {
background: var(--gold); color: var(--navy);
border: none; border-radius: 12px;
padding: 14px 28px; font-weight: 700; font-size: 0.95rem;
cursor: pointer; transition: all 0.2s;
}
.btn-luxury:hover { background: var(--gold-light); }

/* LINKS */
a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
.dark a { color: var(--gold); }
a:hover { color: var(--gold); }

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    /* Hero - full screen on mobile */
    .hero {
        padding: 80px 16px 40px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    /* Search box - stacked */
    .search-box {
        flex-direction: column;
        padding: 12px;
        gap: 8px;
    }
    
    .search-tabs {
        width: 100%;
        justify-content: center;
    }
    
    .search-input-wrap {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding: 12px;
    }
    
    .search-select {
        width: 50%;
        border-right: none;
        justify-content: center;
        height: 40px;
    }
    
    .search-btn {
        width: 100%;
    }
    
    /* Stats - 2x2 grid */
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-num {
        font-size: 1.4rem;
    }
    
    /* Sections */
    .section {
        padding: 40px 16px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Property cards - 1 column */
    .listings-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .prop-card {
        border-radius: 12px;
    }
    
    .prop-img {
        height: 180px;
    }
    
    .prop-body {
        padding: 16px;
    }
    
    .prop-price {
        font-size: 1.2rem;
    }
    
    .prop-specs {
        gap: 12px;
    }
    
    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-card {
        padding: 16px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Estimation */
    .estimation-section {
        padding: 40px 16px;
    }
    
    .estimation-widget {
        padding: 20px;
        border-radius: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Reels */
    .reels-row {
        gap: 12px;
    }
    
    .reel-card {
        width: 160px;
        height: 280px;
    }
    
    /* Footer */
    footer {
        padding: 40px 16px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-col {
        margin-bottom: 16px;
    }
    
    /* Nav */
    nav {
        padding: 0 16px;
    }
    
    .nav-links {
        display: none;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .reel-card {
        width: 140px;
        height: 250px;
    }
    
    .prop-specs {
        flex-wrap: wrap;
    }
}

/* Gold icons for categories */
.category-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--navy);
}

.category-icon i {
    color: var(--navy);
}

.dark .category-icon {
    background: var(--gold);
}

.dark .category-icon i {
    color: var(--navy);
}

/* GLOBAL LUXURY THEME VARIABLES */
:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #8B6914;
    --black: #0A0A0A;
    --black-soft: #1A1209;
    --cream: #F5F0E8;
    --surface: #FDFBF7;
    --text: #1C1C1C;
    --text-muted: #6B6B6B;
    --border-gold: rgba(201, 168, 76, 0.25);
    --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.08);
    --transition: all 0.4s ease;
}

/* Gold scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* Gold text selection */
::selection { background: var(--gold); color: var(--black); }

/* Replace blue with gold across the site */
.text-blue-500, .text-blue-600, .text-blue-700 { color: var(--gold) !important; }
.bg-blue-500, .bg-blue-600, .bg-blue-700 { background: var(--gold) !important; }
.border-blue-500, .border-blue-600 { border-color: var(--gold) !important; }

/* Luxury button styles */
.btn-luxury-gold {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}
.btn-luxury-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-luxury-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}
.btn-luxury-outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* Luxury input fields */
.input-luxury {
    background: var(--cream);
    border: 1px solid var(--border-gold);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text);
    transition: var(--transition);
    width: 100%;
}
.input-luxury:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.input-luxury::placeholder {
    color: var(--text-muted);
}

/* Dark input for dark sections */
.input-luxury-dark {
    background: var(--black-soft);
    border: 1px solid var(--border-gold);
    padding: 12px 16px;
    border-radius: 8px;
    color: white;
    transition: var(--transition);
    width: 100%;
}
.input-luxury-dark:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.input-luxury-dark::placeholder {
    color: rgba(255,255,255,0.5);
}

/* Luxury card */
.card-luxury {
    background: white;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    transition: var(--transition);
}
.card-luxury:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

/* Dark card */
.card-luxury-dark {
    background: var(--black-soft);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    transition: var(--transition);
}
.card-luxury-dark:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

/* Gold badge/pill */
.badge-gold {
    background: var(--gold);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-gold-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Luxury price */
.price-luxury {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

/* Gold section divider */
.divider-gold {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.3;
    margin: 40px 0;
}

/* Luxury stat card */
.stat-card {
    text-align: center;
    padding: 24px;
}
.stat-card .number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}
.stat-card .label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* WhatsApp button - keep green */
.whatsapp-btn {
    background: #25D366 !important;
    color: white !important;
}

/* Home Estimation Form */
.estimation-widget .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.estimation-widget .form-group {
    margin-bottom: 0;
}

.estimation-widget .form-label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.estimation-widget .form-label i {
    color: var(--gold);
    margin-right: 6px;
}

.estimation-widget .form-control {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(201,168,76,0.2);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 0.9rem;
}

.estimation-widget .form-control:focus {
    outline: none;
    border-color: var(--gold);
}

.estimate-result {
    padding: 20px;
    border-radius: 16px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.25);
}

.result-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.result-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin: 8px 0;
}

.result-range {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.result-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.result-badge {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}

.result-badge i {
    color: var(--gold);
    margin-right: 4px;
}

/* Estimation Form - Stacked Layout */
.estimation-widget .form-group {
    margin-bottom: 16px;
}

.estimation-widget .form-control {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(201,168,76,0.3);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.estimation-widget .form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.estimation-widget .form-control option {
    background: var(--black-soft);
    color: white;
}

.estimation-widget .estimate-btn {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.estimation-widget .estimate-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Form labels */
.estimation-widget .form-label {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.estimation-widget .form-label i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* Result box */
#homeResult {
    margin-top: 24px;
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 24px;
    background: var(--black-soft);
}

#homeResultPrice {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 12px 0;
}

#homeResultRange {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 16px;
}

#homePricePerM2 {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    font-size: 0.9rem;
}

#homePricePerM2 i {
    margin-right: 6px;
}
