.filter-section {
    background: #fff;
    padding: 60px 0 0 0;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    background: #fff;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 40px;
}

.filter-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-weight: 700;
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}

.filter-field select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #333;
    background: #F8F8F8;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 10px auto;
}

.filter-field select:focus {
    outline: none;
    background-color: #eee;
}

.filter-btn-wrapper {
    flex: 0 0 auto;
    width: 200px;
}

.btn-filter {
    width: 100%;
    background: #C5A572;
    color: #fff;
    border: none;
    padding: 16px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
    text-transform: uppercase;
}

.btn-filter:hover {
    background: #B08E5A;
}

.filter-separator {
    border-bottom: 1px solid #EAEAEA;
    margin-top: 20px;
    width: 100%;
}

.properties-section {
    padding: 80px 0;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.property-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.property-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-img img {
    transform: scale(1.05);
}

.property-details {
    padding: 25px 20px 20px;
}

.property-details h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 5px;
    font-weight: 400;
}

.property-details .location {
    color: #444;
    font-size: 15px;
    margin-bottom: 30px;
}

.property-specs {
    border-top: none;
    padding-top: 0;
    margin-bottom: 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 15px;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item .label {
    color: #000;
    font-weight: 700;
}

.spec-item .value {
    color: #333;
    font-weight: 400;
}

.btn-outline-small {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline-small:hover {
    background: var(--primary-gold);
    color: #fff;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #ddd;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-gold);
    color: #fff;
    border-color: var(--primary-gold);
}

@media (max-width: 1100px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .filter-field {
        width: 100%;
    }

    .filter-btn-wrapper {
        width: 100%;
        margin-top: 10px;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-section {
        height: 40vh;
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    .properties-grid {
        grid-template-columns: 1fr;
    }

    .property-img {
        height: 250px;
    }

    .property-details h3 {
        font-size: 18px;
    }

    .filter-section {
        padding-top: 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}