/* ============================================================================
   SEO PROPERTIES BASE STYLES
   ============================================================================ */

/* --- Hero Section --- */
.seo-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 2rem 0;
    margin-bottom: 1.5rem;
}

.seo-hero h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.seo-hero .breadcrumb {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.seo-hero .breadcrumb a {
    color: #ffd700;
    text-decoration: none;
}

.seo-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Property Grid --- */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
    gap: 1.25rem;
}

/* --- Property Card --- */
.property-card {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.property-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
}

.property-card img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
}

.property-card__body {
    padding: 1rem;
}

.property-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
}

.property-card .type-badge {
    display: inline-block;
    background: #e8f4ff;
    color: #0066cc;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.property-card .location {
    color: #666;
    font-size: 0.875rem;
}

/* --- Sidebar --- */
.sidebar-section {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.sidebar-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}

.sidebar-link {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 0.875rem;
}

.sidebar-link:last-child {
    border-bottom: none;
}

.sidebar-link:hover {
    color: #0066cc;
}

.sidebar-link .count {
    color: #999;
    font-size: 0.75rem;
}

/* --- SEO Content --- */
.seo-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.seo-content h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.seo-content p {
    color: #666;
    line-height: 1.7;
}

/* --- No Results --- */
.no-results {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
}

/* --- Pagination --- */
.pagination-wrapper {
    margin-top: 2rem;
}

/* Related Searches - Competitor Hack */
.related-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.related-search-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 1.25rem;
    color: #495057;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
}
.related-search-tag:hover {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #212529;
    text-decoration: none;
}

/* Inline FAQ on zone/type pages */
.faq-section-inline .faq-item {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
}
.faq-section-inline .faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: 500;
    background-color: #f8f9fa;
}
.faq-section-inline .faq__question:hover {
    background-color: #e9ecef;
}
.faq-section-inline .faq__toggle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6c757d;
}
.faq-section-inline .faq__answer {
    padding: 0.75rem 1rem;
    line-height: 1.6;
    color: #495057;
}
.faq-section-inline .faq__answer--hidden {
    display: none;
}

/* SEO Content Pricing Table */
.seo-content .table {
    font-size: 0.875rem;
}
.seo-content .table th {
    font-weight: 600;
}
