:root {
    --primary-color: #008000;
    --primary-bg-color: #f8f8f8;
}

.cre-single-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.cre-back-link {
    max-width: 1280px;
    margin: 20px auto;
    padding: 0 20px;
}

.cre-back-link a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.cre-header-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    text-align:center;
}

.cre-header-left h1 {
    font-size: 45px;
        font-weight: 700;
    color: #333;
    margin: 0px;
}

.cre-header-left .address {
    color: #666;
    font-size: 22px;
    margin-bottom: 10px;
}

.cre-header-right {
    text-align: right;
}

.cre-header-right .price {
    font-size: 28px;
    font-weight: bold;
    color: #008000;
    margin: 0 0 5px 0;
}

.cre-header-right .lease-label {
    color: #666;
    font-size: 14px;
}

.cre-tabs-nav {
    background: var(--primary-bg-color);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.cre-tabs-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 5px;
    border-bottom: 5px solid #008000;
}

.cre-tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
       color: #008000;
       background-color: #e8f4e8;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.cre-tab-btn:hover {
  color: #ffffff;
    background: #008000;
}

.cre-tab-btn.active {

    color: #ffffff;
    background: #008000;
}

.cre-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.cre-tabs-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 600px;
}

.cre-tab-pane {
    display: none;
}

.cre-tab-pane.active {
    display: block;
}

.video-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.image-slider-container {
    width: 100%;
    margin-bottom: 30px;
    padding: 10px;
    background-color: #e8f4e8;
}

.main-slider {
    width: 100%;
    height: 500px;
    position: relative;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.slider-image.active {
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-nav:hover {
    background: rgba(0, 128, 0, 0.8);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

.thumbnail-slider {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    min-width: 120px;
    height: 80px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.video-thumb {
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.slider-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 750px 1fr;
    gap: 30px;
}

.overview-main {
    background: var(--primary-bg-color);
}

.overview-sidebar {
    background: var(--primary-bg-color);
    min-width: 350px;
}

.property-details-section {
    margin-bottom: 30px;
    position: sticky;
    top: 60px;
}

.property-details-section h3 {
    font-size: 35px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.property-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.detail-item {
    padding: 10px 0;
}

.detail-item.full-width {
    grid-column: 1 / -1;
}

.detail-label {
   font-size: 17px;
    font-weight: 600;
    color: #000000;
   
}

.detail-value {
  font-size: 16px;
    color: #666;
    font-weight: 500;
}

.description-section {
    margin-bottom: 30px;
}

.description-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.description-section p {
    color: #666;
    line-height: 1.6;
}

/* AVAILABLE PARCELS SECTION - CommercialMLS Style */
.available-parcels-section {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
    background: var(--primary-bg-color);
}

.available-parcels-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.parcel-item {
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;

     background: #fff;
    box-shadow:3px 1px 20px 0 rgba(0, 110, 225, .08);
}

.parcel-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.parcel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
     background: #fff;
    box-shadow:3px 1px 20px 0 rgba(0, 110, 225, .08);
}

.parcel-header:hover {
    background: #e8f4e8;
}

.parcel-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.parcel-status {
    font-size: 12px;
    font-weight: 600;
}

.parcel-name {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.parcel-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.parcel-info {
    text-align: right;
}

.parcel-acres {
    font-size: 14px;
    color: #666;
    margin: 0 0 5px 0;
}

.parcel-price {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.parcel-toggle {
    color: #008000;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.parcel-item.expanded .parcel-toggle {
    transform: rotate(180deg);
}

.parcel-body {
    display: none;
    padding: 20px;
    background: #fff;
    box-shadow:3px 1px 20px 0 rgba(0, 110, 225, .08);
}

.parcel-item.expanded .parcel-body {
    display: block;
}

.parcel-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.parcel-detail-item {
    padding: 15px;
    background: #fff;
    border-radius: 4px;
}

.parcel-detail-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.parcel-detail-value {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.parcel-actions {
    display: flex;
    gap: 10px;
}

.btn-view-parcel,
.btn-download-flyer {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-view-parcel {
    background: var(--primary-color);
    color: white;
}

.btn-view-parcel:hover {
    background: #006600;
    color: white;
}

.btn-download-flyer {
    background: #fff;
    color: #c74747;
    border: 1px solid #e0e0e0;
}

.btn-download-flyer:hover {
    background: #f9f9f9;
}

/* SPACES TAB - Table Style */
.spaces-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.spaces-table thead {
    background: #f5f5f5;
}

.spaces-table th {
    padding: 15px;
    text-align: left;
    font-size: 14px;
    color: #666;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
}

.spaces-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}

.spaces-table tr:hover {
    background: #f9f9f9;
}

.property-flyer-box {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 4px;
}

.property-flyer-box a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}
.property-flyer-box:hover {
    background: #006600;
    cursor: pointer;
}
.agent-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.agent-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.agent-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ddd;
    margin-right: 15px;
    flex-shrink: 0;
    background-image: url('https://7foldrealty.com/wp-content/uploads/elementor/thumbs/dm-parkside-scaled-rdsizf69pxcyk3jjzv6j666ow9ymn07n9wdtvq8xf0.jpg');
    background-position: 0% 10%;
    background-size: 190%;
}

.agent-details h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
}

.agent-details p {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #666;
}

.social-share {
    margin-bottom: 20px;
}

.social-share h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
   background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  color: white;
    text-decoration: none;
}
.social-icons a svg{

    fill: #ffffff;
}
.social-icons a:hover {
  background: #00800000;
    color: white;
    /* box-shadow: rgb(0 128 0) 0px 0px 15px 0px; */
    border: 1px solid green;
}
.social-icons a:hover svg{

    fill: #008000;
}

.contact-form {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
        border: 1px solid #008000;

}

.contact-form h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
}

.submit-btn:hover {
    background: #006600;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.documents-grid {
    display: grid;
    gap: 20px;
}

.document-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.document-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.1);
}

.document-icon {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
}

.document-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.document-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

@media (max-width: 1320px) {
    .overview-grid {
        grid-template-columns: 1fr 380px;
    }
}

@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .parcel-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cre-header-section {
        flex-direction: column;
    }
    
    .property-details-grid {
        grid-template-columns: 1fr;
    }
    
    .parcel-right {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }
    
    .parcel-details {
        grid-template-columns: 1fr;
    }
}
.parcel-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.parcel-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.parcel-section h4 {
    font-size: 16px;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.btn-download-flyer {
    padding: 12px 24px;
    background: #fff;
    color: #c74747;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-download-flyer:hover {
    background: #f9f9f9;
    border-color: #c74747;
}

.parcel-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.ast-container {
    max-width: 100%;
    margin: 0 auto;
    display: block !important;
    padding:0px;
}
#footer-CTA{display:none !important;}
/* IMAGE GRID SECTION - FULL WIDTH, NO RADIUS, LIGHT OVERLAY */
.image-grid-full-section {
    width: 100%;
    background: #f8f8f8;
    padding: 0;
    margin: 0;
}

.image-grid-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 2px;
    height: 600px;
}

.grid-main-image {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: #f8f8f8;
}

.grid-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.grid-side-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2px;
    background: #f8f8f8;
}

.grid-image-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: #000;
}

.grid-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hover Overlay - Light Only */
.image-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.grid-main-image:hover .image-hover-overlay,
.grid-image-item:hover .image-hover-overlay {
    background: rgba(0, 0, 0, 0.15);
}

/* Count Overlay (Last Image) */
.image-count-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.image-count-overlay:hover {
    background: rgba(0, 0, 0, 0.65);
}

/* LIGHTBOX - NO CHANGES */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #008000;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    user-select: none;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 128, 0, 0.8);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .image-grid-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .grid-main-image {
        height: 300px;
    }
    
    .grid-side-images {
        height: 200px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 15px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
}
body{background:#f8f8f8 !important; background-color:#f8f8f8 !important;}
/* VIDEO CUSTOM THUMBNAIL */
.video-container-custom {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.video-thumbnail-custom {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail-custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-thumbnail-custom:hover .video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* Play Button */
.play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: transform 0.3s ease;
}

.video-thumbnail-custom:hover .play-button-wrapper {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 100px !important;
    height: 100px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Video Iframe */
.video-iframe-hidden {
    display: none;
    width: 100%;
    height: 100%;
}

.video-iframe-show {
    display: block;
    width: 100%;
    height: 100%;
}

.video-iframe-show iframe {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .play-icon {
        width: 70px;
        height: 70px;
    }
}
/* NEW SECTIONS STYLING */
.custom-section {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow:3px 1px 20px 0 rgba(0, 110, 225, .08);
}

.custom-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #008000;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.custom-section-content p {
    margin: 8px 0;
}
.property-details-section {
    margin-bottom: 30px;
}

.property-details-section h3 {
   font-size: 22px;
    font-weight: 700;
    color: #008000;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.property-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.detail-item:hover {
    border-color: #008000;
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.1);
    transform: translateY(-2px);
}

.detail-item.full-width {
    grid-column: 1 / -1;
}

.detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #008000 0%, #006400 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
}

.detail-content {
    flex: 1;
    min-width: 0;
}

.detail-label {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    word-wrap: break-word;
}

/* Responsive */
@media (max-width: 768px) {
    .property-details-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        padding: 15px;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .detail-value {
        font-size: 16px;
    }
}

.property-sidebar {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 420px;
}

/* Flyer Button */
.flyer-btn {
    display: block;
    background: #008000;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
}

/* Agent Card */
.agent-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.agent-top {
    display: flex;
    gap: 12px;
    align-items: center;
}

.agent-photo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.agent-card h4 {
    margin: 0;
    font-size: 16px;
}

.agent-card span {
    font-size: 13px;
    color: #777;
}

.agent-contact p {
    margin: 8px 0 0;
    font-size: 14px;
}

/* Social Share */
.social-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.social-share .icons a {
    margin-left: 10px;
}

/* Form */
.contact-form {
    border: 1px solid #008000;
    border-radius: 14px;
    padding: 18px;
}

.contact-form h4 {
    margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.contact-form button {
    width: 100%;
    background: #008000;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}
.ast-archive-entry-banner{display:none !important;}
.building-details-section {
    margin-bottom: 30px;
}

.building-size-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}

.size-item {
    flex: 1;
}

.size-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.size-value {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.building-details-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.building-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.building-detail-item {
    flex: 1;
}

.building-detail-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.building-detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.type-indicator {
    width: 8px;
    height: 8px;
    background-color: #dc3545;
    border-radius: 50%;
    display: inline-block;
}