/*body*/
.property-image {
    background-color: #333333;
    background-image: url("");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
    width: 100vw;
    position: relative;
}

.property-title {
    position: absolute;
    background-color: #636262;
    font-weight: 600;
    text-shadow: 3px 0px 5px rgba(0, 0, 0, 0.5);
    padding: 20px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2rem;
}

.property-content {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.property-content h1 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.property-content .row {
    margin-top: 30px;
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.property-content .col-4,
.property-content .col-6 {
    flex: 1 1 calc(33.33% - 20px);
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s;
    box-sizing: border-box;
}

.property-content .col-6 {
    flex: 1 1 calc(50% - 20px);
}

.property-content .col-4:hover,
.property-content .col-6:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.property-content .col-4 div,
.property-content .col-6 div {
    font-size: 1.25rem;
    color: #34495e;
    margin-top: 10px;
}

.property-content .description {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2f3640;
    min-height: 240px;
    /* Increased from 160px */
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

/* Removed .property-title CSS as requested */

.fa {
    margin-right: 10px;
    color: #007bff;
    font-size: 1.4rem;
}

.offer-price-clean {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
}

.price-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-item .label i {
    color: #007bff;
    margin-right: 6px;
}

.price-item .value {
    font-weight: bold;
    font-size: 1.3rem;
    color: #27ae60;
}

.sale-price {
    color: #e67e22;
}