﻿
.filter-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.filter-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.filter-list {
    list-style: none;
    padding: 0;
}

    .filter-list li {
        padding: 8px 0;
        color: #2563eb;
        font-weight: 500;
        cursor: pointer;
    }

.property-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.1);
}

.property-img {
    object-fit: cover;

}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #d8232a;
}

.wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    padding: 6px 8px;
    border-radius: 50%;
    cursor: pointer;
}

.image-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,.7);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}

.price-text {
    color: #1e40af;
    font-weight: 700;
}

.tags span {
    display: inline-block;
    background: #e0e7ff;
    color: #1e3a8a;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 6px;
}

.agent {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .agent img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
    }
/* ================= PROPERTY CARD FIX ================= */

.property-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

/* IMAGE */
.property-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* DETAILS AREA */
.property-card .col-md-8 {
    text-align: left; /* 🔥 MAIN FIX */
}

/* LOCATION */
.property-card small {
    display: block;
    font-size: 13px;
}

/* TITLE */
.property-card h5 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 6px;
}

/* PRICE + BHK */
.property-card .row.mt-3 {
    margin-left: 0;
}

    .property-card .row.mt-3 .col-md-4 {
        padding-left: 0;
    }

/* PRICE */
.price-text {
    color: #1e40af;
    font-weight: 700;
    margin-bottom: 2px;
}

/* TAGS */
.tags {
    text-align: left;
}

    .tags span {
        display: inline-block;
        background: #e0e7ff;
        color: #1e3a8a;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 12px;
        margin-right: 6px;
        margin-bottom: 6px;
    }

/* FOOTER */
.property-card .d-flex {
    text-align: left;
}

/* AGENT */
.agent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

    .agent img {
        width: 34px;
        height: 34px;
        border-radius: 50%;
    }

/* BUTTON GROUP */
.btn-group {
    display: flex;
    gap: 10px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:767px) {
    .property-card .row {
        flex-direction: column;
    }

    .property-card .col-md-8 {
        padding: 16px !important;
    }

    .btn-group {
        width: 100%;
        flex-direction: column;
    }

        .btn-group .btn {
            width: 100%;
        }
}


/* ================= RESPONSIVE FIX (NO HTML CHANGE) ================= */
/* Tablet */
@media (max-width: 991px) {
    .property-img

{
    height: 260px;
}

.property-card .btn-group {
    gap: 8px;
}

}

/* Mobile */
@media (max-width: 767px) {

    /* Card vertical */
    .property-card .row.g-0 {
        flex-direction: column;
    }

    /* Image full width */
    .property-card .col-md-4 {
        width: 100%;
    }

    .property-img {
        height: 220px;
        width: 100%;
        border-radius: 12px 12px 0 0;
    }

    /* Details section */
    .property-card .col-md-8 {
        width: 100%;
        padding: 14px !important;
        text-align: left;
    }

    /* Location */
    .property-card small {
        font-size: 12px;
    }

    /* Title */
    .property-card h5 {
        font-size: 16px;
        line-height: 1.4;
    }

    /* Price + BHK block (image jaisa) */
    .property-card .row.mt-3 {
        margin-top: 10px;
    }

        .property-card .row.mt-3 .col-md-4 {
            width: 50%;
            padding-left: 0;
            margin-bottom: 6px;
        }

    /* Tags wrap nicely */
    .tags span {
        margin-bottom: 6px;
        font-size: 11px;
        padding: 4px 10px;
    }

    /* Footer stacked */
    .property-card .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }

    /* Buttons full width like image */
    .btn-group {
        width: 100%;
        flex-direction: column;
    }

        .btn-group .btn {
            width: 100%;
        }

    /* Badges adjust */
    .featured-badge {
        font-size: 11px;
        padding: 4px 6px;
    }

    .wishlist {
        padding: 5px 7px;
    }

    .property-card {
  
        text-align: center;
        padding: 43px 5px !important;
        background: #FFF;
        border-radius: 10px;
    }
}

/*serch button start*/

/* ================= SEARCH BAR ================= */

.search-wrapper {
    background: #fff;
    padding: 14px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.search-input {
    height: 48px;
    border-radius: 10px;
    font-size: 14px;
}

.search-btn {
    height: 48px;
    border-radius: 10px;
    font-weight: 600;
}

/* Mobile */
@media(max-width:767px) {
    .search-wrapper {
        padding: 12px;
    }
}

.container-fluid.py-4.bg-light {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}

h2.Popular-latest {
    text-align: center;
    font-size: 23px;
}

button.btn.btn-primary.w-100.search-btn {
    background: transparent;
    color: #000;
}

a {
    text-decoration: none;
}



/*vodeo seciol adds start*/

.promo-banner {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.2);
}

/* Background Image */
.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* White Glass Card */
.promo-content {
    position: absolute;
    right: 7px;
    top: 68%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(6px);
    padding: 11px 10px;
    border-radius: 16px;
    max-width: 320px;
}

    /* Text */
    .promo-content h2 {
        font-size: 26px;
        font-weight: 800;
        color: #e11d48;
        line-height: 1.2;
        margin-bottom: 16px;
    }

        .promo-content h2 span {
            color: #ef4444;
        }

/* Watch Button */
.watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ef4444;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .watch-btn:hover {
        background: #dc2626;
        color: #fff;
    }

/* Play Icon */
.play-icon {
    width: 30px;
    height: 30px;
    background: #fff;
    color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 768px) {
    .promo-banner {
        height: 220px;
    }

    .promo-content {
        right: 10px;
        left: 10px;
        max-width: 100%;
        padding: 18px;
    }

        .promo-content h2 {
            font-size: 22px;
        }

    .promo-content {
        position: absolute;
        right: 7px;
        top: 68%;
        transform: translateY(-51%);
        background: rgba(255, 255, 255, .95);
        backdrop-filter: blur(6px);
        padding: 11px 10px;
        border-radius: 16px;
        max-width: 169px !important;
    }
}

@media(max-width: 480px) {
    .promo-banner {
        height: 200px;
    }

    .promo-content h2 {
        font-size: 20px;
    }

    .watch-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}

h2.new-pahechan-latest {
    font-size: 17px;
}

/* ================= ACTIVE FILTER CHIP ================= */
/* FILTER CHIP */
/* ================= FILTER CHIP ================= */
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    background: #e8f2ff;
    color: #0d6efd;
    font-size: 14px;
    font-weight: 500;
}

    .filter-chip .remove-chip {
        cursor: pointer;
        font-size: 16px;
        color: #0d6efd;
    }

/* Search */
.search-input {
    height: 48px;
    border-radius: 10px;
}

.search-btn {
    height: 48px;
    border-radius: 10px;
    font-weight: 600;
}

/* ================= DESCRIPTION TRUNCATE ================= */
.property-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    max-height: 3.2em; /* 2 lines */
    overflow: hidden;
    position: relative;
}

    .property-desc.expanded {
        max-height: none;
    }

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: #473d27;
    cursor: pointer;
}
.filter-list li.active {
    color: #1e40af;
    font-weight: 700;
}
@media (min-width: 992px) {
    .filter-box {
        position: sticky;
        top: 90px;
    }
}
.property-card {
    margin-bottom: 20px;
}

.property-card h5 {
    font-size: 17px;
    font-weight: 700;
}

.price-text {
    font-size: 18px;
}
/* ================= FIXED IMAGE HEIGHT (99ACRES STYLE) ================= */

/* Image container */
/*.property-img-wrap {
    width: 100%;
    height: 240px; 
    overflow: hidden;
    position: relative;
    background: #f3f4f6;
}*/

/* Actual image */
/*.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;*/ /* 🔥 KEY */
    /*transition: transform .3s ease;
}*/

/* Hover zoom (premium feel) */
.property-card:hover .property-img {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 991px) {
    .property-img-wrap {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .property-img-wrap {
        height: 200px;
        border-radius: 12px 12px 0 0;
    }
}
/* ================= 99ACRES IMAGE STABILITY FIX ================= */

/* Left image column */
/*.property-media {
    display: flex;
    align-items: center;*/ /* 🔥 vertical centering */
    /*justify-content: center;*/ /* 🔥 horizontal centering */
    /*background: #f3f4f6;
}*/

/* Fixed media box */
/*.property-img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
    background: #e5e7eb;
}*/

/* Image itself */
/*.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
    display: block;
}*/

/* Hover effect (subtle, premium) */
.property-card:hover .property-img {
    transform: scale(1.04);
    transition: transform .35s ease;
}

/* Tablet */
@media (max-width: 991px) {
    .property-img-wrap {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .property-media {
        align-items: stretch;
        justify-content: stretch;
    }

    .property-img-wrap {
        height: 200px;
        border-radius: 12px 12px 0 0;
    }
}

.property-card .row.g-0 {
    align-items: stretch; /* 🔥 image + content same height */
}

/* ================= 99ACRES FINAL IMAGE SYSTEM ================= */



/* ONE fixed image box for all cards */


    /* Image fits perfectly */
    /*.property-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;*/ /* crop, never stretch */
        /*object-position: center;
        display: block;
        transition: transform .35s ease;
    }*/

/* Hover polish */
/*.property-card:hover .property-image-box img {
    transform: scale(1.05);
}*/

/* FEATURED badge */
/*.property-image-box .featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}*/

/* Wishlist */
/*.property-image-box .wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: #fff;
    padding: 6px 8px;
    border-radius: 50%;
}*/

/* Camera count — FIXED ALWAYS */
/*.property-image-box .image-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(0,0,0,.75);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}*/

/* Mobile tuning */
/*@media (max-width: 767px) {
    .property-image-box {
        aspect-ratio: 16 / 9;
        border-radius: 14px 14px 0 0;
    }
}
.property-card .row.g-0 {
    align-items: stretch;
}

.property-card {
    overflow: hidden;
}*/



.search-summary {
    margin-bottom: 16px;
}

    .search-summary h4 {
        font-size: 18px;
        font-weight: 600;
        color: #0f172a;
    }





.filter-box {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.filter-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #0f172a;
}

.filter-list li {
    padding: 10px 0;
    font-size: 14px;
    color: #473d27;
}
    .filter-list li.active {
        background: #eef2ff;
        border-radius: 8px;
        padding-left: 10px;
    }


.new-pahechan-latest {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

    .new-pahechan-latest span {
        color: #ef4444;
    }


.property-card .price-text {
    font-size: 18px;
    font-weight: 700;
}

.property-card .fw-semibold {
    font-size: 14px;
}

.property-card .text-muted {
    font-size: 13px;
}


.btn-outline-primary {
    border-radius: 8px;
    font-weight: 600;
}

.btn-red-latest {
    border-radius: 8px;
    font-weight: 600;
}



/* Force black placeholder (Bootstrap override) */
.search-input::placeholder {
    color: #000 !important;
    opacity: 1 !important;
}

.search-input::-webkit-input-placeholder {
    color: #000 !important;
}

.search-input::-moz-placeholder {
    color: #000 !important;
}

.search-input:-ms-input-placeholder {
    color: #000 !important;
}

/* Remove extra gap below Popular Localities section */
.width-section-start-lates:first-of-type {
    padding-bottom: 0 !important;
}

h2.Popular-latest {
    margin-bottom: 10px; /* tight & clean */
    text-align: left;
}
.search-wrapper {
    margin-top: 10px;
    border-radius: 16px;
}

.search-input {
    font-weight: 500;

    color: #000 !important;
    opacity: 1 !important;
}
.search-btn {
    background: #473d27 !important;
    color: #fff !important;
    border: none;
}

    .search-btn:hover {
        background: #dc2626 !important;
    }
.filter-box {
    position: sticky;
    top: 90px;
}

.filter-list li {
    padding: 8px 12px;
    border-radius: 8px;
}

    .filter-list li:hover,
    .filter-list li.active {
        background: #eef2ff;
        font-weight: 700;
    }

.btn-group .btn {
    border-radius: 8px;
    font-weight: 600;
}

.btn-danger {
    background: #ef4444;
    border: none;
}
input#txtKeyword::placeholder {
    color: #000 !important;
}


.info-box {
    background: #ffffff;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .info-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: #334155;
        padding: 8px 0;
    }

    .info-list i {
        color: #473d27;
        width: 16px;
    }




/* ================================
   SEARCH PANEL (MAIN CONTAINER)
================================ */
.search-panel {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #eef0f4;
}

/* ================================
   SEARCH ROW
================================ */
.search-panel__search {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.search-panel__location {
    background: #f1f5f9;
    color: #0f172a;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

    .search-panel__location .close {
        margin-left: 6px;
        cursor: pointer;
        opacity: .6;
    }

.search-panel__input {
    flex: 1;
    height: 46px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 14px;
    color: #111827;
}

    .search-panel__input::placeholder {
        color: #6b7280;
    }

.search-panel__btn {
    height: 46px;
    padding: 0 22px;
    border-radius: 10px;
    background: #dc2626;
    color: #fff;
    border: none;
    font-weight: 600;
}

/* ================================
   FILTER ROW
================================ */
.search-panel__filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* CHIPS */
.filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #334155;
    cursor: pointer;
    transition: all .15s ease;
}

    .filter-chip:hover,
    .filter-chip.active {
        background: #0f172a;
        color: #fff;
        border-color: #0f172a;
    }

/* SORT */
.sort-control {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
}

    .sort-control select {
        border: none;
        background: transparent;
        font-weight: 600;
        cursor: pointer;
        outline: none;
    }

.search-panel__filters {
    padding-top: 26px;
}
/*.filter-box {
    position: relative;
    top: 90px;
}*/

.promo-banner.mt-4.banner {
    position: relative;
    top: 90px;
    margin-top: 6.5rem !important;
}

/* Hide extra property types */
.filter-list .extra-item {
    display: none;
}

/* + More link */
.filter-list .more-toggle {
    color: #0d6efd;
    font-weight: 600;
    cursor: pointer;
    padding-top: 6px;
}

    /* Hover polish */
    .filter-list .more-toggle:hover {
        text-decoration: underline;
    }





.filter-list li.active {
    background: #eef2ff;
    color: #1e40af;
    font-weight: 700;
}

.bhk-filter.active {
    background: #473d27;
    color: #fff;
    border-color: #473d27;
}


.property-type-item.active {
    background: #eef2ff;
    color: #1e40af;
    font-weight: 600;
    border-radius: 6px;
}


/*
new css date 23/12/2025*/

/* Left image column */



/* FIXED IMAGE CONTAINER */
/*.property-image-box {
    position: relative;
    width: 100%;
    height: 230px;*/ /* 🔥 FIXED HEIGHT (KEY) */
    /*overflow: hidden;
    background: #f1f5f9;
}*/


    /* IMAGE MAGIC */
    /*.property-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;*/ /* 🔥 99acres secret */
        /*object-position: center;
        display: block;
    }*/

.property-card:hover .property-image-box img {
    transform: scale(1.05) !important;
}
/*.property-image-box .featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}*/

.property-image-box .wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: #fff;
    padding: 6px 8px;
    border-radius: 50%;
}

.property-image-box .image-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(0,0,0,.75);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}
.property-card .row.g-0 {
    align-items: stretch !important; /* 🔥 MAGIC */
}

@media (max-width: 767px) {
    .property-image-box {
        aspect-ratio: 16 / 9;
        border-radius: 14px 14px 0 0;
    }
}


/* IMAGE COLUMN */
.property-media {
    padding: 0;
}

/* INTERNATIONAL IMAGE RATIO BOX */
.property-image {
    width: 100%;
    aspect-ratio: 4 / 3; /* 🔥 Standard listing ratio */
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

    /* IMAGE BEHAVIOUR (FINAL MAGIC) */
    .property-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* crop, never stretch */
        object-position: center;
        display: block;
    }


.modal-content {
    border-radius: 14px;
}

.modal-header {
    border-bottom: none;
}

.modal-body h6 {
    font-weight: 600;
}
.amenities-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}


.property-card {
    text-align: left !important;
    padding: 0 !important;
}
.price-line .price-text {
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
}


.price-line {
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
}

.highlights span {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #f1f5f9;
}

/* ================= 99ACRES META ROW ================= */

.property-meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    border-top: 1px solid #e5e7eb;
    padding-top: 14px;
    margin-top: 10px;
}

.meta-col {
    text-align: left;
}

.meta-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

    .meta-title small {
        font-size: 12px;
        font-weight: 500;
        color: #6b7280;
    }

.meta-sub {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

/* MOBILE */
@media (max-width: 767px) {
    .property-meta-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}



/* IMAGE COLUMN */


/* FIXED IMAGE BOX — SAME FOR ALL */
/*.property-image-box {
    position: relative;
    width: 100%;
    height: 230px;*/ /* 🔥 FIXED HEIGHT */
    /*overflow: hidden;
    background: #f1f5f9;
}*/

    /* IMAGE MAGIC (99acres secret) */
    /*.property-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;*/ /* 🔥 crop, never stretch */
        /*object-position: center;
        display: block;
        transition: transform .35s ease;
    }*/

/* Premium hover */
.property-card:hover .property-image-box img {
    transform: scale(1.05);
}

/* Card image + content SAME HEIGHT */
.property-card .row.g-0 {
    align-items: stretch;
}

/* Mobile */
@media (max-width: 767px) {
    .property-image-box {
        aspect-ratio: 16 / 9;
        height: auto;
        border-radius: 14px 14px 0 0;
    }
}
.property-meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    border-top: 1px solid #e5e7eb;
    padding-top: 14px;
    margin-top: 10px;
}

.meta-col {
    text-align: left;
}

.meta-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

    .meta-title small {
        font-size: 12px;
        font-weight: 500;
        color: #6b7280;
    }

.meta-sub {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

/* Mobile */
@media (max-width: 767px) {
    .property-meta-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
.property-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    overflow: hidden;
    padding: 0 !important;
    text-align: left;
}
/* ================= 99ACRES IMAGE FINAL FIX ================= */

/* Left image column */


/* ================= PROPERTY CARD ================= */

.property-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    overflow: hidden;
}

    /* Make image + content same height */
    .property-card .row.g-0 {
        display: flex;
        align-items: stretch;
    }

/* ================= IMAGE COLUMN ================= */

/* ================= PROPERTY CARD ================= */

.property-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    overflow: hidden;
}

    /* Image + content same height */
    .property-card .row.g-0 {
        display: flex;
        align-items: stretch;
    }

/* ================= IMAGE COLUMN ================= */

.property-media {
    padding: 0 !important;
    display: block; /* 🔥 NOT FLEX */
    background: #f1f5f9;
}

/* IMAGE FRAME (99acres style) */
.property-image-box {
    position: relative;
    width: 100%;
    height: 240px; /* 🔥 fixed & clean */
    overflow: hidden;
    background: #e5e7eb;
}

    /* IMAGE — NEVER BREAKS */
    .property-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 🔥 crop */
        object-position: center;
        display: block;
        transition: transform .35s ease;
    }

/* Hover polish */
.property-card:hover .property-image-box img {
    transform: scale(1.04);
}

/* Badges */
.property-image-box .featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
}

.property-image-box .wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    background: #fff;
    padding: 6px 8px;
    border-radius: 50%;
}

.property-image-box .image-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(0,0,0,.75);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}

/* ================= CONTENT ================= */

.property-card .col-md-8 {
    padding: 22px 26px !important;
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .property-card .row.g-0 {
        flex-direction: column;
    }

    .property-image-box {
        height: auto;
        aspect-ratio: 16 / 9; /* 🔥 mobile perfect */
        border-radius: 14px 14px 0 0;
    }
}




/* ================= AMENITIES FILTER (99ACRES STYLE) ================= */
/* ================= 99ACRES AMENITIES FILTER ================= */

.amenities-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.amenity-pill {
    position: relative;
    cursor: pointer;
}

    .amenity-pill input {
        display: none;
    }

    .amenity-pill span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 14px;
        border-radius: 999px;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
        font-size: 13px;
        font-weight: 500;
        color: #334155;
        transition: all .15s ease;
    }

    /* Selected */
    .amenity-pill input:checked + span {
        background: #0f172a;
        color: #fff;
        border-color: #0f172a;
    }

    /* Hover */
    .amenity-pill span:hover {
        background: #eef2ff;
        border-color: #c7d2fe;
    }

/* Clear */
.amenities-clear {
    font-size: 12px;
    color: #2563eb;
    cursor: pointer;
    font-weight: 600;
}

/* + more */
.amenities-more {
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    cursor: pointer;
    padding: 7px 10px;
}

