/* Base Styling */
.single-property {
    font-family: 'Figtree', sans-serif;
    color: #0B1427;
}

/* Location Map Section */
.location-map-section {
    background: #F9FAFB;
    padding: 4rem 2rem;
}

.location-map-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 1rem;
}

.location-map-section p {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-image img {
    max-width: 100%;
    border-radius: 8px;
}

.map-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-btn {
    padding: 0.75rem 1.5rem;
    background-color: #1F3B73;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
    font-weight: 500;
}

.map-btn:hover {
    background-color: #16305b;
}

/* Frontage Section */
.frontage-section {
    background: #fff;
    padding: 4rem 2rem;
}

.frontage-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.frontage-text {
    flex: 1;
    min-width: 300px;
}

.frontage-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 1rem;
}

.frontage-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Media Buttons */
.media-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.media-btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background-color: #AE8363;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s ease;
}

.media-btn:hover {
    background-color: #8c664a;
}

.frontage-images {
    flex: 1;
    min-width: 300px;
}

.frontage-gallery {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
}

.gallery-item img {
    height: 300px;
    border-radius: 8px;
    cursor: pointer;
}

/* Scrollbar Styling */
.frontage-gallery::-webkit-scrollbar {
    height: 6px;
}

.frontage-gallery::-webkit-scrollbar-thumb {
    background: #AE8363;
    border-radius: 3px;
}

.frontage-gallery::-webkit-scrollbar-track {
    background: #D8BFAA;
}

/* Property Status Badges */
.property-status {
    padding: 3rem 2rem;
    background: #F3F4F6;
    text-align: center;
}

.status-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 14px;
    color: white;
    font-weight: bold;
}

.status-badge.featured {
    background-color: #FFD700;
}

.status-badge.preselling {
    background-color: #AE8363;
}

.status-badge.rfo {
    background-color: #1F3B73;
}

.status-badge.complete {
    background-color: #28a745;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}