/* Sayfa Başlık Bölümü */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Filtre Bölümü */
.filters-section {
    background: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.filter-form select,
.filter-form input {
    padding: 0.7rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    font-size: 0.95rem;
    min-width: 150px;
}

.filter-form input[type="number"] {
    width: 130px;
}

.filter-btn {
    background: #3498db;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.filter-btn:hover {
    background: #2980b9;
}

/* Sonuç Bilgisi */
.results-info {
    margin-bottom: 2rem;
}

.results-info p {
    color: #666;
    font-size: 1rem;
}

.results-info strong {
    color: #2c3e50;
    font-size: 1.2rem;
}

/* İlan Kartları - Sayfa Özel */
.property-badge.sale {
    background: #e74c3c;
}

.property-badge.rent {
    background: #3498db;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.property-view {
    color: #3498db;
    font-weight: 500;
    transition: color 0.3s;
}

.property-card:hover .property-view {
    color: #2980b9;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 10px;
    margin: 2rem auto;
}

.no-results p {
    color: #999;
    font-size: 1.2rem;
}

/* About ve Contact Sayfaları İçin */
.about-section,
.contact-section {
    padding: 3rem 0;
    min-height: 60vh;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .filter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-form select,
    .filter-form input,
    .filter-btn {
        width: 100%;
    }
}