/* =================================================================
   Sıfırlama ve Temel
================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Outfit', sans-serif;
    background-color: #080810;
    color: #e8e8e8;
    scroll-behavior: smooth;
}

#page, .site, #content, .site-main, .site-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden;
}

:root {
    --gold: #f0c040;
    --gold-light: #ffe066;
    --gold-dim: #a87c1f;
    --neon-pink: #ff2d78;
    --neon-purple: #b833ff;
    --wa-green: #25d366;
    --dark-glass: rgba(255,255,255,0.03);
    --dark-glass-border: rgba(255,255,255,0.08);
    --glow-gold: 0 0 20px rgba(240,192,64,0.3), 0 0 60px rgba(240,192,64,0.1);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    width: 100% !important;
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
}

/* =================================================================
   Header
================================================================= */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    background: rgba(8,8,16,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(240,192,64,0.15);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(120deg, var(--gold-light), var(--gold), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(240,192,64,0.4));
    letter-spacing: -0.5px;
}
.nav-links { display: flex; align-items: center; gap: 24px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: rgba(240,192,64,0.1);
    border: 1px solid rgba(240,192,64,0.3);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
    position: relative;
    z-index: 1100;
    -webkit-tap-highlight-color: transparent;
}
.hamburger:hover { background: rgba(240,192,64,0.2); }
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: all 0.35s ease;
    transform-origin: center;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-menu-overlay.is-open { opacity: 1; pointer-events: auto; }

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0; right: -320px;
    width: 300px; height: 100vh;
    background: rgba(8,6,20,0.98);
    backdrop-filter: blur(30px);
    border-left: 1px solid rgba(240,192,64,0.2);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
}
.mobile-menu.is-open { right: 0; }
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-close {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    width: 36px; height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.mobile-close:hover { background: rgba(255,45,120,0.15); color: #fff; border-color: rgba(255,45,120,0.4); }

ul.mobile-nav-menu { list-style: none; margin: 0; padding: 16px 0; flex: 1; }
ul.mobile-nav-menu li { display: block; }
ul.mobile-nav-menu li a {
    display: block;
    padding: 14px 24px;
    color: #ccc; font-size: 1.05rem; font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.2s, padding-left 0.2s, background 0.2s;
}
ul.mobile-nav-menu li a:hover { color: var(--gold-light); background: rgba(240,192,64,0.06); padding-left: 32px; }
ul.mobile-nav-menu .sub-menu { padding-left: 16px; background: rgba(255,255,255,0.02); }
ul.mobile-nav-menu .sub-menu a { font-size: 0.95rem; color: #999; padding: 10px 24px; }
.mobile-menu-footer { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.07); }

/* Masaüstü Nav */
ul.wp-nav-menu {
    display: flex !important;
    align-items: center;
    gap: 0; list-style: none; margin: 0; padding: 0;
}
ul.wp-nav-menu > li { position: relative; display: inline-flex; align-items: center; }
ul.wp-nav-menu > li > a {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 0 16px; height: 80px;
    font-weight: 600; font-size: 1rem; color: #bbb;
    transition: color 0.3s; white-space: nowrap;
}
ul.wp-nav-menu > li > a:hover,
ul.wp-nav-menu > li:hover > a { color: var(--gold-light); }
ul.wp-nav-menu > li.menu-item-has-children > a::after { content: '▾'; font-size: 0.7rem; margin-left: 4px; }
ul.wp-nav-menu .sub-menu {
    position: absolute; top: 100%; left: 0;
    min-width: 200px;
    background: rgba(12,10,30,0.97);
    border: 1px solid rgba(240,192,64,0.2);
    border-radius: 12px; padding: 8px 0;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.25s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
ul.wp-nav-menu > li:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
ul.wp-nav-menu .sub-menu li a {
    display: block; padding: 10px 20px;
    color: #bbb; font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
ul.wp-nav-menu .sub-menu li a:hover { color: var(--gold-light); background: rgba(240,192,64,0.06); }
ul.wp-nav-menu li.current-menu-item > a { color: var(--gold-light); }

/* =================================================================
   Butonlar
================================================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 14px 28px;
    border-radius: 12px; font-weight: 700; font-size: 1rem;
    cursor: pointer; border: none; transition: all 0.3s ease;
    text-decoration: none; white-space: nowrap;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #080810;
    box-shadow: 0 4px 20px rgba(240,192,64,0.3);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240,192,64,0.5), var(--glow-gold);
}
.btn-wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.btn-detail {
    background: rgba(240,192,64,0.1);
    color: var(--gold-light);
    border: 1px solid rgba(240,192,64,0.3);
    padding: 10px 20px; font-size: 0.9rem;
}
.btn-detail:hover { background: rgba(240,192,64,0.2); border-color: var(--gold); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-wa-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-outline {
    background: transparent;
    border: 1px solid rgba(240,192,64,0.4);
    color: var(--gold-light);
}
.btn-outline:hover { background: rgba(240,192,64,0.08); border-color: var(--gold); }

/* =================================================================
   Hero
================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    overflow: hidden;
    padding-top: 80px;
}
.hero-bg-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero:hover .hero-bg-img { transform: scale(1.0); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8,8,16,0.85) 0%,
        rgba(8,8,16,0.6) 50%,
        rgba(8,8,16,0.9) 100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    animation: fadeInUp 1s ease both;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(240,192,64,0.1);
    border: 1px solid rgba(240,192,64,0.3);
    border-radius: 50px; padding: 8px 20px;
    font-size: 0.85rem; font-weight: 600; color: var(--gold-light);
    letter-spacing: 0.5px; margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}
.gradient-text {
    background: linear-gradient(120deg, var(--gold-light), var(--gold), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p {
    font-size: 1.15rem; color: #bbb; line-height: 1.7;
    margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
    position: relative; z-index: 2;
    display: flex; align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 24px 40px;
    margin-top: 60px; margin-bottom: 40px;
    animation: fadeInUp 1s 0.3s ease both;
}
.hero-stat { text-align: center; padding: 0 32px; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.stat-num {
    display: block;
    font-size: 2rem; font-weight: 900;
    background: linear-gradient(120deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { display: block; font-size: 0.8rem; color: #888; margin-top: 4px; font-weight: 500; }

/* =================================================================
   Bölümler
================================================================= */
.section { padding: 100px 0; }
.section-darker { background: rgba(255,255,255,0.02); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800; color: #fff; margin-bottom: 12px;
}
.section-sub { color: #888; font-size: 1.05rem; }
.section-header-row {
    display: flex; align-items: center;
    justify-content: space-between;
    text-align: left;
    flex-wrap: wrap; gap: 16px;
    margin-bottom: 40px;
}

/* =================================================================
   Visual Split
================================================================= */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.split-grid-reverse { direction: rtl; }
.split-grid-reverse > * { direction: ltr; }
.split-image { position: relative; border-radius: 24px; overflow: hidden; }
.split-image img { width: 100%; height: 450px; object-fit: cover; display: block; }
.split-image-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(8,8,16,0.9);
    border: 1px solid rgba(240,192,64,0.3);
    border-radius: 10px; padding: 8px 16px;
    font-size: 0.85rem; font-weight: 600; color: var(--gold-light);
    backdrop-filter: blur(10px);
}
.split-content h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.split-content p { color: #bbb; line-height: 1.8; margin-bottom: 20px; }
.check-list { margin-bottom: 24px; }
.check-list li { color: #ccc; padding: 6px 0; font-size: 1rem; line-height: 1.5; }

/* =================================================================
   Kategori Grid
================================================================= */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.cat-card {
    background: var(--dark-glass);
    border: 1px solid var(--dark-glass-border);
    border-radius: 20px; padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    position: relative; overflow: hidden;
}
.cat-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(240,192,64,0.05), rgba(184,51,255,0.03));
    opacity: 0; transition: opacity 0.3s;
}
.cat-card:hover { border-color: rgba(240,192,64,0.4); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.cat-card:hover::before { opacity: 1; }
.cat-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.cat-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--gold-light); margin-bottom: 10px; }
.cat-card p { color: #888; font-size: 0.9rem; line-height: 1.6; }

/* =================================================================
   İlan Grid
================================================================= */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.listing-card {
    background: var(--dark-glass);
    border: 1px solid var(--dark-glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
}
.listing-card:hover { border-color: rgba(240,192,64,0.4); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(240,192,64,0.1); }

/* Kart Görseli */
.listing-card-thumb { position: relative; overflow: hidden; }
.listing-card-thumb img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.listing-card:hover .listing-card-thumb img { transform: scale(1.05); }
.listing-card-thumb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,8,16,0.9) 0%, transparent 60%);
}
.listing-badge {
    position: absolute; top: 14px; left: 14px;
    background: rgba(240,192,64,0.15);
    border: 1px solid rgba(240,192,64,0.4);
    border-radius: 8px; padding: 4px 12px;
    font-size: 0.75rem; font-weight: 700; color: var(--gold-light);
    backdrop-filter: blur(8px);
}
.listing-aktif-dot {
    position: absolute; top: 14px; right: 14px;
    background: rgba(8,8,16,0.8);
    border-radius: 8px; padding: 4px 10px;
    font-size: 0.75rem; font-weight: 600;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
}
.badge-pasif { color: #ff6b6b; }
.badge-dolu { color: #ffd93d; }

/* Kart İçeriği */
.listing-card-body { padding: 20px 24px 24px; }
.listing-card-body h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.listing-card-body h3 a { color: inherit; }
.listing-card-body h3 a:hover { color: var(--gold-light); }
.listing-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.listing-meta span { font-size: 0.85rem; color: #888; }
.listing-price { font-size: 1rem; font-weight: 700; color: var(--gold-light); margin-bottom: 16px; }
.listing-card-actions-row { display: flex; gap: 10px; flex-wrap: wrap; }
.listing-card-actions-row .btn { flex: 1; padding: 10px 16px; font-size: 0.85rem; }

/* Sahibinden Linki */
.listing-sahibinden-link {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(37,100,200,0.15);
    border: 1px solid rgba(37,100,200,0.4);
    border-radius: 8px; padding: 8px 14px;
    font-size: 0.82rem; font-weight: 600; color: #6ea8fe;
    transition: all 0.2s;
    margin-top: 8px;
}
.listing-sahibinden-link:hover { background: rgba(37,100,200,0.25); border-color: #6ea8fe; }
.listing-sahibinden-link svg { flex-shrink: 0; }

.ilanlar-cta { text-align: center; margin-top: 60px; }
.ilanlar-cta p { color: #888; margin-bottom: 20px; }

/* =================================================================
   Hakkımızda - Trust Grid
================================================================= */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.trust-item {
    display: flex; align-items: flex-start; gap: 14px;
    background: var(--dark-glass);
    border: 1px solid var(--dark-glass-border);
    border-radius: 14px; padding: 18px;
    transition: border-color 0.3s;
}
.trust-item:hover { border-color: rgba(240,192,64,0.3); }
.trust-icon { font-size: 1.8rem; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 0.95rem; color: #fff; margin-bottom: 4px; }
.trust-item span { font-size: 0.82rem; color: #888; }
.hakkimizda-section { background: rgba(255,255,255,0.015); }

/* =================================================================
   CTA Banner
================================================================= */
.cta-banner {
    background: linear-gradient(135deg, rgba(240,192,64,0.1) 0%, rgba(184,51,255,0.08) 100%);
    border-top: 1px solid rgba(240,192,64,0.15);
    border-bottom: 1px solid rgba(240,192,64,0.15);
    padding: 80px 0;
}
.cta-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-inner p { color: #bbb; }

/* =================================================================
   Tekli İlan Sayfası
================================================================= */
.single-ilan-wrap { padding-top: 120px; padding-bottom: 80px; }
.single-ilan-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.single-ilan-image { position: relative; border-radius: 24px; overflow: hidden; }
.single-ilan-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.single-ilan-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,16,0.6) 0%, transparent 60%); }
.single-ilan-badge-wrap { position: absolute; top: 20px; left: 20px; display: flex; flex-direction: column; gap: 8px; }

.single-ilan-info { position: sticky; top: 100px; }
.single-ilan-info .hero-badge { margin-bottom: 14px; }
.single-ilan-info h1 { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 900; color: #fff; margin-bottom: 20px; line-height: 1.2; }
.ilan-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.ilan-meta-item {
    background: var(--dark-glass);
    border: 1px solid var(--dark-glass-border);
    border-radius: 14px; padding: 16px;
}
.ilan-meta-item .meta-label { font-size: 0.75rem; color: #888; margin-bottom: 4px; }
.ilan-meta-item .meta-value { font-size: 1rem; font-weight: 700; color: #fff; }
.ilan-price-box {
    background: linear-gradient(135deg, rgba(240,192,64,0.12), rgba(240,192,64,0.06));
    border: 1px solid rgba(240,192,64,0.3);
    border-radius: 16px; padding: 20px 24px;
    margin-bottom: 24px;
}
.ilan-price-box .price-label { font-size: 0.8rem; color: #888; margin-bottom: 6px; }
.ilan-price-box .price-value { font-size: 1.5rem; font-weight: 900; color: var(--gold-light); }
.ilan-actions { display: flex; flex-direction: column; gap: 12px; }
.ilan-actions .btn { width: 100%; justify-content: center; }

.single-ilan-content { margin-top: 60px; padding-top: 60px; border-top: 1px solid rgba(255,255,255,0.06); }
.single-ilan-content h2 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 20px; }
.ilan-content-body { color: #bbb; line-height: 1.9; font-size: 1rem; }
.ilan-content-body h3 { color: var(--gold-light); font-size: 1.1rem; margin: 24px 0 12px; }
.ilan-content-body ul { padding-left: 20px; margin: 12px 0; }
.ilan-content-body ul li { margin-bottom: 8px; }
.ilan-content-body p { margin-bottom: 16px; }

/* =================================================================
   İlanlar Arşiv
================================================================= */
.archive-header { padding: 140px 0 60px; text-align: center; position: relative; }
.archive-header::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 80px; height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    border-radius: 2px;
}
.archive-header h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.archive-header p { color: #888; font-size: 1.05rem; }

.archive-filters {
    display: flex; gap: 12px; flex-wrap: wrap;
    justify-content: center; padding: 40px 0 50px;
}
.filter-btn {
    padding: 10px 22px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    background: transparent; color: #888;
    font-size: 0.9rem; font-weight: 600;
    cursor: pointer; transition: all 0.25s;
    font-family: 'Outfit', sans-serif;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold-light); background: rgba(240,192,64,0.08); }

.archive-grid { padding-bottom: 100px; }

/* =================================================================
   Footer
================================================================= */
footer {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 0;
    text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-logo { font-size: 1.4rem; font-weight: 900; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: #666; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { color: #444; font-size: 0.85rem; }

/* WhatsApp Float */
.float-wa {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}
.float-wa:hover { transform: scale(1.12); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* =================================================================
   Animasyonlar
================================================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.7s ease both; }
.fade-in-delay { animation: fadeInUp 0.7s 0.2s ease both; }

/* =================================================================
   Breadcrumb & Sayfalandırma
================================================================= */
.breadcrumb { display: flex; gap: 8px; align-items: center; color: #666; font-size: 0.85rem; margin-bottom: 40px; flex-wrap: wrap; }
.breadcrumb a { color: #888; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: #444; }

.pagination { display: flex; gap: 8px; justify-content: center; padding: 60px 0; flex-wrap: wrap; }
.pagination .page-numbers {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; color: #888; font-weight: 600;
    transition: all 0.2s;
}
.pagination .page-numbers:hover,
.pagination .current { border-color: var(--gold); color: var(--gold-light); background: rgba(240,192,64,0.08); }

/* İlan yok mesajı */
.no-listings {
    text-align: center; padding: 80px 20px;
    color: #666; font-size: 1rem;
    grid-column: 1/-1;
}
.no-listings .icon { font-size: 4rem; margin-bottom: 20px; display: block; }
.no-listings h3 { font-size: 1.4rem; color: #888; margin-bottom: 10px; }

/* =================================================================
   Mobil Responsive
================================================================= */
@media (max-width: 1024px) {
    .split-grid { grid-template-columns: 1fr; gap: 50px; }
    .split-grid-reverse { direction: ltr; }
    .single-ilan-grid { grid-template-columns: 1fr; }
    .single-ilan-info { position: static; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px !important; }
    .nav-desktop { display: none !important; }
    .hamburger { display: flex !important; }
    .mobile-menu-overlay { display: block; }
    .section { padding: 70px 0; }
    .hero-stats { flex-direction: column; gap: 24px; padding: 24px 28px; }
    .hero-stat-divider { width: 60px; height: 1px; }
    .hero-stat { padding: 0; }
    .listing-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .trust-grid { grid-template-columns: 1fr; }
    .ilan-meta-grid { grid-template-columns: 1fr; }
    .section-header-row { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { text-align: center; }
    .float-wa { bottom: 16px; right: 16px; width: 52px; height: 52px; }
    .category-grid { grid-template-columns: 1fr 1fr; }
}
