<style>
        /* Genel Stiller */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        input, select, textarea {
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Stiller */
        .header {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #dc3545;
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #dc3545;
        }
        
        .btn-primary {
            background-color: #dc3545;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #c82333;
            color: white;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            background-color: #f8f9fa;
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }
        
        .breadcrumb-list a {
            color: #6c757d;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb-list a:hover {
            color: #dc3545;
        }
        
        .breadcrumb-list span {
            color: #6c757d;
        }
        
        .breadcrumb-list .active {
            color: #333;
            font-weight: 500;
        }
        
        /* Filtre Bölümü */
        .filter-section {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin: 30px 0;
        }
        
        .filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .filter-title {
            font-size: 22px;
            font-weight: 600;
            color: #2c3e50;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .result-count {
            color: #dc3545;
            font-size: 16px;
        }
        
        .view-options {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .sort-select {
            padding: 8px 15px;
            border: 2px solid #e8ecef;
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
        }
        
        .view-toggles {
            display: flex;
            gap: 5px;
        }
        
        .view-toggle {
            padding: 8px 12px;
            border: 2px solid #e8ecef;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .view-toggle.active {
            background: #dc3545;
            color: white;
            border-color: #dc3545;
        }
        
        .view-toggle:hover {
            border-color: #dc3545;
        }
        
        /* Gelişmiş Filtreler */
        .advanced-filters {
            display: none;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #e8ecef;
        }
        
        .advanced-filters.active {
            display: block;
        }
        
        .filter-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .filter-group label {
            font-size: 13px;
            color: #6c757d;
            font-weight: 500;
        }
        
        .filter-group select,
        .filter-group input {
            padding: 10px 12px;
            border: 2px solid #e8ecef;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .filter-group select:focus,
        .filter-group input:focus {
            outline: none;
            border-color: #dc3545;
        }
        
        .price-inputs {
            display: flex;
            gap: 8px;
        }
        
        .price-inputs input {
            flex: 1;
            min-width: 0;
        }
        
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        
        .filter-tag {
            background: #e8f4fd;
            color: #0056b3;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .filter-tag i {
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .filter-tag i:hover {
            color: #dc3545;
        }
        
        .btn-filter {
            background: linear-gradient(135deg, #dc3545, #ff6b6b);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-filter:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
        }
        
        .btn-reset {
            background: white;
            color: #6c757d;
            padding: 12px 30px;
            border: 2px solid #e8ecef;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-reset:hover {
            border-color: #dc3545;
            color: #dc3545;
        }
        
        .toggle-filters {
            background: none;
            border: none;
            color: #dc3545;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* Ana İçerik */
        .main-content {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        /* Sol Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .quick-filters {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .quick-filters h3 {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .quick-filter-group {
            margin-bottom: 20px;
        }
        
        .quick-filter-group h4 {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .checkbox-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-size: 14px;
            color: #4a5568;
        }
        
        .checkbox-item input[type="checkbox"] {
            cursor: pointer;
        }
        
        .checkbox-item:hover {
            color: #dc3545;
        }
        
        .price-slider {
            margin-top: 15px;
        }
        
        .slider-labels {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #6c757d;
            margin-top: 10px;
        }
        
        /* Emlak Listesi */
        .property-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .property-list.list-view {
            grid-template-columns: 1fr;
        }
        
        .property-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .property-card.list-view {
            display: flex;
            height: 250px;
        }
        
        .property-image {
            position: relative;
            height: 240px;
            overflow: hidden;
        }
        
        .list-view .property-image {
            width: 350px;
            height: 100%;
            flex-shrink: 0;
        }
        
        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .property-card:hover .property-image img {
            transform: scale(1.05);
        }
        
        .image-badges {
            position: absolute;
            top: 15px;
            left: 15px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .badge {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .badge.rent {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
        }
        
        .badge.featured {
            background: #ffc107;
            color: #333;
        }
        
        .badge.new {
            background: #17a2b8;
            color: white;
        }
        
        .badge.furnished {
            background: #6f42c1;
            color: white;
        }
        
        .image-count {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .property-content {
            padding: 25px;
        }
        
        .list-view .property-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .property-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .property-location {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #6c757d;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .property-location i {
            color: #dc3545;
        }
        
        .property-features {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            color: #4a5568;
        }
        
        .feature i {
            color: #dc3545;
            font-size: 16px;
        }
        
        .property-description {
            color: #6c757d;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .list-view .property-description {
            -webkit-line-clamp: 3;
        }
        
        .property-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #e8ecef;
        }
        
        .property-price {
            font-size: 24px;
            font-weight: 700;
            color: #28a745;
        }
        
        .property-price span {
            font-size: 16px;
            font-weight: 400;
            color: #6c757d;
        }
        
        .property-actions {
            display: flex;
            gap: 10px;
        }
        
        .action-btn {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #f8f9fa;
            color: #6c757d;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }
        
        .action-btn:hover {
            background: #dc3545;
            color: white;
        }
        
        /* Promosyon Banner */
        .promo-banner {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .promo-banner h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }
        
        .promo-banner p {
            font-size: 14px;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .btn-promo {
            background: white;
            color: #28a745;
            padding: 10px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
        }
        
        .btn-promo:hover {
            transform: scale(1.05);
        }
        
        /* Kiralık Bilgi Kutusu */
        .rental-info {
            background: #e8f4fd;
            border-left: 4px solid #007bff;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .rental-info h4 {
            font-size: 16px;
            color: #0056b3;
            margin-bottom: 8px;
        }
        
        .rental-info p {
            font-size: 14px;
            color: #4a5568;
            margin: 0;
        }
        
        /* Sayfalama */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
        }
        
        .pagination a,
        .pagination span {
            padding: 10px 15px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .pagination a {
            background: white;
            color: #6c757d;
            border: 2px solid #e8ecef;
        }
        
        .pagination a:hover {
            border-color: #dc3545;
            color: #dc3545;
        }
        
        .pagination .active {
            background: #dc3545;
            color: white;
            border: 2px solid #dc3545;
        }
        
        .pagination .dots {
            color: #6c757d;
        }
        
        /* Footer */
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-column h4 {
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .footer-column p {
            line-height: 1.8;
            color: #bdc3c7;
        }
        
        .footer-menu {
            list-style: none;
        }
        
        .footer-menu li {
            margin-bottom: 10px;
        }
        
        .footer-menu a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-menu a:hover {
            color: white;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            color: #bdc3c7;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: #dc3545;
        }
        
        .footer-bottom {
            background-color: #dc3545;
            padding: 20px 0;
            text-align: center;
            margin-top: 30px;
        }
        
        .footer-bottom p {
            font-size: 18px;
            font-weight: 500;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .filter-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .property-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                order: 2;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }
            
            .filter-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .filter-header {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .view-options {
                width: 100%;
                justify-content: space-between;
            }
            
            .filter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .property-list {
                grid-template-columns: 1fr;
            }
            
            .list-view .property-card {
                flex-direction: column;
                height: auto;
            }
            
            .list-view .property-image {
                width: 100%;
                height: 200px;
            }
            
            .sidebar {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .filter-grid {
                grid-template-columns: 1fr;
            }
            
            .property-features {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .property-footer {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .filter-tags {
                gap: 5px;
            }
            
            .filter-tag {
                font-size: 12px;
                padding: 5px 10px;
            }
        }
    </style>