/* TABS */
.tabs {
    display: flex;
    gap: 10px;
    margin: 30px 0;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: #eee;
    cursor: pointer;
    border-radius: 5px;
}

.tab-btn.active {
    background: #ff9800;
    color: #fff;
}

/* GRID */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.property-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding-bottom: 15px;
    transition: 0.3s;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-card h3 {
    padding: 10px;
    font-size: 16px;
}

.property-card p {
    padding: 0 10px;
    margin: 5px 0;
}

.property-card a {
    display: block;
    margin: 10px;
    text-align: center;
    padding: 8px;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .property-grid {
        grid-template-columns: 1fr;
    }

    .tabs {
        flex-direction: column;
    }
}
.section-heading {
    text-align: center;
    font-size: 28px;
    margin: 40px 0 20px;
}

/* CENTER TABS */
.center-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 25px;
    border: none;
    background: #eee;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.tab-btn.active {
    background: #ff9800;
    color: #fff;
}

/* GRID */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .property-grid {
        grid-template-columns: 1fr;
    }
}
.property-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.property-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.card-img {
    position: relative;
}

.card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.3s;
}

.property-card:hover .card-img img {
    transform: scale(1.05);
}

/* BADGE */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: bold;
}

/* CONTENT */
.card-content {
    padding: 16px;
}

.property-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* PRICE */
.price {
    font-size: 20px;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 10px;
}

/* DETAILS */
.details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.details span {
    background: #f5f7fa;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
}

/* STATUS SPECIAL */
.status {
    background: #e6f9ed;
    color: #28a745;
    font-weight: bold;
}

/* LOCATION */
.location {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* POSSESSION */
.possession {
    font-size: 13px;
    color: #999;
}

/* BUTTON */
.btn {
    display: block;
    margin-top: 12px;
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.btn:hover {
    background: linear-gradient(135deg, #0056b3, #0096c7);
}
.details {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

/* BHK HIGHLIGHT */
.bhk {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* STATUS (READY TO MOVE) */
.status {
    background: #e6f9ed;
    color: #28a745;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* LOCATION (LIGHT TEXT) */
.location {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* POSSESSION (SUBTLE TEXT) */
.possession {
    font-size: 13px;
    color: #999;
}
.details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

/* BHK */
.bhk {
    background: #007bff;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
}

/* AREA */
.area {
    background: #f1f1f1;
    padding: 6px 12px;
    border-radius: 20px;
}

/* TYPE */
.type {
    background: #fff3cd;
    color: #856404;
    padding: 6px 12px;
    border-radius: 20px;
}

/* STATUS */
.status {
    background: #e6f9ed;
    color: #28a745;
    padding: 6px 12px;
    border-radius: 20px;
}

.location {
    font-weight: 500;
    color: #444;
}

.possession {
    color: #777;
}.bhk {
    background: #007bff !important;
    color: #fff !important;
    padding: 7px 16px;
    border-radius: 20px;
    font-weight: bold;
    opacity: 1 !important;
}