/* ============================= */
/* SEARCH WRAPPER */
/* ============================= */

.houzez-ajax-search-wrapper{
    max-width:100%;
    margin:auto;
    padding:30px 35px;
    background:rgba(0,0,0,0.55);
    border-radius:20px;
    backdrop-filter:blur(6px);
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* ============================= */
/* TITLE */
/* ============================= */

.houzez-search-title{
    text-align:center;
    color:#fff;
    font-size:30px;
    font-weight:600;
    margin-bottom:25px;
}

/* ============================= */
/* FORM GRID */
/* ============================= */

.houzez-ajax-search-form{
    display:grid;
    grid-template-columns:repeat(6,1fr) 150px;
    gap:12px;
}

/* ---------- FIRST ROW ---------- */

.houzez-ajax-search-form select:nth-of-type(1){
    grid-column:1 / span 3;
}

.houzez-ajax-search-form select:nth-of-type(2){
    grid-column:4 / span 4;
}

/* ---------- SECOND ROW ---------- */

.houzez-ajax-search-form input{
    grid-row:2;
}

.houzez-ajax-search-form button{
    grid-row:2;
}

/* ============================= */
/* INPUT STYLE */
/* ============================= */

.houzez-ajax-search-form input,
.houzez-ajax-search-form select{
    height:52px;
    width: 100% !important;
    border-radius:8px;
    border:1px solid #ddd;
    padding:0 14px;
    font-size:14px;
    background:#fff;
    outline:none;
}

/* ============================= */
/* SEARCH BUTTON */
/* ============================= */

.houzez-ajax-search-form button{
    background:#00a3ff;
    border:none;
    border-radius:8px;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.houzez-ajax-search-form button:hover{
    background:#0089d6;
}

/* ============================= */
/* RESULTS GRID */
/* ============================= */

.houzez-ajax-results{
    max-width:1200px;
    margin:40px auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* ============================= */
/* PROPERTY CARD */
/* ============================= */

.houzez-property-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    transition:all .3s ease;
}

.houzez-property-card:hover{
    transform:translateY(-5px);
}

.houzez-property-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.houzez-property-card h3{
    font-size:16px;
    margin:12px 15px 6px;
}

.houzez-property-card .price{
    font-size:15px;
    font-weight:600;
    color:#00a3ff;
    margin:0 15px 15px;
}

/* ============================= */
/* TABLET RESPONSIVE */
/* ============================= */

@media (max-width:992px){

.houzez-ajax-search-form{
    grid-template-columns:repeat(2,1fr);
}

.houzez-ajax-search-form button{
    grid-column:span 2;
}

.houzez-ajax-results{
    grid-template-columns:repeat(2,1fr);
}

}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width:576px){

.houzez-ajax-search-wrapper{
    padding:22px;
}

.houzez-search-title{
    font-size:22px;
}

.houzez-ajax-search-form{
    grid-template-columns:1fr;
}

.houzez-ajax-results{
    grid-template-columns:1fr;
}

}