:root {
    --bds-primary: #00bbff;
    --bds-bg-light: #e6f8ff;
    --bds-border: #eaedf2;
    --bds-text-dark: #2c3e50;
    --bds-text-muted: #6b7c93;
}

.property-single-wrapper {
    padding-top: 10px;
    background-color: #f2fbff;
}

.property-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.property-sidebar {
    box-shadow: rgba(0, 187, 255, 0.08) 0px 10px 30px;
    border: 1px solid var(--bds-primary);
    border-radius: 12px;
    padding: 20px;
    background: #fff;
}

.is-sticky {
    position: sticky;
    top: 20px;
}

.property-sidebar.is-sticky {
    top: 120px;
}

.property-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.property-col-8 {
    width: 66.666%;
    padding: 0 15px;
}

.property-col-4 {
    width: 33.333%;
    padding: 0 15px;
}

.property-gallery {
    width: 100%;
    margin-bottom: 30px;
}

.property-gallery img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.property-header {
    margin-bottom: 30px;
}

.property-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--bds-text-dark);
    margin-top: 0;
    margin-bottom: 10px;
}

.property-address {
    font-size: 16px;
    color: var(--bds-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.property-meta-labels {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.type-label {
    background-color: var(--bds-bg-light);
    color: var(--bds-primary);
    border: 1px solid #b3ebff;
}

.status-label {
    background-color: #fff0ed;
    color: #ff5722;
    border: 1px solid #ffd8cc;
}

.property-section {
    background: #fff;
    border: 1px solid var(--bds-border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--bds-text-dark);
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bds-border);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 3px;
    background-color: var(--bds-primary);
    border-radius: 3px;
}

.property-list-item {
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.property-list-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.property-list-item .property-item-image {
    width: 250px;
    flex-shrink: 0;
}

.property-list-item .property-item-image .img-link {
    display: block;
    height: 100%;
}

.property-list-item .property-item-image .img-cover {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.property-list-item .property-item-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.property-list-item .item-title {
    font-size: 18px;
    margin: 0 0 5px 0;
}

.property-list-item .item-address {
    font-size: 13px;
    color: #888;
}

.property-list-item .item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.property-list-item .item-price {
    font-weight: 700;
    color: #fb6b26;
    font-size: 16px;
}

.property-list-item .item-date {
    font-size: 12px;
    color: #999;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    background: #f9fbfc;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.spec-item strong {
    display: block;
    font-size: 13px;
    color: #718096;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.spec-item span {
    font-size: 18px;
    font-weight: 700;
    color: var(--bds-primary);
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.media-box iframe {
    width: 100%;
    border-radius: 10px;
    border: none;
    aspect-ratio: 1.7777777778;
}

.price-box {
    border-radius: 5px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.price-item-dual span {
    color: #fb6b26;
}

.price-text {
    font-size: 24px;
    font-weight: 700;
}

.price-dual {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item-dual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

.price-item-dual:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.price-item-dual small {
    font-size: 12px;
    font-weight: 500;
    color: var(--bds-text-muted);
}

.price-item-dual span {
    color: #fb6b26;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.price-sub-label {
    font-size: 12px;
    opacity: 0.8;
    text-align: right;
    margin-top: 8px;
}

.property-single-wrapper .section-title {
    font-weight: 700;
    text-transform: none;
    font-size: 1.1em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.form-title {
    text-align: center;
    font-size: 20px;
    color: var(--bds-text-dark);
    font-weight: bold;
    margin-bottom: 5px;
}

.form-desc {
    color: var(--bds-text-muted);
    font-size: 14px;
}

.cf7-wrapper input[type="text"],
.cf7-wrapper input[type="email"],
.cf7-wrapper input[type="tel"],
.cf7-wrapper textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--bds-border);
    padding: 10px 15px;
    background: #f9fbfc;
}

.property-contact-form form {
    margin-bottom: 0;
}

.property-contact-form form input {
    box-shadow: none !important;
    border-radius: 4px !important;
}

.property-contact-form .wpcf7-submit {
    text-transform: math-auto;
    margin: 0px;
    padding: 4px !important;
    font-size: 16px;
    width: 100%;
}

.property-section .property-features {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.property-section .property-features .feature-box {
    flex: 1 1 calc(25% - 15px);
    min-width: 150px;
    padding: 15px;
    border: 1px dashed var(--bds-primary) !important;
    background-color: var(--bds-bg-light);
    border-radius: 8px;
    text-align: center;
}

.property-single-wrapper .feature-box strong {
    display: block;
    font-size: 0.8em;
    color: #333;
    text-transform: none;
}

.property-single-wrapper .feature-box span {
    font-size: 16px;
    color: var(--bds-primary);
    font-weight: 700;
    margin-top: 4px;
    display: inline-block;
}

.amenity-item {
    margin-bottom: 10px;
}

.amenity-item i {
    color: #0bf;
    background-color: var(--bds-bg-light);
    padding: 8px !important;
    border-radius: 50%;
    font-size: 13px;
    width: 28px;
    height: 28px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.property-img-full {
    width: 100%;
    aspect-ratio: 1.33333;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.property-video iframe {
    width: 100%;
    aspect-ratio: 1.7777777778;
}

.property-map iframe {
    width: 100%;
}

.bds-item-project {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--bds-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.bds-list-container {
    margin-top: 30px;
}

.bds-item {
    display: flex;
    background: #fff;
    border: 1px solid var(--bds-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.bds-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bds-item-image {
    width: 35%;
    flex-shrink: 0;
}

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

.bds-item-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bds-item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bds-item-title a {
    color: var(--bds-text-dark);
    text-decoration: none;
}

.bds-item-title a:hover {
    color: var(--bds-primary);
}

.bds-item-price {
    font-size: 18px;
    font-weight: 700;
    color: #e53e3e;
    margin-top: auto;
}

.property-gallery-fullwidth .flickity-page-dots {
    display: none !important;
}

.property-gallery-fullwidth {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.property-gallery-fullwidth .gallery-cell-full {
    width: 25% !important;
    max-width: 25% !important;
    padding: 0 5px;
}

.property-search-filter-wrapper {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px;
    border-radius: 12px;
    max-width: 1100px;
    margin: 30px auto 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.property-filter-form {
    background: #fff;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.filter-flex-container {
    display: flex;
    align-items: center;
}

.filter-item {
    border-right: 1px solid #eaedf2;
    display: flex;
    align-items: center;
}

.filter-item:last-child {
    border-right: none;
}

.filter-item.search-input {
    flex: 4;
}

.filter-item.select-input {
    flex: 2;
}

.filter-item.submit-btn {
    flex: 1.5;
    border-right: none;
}

.filter-item input,
.filter-item select {
    width: 100%;
    border: none !important;
    box-shadow: none !important;
    height: 50px;
    background: transparent;
    padding: 0 20px;
    font-size: 15px;
    color: var(--bds-text-dark);
    margin: 0;
    outline: none;
}

.filter-item select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.filter-item button {
    width: 100%;
    height: 50px;
    border: none;
    background: var(--bds-primary);
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    font-size: 15px;
    margin: 0;
}

.filter-item button:hover {
    background-color: #0099d1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 187, 255, 0.3);
}

.nav-pagination a,
.nav-pagination span {
    display: inline-block !important;
    padding: 8px 16px !important;
    background: #fff;
    border: 1px solid var(--bds-border) !important;
    border-radius: 6px !important;
    color: var(--bds-text-dark) !important;
    height: unset !important;
    width: unset !important;
    min-width: unset !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
}

.nav-pagination span {
    color: #fff !important;
    background: var(--bds-primary) !important;
}

.property-grid-item {
    background: #fff;
    border: 1px solid var(--bds-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 187, 255, 0.12);
    border-color: #b3ebff;
}

.property-grid-image {
    position: relative;
    aspect-ratio: 1.3333333333;
    overflow: hidden;
}

.property-grid-image .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-grid-item:hover .img-cover {
    transform: scale(1.05);
}

.grid-item-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.grid-item-title a {
    color: var(--bds-text-dark);
}

.grid-item-price {
    color: #fb6b26;
    font-size: 20px;
    font-weight: 800;
}

.property-archive-banner {
    background: linear-gradient(135deg, var(--bds-primary) 0%, #6a11cb 100%);
    padding: 80px 0;
    color: #fff;
    margin-bottom: 30px;
}

.archive-title {
    color: #fff;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 0;
}

.item-features-dashed {
    display: flex;
    border: 1px dashed #d1d5db;
    border-radius: 8px;
    margin: 8px 0;
    padding: 12px 0;
    flex-wrap: wrap;
}

.feature-col {
    flex: 1;
    text-align: center;
    border-right: 1px dashed #d1d5db;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-col.border-none {
    border-right: none;
}

.feature-col .f-label {
    font-size: 13px;
    color: #6b7c93;
}

.feature-col .f-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--bds-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.property-pagination {
    margin-top: 30px;
    text-align: center;
}

.property-pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--bds-border);
    border-radius: 6px;
    color: var(--bds-text-dark);
    margin: 0 4px;
    font-weight: bold;
    transition: all 0.3s;
}

.property-pagination .page-numbers.current,
.property-pagination .page-numbers:hover {
    background: var(--bds-primary);
    color: #fff;
    border-color: var(--bds-primary);
}

.no-more-notify {
    background-color: var(--bds-bg-light);
    padding: 8px;
    color: var(--bds-primary);
    text-align: center;
    border-radius: 4px;
    border: 1px dashed var(--bds-primary);
}

.grid-item-address {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.grid-item-features {
    display: flex;
    border: 1px dashed #d1d5db;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 10px 0;
}

.g-feature-col {
    flex: 1;
    text-align: center;
    border-right: 1px dashed #d1d5db;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.g-feature-col:last-child {
    border-right: none;
}

.g-feature-col .f-label {
    font-size: 11px;
    color: #6b7c93;
}

.g-feature-col .f-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--bds-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.grid-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.ss-hp-cat-bds .banner {
    border-radius: 12px;
    overflow: hidden;
}

.ss-hp-cat-bds .banner h3 {
    font-weight: 600;
}

.property-section.p-extention {
    padding-bottom: 0;
}

.property-section:last-child {
    margin-bottom: 0;
}

.property-section.bds-tab-section .nav-tabs+.tab-panels {
    padding: 0;
    border: 0;
    margin-top: 15px;
}

.property-section.bds-tab-section .nav-tabs>li>a {
    border: 0;
    background-color: var(--bds-bg-light);
    color: var(--bds-primary);
    text-transform: math-auto;
    border-radius: 4px;
    margin-right: 4px;
}

.property-section.bds-tab-section .nav-tabs>li.active>a {
    border: 0;
    background-color: var(--bds-primary);
    color: #fff;
}

.view-all-bds a {
    text-transform: math-auto;
    margin: 0;
    border-radius: 4px;
}

.property-grid-item .property-grid-content {
    padding: 15px;
}

.grid-item-footer .grid-item-date {
    font-size: 14px;
}

.property-container .property-pagination {
    margin: 30px 0;
}

.property-load-more .button {
    min-width: 180px;
    transition: all 0.3s ease;
    text-transform: none;
    font-weight: 500;
}

.property-load-more .button.is-loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.property-load-more .button i {
    transition: transform 0.2s ease;
}

.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

.project-grid-item {
    border-color: #cbd5e0;
}

.grid-item-investor {
    font-size: 14px;
    color: var(--bds-text-muted);
    margin-bottom: 8px;
}

.grid-item-investor i {
    color: var(--bds-primary);
    margin-right: 4px;
}

.project-grid-item .label-status {
    background-color: #ebf8ff;
    color: #2b6cb0;
    border: 1px solid #bee3f8;
}

.project-grid-item:hover {
    border-color: var(--bds-primary);
    box-shadow: 0 10px 25px rgba(0, 187, 255, 0.15);
}

.project-grid-item .grid-item-footer a {
    margin: 0;
    text-transform: math-auto;
    font-size: 14px;
}

.no-data {
    background-color: var(--bds-bg-light);
    padding: 8px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px dashed var(--bds-primary);
    border-radius: 8px;
}

@media (max-width: 998px) {
    .amenities-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-col-8,
    .property-col-4 {
        width: 100%;
    }

    .property-search-filter-wrapper {
        margin: 20px 15px 0;
    }

    .filter-flex-container {
        flex-direction: column;
        padding: 10px;
    }

    .filter-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eaedf2;
    }

    .filter-item.submit-btn {
        border-bottom: none;
        padding-top: 10px;
    }

    .property-item-image {
        width: 100%;
        aspect-ratio: 1.7777777778;
    }

    .property-item-content {
        width: 100%;
        padding: 20px;
    }

    .property-gallery-fullwidth .gallery-cell-full {
        width: 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 588px) {
    .archive-title {
        font-size: 28px;
    }

    .price-sub-label {
        font-size: 14px;
    }

    .property-title {
        font-size: 28px;
    }

    .property-list-item {
        flex-direction: column;
    }

    .property-list-item .property-item-image {
        width: 100%;
    }

    .property-gallery-fullwidth .gallery-cell-full {
        width: 100% !important;
        max-width: 100% !important;
    }

    .property-map iframe {
        height: 300px !important;
    }

    .property-video iframe {
        height: 250px !important;
    }

    .feature-col {
        flex: 0 0 50%;
        border-bottom: 1px dashed #d1d5db;
        padding: 10px 0;
    }

    .feature-col:nth-child(even) {
        border-right: none;
    }

    .feature-col:last-child {
        border-bottom: none;
        flex: 0 0 100%;
        border-right: none;
    }
}