.featured-properties {
    padding: 80px 0;
    background-color: #0d0d0d;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.section-subtitle {
    max-width: 1048px;
    opacity: 0.8;
    margin-top: 8px;
    color: #999999;
}

.view-all-btn {
    background: #1a1a1a;
    border: 1px solid #444;
    padding: 10px 18px;
    border-radius: 8px;
    color: #fff;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #6c63ff;
    border-color: #6c63ff;
    color: #fff;
}

.property-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-4px);
}

.property-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.property-content {
    padding: 20px;
}

.property-title {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
}

.property-desc {
    font-size: 15px;
    margin: 10px 0;
    color: #ccc;
}

.property-meta {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: 30px;
}

.property-meta span {
    white-space: nowrap;
    background: #1a1a1a;
    border: 1px solid #999999;
    border-radius: 30px;
    padding: 5px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.property-meta img {
    width: 20px;
    height: auto;
}

.property-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.property-price {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.property-price p {
    font-size: 16px;
    color: #999999;
    margin: 0;
}

.btn-details {
    display: inline-block;
    background: #6c63ff;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-align: center;
    transition: background 0.3s ease;
}

.btn-details:hover {
    background: #5a54e2;
}

/* Swiper */
.featured-divider {
    border: none;
    border-top: 1px solid #222;
    margin: 50px 0 30px;
}

.swiper-controls {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.pagination-status {
    font-size: 14px;
    color: #aaa;
}

.swiper-nav {
    position: absolute;
    top: 16px;
    right: 0;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    background: #222;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #6c63ff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
}

@media (max-width: 480px) {
    .swiper-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .pagination-status {
        order: 1;
        font-size: 14px;
        color: #aaa;
    }

    .swiper-nav {
        order: 2;
        display: flex;
        gap: 12px;
    }

    .view-all-btn {
        order: 0;
        background: #1a1a1a;
        border: 1px solid #444;
        padding: 10px 18px;
        border-radius: 8px;
        color: #fff;
        transition: all 0.3s ease;
    }

    .view-all-btn:hover {
        background: #6c63ff;
        border-color: #6c63ff;
        color: #fff;
    }
}



