:root {
    --gold: #d4af37;
    --dark-luxury: #1a1a1a;
    --white-soft: #fcfcfc;
}

/* --- Hero Section --- */
.hero-re {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=1470');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.gold { color: var(--gold); }
.hero-text h1 { font-size: 4rem; font-family: 'Playfair Display', serif; margin-bottom: 20px; }

/* --- Search Bar --- */
.search-bar {
    background: white;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    max-width: 800px;
    margin: 30px auto;
}

.search-bar input, .search-bar select {
    border: none; padding: 15px; outline: none; flex: 1; font-size: 1rem;
}

.search-btn {
    background: var(--gold);
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.search-btn:hover { background: #b8962d; }

/* --- Property Card --- */
.properties {
    padding: 80px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    background: var(--white-soft);
}

.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.property-card:hover { transform: translateY(-10px); }

.prop-img { position: relative; height: 250px; }
.prop-img img { width: 100%; height: 100%; object-fit: cover; }
.price {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--gold); color: white;
    padding: 8px 15px; border-radius: 5px; font-weight: bold;
}

.prop-details { padding: 25px; }
.prop-details h3 { font-family: 'Playfair Display', serif; margin-bottom: 10px; }
.prop-details p { color: #777; font-size: 0.9rem; margin-bottom: 20px; }

.icons {
    display: flex; justify-content: space-between;
    border-top: 1px solid #eee; padding-top: 15px;
    color: #444; font-size: 0.85rem;
}