/*GENEL CSS DOSYASI ANA CSS*/
        /* Genel Stiller */
        * {
            margin: 0;
            padding: 0;
            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;
        }
        
        /* Hero/Slider Alanı */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://picsum.photos/1920/1080') center/cover;
            color: white;
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            padding: 80px 0;
        }
        
        .hero-wrapper {
            width: 100%;
        }
        
        .hero-content h1 {
            font-size: 56px;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-content p {
            font-size: 24px;
            margin-bottom: 60px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        /* Gelişmiş Hero Arama Formu */
        .hero-search {
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(20px);
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            max-width: 900px;
            margin: 0 auto;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .search-tabs {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .search-tab {
            padding: 12px 24px;
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 600;
            color: #6c757d;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }
        
        .search-tab:hover {
            color: #dc3545;
        }
        
        .search-tab.active {
            color: #dc3545;
        }
        
        .search-tab.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #dc3545, #ff6b6b);
            border-radius: 2px;
        }
        
        .search-form-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            align-items: end;
        }
        
        .search-form-group {
            position: relative;
        }
        
        .search-form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            color: #2c3e50;
            font-size: 14px;
            letter-spacing: 0.3px;
        }
        
        .search-form-group select,
        .search-form-group input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e8ecef;
            border-radius: 12px;
            font-size: 15px;
            transition: all 0.3s;
            background-color: #f8f9fa;
        }
        
        .search-form-group select:focus,
        .search-form-group input:focus {
            outline: none;
            border-color: #dc3545;
            background-color: white;
            box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
        }
        
        .btn-hero-search {
            background: linear-gradient(135deg, #dc3545, #ff6b6b);
            color: white;
            padding: 14px 40px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .btn-hero-search:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
        }
        
        /* Hero İçi Kategori Kartları */
        .hero-categories {
            margin-top: 80px;
        }
        
        .category-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .category-header h2 {
            font-size: 40px;
            color: white;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .category-header p {
            font-size: 20px;
            color: rgba(255,255,255,0.9);
        }
        
        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .category-card {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }
        
        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #dc3545, #ff6b6b);
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        
        .category-card:hover::before {
            transform: scaleX(1);
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            background: white;
            border-color: #dc3545;
        }
        
        .category-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e8f4fd, #d3e8f7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: #2c3e50;
            transition: all 0.3s;
        }
        
        .category-card:hover .category-icon {
            background: linear-gradient(135deg, #dc3545, #ff6b6b);
            color: white;
            transform: scale(1.1);
        }
        
        .category-name {
            font-size: 20px;
            font-weight: 600;
            color: #333;
        }
        
        /* Scroll Down İndikatörü */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            cursor: pointer;
        }
        
        .scroll-indicator i {
            font-size: 30px;
            color: white;
            opacity: 0.8;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }
        
        /* Portföy Bölgeleri */
        .portfolio-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 36px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .section-header p {
            font-size: 18px;
            color: #666;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .portfolio-card {
            position: relative;
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .portfolio-card:hover {
            transform: scale(1.05);
        }
        
        .portfolio-card.large {
            grid-column: span 2;
        }
        
        .portfolio-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            padding: 30px;
            color: white;
        }
        
        .portfolio-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .portfolio-count {
            font-size: 16px;
            opacity: 0.9;
        }
        
        /* İstatistikler */
        .stats-section {
            background-color: #dc3545;
            padding: 60px 0;
            color: white;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }
        
        .stat-item h3 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-item p {
            font-size: 18px;
            opacity: 0.9;
        }
        
        /* Ana İçerik Alanı */
        .main-content {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
            padding: 60px 0;
        }
        
        /* Gelişmiş Arama Sidebar */
        .advanced-search {
            background: linear-gradient(135deg, #ffffff, #f8f9fa);
            padding: 25px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: fit-content;
            position: sticky;
            top: 90px;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .advanced-search h3 {
            margin-bottom: 20px;
            color: #2c3e50;
            font-size: 20px;
            font-weight: 600;
            position: relative;
            padding-bottom: 15px;
        }
        
        .advanced-search h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #dc3545, #ff6b6b);
            border-radius: 2px;
        }
        
        .form-group {
            margin-bottom: 18px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: #2c3e50;
            font-size: 13px;
            letter-spacing: 0.3px;
        }
        
        .form-group select,
        .form-group input {
            width: 100%;
            padding: 10px 12px;
            border: 2px solid #e8ecef;
            border-radius: 10px;
            font-size: 13px;
            transition: all 0.3s;
            background-color: #f8f9fa;
        }
        
        .form-group select:focus,
        .form-group input:focus {
            outline: none;
            border-color: #dc3545;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        
        .form-row input {
            font-size: 12px;
        }
        
        .btn-find {
            width: 100%;
            background: linear-gradient(135deg, #dc3545, #ff6b6b);
            color: white;
            padding: 14px;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .btn-find:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
        }
        
        .btn-find i {
            font-size: 16px;
        }
        
        /* Son Eklenen İlanlar */
        .latest-properties {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .latest-properties h3 {
            margin-bottom: 35px;
            color: #2c3e50;
            font-size: 32px;
            font-weight: 600;
            position: relative;
            padding-bottom: 15px;
        }
        
        .latest-properties h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #dc3545, #ff6b6b);
            border-radius: 2px;
        }
        
        .properties-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .property-card {
            background: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
            border: 1px solid transparent;
            cursor: pointer;
            position: relative;
        }
        
        .property-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            background: white;
            border-color: rgba(220, 53, 69, 0.2);
        }
        
        .property-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        
        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .property-card:hover .property-image img {
            transform: scale(1.1);
        }
        
        .property-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, #dc3545, #ff6b6b);
            color: white;
            padding: 6px 18px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        
        .property-type-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            backdrop-filter: blur(10px);
        }
        
        .property-info {
            padding: 20px;
        }
        
        .property-tags {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        
        .property-tag {
            background-color: #e8f4fd;
            color: #0056b3;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .property-tag.type {
            background-color: #fff3cd;
            color: #856404;
        }
        
        .property-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #2c3e50;
            line-height: 1.3;
        }
        
        .property-desc {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 15px;
            line-height: 1.5;
            height: 42px;
            overflow: hidden;
        }
        
        .property-features {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 13px;
            color: #6c757d;
        }
        
        .property-feature {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .property-feature i {
            color: #dc3545;
            font-size: 14px;
        }
        
        .property-price {
            font-size: 24px;
            font-weight: 700;
            color: #dc3545;
            margin-bottom: 10px;
        }
        
        .property-location {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .property-location i {
            color: #dc3545;
        }
        
        .btn-details {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            padding: 10px 24px;
            border: none;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }
        
        .btn-details:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }
        
        /* Öne Çıkan İlanlar */
        .featured-section {
            padding: 60px 0;
            background-color: white;
        }
        
        .featured-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 40px;
        }
        
        .featured-card {
            position: relative;
            height: 350px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .featured-card:hover {
            transform: translateY(-10px);
        }
        
        .featured-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .featured-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 20px;
            color: white;
        }
        
        .featured-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: #ffc107;
            color: #333;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        /* Öne Çıkan Danışmanlar */
        .consultants-section {
            padding: 50px 0;
            background-color: #f8f9fa;
        }
        
        .consultants-section h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 32px;
            color: #333;
        }
        
        .consultants-wrapper {
            overflow-x: auto;
            padding-bottom: 20px;
        }
        
        .consultants-grid {
            display: flex;
            gap: 20px;
            min-width: max-content;
        }
        
        .consultant-card {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            min-width: 200px;
            transition: transform 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .consultant-card:hover {
            transform: translateY(-5px);
        }
        
        .consultant-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 15px;
            overflow: hidden;
        }
        
        .consultant-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .consultant-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .consultant-title {
            font-size: 14px;
            color: #666;
        }
        
        /* CTA Banner */
        .cta-section {
            background: linear-gradient(rgba(220,53,69,0.9), rgba(220,53,69,0.9)), url('https://picsum.photos/1920/400') center/cover;
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 30px;
        }
        
        .cta-section .btn-large {
            background-color: white;
            color: #dc3545;
            padding: 20px 50px;
            font-size: 20px;
            font-weight: 600;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.3s;
            display: inline-block;
            text-decoration: none;
        }
        
        .cta-section .btn-large:hover {
            transform: scale(1.05);
        }
        
        /* Şehirlere Göre İlanlar */
        .cities-section {
            padding: 50px 0;
        }
        
        .cities-section h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 32px;
            color: #333;
        }
        
        .cities-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        
        .city-card {
            position: relative;
            height: 200px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .city-card:hover {
            transform: scale(1.05);
        }
        
        .city-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .city-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .city-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .city-count {
            font-size: 14px;
        }
        
        /* 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 Tasarım */
        @media (max-width: 1200px) {
            .properties-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 1024px) {
            .search-form-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cities-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .properties-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .portfolio-card.large {
                grid-column: span 1;
            }
            
            .featured-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .category-grid {
                grid-template-columns: repeat(2, 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;
            }
            
            .hero-section {
                min-height: auto;
                padding: 40px 0;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .hero-content p {
                font-size: 18px;
                margin-bottom: 40px;
            }
            
            .hero-categories {
                margin-top: 60px;
            }
            
            .category-header h2 {
                font-size: 28px;
            }
            
            .search-form-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-search {
                padding: 25px 20px;
            }
            
            .search-tabs {
                gap: 10px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            .search-tab {
                padding: 10px 15px;
                font-size: 14px;
                white-space: nowrap;
            }
            
            .main-content {
                grid-template-columns: 1fr;
            }
            
            .advanced-search {
                order: 2;
                position: static;
            }
            
            .latest-properties {
                order: 1;
            }
            
            .properties-grid {
                grid-template-columns: 1fr;
            }
            
            .cities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .consultants-grid {
                justify-content: flex-start;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 28px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            .category-header h2 {
                font-size: 22px;
            }
            
            .category-header p {
                font-size: 16px;
            }
            
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .category-card {
                padding: 25px 20px;
            }
            
            .category-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .category-name {
                font-size: 16px;
            }
            
            .cities-grid {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .featured-grid {
                grid-template-columns: 1fr;
            }
        }
/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}
/* Nav Menu Styles */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu > a:hover {
    color: #007bff;
}

/* Dropdown Styles */
.nav-item {
    position: relative;
}

.nav-item.dropdown {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 15px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #007bff;
    padding-left: 25px;
}

.dropdown-menu a:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dropdown-menu a:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Button Style */
.btn-primary {
    background-color: #007bff;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        padding: 20px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu > a,
    .nav-item {
        width: 100%;
    }
    
    .nav-menu > a {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #f8f9fa;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .nav-item.dropdown.active .nav-link i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu a {
        padding-left: 40px;
        font-size: 14px;
    }
    
    .dropdown-menu a:hover {
        padding-left: 45px;
    }
}
/* Header Actions Container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Call Button */
.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #28a745;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(40, 167, 69, 0.2);
}

.btn-call:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.btn-call i {
    font-size: 16px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.phone-text {
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* Primary Button (İlan Ver) */
.btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #007bff;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.2);
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.btn-primary i {
    font-size: 14px;
}

.btn-text {
    font-size: 15px;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f8f9fa;
    color: #333;
    padding: 10px 16px;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 15px;
}

.user-menu-toggle:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.user-menu-toggle i {
    font-size: 16px;
}

.user-text {
    font-size: 15px;
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: #fff;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.user-menu:hover .user-dropdown,
.user-menu-toggle:focus + .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background-color: #f8f9fa;
    color: #007bff;
    padding-left: 25px;
}

.user-dropdown i {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: #f8f9fa;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-actions {
        gap: 10px;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hide text on mobile, show only icons */
    .phone-text,
    .btn-text,
    .user-text {
        display: none;
    }
    
    .btn-call,
    .btn-primary,
    .user-menu-toggle {
        padding: 10px 12px;
        min-width: 44px;
        justify-content: center;
    }
    
    .btn-call i,
    .btn-primary i,
    .user-menu-toggle i {
        margin: 0;
    }
    
    /* Mobile user dropdown */
    .user-dropdown {
        right: -10px;
        min-width: 180px;
    }
}

/* Tablet View */
@media (min-width: 769px) and (max-width: 992px) {
    .header-actions {
        gap: 15px;
    }
    
    .phone-text {
        display: none;
    }
    
    .btn-call {
        padding: 10px 15px;
    }
}

/* ===== SOLDAN AÇILAN MOBİL MENÜ CSS ===== */

/* Hamburger Button */
.pb-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1100;
    outline: none;
}

.pb-hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #333;
    margin: 4px auto;
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 3px;
}

/* Hamburger Active State (X Shape) */
.pb-hamburger.pb-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.pb-hamburger.pb-active span:nth-child(2) {
    opacity: 0;
}

.pb-hamburger.pb-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.pb-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.pb-mobile-overlay.pb-active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Call Section - Hidden on Desktop */
.pb-mobile-call-section {
    display: none;
}

/* Mobile Menu Header - Hidden on Desktop */
.pb-mobile-menu-header {
    display: none;
}

/* ===== MOBILE STYLES (Max-width: 768px) ===== */
@media screen and (max-width: 768px) {
    
    /* Show Hamburger */
    .pb-hamburger {
        display: block;
    }
    
    /* Mobile Navigation - SOLDAN AÇILAN */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: -300px !important; /* SOLDA GİZLİ */
        width: 280px !important;
        height: 100vh !important;
        background-color: #ffffff !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        transition: left 0.3s ease !important; /* LEFT transition */
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1) !important; /* Gölge sağda */
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important; /* Logo header olduğu için padding kaldırıldı */
        gap: 0 !important;
    }
    
    /* Active Menu State - SOLDAN AÇILIR */
    .nav-menu.pb-menu-active {
        left: 0 !important; /* SOLA AÇILIR */
    }
    
    /* Mobile Menu Header - Logo Area */
    .pb-mobile-menu-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 20px 24px !important;
        background-color: #fff !important;
        border-bottom: 2px solid #dc3545 !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 10 !important;
        min-height: 70px !important;
    }
    
    /* Mobile Logo */
    .pb-mobile-logo {
        font-size: 22px !important;
        font-weight: bold !important;
        color: #dc3545 !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
    }
    
    .pb-mobile-logo:hover {
        color: #007bff !important;
    }
    
    /* Close Button */
    .pb-close-menu {
        background: none !important;
        border: none !important;
        font-size: 24px !important;
        color: #666 !important;
        cursor: pointer !important;
        padding: 5px !important;
        width: 35px !important;
        height: 35px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 5px !important;
        transition: all 0.3s ease !important;
    }
    
    .pb-close-menu:hover {
        background-color: #e0e0e0 !important;
        color: #333 !important;
    }
    
    /* Mobile Menu Links */
    .nav-menu > a {
        display: block !important;
        width: 100% !important;
        padding: 18px 24px !important;
        color: #333 !important;
        font-size: 16px !important;
        text-decoration: none !important;
        border-bottom: 1px solid #f0f0f0 !important;
        transition: all 0.2s ease !important;
        background-color: transparent !important;
    }
    
    /* İlk link için üst boşluk */
    .nav-menu > a:first-of-type {
        margin-top: 20px !important;
    }
    
    .nav-menu > a:hover,
    .nav-menu > a:active {
        background-color: #f8f9fa !important;
        color: #007bff !important;
        padding-left: 30px !important;
    }
    
    /* Dropdown Container */
    .nav-item.dropdown {
        width: 100% !important;
        display: block !important;
        position: relative !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    /* Dropdown Toggle Link */
    .nav-item.dropdown .nav-link {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 18px 24px !important;
        color: #333 !important;
        font-size: 16px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
    }
    
    .nav-item.dropdown .nav-link:hover {
        background-color: #f8f9fa !important;
        color: #dc3545 !important;
    }
    
    /* Dropdown Arrow */
    .nav-item.dropdown .nav-link i {
        margin-left: 10px !important;
        font-size: 12px !important;
        transition: transform 0.3s ease !important;
    }
    
    .nav-item.dropdown.pb-dropdown-active .nav-link i {
        transform: rotate(180deg) !important;
    }
    
    /* Dropdown Menu */
    .nav-item.dropdown .dropdown-menu {
        display: block !important;
        position: static !important;
        width: 100% !important;
        background-color: #f5f7fa !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: max-height 0.3s ease !important;
    }
    
    .nav-item.dropdown.pb-dropdown-active .dropdown-menu {
        max-height: 500px !important;
    }
    
    /* Dropdown Items */
    .nav-item.dropdown .dropdown-menu a {
        display: block !important;
        padding: 14px 24px 14px 45px !important;
        color: #555 !important;
        font-size: 15px !important;
        text-decoration: none !important;
        border-bottom: 1px solid #e0e0e0 !important;
        transition: all 0.2s ease !important;
        background-color: transparent !important;
    }
    
    .nav-item.dropdown .dropdown-menu a:hover {
        background-color: #ffffff !important;
        color: #007bff !important;
        padding-left: 50px !important;
    }
    
    .nav-item.dropdown .dropdown-menu a:last-child {
        border-bottom: none !important;
    }
    
    /* Mobile Call Button Section */
    .pb-mobile-call-section {
        display: block !important;
        width: 100% !important;
        padding: 20px !important;
        margin-top: auto !important;
        background-color: #f8f9fa !important;
        border-top: 2px solid #e0e0e0 !important;
    }
    
    .pb-mobile-call-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
        padding: 15px !important;
        background-color: #28a745 !important;
        color: #ffffff !important;
        text-decoration: none !important;
        border-radius: 50px !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3) !important;
    }
    
    .pb-mobile-call-btn:hover {
        background-color: #218838 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4) !important;
    }
    
    .pb-mobile-call-btn i {
        font-size: 18px !important;
    }
    
    /* Hide Desktop Phone Text */
    .btn-call .phone-text {
        display: none !important;
    }
    
    .btn-call {
        padding: 10px 15px !important;
    }
    
    /* Remove Last Border */
    .nav-menu > a:last-of-type,
    .nav-item.dropdown:last-child {
        border-bottom: none !important;
    }
    
    /* Scrollbar styling for menu */
    .nav-menu::-webkit-scrollbar {
        width: 4px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 2px;
    }
    
    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

/* Body Scroll Lock */
body.pb-menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

/* iOS Smooth Scrolling */
@media screen and (max-width: 768px) {
    .nav-menu {
        -webkit-overflow-scrolling: touch;
    }
}

/* Desktop - Hide Mobile Elements */
@media screen and (min-width: 769px) {
    .pb-hamburger,
    .pb-mobile-overlay,
    .pb-mobile-call-section,
    .pb-mobile-menu-header {
        display: none !important;
    }
}

