/* --- Global Variables & Theme Configuration --- */
:root {
    --primary-color: #ff5a5f;      /* Vibrant Accent / Action color */
    --secondary-color: #484848;    /* Deep Text color */
    --dark-color: #222222;         /* Headings */
    --light-bg: #f7f7f7;           /* Section Backgrounds */
    --border-color: #dddddd;       /* Cards & Dividers */
    --font-main: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--secondary-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --- Reusable UI Component Utilities --- */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
}
.btn-primary-custom:hover {
    background-color: #e04b50;
    color: #fff;
}

.section-padding {
    padding: 5rem 0;
}

.property-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}
.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    z-index: 10;
}
.wishlist-btn:hover, .wishlist-btn.active {
    color: var(--primary-color);
}

/* --- Search Engine UI Overlays --- */
.search-wrapper {
    margin-top: -50px;
    position: relative;
    z-index: 20;
}
.search-bar {
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    padding: 0.75rem 2rem;
}
@media (max-width: 991px) {
    .search-bar {
        border-radius: 20px;
        padding: 1.5rem;
    }
}