/* ======================================= */
/* ---      Properties Page Styles     --- */
/* ======================================= */

.page-header {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    margin-top: var(--header-height);
    background-image: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?q=80&w=1596&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-header h1 {
    font-size: 3.2rem; /* Increased from the previous default */
}

.page-header p {
    font-size: 1.2rem; /* Increased from the previous default */
}

/* --- Property Listing Section --- */
.property-listing {
    padding: 5rem 0;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* --- Cleaned Property Card Styles --- */
.property-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.property-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-category {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.card-category i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

.card-content h3 {
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--dark-text);
}