.properties-hero-section {
    background: linear-gradient(135deg, #003380 0%, var(--gradient-color-2, #000000) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 0;
}

.properties-hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.properties-hero-section p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.properties-content {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.properties-view-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.results-count {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.view-toggle {
    display: none;
    gap: 10px;
    background: #fff;
    padding: 5px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.view-btn {
    background: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #999;
    transition: all 0.3s;
    border-radius: 4px;
}

.view-btn:hover {
    color: #193560;
    background: #f8f9fa;
}

.view-btn.active {
    background: #193560;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination-wrapper {
    text-align: center;
    margin-top: 40px;
}

.pagination-wrapper .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-wrapper .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-decoration: none;
    color: #193560;
    transition: all 0.3s;
    background: #fff;
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
    background: #193560;
    color: #fff;
    border-color: #193560;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-results p {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .properties-hero-section h1 {
        font-size: 1.8rem;
    }

    .properties-view-controls {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}
