/* ===============================
   Single Property Page Styles
=================================*/

.ba-single-property {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.property-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.property-title {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.8rem;
    font-weight: bold;
}

.property-meta {
    display: flex;
    gap: 20px;
    font-size: 16px;
    flex-wrap: wrap;
}

.property-meta .price {
    font-weight: bold;
    color: #2271b1;
    font-size: 18px;
}

/* Gallery Section */
.property-gallery,
.gallery-slider {
    margin-bottom: 30px;
}

.gallery-item,
.gallery-slider .slide {
    margin-bottom: 15px;
}

.gallery-item img,
.gallery-slider .slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Main Content Grid */
.property-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.property-details h2,
.property-details h3 {
    color: #333;
    margin-top: 0;
}

.property-details .detail {
    margin-bottom: 25px;
}

/* Sidebar */
.property-sidebar {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
}

/* Enquiry Form */
.enquiry-form h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.enquiry-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form input[type="tel"],
.enquiry-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.enquiry-form .button {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
}

.enquiry-form .button:hover {
    background: #135e96;
}

/* ===============================
   Pagination Styles
=================================*/

.ba-property-pagination {
    margin-top: 30px;
    text-align: center;
}

.ba-property-pagination ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ba-property-pagination li {
    display: inline;
    margin: 0 5px;
}

.ba-property-pagination a,
.ba-property-pagination span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #ddd;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.ba-property-pagination a:hover {
    background: #f1f1f1;
}

.ba-property-pagination .current {
    background: #2271b1;
    color: white;
    border-color: #2271b1;
}

/* ===============================
   Grid Style for Archive Listings
=================================*/

.ba-property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 10px;
    /* padding: 30px 20px; */
}
