:root { --gold: #FFD700; --dark: #1a1a1a; --white: #ffffff; --kirmizi: #ff6b6b; --gri-arkaplan: #f4f4f9; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: var(--gri-arkaplan); color: #1a1a1a; font-family: 'Nunito', sans-serif; min-height: 100vh; display: flex; flex-direction: column; }

        /* ─── NAVBAR (MERKEZİ MENÜ EKLENDİ) ─── */
        .navbar { background-color: var(--gold); width: 100%; position: sticky; top: 0; z-index: 1000; box-shadow: 0 3px 10px rgba(0,0,0,0.5); }
        .navbar-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 30px; height: 46px; max-width: 1400px; margin: 0 auto; }
        .navbar-brand { display: flex; align-items: center; gap: 9px; font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 700; color: #000; letter-spacing: 1px; text-decoration: none; text-transform: uppercase; justify-self: start; }
        .navbar-logo { width: 22px; height: auto; }
        .navbar-menu { display: flex; list-style: none; height: 46px; justify-content: center; align-items: center; }
        .navbar-giris { justify-self: end; display: flex; align-items: center; }
        .ornek-profil-link { margin-right: 20px; color: #111; text-decoration: none; font-family: 'Oswald', sans-serif; font-size: 0.88rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-bottom: 2px solid transparent; transition: border-color 0.2s; }
        .ornek-profil-link:hover { border-color: #111; }
        .giris-btn { background-color: #000; color: var(--gold); border: none; padding: 7px 18px; border-radius: 6px; font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: background 0.2s, color 0.2s; }
        .giris-btn:hover { background-color: #1a1a1a; color: #fff; }
        .navbar-menu > li { position: relative; height: 100%; }
        .navbar-menu > li > a { display: flex; align-items: center; height: 100%; padding: 0 16px; color: #000; text-decoration: none; font-family: 'Oswald', sans-serif; font-size: 0.88rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; transition: background-color 0.2s; gap: 5px; }
        .navbar-menu > li > a:hover { background-color: rgba(0,0,0,0.1); }
        .arrow { font-size: 0.6rem; transition: transform 0.2s; }
        .navbar-menu > li:hover .arrow { transform: rotate(180deg); }

        .kullanici-menusu { position: relative; display: none; height: 46px; align-items: center; }
        .kullanici-btn { background-color: #000; color: var(--gold); border: none; padding: 7px 18px; border-radius: 6px; font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: background 0.2s, color 0.2s; display: flex; align-items: center; gap: 6px; }
        .kullanici-btn:hover { background-color: #1a1a1a; color: #fff; }
        .kullanici-dropdown { visibility: hidden; opacity: 0; position: absolute; top: 100%; right: 0; background-color: #1c1c1c; min-width: 160px; border-top: 3px solid var(--gold); box-shadow: 0 6px 20px rgba(0,0,0,0.6); transform: translateY(-6px); transition: opacity 0.2s, transform 0.2s, visibility 0.2s; border-radius: 0 0 6px 6px; z-index: 1005; }
        .kullanici-menusu:hover .kullanici-dropdown { visibility: visible; opacity: 1; transform: translateY(0); }
        .kullanici-dropdown a { display: block; padding: 11px 20px; color: rgba(255,255,255,0.85); text-decoration: none; font-family: 'Nunito', sans-serif; font-size: 0.88rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.06); transition: background-color 0.15s, color 0.15s, padding-left 0.15s; }
        .kullanici-dropdown a:hover { background-color: var(--gold); color: #000; padding-left: 26px; }
        
        .dropdown { visibility: hidden; opacity: 0; position: absolute; top: 100%; left: 0; background-color: #1c1c1c; min-width: 190px; border-top: 3px solid var(--gold); box-shadow: 0 6px 20px rgba(0,0,0,0.6); transform: translateY(-6px); transition: opacity 0.2s, transform 0.2s, visibility 0.2s; z-index: 1005; }
        .navbar-menu > li:hover .dropdown { visibility: visible; opacity: 1; transform: translateY(0); }
        .dropdown a { display: block; padding: 11px 20px; color: rgba(255,255,255,0.85); text-decoration: none; font-family: 'Nunito', sans-serif; font-size: 0.88rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.06); transition: background-color 0.15s, color 0.15s, padding-left 0.15s; }
        .dropdown a:hover { background-color: var(--gold); color: #000; padding-left: 26px; }

        /* ─── BİZ KİMİZ BALONU (SOL ÜST) ─── */
        .biz-kimiz-balon {
            position: fixed; top: 75px; left: 30px; z-index: 900;
            background: var(--gold); color: #000; border: none;
            border-radius: 50px; padding: 12px 22px;
            font-family: 'Oswald', sans-serif; font-size: 0.9rem;
            font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
            cursor: pointer; box-shadow: 0 6px 22px rgba(0,0,0,0.22);
            display: flex; align-items: center; gap: 9px;
            animation: balonNefes 2.4s ease-in-out infinite;
            transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
        }
        .biz-kimiz-balon:hover { background: #1a1a1a; color: var(--gold); transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 32px rgba(0,0,0,0.3); animation-play-state: paused; }
        .balon-nokta { width: 8px; height: 8px; background: #000; border-radius: 50%; flex-shrink: 0; animation: balonNokta 2.4s ease-in-out infinite; }
        .biz-kimiz-balon:hover .balon-nokta { background: var(--gold); animation-play-state: paused; }
        @keyframes balonNefes { 0%, 100% { box-shadow: 0 6px 22px rgba(255,215,0,0.35), 0 0 0 0 rgba(255,215,0,0.4); } 50% { box-shadow: 0 6px 22px rgba(255,215,0,0.6),  0 0 0 12px rgba(255,215,0,0); } }
        @keyframes balonNokta { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: 0.5; } }

        /* BİZ KİMİZ MODALİ */
        #biz-kimiz-modal .modal-kutu { width: 520px; max-width: 94vw; }
        #biz-kimiz-modal .modal-baslik { font-size: 1.85rem; letter-spacing: 4px; }
        .bk-icerik { display: flex; flex-direction: column; gap: 13px; }
        .bk-icerik > p { color: rgba(255,255,255,0.82); font-family: 'Nunito', sans-serif; font-size: 1rem; line-height: 1.75; }
        .bk-satir { display: flex; align-items: flex-start; gap: 13px; background: rgba(255,255,255,0.04); border-radius: 9px; padding: 13px 15px; border-left: 3px solid var(--gold); }
        .bk-ikon { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }
        .bk-metin strong { color: var(--gold); font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 1px; display: block; margin-bottom: 3px; }
        .bk-metin span { font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.55; }
        .bk-footer { font-size: 0.85rem; color: rgba(255,255,255,0.38); text-align: center; border-top: 1px solid rgba(255,215,0,0.12); padding-top: 12px; margin-top: 2px; }

        /* ─── PROFİL KAPAK ─── */
        .profil-kapak { height: 240px; background: linear-gradient(135deg, #111 0%, #333 100%); position: relative; border-bottom: 3px solid var(--gold); }
        .profil-kapak-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.35; overflow: hidden; }
        .profil-kapak-icerik { max-width: 1400px; margin: 0 auto; position: relative; height: 100%; padding: 0 40px; }
        .profil-avatar-wrapper { position: absolute; bottom: -70px; left: 40px; z-index: 10; }
        .profil-avatar { width: 160px; height: 160px; background-color: var(--gold); border: 6px solid var(--gri-arkaplan); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 4rem; font-weight: bold; color: #1a1a1a; box-shadow: 0 8px 25px rgba(0,0,0,0.15); font-family: 'Oswald', sans-serif; overflow: hidden; cursor: pointer; position: relative; }
        .profil-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
        .avatar-overlay { display: none; position: absolute; inset: 0; background: rgba(0,0,0,0.6); border-radius: 50%; align-items: center; justify-content: center; font-size: 0.8rem; font-family: 'Oswald', sans-serif; color: #fff; letter-spacing: 1px; text-align: center; flex-direction: column; gap: 4px; }
        .profil-avatar:hover .avatar-overlay { display: flex; }

        /* ─── ANA İÇERİK DÜZENİ ─── */
        .profil-ana-icerik { max-width: 1400px; margin: 90px auto 60px; padding: 0 40px; display: grid; grid-template-columns: 330px 1fr; gap: 60px; align-items: start; flex: 1; }

        /* ─── SOL PANEL ─── */
        .profil-bilgi { background: #fff; padding: 32px; border-radius: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.06); position: sticky; top: 70px; height: fit-content; }
        .profil-isim { font-family: 'Oswald', sans-serif; font-size: 2.2rem; color: var(--dark); margin-bottom: 2px; letter-spacing: 1px; }
        .profil-kullanici-adi { color: #888; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; display: flex; justify-content: space-between; align-items: center; }
        .profil-lokasyon { color: #555; font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; display: inline-flex; align-items: center; gap: 4px; background: rgba(0,0,0,0.04); padding: 4px 10px; border-radius: 12px; }
        .profil-meslek { color: #333; font-size: 1.05rem; font-weight: 700; margin-bottom: 18px; font-family: 'Nunito', sans-serif; }
        .profil-yildiz { color: var(--gold); font-size: 1.2rem; margin-bottom: 22px; display: flex; align-items: center; gap: 5px; }
        .profil-yildiz span { color: #1a1a1a; font-size: 0.95rem; font-weight: bold; margin-left: 4px; }
        
        .profil-buton { display: block; width: 100%; text-align: center; background: var(--dark); color: var(--gold); padding: 14px; border-radius: 8px; font-family: 'Oswald', sans-serif; font-size: 1.05rem; text-decoration: none; letter-spacing: 1px; transition: all 0.2s; margin-bottom: 12px; border: 2px solid var(--dark); cursor: pointer; }
        .profil-buton:hover { background: #fff; color: var(--dark); }
        .duzenle-btn { background: #f5f5f5; color: #333; border: 2px solid #ddd; display: none; }
        .duzenle-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }

        .profil-istatistikler { display: flex; gap: 10px; margin-bottom: 20px; }
        .istatistik-kutu { flex: 1; background: rgba(255,215,0,0.1); padding: 12px; border-radius: 10px; text-align: center; border: 1px solid rgba(255,215,0,0.3); }
        .istatistik-kutu span { display: block; font-size: 1.3rem; font-weight: 900; color: var(--dark); font-family: 'Oswald', sans-serif; }
        .istatistik-kutu small { font-size: 0.75rem; color: #555; font-weight: 700; text-transform: uppercase; }

        .profil-bolme-baslik { font-family: 'Oswald', sans-serif; font-size: 1.1rem; border-bottom: 2px solid #eee; padding-bottom: 8px; margin: 24px 0 14px; color: var(--dark); letter-spacing: 1px; text-transform: uppercase; position: relative; }
        .profil-bolme-baslik::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 40px; height: 2px; background: var(--gold); }
        
        .etiket-kutusu { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 5px; }
        .etiket { background: #111; color: var(--gold); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; }
        .profil-metin { font-size: 0.95rem; line-height: 1.8; color: #444; white-space: pre-wrap; }

        .ekipman-liste { list-style: none; display: flex; flex-direction: column; gap: 8px; }
        .ekipman-liste li { font-size: 0.95rem; color: #333; display: flex; align-items: center; gap: 8px; background: #f9f9f9; padding: 10px 14px; border-radius: 8px; border: 1px solid #eee; }
        .ekipman-liste li::before { content: '✓'; color: var(--gold); font-size: 1rem; font-weight: bold; }

        /* ─── SAĞ PANEL ─── */
        .sag-panel-baslik { font-family: 'Oswald', sans-serif; font-size: 1.9rem; color: var(--dark); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 15px; }
        .sag-panel-baslik::after { content: ''; flex: 1; height: 2px; background: #ddd; }

        /* ─── İLAN KARTLARI ─── */
        .ilan-listesi { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 50px; }
        .ilan-kart { background: #fff; border-radius: 14px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); display: flex; overflow: hidden; border: 1px solid #eee; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; flex-direction: column; }
        .ilan-kart:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); border-color: var(--gold); }
        .ilan-renk-ust { height: 8px; width: 100%; flex-shrink: 0; }
        .ilan-renk-ilan { background: var(--gold); }
        .ilan-renk-soru { background: #60a5fa; }
        .ilan-icerik { padding: 25px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
        .ilan-tip { align-self: flex-start; font-size: 0.75rem; font-family: 'Oswald', sans-serif; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; padding: 5px 12px; border-radius: 6px; }
        .tip-ilan { background: rgba(255,215,0,0.15); color: #7a6000; }
        .tip-soru { background: rgba(96,165,250,0.15); color: #1e4a8a; }
        .ilan-baslik { font-family: 'Oswald', sans-serif; font-size: 1.45rem; color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
        .ilan-aciklama { font-size: 0.95rem; color: #555; line-height: 1.6; margin-bottom: 24px; flex: 1; }
        .ilan-alt { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f0f0f0; padding-top: 18px; }
        .ilan-fiyat { font-family: 'Oswald', sans-serif; font-size: 1.4rem; color: var(--dark); font-weight: 700; }
        .ilan-fiyat small { font-size: 0.8rem; color: #888; font-weight: normal; font-family: 'Nunito', sans-serif; }
        .ilan-siparis-btn { background: var(--gold); color: #000; padding: 10px 22px; border-radius: 8px; font-weight: bold; text-transform: uppercase; font-family: 'Oswald', sans-serif; font-size: 0.95rem; text-decoration: none; transition: background 0.2s; box-shadow: 0 4px 10px rgba(255,215,0,0.3); }
        .ilan-siparis-btn:hover { background: #e6c200; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(255,215,0,0.4); }
        .soru-cevap-btn { background: #60a5fa; color: #fff; padding: 10px 22px; border-radius: 8px; font-weight: bold; text-transform: uppercase; font-family: 'Oswald', sans-serif; font-size: 0.95rem; text-decoration: none; transition: background 0.2s; box-shadow: 0 4px 10px rgba(96,165,250,0.3); }
        .soru-cevap-btn:hover { background: #3b82f6; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(96,165,250,0.4); }

        /* ─── YORUMLAR ─── */
        .yorumlar-ozet { background: #fff; border-radius: 14px; padding: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 40px; margin-bottom: 30px; border: 1px solid #eee; }
        .yorum-puan-buyuk { font-family: 'Oswald', sans-serif; font-size: 5rem; font-weight: 700; color: var(--dark); line-height: 1; }
        .yorum-yildizlar { color: var(--gold); font-size: 1.6rem; margin-bottom: 4px; }
        .yorum-toplam { font-size: 0.95rem; color: #888; font-weight: 600; }
        .yorum-cubuklar { flex: 1; display: flex; flex-direction: column; gap: 8px; }
        .cubuk-satir { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: #555; font-weight: 600; }
        .cubuk { flex: 1; height: 10px; background: #eaeaea; border-radius: 5px; overflow: hidden; }
        .cubuk-ic { height: 100%; background: var(--gold); border-radius: 5px; }

        .yorum-liste { display: flex; flex-direction: column; gap: 20px; }
        .yorum-kart { background: #fff; border-radius: 14px; padding: 24px; box-shadow: 0 4px 15px rgba(0,0,0,0.04); border: 1px solid #eee; }
        .yorum-ust { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
        .yorum-avatar { width: 50px; height: 50px; border-radius: 50%; background: #111; color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.3rem; flex-shrink: 0; overflow: hidden; }
        .yorum-kisi { flex: 1; }
        .yorum-kisi-adi { font-family: 'Oswald', sans-serif; font-size: 1.15rem; color: var(--dark); }
        .yorum-tarih { font-size: 0.85rem; color: #999; }
        .yorum-yildiz { color: var(--gold); font-size: 1.1rem; }
        .yorum-metin { font-size: 1rem; color: #444; line-height: 1.7; }
        .yorum-ilan-isim { font-size: 0.85rem; color: #888; margin-top: 12px; font-style: italic; background: #f9f9f9; display: inline-block; padding: 6px 12px; border-radius: 6px; }

        /* ─── MODAL VE FOOTER ─── */
        .modal-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(20,20,20,0.78); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); align-items: center; justify-content: center; }
        .modal-overlay.aktif { display: flex; }
        .modal-kutu { background: #222; border: 2px solid var(--gold); border-radius: 14px; padding: 34px 32px 30px; width: 480px; max-width: 94vw; max-height: 90vh; overflow-y: auto; position: relative; animation: modalAc 0.25s ease; }
        @keyframes modalAc { from { opacity:0; transform: scale(0.92) translateY(-12px); } to { opacity:1; transform: scale(1) translateY(0); } }
        .modal-kapat { position: absolute; top: 14px; right: 16px; background: var(--gold); color: #000; border: none; width: 28px; height: 28px; border-radius: 6px; font-size: 1rem; font-weight: 900; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
        .modal-baslik { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 22px; border-bottom: 1px solid rgba(255,215,0,0.2); padding-bottom: 14px; text-align: center; }
        .form-grup { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
        .form-grup label { font-family: 'Oswald', sans-serif; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,215,0,0.75); }
        .form-input { width: 100%; background: #2c2c2c; border: 1px solid rgba(255,215,0,0.2); border-radius: 7px; padding: 10px 14px; color: #fff; font-family: 'Nunito', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.2s; }
        .form-input:focus { border-color: var(--gold); }
        .giris-submit { width: 100%; margin-top: 8px; padding: 14px; background-color: var(--gold); color: #000; border: none; border-radius: 7px; font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: transform 0.2s, background 0.2s; }
        .giris-submit:hover { background-color: #e6c200; transform: translateY(-2px); }
        
        .foto-yukle-alan { border: 2px dashed rgba(255,215,0,0.3); border-radius: 10px; padding: 20px; text-align: center; cursor: pointer; margin-bottom: 5px; }
        .foto-yukle-alan .foto-onizleme { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 8px; display: none; border: 2px solid var(--gold); }
        .foto-input-gizli { display: none; }
        .ilan-ekle-btn { background: none; border: 2px dashed rgba(255,215,0,0.4); border-radius: 10px; width: 100%; padding: 14px; color: rgba(255,215,0,0.7); font-family: 'Oswald', sans-serif; font-size: 0.95rem; letter-spacing: 1px; cursor: pointer; margin-bottom: 16px; }
        .ilan-duzenle-satir { background: #2a2a2a; border-radius: 10px; padding: 16px; margin-bottom: 12px; border: 1px solid rgba(255,215,0,0.15); position: relative; }
        .ilan-sil-btn { position: absolute; top: 10px; right: 10px; background: rgba(255,107,107,0.2); color: #ff6b6b; border: 1px solid rgba(255,107,107,0.3); border-radius: 5px; width: 26px; height: 26px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
        .ilan-tip-sec { display: flex; gap: 8px; margin-bottom: 10px; }
        .tip-radio { display: none; }
        .tip-radio-label { padding: 5px 14px; border-radius: 20px; font-size: 0.82rem; font-family: 'Oswald', sans-serif; letter-spacing: 1px; cursor: pointer; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); }
        .tip-radio:checked + .tip-radio-label { border-color: var(--gold); color: var(--gold); background: rgba(255,215,0,0.1); }
        
        .site-footer { background: #111; border-top: 2px solid var(--gold); padding: 28px 20px; text-align: center; margin-top: auto; }
        .footer-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; }
        .footer-inner > p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
        .footer-linkler { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
        .footer-linkler a { font-family: 'Oswald', sans-serif; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,215,0,0.7); text-decoration: none; }

        /* MOBİL MENÜ */
        .hamburger { display: none; flex-direction: column; justify-content: space-between; width: 26px; height: 19px; background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0; }
        .hamburger span { display: block; width: 100%; height: 2.5px; background-color: #000; border-radius: 2px; transition: all 0.28s ease; }
        .hamburger.acik span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
        .hamburger.acik span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.acik span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }
        .mobil-menu { display: none; position: fixed; top: 46px; left: 0; right: 0; z-index: 998; background: var(--gold); box-shadow: 0 5px 18px rgba(0,0,0,0.3); max-height: calc(100vh - 46px); overflow-y: auto; padding-bottom: 30px; }
        .mobil-menu.acik { display: block; }
        .mobil-overlay { display: none; position: fixed; inset: 0; top: 46px; z-index: 997; background: rgba(0,0,0,0.35); }
        .mobil-overlay.acik { display: block; }
        body.menu-acik { overflow: hidden; }
        .mobil-menu > a { display: block; padding: 13px 22px; color: #000; font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
        .mobil-kategori { border-bottom: 1px solid rgba(0,0,0,0.08); }
        .mobil-kategori-btn { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 13px 22px; background: none; border: none; font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; color: #000; }
        .mobil-arrow { font-size: 0.65rem; transition: transform 0.25s; flex-shrink: 0; }
        .mobil-kategori-btn.acik .mobil-arrow { transform: rotate(180deg); }
        .mobil-alt-menu { display: none; background: rgba(0,0,0,0.06); }
        .mobil-alt-menu.acik { display: block; }
        .mobil-alt-menu a { display: block; padding: 10px 22px 10px 38px; color: #111; font-family: 'Nunito', sans-serif; font-size: 0.88rem; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.05); }
        .giris-btn-mobil { display: block; width: calc(100% - 44px); margin: 16px 22px 6px; padding: 12px; background: #000; color: var(--gold); font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-align: center; border: none; border-radius: 7px; cursor: pointer; }

        @media (max-width: 1000px) {
            .navbar-inner { grid-template-columns: 1fr auto; padding: 0 16px; }
            .navbar-menu, .navbar-giris { display: none; }
            .hamburger { display: flex; }
            .profil-ana-icerik { grid-template-columns: 1fr; margin-top: 100px; padding: 0 20px; }
            .profil-bilgi { position: relative; top: 0; text-align: center; }
            .profil-avatar-wrapper { left: 50%; transform: translateX(-50%); }
            .etiket-kutusu { justify-content: center; }
            .profil-lokasyon { justify-content: center; }
            .profil-istatistikler { justify-content: center; }
            .ilan-listesi { grid-template-columns: 1fr; }
            .biz-kimiz-balon { display: none; }
        }
/* ─── ANA SAYFA (INDEX) TASARIM KODLARI ─── */
.ana-icerik { display: flex; flex-direction: column; align-items: center; max-width: 1100px; margin: 60px auto; padding: 0 20px; gap: 45px; }
.ust-arama { width: 100%; max-width: 850px; }
.alt-kutular { display: flex; flex-direction: row; justify-content: center; gap: 30px; width: 100%; }

.arama-kutusu { display: flex; background: #fff; border-radius: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); overflow: hidden; border: 2px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.arama-kutusu:focus-within { border-color: var(--gold); box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2); }
.arama-input { flex: 1; border: none; padding: 22px 30px; font-size: 1.15rem; font-family: 'Nunito', sans-serif; outline: none; color: #1a1a1a; }
.arama-input::placeholder { color: #999; font-weight: 400; }
.arama-btn { background-color: var(--gold); color: #000; border: none; padding: 0 40px; font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.arama-btn:hover { background-color: #1a1a1a; color: var(--gold); }

.populer-aramalar { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; }
.populer-baslik { font-size: 0.95rem; color: #666; font-weight: 600; margin-right: 5px; }
.arama-etiketi { background: #1a1a1a; color: var(--gold); padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; text-decoration: none; font-weight: 600; transition: transform 0.2s, background 0.2s; }
.arama-etiketi:hover { background: #000; transform: translateY(-2px); }

.usta-ol-kutu { display: block; flex: 1; background: #1a1a1a; border: 2px dashed var(--gold); border-radius: 20px; padding: 35px 25px; text-align: center; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; position: relative; overflow: hidden; }
.usta-ol-kutu:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.25); background: #111111; }
.usta-ol-ikon { font-size: 3.5rem; margin-bottom: 15px; line-height: 1; }
.usta-ol-kutu h3 { color: var(--gold); font-family: 'Oswald', sans-serif; font-size: 1.8rem; letter-spacing: 2px; margin-bottom: 12px; }
.usta-ol-kutu p { color: rgba(255,255,255,0.8); font-family: 'Nunito', sans-serif; font-size: 1rem; line-height: 1.6; margin-bottom: 22px; }
.usta-ol-ok { display: inline-block; background: var(--gold); color: #000; font-family: 'Oswald', sans-serif; padding: 10px 24px; border-radius: 30px; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; transition: background 0.2s; }
.usta-ol-kutu:hover .usta-ol-ok { background: #fff; }

.hakkimizda { position: relative; background-image: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)), url('logohakkimda.png'); background-size: cover; background-position: center; background-repeat: no-repeat; background-clip: padding-box; border: 2px solid transparent; border-radius: 12px; padding: 45px 40px; max-width: 620px; margin: 40px auto 60px; box-shadow: 0 8px 40px rgba(0,0,0,0.18); text-align: center; }
.hakkimizda::before { content: ''; position: absolute; inset: -2px; border-radius: 14px; background: linear-gradient(135deg, #FFD700 0%, #aaaaaa 60%, #666666 100%); z-index: -1; }
.hakkimizda h2 { font-family: 'Oswald', sans-serif; color: var(--gold); font-size: 2rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px; }
.hakkimizda p { color: rgba(255,255,255,0.9); line-height: 1.8; font-size: 1.05rem; }
.iletisim-butonu { display: inline-block; margin-top: 28px; padding: 13px 32px; background-color: var(--gold); color: #000; text-decoration: none; border-radius: 6px; font-weight: 900; font-family: 'Oswald', sans-serif; font-size: 1.15rem; letter-spacing: 2px; text-transform: uppercase; transition: all 0.22s ease; border: 2px solid var(--gold); cursor: pointer; }
.iletisim-butonu:hover { background-color: #1a1a1a; color: var(--gold); border-color: #1a1a1a; transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,0.35); }

/* ─── DİĞER SAYFALAR İÇİN (HERO VE AKORDEON) ─── */
.usta-hero { position: relative; background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85)), url('calismapng.png'); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 90px 20px; text-align: center; color: var(--white); border-bottom: 4px solid var(--gold); }
.usta-hero h1 { font-family: 'Oswald', sans-serif; color: var(--gold); font-size: 4rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 15px; text-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.usta-hero p { font-family: 'Nunito', sans-serif; font-size: 1.2rem; color: #ececec; max-width: 700px; margin: 0 auto; line-height: 1.6; }

.sss-konteyner { max-width: 850px; margin: 60px auto 80px; padding: 0 20px; flex: 1; }
.sss-baslik { text-align: center; font-family: 'Oswald', sans-serif; font-size: 2.2rem; color: var(--dark); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 40px; }
.akordeon-oge { background: #fff; margin-bottom: 16px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.06); overflow: hidden; border-left: 4px solid transparent; transition: border-color 0.3s; }
.akordeon-oge.aktif { border-left-color: var(--gold); }
.akordeon-buton { width: 100%; text-align: left; padding: 22px 25px; background: none; border: none; font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s, color 0.3s; letter-spacing: 1px; }
.akordeon-buton:hover { background: rgba(0,0,0,0.02); }
.akordeon-buton.aktif { background: var(--dark); color: var(--gold); }
.arti-ikon { font-size: 1.5rem; font-weight: 300; transition: transform 0.3s ease; }
.akordeon-buton.aktif .arti-ikon { transform: rotate(45deg); }
.akordeon-icerik { max-height: 0; overflow: hidden; transition: max-height 0.35s ease-out; background: #fff; }
.akordeon-icerik p { padding: 5px 25px 25px; font-family: 'Nunito', sans-serif; font-size: 1.05rem; color: #444; line-height: 1.7; }

/* ─── MOBİL UYUMLULUK (MEDIA QUERIES) ─── */
@media (max-width: 768px) {
    .ana-icerik { margin: 40px auto; gap: 40px; }
    .alt-kutular { flex-direction: column; gap: 20px; }
    .arama-kutusu { flex-direction: column; border-radius: 12px; }
    .arama-input { padding: 18px 20px; }
    .arama-btn { padding: 15px; border-radius: 0 0 12px 12px; }
    .hakkimizda { margin: 20px 16px 50px; padding: 28px 20px; }
    
    .usta-hero { padding: 60px 15px; }
    .usta-hero h1 { font-size: 2.5rem; }
    .sss-baslik { font-size: 1.8rem; }
    .akordeon-buton { font-size: 1rem; padding: 18px 20px; }
    .akordeon-icerik p { font-size: 0.95rem; padding: 5px 20px 20px; }
}