/* CSS Variables */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --border-radius: 12px;
    --transition-smooth: all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
    padding-top: 80px; /* Header için boşluk */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ===== HEADER STYLES ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-medium);
    padding: 0.5rem 0;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}
.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-light);
    transition: var(--transition-bounce);
}
.logo:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-medium);
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-ana {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}
.logo-alt {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 2px;
}
.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-top: 2px;
}
.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}
.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}
.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}
.nav-menu a:hover::before {
    width: 80%;
}
.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.contact-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}
.contact-phone i {
    color: var(--primary-color);
    font-size: 1.1rem;
}
.header-dugme {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-light);
    border: none;
    cursor: pointer;
}
.header-dugme:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-medium);
}
/* Banner Bölümü */
.banner {
    position: relative; height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; margin-top: -80px; /* Header overlap için */ padding-top: 80px;}
.banner-slider {
    position: absolute; top: 0; left: 0; width: 100%;
    height: 100%; z-index: 1;}
.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0; transition: opacity 1s ease-in-out;}
.slide.active {
    opacity: 1;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}
.banner-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.1;
}
.banner-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffeaa7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.banner-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}
.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
/* İlanlar Bölümü */
.ilanlar-bolumu {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}
.ilanlar-bolumu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    z-index: 1;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    letter-spacing: -1px;
}
.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}
.ilanlar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}
.ilan-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
}
.ilan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.ilan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: rgba(102, 126, 234, 0.3);
}
.ilan-card:hover::before {
    opacity: 1;
}
.ilan-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.ilan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ilan-card:hover .ilan-image img {
    transform: scale(1.1);
}
.ilan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    z-index: 2;
}
.ilan-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}
.ilan-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.ilan-card:hover .ilan-content h3 {
    color: #667eea;
}
.ilan-konum {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ilan-ozellik {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.ilan-fiyat {
    font-size: 1.5rem;
    font-weight: 800;
    color: #27ae60;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Diğer İlanları Gör Butonu */
.diger-ilanlar {
    text-align: center;
    margin-top: 4rem;
    position: relative;
}
.btn-diger-ilanlar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 250px;
    text-decoration: none;
    display: inline-block;
}
.btn-diger-ilanlar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}
.btn-diger-ilanlar:hover::before {
    left: 100%;
}
.btn-diger-ilanlar:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2, #667eea);
}
.btn-diger-ilanlar:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}
.btn-diger-ilanlar::after {
    content: '→';
    margin-left: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}
.btn-diger-ilanlar:hover::after {
    transform: translateX(5px);
}
/* Responsive Tasarım */
@media (max-width: 1200px) {
    .ilanlar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }   
    .section-title {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .ilanlar-bolumu {
        padding: 5rem 0;
    }
    .ilanlar-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    .ilan-image {
        height: 200px;
    }
    .ilan-content {
        padding: 1.5rem;
    }
    .btn-diger-ilanlar {
        padding: 15px 30px;
        font-size: 1rem;
        min-width: 200px;
    }   
    .diger-ilanlar {
        margin-top: 3rem;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .ilan-content h3 {
        font-size: 1.2rem;
    }
    .ilan-fiyat {
        font-size: 1.3rem;
    }   
    .btn-diger-ilanlar {
        padding: 12px 25px;
        font-size: 0.95rem;
        min-width: 180px;
    }
}
/* Premium İlan Kartları için Özel Efektler */
.ilan-card.premium {
    border: 2px solid #ffd700;
    position: relative;
}
.ilan-card.premium::before {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 193, 7, 0.1));
}
.ilan-card.premium .ilan-badge {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #2c3e50;
}
/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.ilan-card {
    animation: fadeInUp 0.6s ease-out;
}
.ilan-card:nth-child(1) { animation-delay: 0.1s; }
.ilan-card:nth-child(2) { animation-delay: 0.2s; }
.ilan-card:nth-child(3) { animation-delay: 0.3s; }
.ilan-card:nth-child(4) { animation-delay: 0.4s; }
.ilan-card:nth-child(5) { animation-delay: 0.5s; }
.ilan-card:nth-child(6) { animation-delay: 0.6s; }
/* Hover Efektleri için Ek Animasyonlar */
.ilan-card:hover .ilan-content {
    animation: pulse 0.6s ease-in-out;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
/* Arama Bölümü */
.arama-bolumu {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0;
    position: relative;
    min-height: 500px;
    overflow: hidden;
}
.arama-bolumu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    z-index: 1;
}
.arama-bolumu::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}
.arama-konteyner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}
.arama-baslik {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.arama-baslik h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}
.arama-baslik h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}
.arama-baslik p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-weight: 300;
    line-height: 1.6;
}
.arama-formu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: end;
    position: relative;
    overflow: hidden;
    animation: slideInUp 1.2s ease-out 0.3s both;
}
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.arama-formu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}
.form-grubu {
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}
.form-grubu:hover {
    transform: translateY(-2px);
}
.form-grubu label {
    margin-bottom: 1rem;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.form-grubu label i {
    color: #667eea;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.form-grubu:hover label i {
    color: #764ba2;
    transform: scale(1.1);
}
.form-grubu select {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23667eea" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}
.form-grubu select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
}
.form-grubu select:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}
.btn-ara {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    height: 55px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}
.btn-ara::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn-ara:hover::before {
    left: 100%;
}
.btn-ara:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2, #667eea);
}
.btn-ara:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}
.btn-ara i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.btn-ara:hover i {
    transform: scale(1.1);
}
.arama-istatistik {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    animation: fadeInUp 1.5s ease-out 0.6s both;
}
.istatistik-item {
    text-align: center;
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.istatistik-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.istatistik-sayi {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.istatistik-metin {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}
/* Responsive Tasarım */
@media (max-width: 1024px) {
    .arama-formu {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem;
        gap: 2rem;
    }   
    .arama-baslik h2 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .arama-bolumu {
        padding: 4rem 0;
    }
    .arama-formu {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 2rem;
    }
    .arama-baslik h2 {
        font-size: 2rem;
    }
    .arama-baslik p {
        font-size: 1rem;
    }
    .arama-istatistik {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 3rem;
    }
    .istatistik-item {
        padding: 1rem;
    }
    .istatistik-sayi {
        font-size: 1.8rem;
    }   
    .istatistik-metin {
        font-size: 0.8rem;
    }
}
@media (max-width: 480px) {
    .arama-konteyner {
        padding: 0 1rem;
    }
    .arama-formu {
        padding: 2rem;
        gap: 1.5rem;
    }
    .arama-baslik h2 {
        font-size: 1.8rem;
    }
    .btn-ara {
        padding: 12px 24px;
        font-size: 1rem;
        height: 50px;
    }   
    .arama-istatistik {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* İlanlar Bölümü - Kart Tasarımı */
.ilanlar-bolumu {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}
.konteyner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.bolum-header {
    text-align: center;
    margin-bottom: 5rem;
}
.bolum-baslik {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
}
.bolum-baslik::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.1;
}
.bolum-aciklama {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}
.ilanlar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
/* Responsive tasarım için */
@media (max-width: 1200px) {
    .ilanlar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .ilanlar-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
.ilan-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
}
.ilan-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}
.ilan-kart:hover::before {
    opacity: 0.05;
}
.ilan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}
.ilan-kart.premium {
    border: 3px solid var(--accent-color);
    background: linear-gradient(135deg, #fff 0%, #fffef7 100%);
    position: relative;
}
.ilan-kart.premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,215,0,0.1) 50%, transparent 70%);
    animation: premiumShine 3s infinite;
    pointer-events: none;
}
@keyframes premiumShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.ilan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}
@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.ilan-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.ilan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.ilan-card:hover .ilan-image img {
    transform: scale(1.1);
}
.ilan-resim::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.1) 75%);
    background-size: 20px 20px;
    animation: patternMove 10s linear infinite;
}
@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}
.resim-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
    transition: var(--transition-smooth);
}
.ilan-kart:hover .resim-overlay {
    background: rgba(0,0,0,0.1);
}
.resim-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    opacity: 0;
    transition: var(--transition-bounce);
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}
.ilan-kart:hover .resim-hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}
.ilan-content {
    padding: 1.5rem;
}
.ilan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.ilan-fiyat {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}
.ilan-fiyat span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}
.favori-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}
.favori-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--danger-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}
.favori-btn:hover::before {
    opacity: 1;
}
.favori-btn:hover {
    color: var(--white);
    border-color: transparent;
    transform: scale(1.15);
}
.ilan-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.ilan-konum {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.ilan-konum i {
    color: var(--primary-color);
    font-size: 1.1rem;
}
.ilan-ozellikler {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}
.ozellik {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
    font-size: 0.95rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid #e9ecef;
    transition: var(--transition-smooth);
    font-weight: 500;
}
.ozellik:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}
.ozellik i {
    color: var(--primary-color);
    font-size: 1rem;
}
.ozellik:hover i {
    color: var(--white);
}
.ilan-aciklama {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}
.ilan-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f8f9fa;
}
.tarih {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.durum {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.durum.aktif {
    background: var(--success-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(86, 171, 47, 0.3);
}
/* ===== İLETİŞİM BÖLÜMÜ - MODERN TASARIM ===== */
.iletisim-bolumu {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}
.iletisim-bolumu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: contactFloat 15s ease-in-out infinite;
}
@keyframes contactFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(2deg); }
}
.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--black);
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 2px;
}
.iletisim-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 2;
    align-items: start;
}
/* Form Stilleri */
.iletisim-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 3.5rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.iletisim-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.mesaj-formu .form-group {
    margin-bottom: 2rem;
}
.mesaj-formu label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.mesaj-formu input,
.mesaj-formu select,
.mesaj-formu textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-smooth);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
.mesaj-formu input:focus,
.mesaj-formu select:focus,
.mesaj-formu textarea:focus {
    outline: none;
    border-color: #f093fb;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(240, 147, 251, 0.2);
    transform: translateY(-2px);
}
.mesaj-formu input::placeholder,
.mesaj-formu textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}
.mesaj-formu select {
    cursor: pointer;
}
.mesaj-formu select option {
    background: var(--text-dark);
    color: var(--white);
    padding: 10px;
}
.mesaj-formu textarea {
    resize: vertical;
    min-height: 120px;
}
.btn-gonder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.btn-gonder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}
.btn-gonder:hover::before {
    left: 100%;
}
.btn-gonder:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(240, 147, 251, 0.4);
}
.btn-gonder:active {
    transform: translateY(-1px) scale(0.98);
}
/* İletişim Bilgileri */
.iletisim-bilgileri {
    display: grid;
    gap: 2rem;
}
.bilgi-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.bilgi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-smooth);
}
.bilgi-card:hover::before {
    left: 100%;
}
.bilgi-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.bilgi-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Playfair Display', serif;
}
.bilgi-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.bilgi-card p:last-child {
    margin-bottom: 0;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .iletisim-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .iletisim-bolumu {
        padding: 6rem 0;
    }   
    .section-title {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .iletisim-form,
    .bilgi-card {
        padding: 2rem;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    .iletisim-bolumu {
        padding: 4rem 0;
    }
    .mesaj-formu input,
    .mesaj-formu select,
    .mesaj-formu textarea {
        padding: 15px 20px;
    }   
    .btn-gonder {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .iletisim-form,
    .bilgi-card {
        padding: 1.5rem;
    }
    .section-title {
        font-size: 1.8rem;
    }   
    .bilgi-card h3 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: #bdc3c7;
    padding: 4rem 0 2rem;
    position: relative;
    margin-top: 4rem;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-gradient);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    position: relative;
}
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
}
.footer-logo .logo {
    margin-bottom: 1.5rem;
}
/* Footer logo görseli uyarlaması */
.footer-logo .logo-icon {
    background: none;
    box-shadow: none;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}
.footer-logo .logo-icon img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: cover;
}
.footer-logo .logo-ana {
    color: var(--white);
}
.footer-logo .logo-alt {
    color: #bdc3c7;
}
.footer-logo p {
    margin-top: 1rem;
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 1rem;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
    position: relative;
    display: inline-block;
}
.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-smooth);
    pointer-events: none; /* hover çizgisi tıklamayı engellemesin */
}
.footer-links a:hover::before {
    width: 100%;
}
.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}
.contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #bdc3c7;
}
.contact-info i {
    color: var(--primary-color);
    width: 20px;
    font-size: 1.1rem;
}
.sosyal-linkler {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.sosyal-linkler a {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.2);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition-bounce);
    border: 1px solid rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}
.sosyal-linkler a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}
.sosyal-linkler a:hover::before {
    opacity: 1;
}
.sosyal-linkler a:hover {
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-medium);
}
.sosyal-linkler a i {
    position: relative;
    z-index: 1;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #7f8c8d;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom .footer-links {
    display: flex;
    gap: 2rem;
}
.footer-bottom .footer-links a {
    color: #7f8c8d;
    font-size: 0.9rem;
}
/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}
.modal-icerik {
    background: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 25px;
    width: 90%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    animation: modalOpen 0.3s ease-out;
}
@keyframes modalOpen {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
.modal-icerik::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}
.kapat {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}
.kapat:hover {
    background: var(--danger-gradient);
    color: var(--white);
    transform: scale(1.1);
}
#modal-govde {
    padding: 3rem;
    max-height: 70vh;
    overflow-y: auto;
}
/* ===== BİLDİRİM SİSTEMİ ===== */
.bildirim {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    color: var(--white);
    font-weight: 600;
    z-index: 10000;
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: bildirimGir 0.3s ease-out;
}
@keyframes bildirimGir {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.bildirim.basari {
    background: var(--success-gradient);
}
.bildirim.bilgi {
    background: var(--primary-gradient);
}
/* ===== SONUÇ SAYISI ===== */
.sonuc-sayisi {
    text-align: center;
    margin: 3rem 0;
    padding: 1.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
    animation: sonucFadeIn 0.5s ease-out;
}
@keyframes sonucFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Responsive Tasarım */
@media (max-width: 768px) {
    .ilanlar-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .header-contact {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }   
    .footer-bottom .footer-links {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .logo-ana {
        font-size: 1.2rem;
    }
    .logo-alt {
        font-size: 0.8rem;
    }
    .nav-menu a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    .header-dugme {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }   
    .sosyal-linkler {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .banner-icerik h1 {
        font-size: 2.2rem;
    }
    .bolum-baslik {
        font-size: 2rem;
    }
    .ilan-ozellikler {
        flex-direction: column;
        gap: 0.8rem;
    }
    .ilan-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .arama-formu {
        padding: 2rem;
    }
    .ilan-bilgi {
        padding: 2rem;
    }
    .iletisim-formu {
        padding: 2.5rem;
    }
    .modal-icerik {
        width: 95%;
        margin: 10% auto;
    }
    #modal-govde {
        padding: 2rem;
    }
}
/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
    }
}
/* Sayfa yükleme animasyonları */
.ilan-kart {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}
.ilan-kart:nth-child(1) { animation-delay: 0.1s; }
.ilan-kart:nth-child(2) { animation-delay: 0.2s; }
.ilan-kart:nth-child(3) { animation-delay: 0.3s; }
.ilan-kart:nth-child(4) { animation-delay: 0.4s; }
.ilan-kart:nth-child(5) { animation-delay: 0.5s; }
.ilan-kart:nth-child(6) { animation-delay: 0.6s; }
/* Scroll animasyonları için hazırlık */
body:not(.yuklendi) .ilan-kart,
body:not(.yuklendi) .arama-formu,
body:not(.yuklendi) .iletisim-item {
    opacity: 0;
    transform: translateY(30px);
}
/* Özel Efektler */
.ilan-kart {
    animation: fadeInUp 0.6s ease;
}
.ilan-kart:nth-child(1) { animation-delay: 0.1s; }
.ilan-kart:nth-child(2) { animation-delay: 0.2s; }
.ilan-kart:nth-child(3) { animation-delay: 0.3s; }
.ilan-kart:nth-child(4) { animation-delay: 0.4s; }
.ilan-kart:nth-child(5) { animation-delay: 0.5s; }
.ilan-kart:nth-child(6) { animation-delay: 0.6s; }
/* Scroll Animasyonları */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBİL TIKLANMA SORUNU DÜZELTMESİ ===== */
/* Sadece tıklama sorununu çözer, başka bir şeyi değiştirmez */

@media (max-width: 768px) {
    /* Tüm tıklanabilir elementleri düzelt */
    a, 
    button, 
    input, 
    select, 
    textarea,
    .ilan-card,
    .btn,
    .btn-filtrele,
    .btn-temizle,
    .gorunum-btn {
        pointer-events: auto !important;
        touch-action: manipulation !important;
        -webkit-user-select: auto !important;
        user-select: auto !important;
        position: relative !important;
        z-index: 999 !important;
    }

    /* İlan kartları özel düzeltme */
    .ilan-card {
        display: block !important;
        cursor: pointer !important;
    }

    .ilan-card * {
        pointer-events: none !important;
    }

    /* Form elementleri özel düzeltme */
    input, select, textarea {
        -webkit-appearance: none !important;
        appearance: none !important;
        background-color: white !important;
        border: 1px solid #ccc !important;
        padding: 10px !important;
        font-size: 16px !important; /* iOS zoom önleme */
    }

    /* Footer linkleri özel düzeltme */
    footer a,
    .footer a {
        display: inline-block !important;
        padding: 10px !important;
        min-height: 44px !important;
        line-height: 24px !important;
    }

    /* Filtreleme formu özel düzeltme */
    .filtre-formu input,
    .filtre-formu select,
    .arama-formu input,
    .arama-formu select {
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    /* Overlay sorunlarını önle */
    .erlay {
        pointer-events: auto !important;
        z-index: 998 !important;
    }

    /* Body scroll lock'u kaldır */
    body {
        overflow: auto !important;
        position: relative !important;
    }
}

/* Genel overlay koruması - her sayfada geçerli */
.mobile-overlay {
    pointer-events: none !important;
}
.mobile-overlay.active {
    pointer-events: auto !important;
}