.swiper-button-prev,
.swiper-button-next {
    top: 93%;
}

.filter-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.property-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.property-card img {
    transition: transform 0.5s ease;
}

.property-card:hover img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.badge-rent {
    background-color: #10B981;
    color: white;
}

.badge-buy {
    background-color: #3B82F6;
    color: white;
}

.badge-offplan {
    background-color: #F59E0B;
    color: white;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0.75rem;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #AEC4D6;
    display: inline-block;
    position: relative;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.checkbox-container input:checked+.custom-checkbox {
    background-color: #AEC4D6;
}

.checkbox-container input:checked+.custom-checkbox:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #030611;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.noUi-connect {
    background: #AEC4D6;
}

.noUi-handle {
    border: 1px solid #AEC4D6;
    background: #F9F8FF;
    box-shadow: none;
    cursor: pointer;
}

.noUi-handle:before,
.noUi-handle:after {
    display: none;
}

.noUi-horizontal {
    height: 8px;
}

.noUi-horizontal .noUi-handle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: -6px;
    right: -9px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    background-color: #AEC4D6;
    color: #030611;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.filter-tag:hover {
    background-color: #030611;
    color: #F9F8FF;
}

.filter-tag .close-icon {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    cursor: pointer;
}

.payment-plan {
    background: linear-gradient(135deg, rgba(174, 196, 214, 0.1) 0%, rgba(174, 196, 214, 0.05) 100%);
    border-left: 3px solid #AEC4D6;
}

.handover-info {
    background: linear-gradient(135deg, rgba(3, 6, 17, 0.05) 0%, rgba(3, 6, 17, 0.02) 100%);
    border-left: 3px solid #030611;
}

@media (max-width: 1024px) {
    .filter-sidebar {
        position: static;
        max-height: none;
    }
}

.mobile-filter-toggle {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-filter-toggle {
        display: block;
    }

    .filter-sidebar {
        display: none;
    }

    .filter-sidebar.mobile-open {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 50;
        overflow-y: auto;
        padding: 2rem;
    }
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(174, 196, 214, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #AEC4D6;
    transition: width 0.3s ease;
}

.founder-section {
    background: linear-gradient(135deg, rgba(174, 196, 214, 0.05) 0%, rgba(174, 196, 214, 0.1) 100%);
    border: 1px solid rgba(174, 196, 214, 0.2);
}

.founder-image {
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.founder-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.founder-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.founder-quote {
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid #AEC4D6;
    font-style: italic;
    color: #4B5563;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
    font-size: 3rem;
    color: #AEC4D6;
    font-family: serif;
}

.highlight-text {
    background: linear-gradient(135deg, #AEC4D6 0%, #8BB4CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}
