.property_search {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 10px 10px 10px;
    background: linear-gradient(135deg, #f6f6f6, #ffffff);
}

.property_search_heading {
    font-size: clamp(30px, 4vw, 22px);
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 5px;
    line-height: 1.3;
}

.property_tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 5px;
}

.property_tag {
    padding: 14px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.5);
    color: #5f4b32;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s;
}

.property_tag:hover {
    transform: translateY(-4px) scale(1.03);
}

.property_search-box {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 24px 30px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    text-align: center;
}

.property_search-box:hover {
    transform: translateY(-2px);
}

.property_tabs {
    display: flex;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.property_tab {
    flex: 1;
    text-align: center;
    padding: 22px 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: #444;
    position: relative;
    transition: 0.3s;
}

.property_tab:hover {
    background: #fafafa;
}

.property_search .active-tab {
    color: #ff3158;
}

.property_search .active-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    border-radius: 20px;
    background: #ff3158;
}

.property_options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.property_options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #444;
    cursor: pointer;
    font-weight: 500;
}

.property_options input {
    accent-color: #ff3158;
    width: 18px;
    height: 18px;
}

.property_search-row {
    display: grid;
    grid-template-columns: 180px 1fr 180px 180px;
    width: 100%;
}

.property_city,
.property_location,
.property_types {
    height: 72px;
    border: none;
    outline: none;
    padding: 0 20px;
    font-size: 15px;
    background: transparent;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    color: #444;
}

.property_city,
.property_types {
    cursor: pointer;
}

.property_location::placeholder {
    color: #888;
}

.property_search .search-btn {
    border: none;
    outline: none;
    background: linear-gradient(135deg, #ff3158, #ff6b81);
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(255, 49, 88, 0.25);
}

.property_search .search-btn:hover {
    transform: scale(1.03);
    background: linear-gradient(135deg, #e5264c, #ff3158);
}

.property_search .owner_text {
    font-size: 28px;
    color: #444;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.property_search .hero_layout {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}


.property_hero_leftside_ad,
.property_hero_rightside_ad {
    width: 220px;
    min-height: 500px;
    background-color: #111111; /* Background dark rahega taaki empty space bura na lage */
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.property_hero_leftside_ad .property_ad_image,
.property_hero_rightside_ad .property_ad_image {
    width: calc(100% - 20px);   
    height: 180px;             
    /* margin-top: 10px;           */
    object-fit: contain;       
    background: transparent;
    display: block;
}

.property_hero_leftside_ad:hover,
.property_hero_rightside_ad:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

img.property_ad_media,
video.property_ad_media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Content Panel settings */
.property_ad_content {
    width: 100%;
    padding: 5px 2px 5px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;              
    box-sizing: border-box;
}

.property_ad_heading {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 600;
}

.property_ad_text {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.5;
    margin-bottom: 15px;
}

.property_ad_link {
    display: inline-block;
    background: #ff3158;
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 14px 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.property_ad_link:hover {
    background: #e4264b;
}

.property_ad_contact,
.property_ad_email {
    font-size: 13px;
    color: #d1d1d1;
    margin-bottom: 6px;
    word-break: break-word;
}

.property_why-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 10px;
    padding: 10px 10px 10px;
}

.property_why-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 5px 2px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;
}

.property_why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.property_why-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

.property_why_heading {
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
}

.property_why_para {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}


.property_services_section {
    width: 100%;
    margin-top: 40px;
    background: #fff;
}

.property_loan_bar {
    background: #2f486d;
    color: white;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.property_loan_text { font-size: 18px; }

.property_loan_btn {
    background: white;
    color: #2f486d;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.property_loan_btn:hover { transform: translateY(-2px); }

.property_services_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    padding: 15px 20px;
    background: #fafafa;
}

.property_service_card {
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.property_service_card:hover { transform: translateY(-5px); }
.property_service_icon { font-size: 55px; margin-bottom: 15px; }
.property_service_card h3 { font-size: 18px; color: #333; line-height: 1.5; }

.property_stats_section { width: 100%; padding: 20px 20px; background: #f8f8f8; }
.property_stats_heading { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 60px; }
.property_stats_heading h2 { font-size: 42px; font-weight: 500; color: #555; text-align: center; }

.property_stats_line { width: 220px; height: 1px; background: #d8d8d8; position: relative; }
.property_stats_line::after { content: ''; position: absolute; top: 50%; right: -10px; transform: translateY(-50%); width: 18px; height: 18px; border: 2px solid #ff4d6d; border-radius: 50%; background: #fff; }

.property_stats_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: center; }
.property_stats_card { text-align: center; }

.property_stats_circle {
    width: 170px; height: 170px; border-radius: 50%; border: 3px solid #ff4d6d;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 25px;
    font-size: 46px; font-weight: 500; color: #ff4d6d; background: #fff; transition: 0.3s;
}
.property_stats_circle:hover { transform: scale(1.05); }
.property_stats_card h3 { font-size: 26px; color: #444; font-weight: 400; line-height: 1.5; }

.property_builder_section { width: 100%; background: #f7f7f7; padding: 20px 15px; margin-top: 40px; }
.property_builder_heading { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 60px; }
.property_builder_heading h2 { font-size: 42px; font-weight: 500; color: #555; text-align: center; }
.property_builder_line { width: 220px; height: 1px; background: #d7d7d7; position: relative; }
.property_builder_line::after { content: ''; position: absolute; top: 50%; right: -10px; transform: translateY(-50%); width: 18px; height: 18px; border: 2px solid #ff4d6d; border-radius: 50%; background: #fff; }

.property_builder_content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.property_builder_image { width: 100%; max-width: 420px; display: block; margin: auto; }
.property_builder_right { text-align: left; }
.property_builder_text { font-size: 30px; color: #555; line-height: 1.7; margin-bottom: 30px; }
.property_builder_btn { display: inline-block; background: #ff4d6d; color: #fff; text-decoration: none; padding: 14px 28px; border-radius: 8px; font-size: 18px; font-weight: 600; transition: 0.3s; }
.property_builder_btn:hover { transform: translateY(-3px); background: #ff3158; }
.property_builder_contact { margin-top: 18px; font-size: 18px; color: #666; }

.property_testimonial_section { width: 100%; background: #2f4862; padding: 20px 20px; position: relative; overflow: hidden; }
.property_testimonial_heading { text-align: center; color: #fff; font-size: 42px; font-weight: 500; margin-bottom: 15px; }
.property_testimonial_video { width: 100%; max-width: 650px; margin: 0 auto 55px; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35); }
.property_testimonial_video iframe { width: 100%; height: 380px; border: none; }
.property_testimonial_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.property_testimonial_card { background: #fff; border-radius: 18px; padding: 30px 28px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18); transition: 0.3s; }
.property_testimonial_card:hover { transform: translateY(-8px); }
.property_testimonial_top { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.property_testimonial_img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.property_testimonial_name { font-size: 20px; font-weight: 600; color: #222; margin-bottom: 6px; }
.property_testimonial_stars { color: #ffb400; font-size: 18px; }
.property_testimonial_title { font-size: 24px; color: #333; margin-bottom: 16px; line-height: 1.5; }
.property_testimonial_para { font-size: 16px; color: #666; line-height: 1.9; }
.property_testimonial_btn_wrap { text-align: center; margin-top: 15px; }
.property_testimonial_btn { display: inline-block; padding: 15px 32px; border: 2px solid #fff; color: #fff; text-decoration: none; border-radius: 8px; font-size: 18px; font-weight: 600; transition: 0.3s; }
.property_testimonial_btn:hover { background: #fff; color: #2f4862; }

.property_mobile_app_section { width: 100%; background: #f5f5f5; padding: 20px 20px; display: flex; align-items: center; justify-content: center; gap: 80px; flex-wrap: wrap; }
.property_mobile_img { width: 100%; max-width: 380px; }
.property_mobile_img img { width: 100%; display: block; }
.property_mobile_content { max-width: 500px; }
.property_mobile_heading { font-size: 30px; color: #ff3158; margin-bottom: 10px; line-height: 1.3; font-weight: 500; }
.property_mobile_subheading { font-size: 24px; color: #222; margin-bottom: 10px; font-weight: 500; }
.property_mobile_para { font-size: 20px; color: #666; line-height: 1.8; margin-bottom: 35px; }

.property_mobile_store_buttons { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 25px; }
.property_mobile_store_buttons img { height: 65px; transition: 0.3s; cursor: pointer; }
.property_mobile_store_buttons img:hover { transform: translateY(-4px); }


.property_mobile_app_section .store_card { display: flex; flex-direction: column; gap: 8px; }
.property_mobile_app_section .store_label { font-size: 15px; color: #555; font-weight: 500; }

.property_google_store, .property_app_store { background: #000; border: none; outline: none; padding: 10px 18px; border-radius: 10px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: 0.3s ease; color: #fff; font-size: 16px; font-weight: 500; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); }
.property_google_store img, .property_app_store img { width: 35px; height: 35px; object-fit: contain; }
.property_google_store:hover, .property_app_store:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25); }

.property_video_slider { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 40px; }
.property_video_wrapper { width: 900px; overflow: hidden; }
.property_video_track { display: flex; gap: 20px; transition: transform 0.5s ease; }
.property_slider_btn { width: 50px; height: 50px; border: none; border-radius: 50%; background: #000; color: #fff; font-size: 24px; cursor: pointer; transition: 0.3s ease; }
.property_slider_btn:hover { background: #333; transform: scale(1.1); }

.property_search_heading { font-size: 30px; font-weight: 500; white-space: nowrap; position: relative; display: inline-block; animation: marqueeMove 10s linear infinite, colorChange 5s infinite; }

@keyframes marqueeMove { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
@keyframes colorChange { 0% { color: #ff3b3b; } 25% { color: #ff9800; } 50% { color: #00bcd4; } 75% { color: #4caf50; } 100% { color: #e91e63; } }

 .property_search-box .tabs {
        display: flex;
        justify-content: center;
        gap: 5px;
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .property_search-box .tab-btn {
        padding: 10px 24px;
        background: none;
        border: none;
        font-size: 16px;
        font-weight: 500;
        color: #666;
        cursor: pointer;
        position: relative;
    }
    .property_search-box .tab-btn.active {
        color: #ff4f5a;
        font-weight: bold;
    }
    .property_search-box .tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #ff4f5a;
    }

    .property_search-box .tab-content form {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .property_search-box .input-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        width: 100%;
        flex-wrap: wrap;
    }

    .property_search-box .filter-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: 100%;
        flex-wrap: wrap;
        margin-top: 5px;
    }

    .property_search-box .custom-multiselect .select-box,
    .property_search-box .tab-content select {
        padding: 10px 14px;
        border: 1px solid #ccc;
        border-radius: 4px;
        background: #fff;
        font-size: 14px;
        color: #333;
        cursor: pointer;
        min-width: 140px;
        text-align: left;
    }

    .property_search-box .property_why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        width: 100%;
        margin-top: 30px;
        justify-content: center;
    }

    .property_search-box .property_why-card {
        background: #ffffff;
        border: 1px solid #eef2f5;
        border-radius: 12px;
        padding: 20px 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        text-align: center;
        transition: transform 0.2s;
    }

    .property_search-box .property_why-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    }

    .property_search-box .property_why-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .property_search-box .property_why_heading {
        font-size: 15px;
        color: #222;
        margin: 5px 0;
        font-weight: 600;
    }

    .property_search-box .property_why_para {
        font-size: 12px;
        color: #777;
        margin: 0;
        line-height: 1.4;
    }

    .property_search-box .btn-property {
        background-color: #009587;
        color: white;
        padding: 10px 24px;
        border: none;
        border-radius: 4px;
        font-weight: bold;
        cursor: pointer;
    }

    .property_search-box .tab-content {
        display: none;
    }

    .property_search-box .tab-content.active {
        display: block;
    }


    .property_search-box .custom-multiselect {
        position: relative;
        display: inline-block;
        min-width: 150px;
    }

    .property_search-box .select-box {
        background-color: #fff;
        padding: 8px 12px;
        border: 1px solid #ccc;
        cursor: pointer;
        border-radius: 4px;
        user-select: none;
    }

    .property_search-box .checkboxes-options {
        display: none;
        position: absolute;
        background-color: #fff;
        border: 1px solid #ccc;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 100;
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
        padding: 5px;
        border-radius: 4px;
    }

    .property_search-box .checkboxes-options label {
        display: block;
        padding: 6px;
        cursor: pointer;
    }

    .property_search-box .checkboxes-options label:hover {
        background-color: #f5f5f5;
    }







/* ==========================================================================
   CASCADING OVERLAY LOOK & PREMIUM SEARCH UPGRADE
   ========================================================================== */

.cascading-search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.saas-chain-item {
    position: relative;
    width: 18%;
    min-width: 130px;
}

.saas-chain-item.full-width-location {
    width: 35%;
    min-width: 260px;
}

.saas-chain-item input[type="text"] {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    background: #fff;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.saas-chain-item input[type="text"]:focus {
    border-color: #ff3158;
}

.saas-chain-item::after {
    content: "▼";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #000;
    pointer-events: none;
}


/* .chain-suggestions{
    position:absolute;
    width:100%;
    background:#fff;
    border:1px solid #ddd;
    max-height:200px;
    overflow-y:auto;
    z-index:9999;
    display:none;
}

.chain-suggestions div{
    padding:10px;
    cursor:pointer;
    border-bottom:1px solid #eee;
}

.chain-suggestions div:hover{
    background:#f5f5f5;
}

.saas-chain-item{
    position:relative;
} */



/* ==========================================================================
   DROPDOWN SUGGESTIONS LAYER RE-ALIGNMENT
   ========================================================================== */
.chain-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    max-height: 220px;
    overflow-y: auto;
    z-index: 999999 !important; /* Visual Layer stacking complete */
    display: none; /* Controlled via JavaScript click */
}

.chain-suggestions div, .country-item {
    padding: 12px 14px;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.chain-suggestions div:hover, .country-item:hover {
    background: #f5f5f5;
    color: #ff3158;
}



.multiselect-location-box {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
    background: #fff;
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-checkbox-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 999999 !important;
    padding: 10px;
}

.location-options-list {
    max-height: 150px;
    overflow-y: auto;
    text-align: left;
}

.location-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    font-size: 13px;
    cursor: pointer;
}

.location-checkbox-item:hover {
    background: #f8f9fa;
}

.empty-location-notice {
    padding: 10px;
    color: #999;
    font-size: 13px;
    text-align: center;
}

/* --- PREMIUM REDESIGNED BUTTON --- */
.property_search .search-btn {
    margin-top: 15px;
    padding: 12px 50px;
    background: linear-gradient(135deg, #ff3158, #ff6b81) !important;
    color: white !important;
    border: none !important;
    border-radius: 25px !important; /* Premium Oval Shaped */
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 49, 88, 0.35) !important;
    transition: all 0.3s ease !important;
}

.property_search .search-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 49, 88, 0.5) !important;
}
/* ==========================================================================
   RESPONSIVE OVERRIDES LAYER
   ========================================================================== */
@media (max-width: 768px) {
    .cascading-search-container {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .saas-chain-item, 
    .saas-chain-item.full-width-location {
        width: 100% !important;
    }
    .property_search .search-btn {
        width: 100% !important;
        border-radius: 8px !important;
        padding: 14px 0 !important;
    }
}




/* @media (max-width: 1200px) {
    .property_hero_leftside_ad,
    .property_hero_rightside_ad { display: none; }
    .property_search-box { max-width: 100%; }
} */

/* @media (max-width: 1200px) {
    .property_hero_leftside_ad,
    .property_hero_rightside_ad { display: none; }
    .property_search-box { max-width: 100%; }
} */


@media (max-width: 768px) {
    /* Main Input Row Layout Changes */
    .cascading-search-container {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    /* Country, State, City, Location inputs full width ho jayein */
    .saas-chain-item, 
    .saas-chain-item.full-width-location {
        width: 100% !important;
    }

    /* Radio buttons aur dropdowns ki row responsive wrap ho sake */
    .property_search-box .filter-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
        padding: 5px 0 !important;
    }

    /* Custom labels and options layout fix */
    .property_search-box .filter-row label {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
    }

    /* Containers for selects and multiselects */
    #buy-dropdowns-container,
    #rent-dropdowns-container,
    #commercial-dropdowns-container {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    /* Dropdowns standard sizing on mobile */
    .property_search-box .custom-multiselect, 
    .property_search-box .tab-content select {
        width: 100% !important;
        min-width: 100% !important;
    }

    /* Suggestions layers width fix */
    .chain-suggestions {
        max-height: 180px !important;
    }

    /* Search Button Mobile Premium Fix */
    .property_search .search-btn {
        width: 100% !important;
        border-radius: 8px !important;
        padding: 14px 0 !important;
        margin-top: 10px !important;
    }


    .property_hero_leftside_ad,
    .property_hero_rightside_ad {
        display: none !important;
    }

    /* Main Layout Full Width */
    .property_search .hero_layout {
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
    }

    .property_search-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
    }

    /* Commercial Rent/Buy Row Fix */
    .property_search-box .filter-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        width: 100% !important;
    }

    /* Labels Full Width */
    .property_search-box .filter-row label {
        width: 100% !important;
        font-size: 15px !important;
    }

    /* Dropdown Full Width */
    .property_search-box .filter-row select {
        width: 100% !important;
        min-width: 100% !important;
    }

    /* Search Button */
    .property_search .search-btn {
        width: 100% !important;
    }

    /* Ad Content Mobile */
    .property_ad_heading {
        font-size: 18px !important;
        text-align: center;
    }

    .property_ad_text {
        font-size: 13px !important;
        text-align: center;
    }

    .property_ad_link {
        width: 100%;
        text-align: center;
    }

    .property_ad_contact,
    .property_ad_email {
        text-align: center;
        font-size: 12px !important;
    }



    .property_search .hero_layout{
        display:flex !important;
        flex-direction:column !important;
        align-items:center !important;
        gap:20px !important;
    }

    .property_hero_leftside_ad,
    .property_hero_rightside_ad{
        display:flex !important;
        width:100% !important;
        max-width:320px !important;
        min-height:auto !important;
    }

    .property_ad_image{
        width:100% !important;
        height:auto !important;
        object-fit:fill !important;
    }

    .property_ad_content{
        padding:15px !important;
    }

    .property_ad_heading{
        font-size:20px !important;
        text-align:center !important;
    }

    .property_ad_text{
        font-size:14px !important;
        text-align:center !important;
    }

    .property_ad_link{
        width:100% !important;
        display:block !important;
        text-align:center !important;
    }

    .property_ad_contact,
    .property_ad_email{
        text-align:center !important;
        font-size:13px !important;
    }


}

@media (max-width: 480px) {
    /* Heading typography responsive size */
    .property_search_heading {
        font-size: 20px !important;
        white-space: normal !important; /* Marquee wrap safeguard */
    }

    /* Tabs buttons wrapper adjust */
    .property_search-box .tabs {
        flex-wrap: wrap !important;
    }

    .property_search-box .tab-btn {
        flex: 1 1 auto !important;
        padding: 8px 12px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 992px) {
    .property_why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .property_mobile_app_section { flex-direction: column; text-align: center; gap: 50px; }
    .property_mobile_store_buttons { justify-content: center; }
    .property_mobile_heading { font-size: 40px; }
    .property_testimonial_grid { grid-template-columns: 1fr; }
    .property_testimonial_heading { font-size: 34px; }
    .property_testimonial_video iframe { height: 340px; }
    .property_builder_content { grid-template-columns: 1fr; text-align: center; }
    .property_builder_right { text-align: center; }
    .property_builder_heading h2 { font-size: 34px; }
    .property_builder_line { width: 100px; }
    .property_stats_grid { grid-template-columns: 1fr; gap: 50px; }
    .property_stats_heading h2 { font-size: 34px; }
    .property_stats_line { width: 100px; }
    .property_services_grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .property_search-row { grid-template-columns: 1fr 1fr; }
    

    .property_city,
    .property_location,
    .property_types,
    .property_search .search-btn { 
        width: 100%; 
        border-bottom: 1px solid rgba(0, 0, 0, 0.08); 
    }
    .property_types { border-right: none; }
    .property_search .search-btn { min-height: 72px; }
}

@media (max-width: 600px) {
    .property_why-grid { grid-template-columns: 1fr; margin-top: 30px; padding: 10px; }
    .property_why-card { padding: 25px 18px; }
    .property_why_heading { font-size: 22px; }
    .property_why_para { font-size: 15px; }
    .property_why-icon { font-size: 42px; }
    .property_mobile_app_section { padding: 50px 20px; }
    .property_mobile_heading { font-size: 32px; }
    .property_mobile_subheading { font-size: 26px; }
    .property_mobile_para { font-size: 17px; }
    .property_mobile_store_buttons { flex-direction: column; gap: 15px; }
    .property_mobile_store_buttons img { height: 58px; }
    .property_testimonial_section { padding: 50px 20px; }
    .property_testimonial_heading { font-size: 28px; margin-bottom: 35px; }
    .property_testimonial_video iframe { height: 230px; }
    .property_testimonial_card { padding: 24px 20px; }
    .property_testimonial_title { font-size: 20px; }
    .property_testimonial_para { font-size: 15px; }
    .property_testimonial_btn { width: 100%; }
    .property_builder_section { padding: 50px 20px; }
    .property_builder_heading { gap: 10px; margin-bottom: 40px; }
    .property_builder_heading h2 { font-size: 26px; }
    .property_builder_line { width: 50px; }
    .property_builder_text { font-size: 20px; }
    .property_builder_btn { width: 100%; text-align: center; }
    .property_builder_contact { font-size: 16px; }
    .property_stats_section { padding: 50px 20px; }
    .property_stats_heading { gap: 12px; margin-bottom: 40px; }
    .property_stats_heading h2 { font-size: 26px; }
    .property_stats_line { width: 50px; }
    .property_stats_circle { width: 130px; height: 130px; font-size: 32px; }
    .property_stats_card h3 { font-size: 20px; }
    .property_services_grid { grid-template-columns: repeat(2, 1fr); padding: 30px 20px; }
    .property_loan_bar { flex-direction: column; text-align: center; }
    .property_search { padding: 25px 12px; }
    .property_search_heading { font-size: 28px; }
    .property_tabs { flex-direction: column; }
    .property_tab { border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
    
  
    .property_search .active-tab::after { width: 35%; }
    .property_options { gap: 18px; justify-content: flex-start; padding: 18px; }
    .property_search-row { grid-template-columns: 1fr; }
    .property_city, .property_location, .property_types { border-right: none; }
    .property_search .search-btn { width: 100%; height: 72px; font-size: 22px; }



    .property_search-box .input-row input {
        width: 100% !important;
        margin-bottom: 10px !important;
    }


    #buy-dropdowns-container,
    #rent-dropdowns-container,
    #commercial-dropdowns-container {
        display: flex !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-top: 10px !important;
    }

  
    .property_search-box .custom-multiselect, 
    .property_search-box .tab-content select {
        width: 100% !important;
        min-width: 100% !important;
        flex: 1 1 100% !important;
    }
}

@media (max-width: 360px) {
    .property_search_heading { font-size: 24px; }
    .property_tag { width: 100%; text-align: center; }
}



.property_video_wrapper {
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
    margin: 0 auto;
}

.property_video_track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.property_combined_card {
    min-width: calc(33.333% - 14px); 
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
}

.property_combined_card .property_testimonial_video {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.property_combined_card .property_testimonial_video iframe {
    height: 220px;
    width: 100%;
}

.property_testimonial_text {
    padding: 20px;
    flex-grow: 1;
    text-align: left;
}


@media (max-width: 992px) {
    .property_combined_card {
        min-width: calc(50% - 10px); 
    }
}


@media (max-width: 600px) {
    .property_combined_card {
        min-width: 100%; 
    }
    .property_video_track {
        gap: 0px; 
    }
    .property_combined_card .property_testimonial_video iframe {
        height: 250px;
    }
}
