.property-details-page {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.property-details-page h1 {
    font-size: 2.4rem;
    line-height: 1.1;
}
.property-gallery .card {
    border-radius: 1.5rem;
}
.property-main-image {
    width: 60%;
    height: 350px;
    object-fit: cover;
    display: block;
    margin: 0 auto 1.5rem auto;
    border-radius: 1.5rem 1.5rem 0 0;
}
.property-thumbnails {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    margin-bottom: -0.5rem;
}
.property-thumbnails::-webkit-scrollbar {
    height: 8px;
}
.property-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(17, 24, 39, 0.18);
    border-radius: 999px;
}
.property-thumbnails .thumbnail-img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.property-thumbnails .thumbnail-img:hover,
.property-thumbnails .thumbnail-img.active {
    transform: translateY(-3px);
    border-color: #ff7a00;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}
.property-detail-card,
.property-inquiry-card {
    border-radius: 1.4rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}
.property-detail-card .card-body,
.property-inquiry-card .card-body {
    padding: 1.9rem;
}
.property-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.property-feature {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1rem;
}
.property-feature strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #111827;
}
.property-description p,
.property-amenities p {
    color: #475569;
    line-height: 1.85;
    margin-bottom: 0;
}
.property-details-page .badge.bg-light {
    padding: 0.7rem 0.95rem;
    font-size: 0.92rem;
}
.property-inquiry-card .btn-primary {
    background-color: #ff7a00;
    border-color: #ff7a00;
}
@media (max-width: 991px) {
    .property-details-page {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .property-thumbnails {
        justify-content: flex-start;
    }
    .property-thumbnails .thumbnail-img {
        width: 90px;
        min-width: 90px;
        height: 70px;
    }
}
@media (max-width: 767px) {
    .property-thumbnails {
        justify-content: flex-start;
    }
    .property-thumbnails .thumbnail-img {
        width: 85px;
        min-width: 85px;
        height: 66px;
    }
    .property-features {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575px) {
    .property-main-image {
        height: 360px;
    }
    .property-thumbnails .thumbnail-img {
        width: 80px;
        min-width: 80px;
        height: 62px;
    }
}

