/* ============================================
   escortsepeti â€” Ana Stil DosyasÄ±
   Renk paleti: Premium Altın + Derin Siyah Mermer (Lüks Tema)
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,800;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS DEÄÄ°ÅKENLERÄ°
   ============================================ */
:root {
    /* === ANA ZEMİN === */
    --primary: #050505;
    /* Saf siyah veya çok yakın siyah */

    --primary-light: #0d0d0d;
    /* Kart arkaplanı */

    --primary-dark: #000000;
    /* En koyu alanlar */

    /* === NEON PEMBE TONLAR === */
    --accent: #FF107A;
    /* Ana neon pembe */

    --accent-hover: #D40C63;
    /* Hover neon pembe */

    --accent-light: #FF6EB4;
    /* Soft pink (border & highlight) */

    --accent-glow: rgba(255, 16, 122, 0.4);

    /* === PURPLE / VIOLET (Destek Renk) === */
    --secondary: #9D00FF;
    /* VIP moru */

    /* === METİN === */
    --white: #FFFFFF;

    --gray-50: #121212;
    /* border */

    --gray-100: #1a1a1a;

    --gray-200: #242424;

    --gray-300: #e0e0e0;
    /* ana metin */

    --gray-400: #a0a0a0;

    --gray-500: #707070;

    --gray-600: #4a4a4a;

    --gray-700: #2d2d2d;

    /* === DURUM RENKLERİ === */
    --green: #00FF9C;
    --green-dark: #00CC7D;

    --red: #FF3B3B;

    /* === AKSİYON BUTONLARI === */
    --whatsapp: #25D366;
    --whatsapp-hover: #1DA851;

    --call-bg: #1F2937;
    --call-hover: #374151;

    /* === SHADOW (NEON GLOW) === */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.5);

    --shadow-md: 0 4px 15px rgba(255, 16, 122, 0.15);

    --shadow-lg: 0 0 30px rgba(255, 16, 122, 0.25);

    --shadow-xl: 0 0 50px rgba(255, 16, 122, 0.35);

    /* === BORDER RADIUS === */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* === ANİMASYON === */
    --transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.neon-border {
    border: 1px solid rgba(255, 16, 122, 0.4);
    box-shadow: 0 0 15px rgba(255, 16, 122, 0.2);
    backdrop-filter: blur(10px);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at center, #151517 0%, #0D0D0F 100%);
    background-attachment: fixed;
    color: var(--gray-300);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.detail-title {
    font-family: 'Playfair Display', serif;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   HEADER (Sticky)
   ============================================ */
.site-header {
    background: rgba(7, 5, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 16, 122, 0.15);
}

/* filter-bar artık header içinde — ayrı sticky gerekmez */
.filter-bar {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 16, 122, 0.12);
    transition: var(--transition);
}

@media (max-width: 991px) {
    .filter-bar {
        padding: 8px 0;
    }
}

/* filter-bar artık header içinde olduğu için bu kural kaldırıldı */

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 16px;
}

/* Logo */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    font-style: italic;
    color: var(--white);
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo span {
    color: var(--accent);
}

.logo:hover {
    color: var(--white);
    transform: scale(1.02);
}

/* Center Search Layout */
.header-center {
    transition: var(--transition);
}

.search-wrapper.centered-search {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 12px 48px 12px 20px;
    border: 1px solid rgba(255, 16, 122, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.search-input:focus {
    border-color: var(--accent);
    background: rgba(255, 16, 122, 0.1);
    box-shadow: 0 0 15px rgba(255, 16, 122, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(255, 16, 122, 0.5);
}

.search-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-50%) scale(1.1);
}

/* Small Filter Button next to search */
.btn-small-filter {
    background: rgba(255, 16, 122, 0.1);
    border: 1px solid rgba(255, 16, 122, 0.4);
    color: var(--accent);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn-small-filter:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 16, 122, 0.6);
    transform: translateY(-2px);
}

.btn-small-filter.active {
    background: var(--accent);
    color: #fff;
}

/* Arama SonuÃ§larÄ± Dropdown */
.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
    border: 1px solid var(--gray-200);
}

.search-results.active {
    display: block;
    animation: fadeSlideDown 0.3s ease;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    gap: 12px;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
}

.search-result-item:hover {
    background: var(--gray-50);
}

.search-result-item img {
    width: 48px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
}

.search-result-item .result-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.search-result-item .result-info span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.search-no-result {
    padding: 20px;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Ä°lan Ver Butonu */
.btn-ilan-ver {
    background: linear-gradient(135deg, #FF107A, #9D00FF);
    color: #fff;
    font-weight: 800;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 16, 122, 0.4);
}

.btn-ilan-ver:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(255, 16, 122, 0.7);
    color: #fff;
}

/* Mobile Header */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px;
}

@media (max-width: 991px) {
    .header-center {
        order: 5;
        width: 100%;
        margin-top: 10px;
    }

    .search-wrapper.centered-search {
        max-width: 100%;
    }

    .logo {
        height: 50px;
    }

    .logo img {
        height: 50px !important;
    }
}

/* ============================================
   FÄ°LTRE BARI (Sticky)
   ============================================ */
.filter-bar .container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    min-width: 160px;
}

/* Header Filter Bar Refinement */
.filter-bar {
    padding: 0;
    transition: var(--transition);
    overflow: hidden;
}

@media (max-width: 768px) {
    .filter-header-desktop {
        display: none;
    }
}

.filter-select:focus {
    border-color: var(--accent);
}

.filter-select option {
    background: var(--primary);
    color: var(--white);
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-300);
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
}

.filter-checkbox input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.btn-filter {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-filter:hover {
    background: var(--accent-hover);
}

.btn-filter-clear {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gray-400);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-filter-clear:hover {
    border-color: var(--red);
    color: var(--red);
}

@media (max-width: 768px) {
    .filter-bar .container {
        gap: 8px;
    }

    .filter-select {
        min-width: calc(50% - 4px);
        flex: 1;
    }

    .filter-checkbox {
        font-size: 0.8rem;
    }
}

/* ============================================
   İLAN KARTLARI — PREMIUM REDESIGN v5
   (Sadece VIP • Daha seksi & dikkat çekici • Boş kartlar ikna edici)
   ============================================ */
.section-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 1rem;
    margin-bottom: 24px;
    font-weight: 500;
}

/* ============================================
   KART CONTAINER — MOBİLDE KESİN 3 KART YAN YANA
   ============================================ */
.ilan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0;
}

@media (min-width: 1200px) {
    .ilan-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .ilan-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .ilan-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
    }
}

/* ============================================
   İLAN KARTI — SEKSİ & DAHA ÇOK DİKKAT ÇEKİCİ
   ============================================ */
.ilan-card {
    background: #0d0d0d;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 16, 122, 0.15);
    cursor: pointer;
}

.ilan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 16, 122, 0.4);
    border-color: rgba(255, 16, 122, 0.8);
}

/* Header — daha premium */
.ilan-card-header {
    padding: 13px 16px 9px;
    text-align: center;
    background: rgba(15, 18, 24, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.ilan-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.ilan-card-title a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   RESİM ALANI — FOTOĞRAF TAM KUTUYA SIĞIYOR
   ============================================ */
.ilan-card-media {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0c0f;
}

.ilan-card-img-wrap {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 118%;
    overflow: hidden;
}

.ilan-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) contrast(1.08);
}

/* Görsel olmayan kartlar için placeholder */
.ilan-card-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1a1f27, #0f1318);
    color: rgba(255, 16, 122, 0.35);
    font-size: 3rem;
}

.ilan-card:hover .ilan-card-img {
    transform: scale(1.08);
}

/* Gradient overlay kaldırıldı — görsel net görünsün */
.ilan-card-media::after {
    display: none;
}

/* Ana sayfa filigram kaldırıldı — detayda lightbox'ta gösterilecek */
.ilan-card-img-wrap::before {
    display: none;
}

/* ============================================
   SADECE VIP — DAHA ŞIK VE ÇEKİCİ TASARIM
   ============================================ */
.card-badges-container {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
}

.vip-badge {
    background: linear-gradient(90deg, #FF107A, #9D00FF, #FF107A);
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 16, 122, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.ilan-card:hover .vip-badge {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 16, 122, 0.85);
}

/* Diğer işaretler (kendi yeri var / eve geliyor) tamamen kaldırıldı */

/* Verified ribbon (opsiyonel, istersen kaldırabilirsin) */
.verified-badge-wrap {
    position: absolute;
    bottom: -9px;
    right: -23px;
    transform: rotate(-40deg);
    background: linear-gradient(90deg, #6ab04c, #8ed96b);
    color: #fff;
    padding: 18px 38px 6px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(106, 176, 76, 0.4);
    border-radius: 4px;
}

.verified-badge {
    font-size: 0.52rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

/* Footer */
.ilan-card-footer {
    padding: 13px 14px 13px;
    text-align: center;
    background: rgba(15, 18, 24, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.ilan-card-location-text {
    font-size: 0.87rem;
    color: var(--gray-300);
    margin-bottom: 0;
    font-weight: 600;
}

.ilan-card-location-text b {
    color: var(--accent);
}

.ilan-card-actions {
    display: flex;
    gap: 8px;
}

.ilan-card-actions .btn {
    flex: 1;
    padding: 9px 8px;
    font-size: 0.77rem;
    border-radius: 9px;
    font-weight: 600;
}

/* MOBİL KOMPAKT */
@media (max-width: 576px) {
    .ilan-card {
        border-radius: 18px;
    }

    .ilan-card-header {
        padding: 10px 12px 7px;
    }

    .ilan-card-title {
        font-size: 0.85rem;
    }

    .ilan-card-footer {
        padding: 11px 11px;
        background: rgba(15, 18, 24, 0.96);
    }

    .ilan-card-location-text {
        font-size: 0.75rem;
    }

    .ilan-card-actions .btn {
        padding: 8px 6px;
        font-size: 0.72rem;
    }

    .vip-badge {
        padding: 5px 14px;
        font-size: 0.65rem;
        min-width: 52px;
        height: 26px;
    }
}

/* ============================================
   BOŞ KART (PLACEHOLDER) — DAHA ŞIK VE İKNA EDİCİ
   ============================================ */
.ilan-card-placeholder {
    border: none;
    background: linear-gradient(145deg, #0f1218, #1c222e);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ilan-card-placeholder .placeholder-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding-top: 118%;
    background: linear-gradient(145deg, #1c222e, #0f1218);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 0 80px rgba(255, 16, 122, 0.25);
}

.ilan-card-placeholder .placeholder-link:hover {
    transform: scale(1.04);
    box-shadow: 0 0 40px rgba(255, 16, 122, 0.6);
}

.ilan-card-placeholder .placeholder-link::after {
    content: 'PREMIUM İLAN İÇİN YER AÇIK';
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: #f8b5d3;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    white-space: nowrap;
    z-index: 6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

/* Placeholder da VIP gösteriyor (ikna edici olsun diye) */
.ilan-card-placeholder .card-badges-container {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
}

.ilan-card-placeholder .vip-badge {
    background: linear-gradient(90deg, #FF107A, #f8e08a, #FF107A);
    color: #111418;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 18px rgba(255, 16, 122, 0.7);
    min-width: 58px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   İLAN DETAY SAYFASI — PREMIUM REDESIGN v1
   (Kusursuz Yerleşim + Profesyonel Ölçeklendirme)
   ============================================ */

.detail-page {
    padding: 40px 0 80px;
    max-width: 1480px;
    margin: 0 auto;
}

/* Ana Container — Masaüstünde Yan Yana, Mobilde Alt Alta */
.detail-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 992px) {
    .detail-container {
        grid-template-columns: 7fr 5fr;
        /* Galeri %58 - Detay %42 (en profesyonel oran) */
        gap: 48px;
    }
}

/* ============================================
   GALERİ — Daha Büyük ve Kusursuz
   ============================================ */
.gallery-wrapper {
    background: rgba(17, 20, 24, 0.95);
    border-radius: 24px;
    padding: 16px;
    border: 1px solid rgba(255, 16, 122, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 24px;
}

.gallery-main {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #0a0c0f;
    cursor: pointer;
    aspect-ratio: 4 / 5;
    /* Kartlarla aynı şık oran */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Tam dolu ve profesyonel */
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-main:hover img {
    transform: scale(1.04);
}

/* Thumbnail’ler — Daha zarif ve yatay scroll */
.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #FF107A transparent;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 5px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: #FF107A;
    border-radius: 10px;
}

.gallery-thumb {
    width: 78px;
    height: 78px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: #FF107A;
    transform: scale(1.08);
    box-shadow: 0 0 0 4px rgba(255, 16, 122, 0.3);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   DETAY BİLGİLERİ — Temiz ve Premium
   ============================================ */
.detail-content {
    background: linear-gradient(145deg, #111418, #1a1f27);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 16, 122, 0.12);
    height: 100%;
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.detail-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c8c8c8;
    font-size: 1.05rem;
    margin-bottom: 22px;
    font-weight: 500;
}

.detail-location i {
    color: #FF107A;
    font-size: 1.25rem;
}

.detail-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-success {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

.badge-warning {
    background: rgba(255, 16, 122, 0.15);
    color: #FF107A;
}

.badge-vip {
    background: linear-gradient(90deg, #FF107A, #f8e08a);
    color: #111418;
    box-shadow: 0 4px 15px rgba(255, 16, 122, 0.5);
    padding: 9px 20px;
}

/* Açıklama kutusu — Daha okunaklı ve şık */
.detail-description {
    color: #d1d1d1;
    line-height: 1.85;
    font-size: 1.02rem;
    white-space: pre-line;
    padding: 28px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 18px;
    border-left: 5px solid #FF107A;
    margin-bottom: 32px;
}

/* Butonlar — Daha büyük ve dikkat çekici */
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.detail-actions .btn {
    flex: 1 1 260px;
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-share {
    background: rgba(255, 255, 255, 0.06);
    color: #c8c8c8;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.95rem;
    border-radius: 14px;
}

.btn-share:hover {
    background: #FF107A;
    color: #111418;
    transform: translateY(-3px);
}

/* ============================================
   MOBİL UYUMLULUK — Kusursuz Ölçeklendirme
   ============================================ */
@media (max-width: 991px) {
    .detail-container {
        gap: 32px;
    }

    .gallery-wrapper {
        position: static;
    }
}

@media (max-width: 576px) {
    .detail-page {
        padding: 20px 0 50px;
    }

    .detail-container {
        gap: 24px;
    }

    .gallery-wrapper {
        padding: 12px;
        border-radius: 20px;
    }

    .gallery-main {
        aspect-ratio: 4 / 5;
        border-radius: 16px;
    }

    .gallery-thumb {
        width: 64px;
        height: 64px;
    }

    .detail-content {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .detail-title {
        font-size: 1.75rem;
    }

    .detail-description {
        padding: 20px;
        font-size: 0.97rem;
    }

    .detail-actions .btn {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .detail-actions {
        gap: 10px;
    }
}

/* Placeholder / Boş Galeri Durumu (opsiyonel) */
.gallery-main:empty::after {
    content: 'Fotoğraf Yükleniyor...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ============================================
   İLAN DETAY SAYFASI — PREMIUM REDESIGN v3
   (Yazılar görselin ÜSTÜNE GELMİYOR + Görsel net görünüyor + Lightbox kapanıyor)
   ============================================ */

.detail-page {
    padding: 35px 0 70px;
    max-width: 1480px;
    margin: 0 auto;
}

.container {
    max-width: 1480px;
    padding: 0 20px;
}

.premium-layout-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

@media (min-width: 992px) {
    .premium-layout-2col {
        grid-template-columns: 5fr 7fr;
        gap: 44px;
    }
}

/* ====================== GALERİ — TEMİZ & NET GÖRSEL ====================== */
.premium-gallery-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.gallery-wrapper {
    background: rgba(17, 20, 24, 0.95);
    border-radius: 24px;
    padding: 14px;
    border: 1px solid rgba(255, 16, 122, 0.15);
}

.gallery-main {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #0a0c0f;
    cursor: pointer;
    aspect-ratio: 4 / 5;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6);
    max-height: 620px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #0a0c0f;
}

.gallery-main:hover img {
    transform: scale(1.04);
}

/* === YAZILAR ARTIK GÖRSEL ÜZERİNDE DEĞİL === */
.glass-header-overlay {
    display: none !important;
    /* ← Tamamen kaldırıldı (görsel net görünecek) */
}

/* ====================== BAŞLIK VE KONUM ŞİMDİ GALERİNİN ALTINDA ====================== */
.premium-main-col .gallery-wrapper:after {
    content: '';
    display: block;
    height: 1px;
    background: rgba(255, 16, 122, 0.2);
    margin: 18px 0 14px;
}

/* Galerinin hemen altına başlık ve location taşıyoruz (CSS ile) */
.gallery-wrapper {
    position: relative;
}

.gallery-wrapper .header-title,
.gallery-wrapper .header-location,
.gallery-wrapper .badges-row {
    display: block !important;
    position: static;
    padding: 0 8px;
    background: transparent;
    margin-top: 12px;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 6px;
}

.header-location {
    font-size: 1.1rem;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badges-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

/* Thumbnail’ler */
.gallery-thumbs {
    display: flex;
    gap: 9px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.gallery-thumb {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: #FF107A;
    transform: scale(1.08);
}

/* ====================== LIGHTBOX — BÜYÜTÜNCE KAPANIYOR ====================== */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: zoom-out;
}

#lightbox.active {
    display: flex;
}

#lightboxImg {
    max-width: 100%;
    max-height: 92vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 100000;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: #FF107A;
    color: #111;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    z-index: 100000;
}

.lightbox-nav.left {
    left: 30px;
}

.lightbox-nav.right {
    right: 30px;
}

/* ====================== DİĞER KISIMLAR (değişmedi) ====================== */
.premium-card {
    background: linear-gradient(145deg, #111418, #1a1f27);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 16, 122, 0.12);
}

.sticky-contact-card {
    position: sticky;
    top: 30px;
}

/* MOBİL */
@media (max-width: 576px) {
    .gallery-main {
        max-height: 460px;
    }

    .header-title {
        font-size: 1.55rem;
    }

    .gallery-wrapper {
        padding: 10px;
        border-radius: 20px;
    }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary);
    color: var(--gray-400);
    padding: 50px 0 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray-400);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   Ä°LETÄ°ÅÄ°M / Ä°LAN VER MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--primary-light);
    border: 1px solid rgba(255, 16, 122, 0.2);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.4s ease;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    background: var(--primary-light);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    z-index: 2;
}

.modal-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.modal-body {
    padding: 24px;
}

/* ============================================
   FORM STÄ°LLERÄ°
   ============================================ */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 6px;
}

.form-label .required {
    color: var(--red);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
    background: var(--primary-dark);
    color: var(--white);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 16, 122, 0.2);
}

.form-control::placeholder {
    color: var(--gray-500);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Upload Area */
.upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--accent);
    background: rgba(255, 16, 122, 0.05);
}

.upload-area i {
    font-size: 2rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.upload-area p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.upload-area .small {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.upload-previews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.upload-preview {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--gray-200);
}

.upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-preview .remove-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(239, 68, 68, 0.9);
    color: var(--white);
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 16, 122, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--accent-hover), #7e22ce);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 16, 122, 0.5);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Success/Error MesajlarÄ± */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeSlideDown 0.3s ease;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green-dark);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ============================================
   SAYFALAMA
   ============================================ */
.pagination {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-decoration: none;
}

.page-item .page-link:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.page-item.active .page-link {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    font-weight: 700;
}

.page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ============================================
   Ä°L LÄ°NKLERÄ°
   ============================================ */
.iller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 30px;
}

.il-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition);
}

.il-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.il-link .count {
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: auto;
}

/* ============================================
   404 SAYFASI
   ============================================ */
.page-404 {
    text-align: center;
    padding: 80px 20px;
}

.page-404 h1 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 16px;
}

.page-404 p {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 30px;
}

.page-404 .btn-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.page-404 .btn-home:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* ============================================
   LOADING / SPINNER
   ============================================ */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.page-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.page-loader .spinner {
    width: 40px;
    height: 40px;
    border-width: 3px;
}

/* ============================================
   SKELETON LOADING
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ============================================
   SAYFA BAÅLIKLARI (Ä°l/Ä°lÃ§e sayfalarÄ±)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 36px 0;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.page-header h2 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-400);
}

.page-header .ilan-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 8px;
}

/* Ä°lÃ§e linkleri */
.ilce-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.ilce-link {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--gray-300);
    transition: var(--transition);
}

.ilce-link:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.ilce-link.active {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.3rem;
    }
}

/* ============================================
   BENZERSÄ°Z Ä°LANLAR BÃ–LÃœMÃœ
   ============================================ */
.related-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.related-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

/* ============================================
   COPY TO CLIPBOARD
   ============================================ */
.copy-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 10000;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   ANÄ°MASYONLAR
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Genel animasyonlu giriÅŸ */
.fade-in {
    animation: fadeSlideDown 0.4s ease both;
}

.fade-in:nth-child(2) {
    animation-delay: 0.05s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.15s;
}

.fade-in:nth-child(5) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(6) {
    animation-delay: 0.25s;
}

.fade-in:nth-child(7) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(8) {
    animation-delay: 0.35s;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 24px;
}

.mb-4 {
    margin-bottom: 24px;
}

.mb-3 {
    margin-bottom: 16px;
}

.py-5 {
    padding-top: 48px;
    padding-bottom: 48px;
}

/* İlanlar grid — 6 sütun (Desktop) / 3 sütun (Mobil) */
.ilanlar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

@media (max-width: 1400px) {
    .ilanlar-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
}

@media (max-width: 1200px) {
    .ilanlar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .ilanlar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .container {
        padding: 0 6px;
    }
}

@media (max-width: 480px) {
    .ilanlar-grid {
        gap: 4px;
    }
}

/* No results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.no-results i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 16px;
    display: block;
}

.no-results h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
}

/* ============================================
   DETAY SAYFASI RESPONSIVE LAYOUT
   ============================================ */
.detail-layout-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    gap: 24px;
    margin-bottom: 40px;
}

.detail-main-content {
    min-width: 0;
}

.detail-sidebar {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    color: var(--white);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-item {
    display: flex;
    gap: 12px;
    background: var(--primary-light);
    padding: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.sidebar-item:hover {
    transform: translateX(4px);
    border-color: var(--accent);
    background: var(--gray-50);
}

.sidebar-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.sidebar-item .item-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.2;
}

.sidebar-item .item-info span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Alt ï¿½lanlar Bï¿½lï¿½mï¿½ */
.related-listings-bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1200px) {
    .detail-layout-wrapper {
        grid-template-columns: 200px 1fr 200px;
    }
}

@media (max-width: 992px) {
    .detail-layout-wrapper {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .related-listings-bottom .section-title {
        font-size: 1.2rem;
    }
}

/* ============================================
   PREMIUM DETAY SAYFASI GÜNCELLEMELERİ
   (Consolidated into main styles above)
   ============================================ */

/* DETAY SAYFASI HEADER INFO & BADGES */
.detail-header-info {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-badges .badge {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

/* DETAY SAYFASI 2-KOLON LAYOUT (Eski - Uyumluluk) */
.detail-layout-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    margin-bottom: 60px;
}

.detail-main-col {
    min-width: 0;
}

.sidebar-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.sidebar-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 1px solid transparent;
}

.sidebar-item:hover {
    background: rgba(255, 16, 122, 0.08);
    border-color: rgba(255, 16, 122, 0.2);
    transform: translateX(4px);
}

.sidebar-item .item-img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-item .item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--white);
    margin-top: 0;
    line-height: 1.3;
}

.sidebar-item .item-loc {
    font-size: 0.78rem;
    color: var(--gray-400);
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 4rem;
    color: var(--gray-600);
}

@media (max-width: 992px) {
    .detail-layout-container {
        grid-template-columns: 1fr;
    }

    .sidebar-box {
        position: static;
    }
}

/* ============================================
   PREMIUM DETAY LAYOUT
   ============================================ */
.detail-layout-3col {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1500px;
    /* Genişletildi (+100px) */
    margin-left: auto;
    margin-right: auto;
}

.detail-side-col {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
}

.detail-side-col:empty {
    display: none;
}

.detail-main-col {
    flex: 1;
    min-width: 0;
    max-width: 1500px;
    /* Genişletildi (+100px) */
}

.side-box {
    background: rgba(255, 255, 255, 0.025);
    border-radius: var(--radius-lg);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.side-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 16, 122, 0.2);
    color: var(--accent);
}

.side-item {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
}

.side-item:hover {
    background: rgba(255, 16, 122, 0.08);
    border-color: rgba(255, 16, 122, 0.2);
    transform: translateX(3px);
}

.side-item .item-img {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.side-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-item .item-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--white);
    line-height: 1.3;
}

.side-item .item-loc {
    font-size: 0.72rem;
    color: var(--gray-400);
}

.related-bottom {
    margin-top: 50px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.related-bottom .section-title {
    margin-bottom: 24px;
    text-align: left;
    font-size: 1.4rem;
}

/* Related bottom grid (row-cols equivalent) */
.related-bottom .row {
    display: grid;
    gap: 16px;
}

.related-bottom .row-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.related-bottom .row-cols-md-4 {
    grid-template-columns: repeat(2, 1fr);
}

.related-bottom .g-3 {
    gap: 16px;
}

@media (min-width: 768px) {
    .related-bottom .row-cols-md-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .detail-layout-3col {
        grid-template-columns: 200px 1fr;
        gap: 20px;
    }

    .col-right {
        display: none;
    }
}

@media (max-width: 992px) {
    .detail-layout-3col {
        grid-template-columns: 1fr;
    }

    .detail-side-col {
        position: static;
        order: 2;
    }

    .col-left {
        display: none;
    }
}



/* Swipe Indicator Hint */
.gallery-main::after {
    content: '\F632';
    font-family: 'bootstrap-icons';
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    opacity: 0.6;
    pointer-events: none;
    animation: swipeHint 2s infinite;
    display: none;
}

@media (max-width: 768px) {
    .gallery-main::after {
        display: flex;
    }
}

@keyframes swipeHint {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    30% {
        opacity: 0.6;
    }

    70% {
        transform: translateX(-15px);
        opacity: 0.6;
    }

    100% {
        transform: translateX(-15px);
        opacity: 0;
    }
}

/* Gallery Navigation Buttons */
.gallery-main {
    position: relative;
}

.gallery-nav-btns {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    z-index: 5;
}

.g-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.g-nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

/* Gallery Swipe Hint Label */
.gallery-swipe-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
    animation: pulseHint 2s infinite;
}

@keyframes pulseHint {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
}

@media (min-width: 992px) {
    .gallery-swipe-hint {
        display: none;
        /* Hide hint on desktop */
    }
}

/* ============================================
   DİL SEÇİCİ (LANG SWITCHER)
   ============================================ */
.lang-switcher {
    position: relative;
    margin-right: 15px;
    z-index: 1010;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.lang-current img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-current i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 140px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.lang-switcher.active .lang-dropdown {
    display: flex;
    animation: fadeSlideDown 0.2s ease;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
    background: rgba(255, 16, 122, 0.1);
    color: var(--accent);
}

.lang-dropdown a img {
    width: 20px;
    border-radius: 2px;
}

/* ============================================
   RTL SUPPORT (ARABIC)
   ============================================ */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] body {
    direction: rtl;
}

[dir="rtl"] .header-main>.container,
[dir="rtl"] .footer-grid,
[dir="rtl"] .detail-grid,
[dir="rtl"] .search-bar,
[dir="rtl"] .ilan-card-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .ms-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

[dir="rtl"] .me-2 {
    margin-right: 0 !important;
    margin-left: 0.5rem !important;
}

[dir="rtl"] .lang-switcher {
    margin-right: 0 !important;
    margin-left: 15px !important;
}

[dir="rtl"] .lang-dropdown {
    right: auto !important;
    left: 0 !important;
}

[dir="rtl"] .bi-chevron-down,
[dir="rtl"] .bi-chevron-right,
[dir="rtl"] i[class*="chevron"] {
    transform: scaleX(-1);
}

[dir="rtl"] .btn-ilan-ver i {
    margin-right: 0 !important;
    margin-left: 8px !important;
}

/* ============================================
   ARAMA TOGGLE BUTONU
   ============================================ */
.search-toggle-btn {
    display: none;
}

.search-close-btn {
    display: none;
}

@media (max-width: 992px) {
    .search-toggle-btn {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--white);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
        font-size: 1rem;
        flex-shrink: 0;
    }

    .search-toggle-btn:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--primary-dark);
        transform: scale(1.05);
    }

    .search-wrapper {
        display: none !important;
        /* gizli başlasın */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 12px 16px;
        background: rgba(7, 5, 10, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 16, 122, 0.15);
        z-index: 1001;
        animation: fadeSlideDown 0.3s ease;
        max-width: none;
        flex-basis: auto;
        margin-top: 0;
    }

    .search-wrapper.active {
        display: block !important;
    }

    .search-close-btn {
        display: block;
        background: none;
        border: none;
        color: var(--gray-400);
        font-size: 1.1rem;
        cursor: pointer;
        padding: 4px;
        transition: var(--transition);
        flex-shrink: 0;
    }

    .search-close-btn:hover {
        color: var(--red);
    }
}

.search-wrapper form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   PLACEHOLDER KART (Boş Slot)
   ============================================ */
.ilan-card-placeholder {
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 16, 122, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    cursor: pointer;
    transition: var(--transition);
}

.ilan-card-placeholder:hover {
    border-color: var(--accent);
    background: rgba(255, 16, 122, 0.05);
    transform: translateY(-2px);
}

.placeholder-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px 20px;
    text-decoration: none;
    color: inherit;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.placeholder-content i {
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.5;
    transition: var(--transition);
}

.ilan-card-placeholder:hover .placeholder-content i {
    opacity: 1;
    transform: scale(1.1);
}

.placeholder-content span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-400);
    line-height: 1.4;
}

.ilan-card-placeholder:hover .placeholder-content span {
    color: var(--accent);
}

/* ============================================
   PROFİL BİLGİLERİ (Kart İçi)
   ============================================ */
.ilan-card-profile {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.profile-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    background: rgba(255, 16, 122, 0.08);
    border: 1px solid rgba(255, 16, 122, 0.12);
    border-radius: 50px;
    font-size: 0.68rem;
    color: var(--gray-300);
    white-space: nowrap;
}

.profile-tag i {
    font-size: 0.6rem;
    color: var(--accent);
}

/* ============================================
   KAPORA DOLANDIRICILIK UYARISI
   ============================================ */
.fraud-warning {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 30px;
    padding: 20px 24px;
    background: rgba(244, 63, 94, 0.08);
    border: 1px solid rgba(244, 63, 94, 0.25);
    border-left: 4px solid var(--red);
    border-radius: var(--radius-md);
    animation: fadeIn 0.5s ease;
}

.fraud-warning-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(244, 63, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fraud-warning-icon i {
    font-size: 1.3rem;
    color: var(--red);
}

.fraud-warning-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.fraud-warning-content p {
    font-size: 0.85rem;
    color: var(--gray-300);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   FİLTRE RANGE INPUT
   ============================================ */
.filter-range-group {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
}

.filter-range-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    white-space: nowrap;
    margin-right: 4px;
}

.filter-range-input {
    width: 55px;
    padding: 5px 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-size: 0.8rem;
    font-family: inherit;
    outline: none;
    text-align: center;
}

.filter-range-input:focus {
    border-color: var(--accent);
}

.filter-range-input::placeholder {
    color: var(--gray-500);
}

.filter-range-sep {
    color: var(--gray-500);
    font-size: 0.8rem;
}

.filter-select-sm {
    min-width: 120px !important;
}

/* ============================================
   FORM SECTION DIVIDER
   ============================================ */
.form-section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 16px;
}

.form-section-divider::before,
.form-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.form-section-divider span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

/* ============================================
   DETAY SAYFA PROFİL BİLGİLERİ
   ============================================ */
.detail-profile-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.profile-info-item:hover {
    background: rgba(255, 16, 122, 0.08);
    border-color: rgba(255, 16, 122, 0.2);
}

.profile-info-item i {
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.info-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    display: block;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

/* Gallery portrait format for detail page */
.gallery-main {
    aspect-ratio: auto !important;
}

.gallery-placeholder {
    aspect-ratio: auto !important;
}

/* ============================================
   ADMIN FORM HINT
   ============================================ */
.form-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 4px;
    line-height: 1.4;
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .ilan-card-profile {
        gap: 3px;
    }

    .profile-tag {
        font-size: 0.6rem;
        padding: 1px 5px;
    }

    .fraud-warning {
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
    }

    .detail-profile-info {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 12px;
    }

    .filter-range-group {
        padding: 3px 6px;
    }

    .filter-range-input {
        width: 42px;
        padding: 4px 3px;
        font-size: 0.75rem;
    }

    .placeholder-content i {
        font-size: 1.8rem;
    }

    .placeholder-content span {
        font-size: 0.75rem;
    }

    .ilan-card-placeholder {
        min-height: 200px;
    }

    .search-toggle-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* ============================================
   18+ UYARI MODALI
   ============================================ */
.age-warning-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.4s ease-out;
}

.age-warning-overlay.active {
    display: flex;
}

.age-warning-content {
    background: var(--primary-dark);
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(244, 63, 94, 0.25);
    animation: slideUp 0.5s ease-out;
}

.age-warning-header {
    padding: 25px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(244, 63, 94, 0.05);
}

.age-warning-header .warning-icon {
    font-size: 3rem;
    color: var(--red);
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(244, 63, 94, 0.5));
}

.age-warning-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    margin: 0;
}

.age-warning-body {
    padding: 30px;
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.7;
}

.age-warning-body p {
    margin-bottom: 15px;
}

.age-warning-list-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 25px;
}

.age-warning-list-box p {
    color: var(--white);
    margin-bottom: 12px;
}

.age-warning-list-box ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.age-warning-list-box ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.age-warning-list-box ul li::before {
    content: '\F26A';
    /* bi-check */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    font-size: 1.1rem;
}

.age-warning-footer {
    padding: 24px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-age-exit {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--gray-500);
    color: var(--gray-300);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-age-exit:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--gray-400);
}

.btn-age-enter {
    padding: 12px 32px;
    background: var(--red);
    border: none;
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
}

.btn-age-enter:hover {
    background: #e11d48;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.6);
}

@media (max-width: 576px) {
    .age-warning-header {
        padding: 20px;
    }

    .age-warning-header h2 {
        font-size: 1.5rem;
    }

    .age-warning-body {
        padding: 20px;
        font-size: 0.9rem;
    }

    .age-warning-footer {
        padding: 20px;
        flex-direction: column-reverse;
    }

    .btn-age-exit,
    .btn-age-enter {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   V3 DETAY SAYFASI ÖZEL TASARIM 
   ============================================ */
.mobile-only-header {
    display: none;
    margin-bottom: 16px;
}

.desktop-only-header {
    display: block;
    margin-bottom: 24px;
}

/* Desktop: Gallery & Info Layout */
.main-content-split {
    display: flex;
    flex-wrap: wrap;
    /* Sıkıştığı an alta geçer, ezilmez */
    gap: 30px;
    align-items: flex-start;
}

.main-gallery-side {
    width: 50%;
    min-width: 400px;
    /* Çok daralmasını engelle */
    max-width: 700px;
    /* +50px Büyütüldü */
    flex-shrink: 0;
    position: sticky;
    top: 90px;
}

.main-info-side {
    flex: 1;
    min-width: 320px;
    /* Tablonun ezilmesini engelle */
    display: flex;
    flex-direction: column;
}

/* Profil Bilgi Tablosu */
.profile-info-container {
    padding: 0;
    margin-bottom: 24px;
}

.profile-info-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-info-table th {
    color: var(--gray-400);
    font-weight: 500;
}

.profile-info-table td {
    color: var(--white);
    font-weight: 600;
}

.profile-info-table th i {
    width: 22px;
    color: var(--accent);
    margin-right: 6px;
    text-align: center;
    font-size: 0.95rem;
}

/* Masaüstü Düzeni (Akıllı Kutu tasarımı) */
@media (min-width: 992px) {

    .profile-info-table,
    .profile-info-table tbody {
        display: block;
        width: 100%;
    }

    .profile-info-table tbody {
        column-width: 330px;
        /* Daha da genişletildi: Sıkışmayı %100 önler */
        column-gap: 20px;
    }

    .profile-info-table tr {
        display: flex;
        width: 100%;
        break-inside: avoid;
        page-break-inside: avoid;
        -webkit-column-break-inside: avoid;
        margin-bottom: 12px;
        background: rgba(255, 255, 255, 0.015);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: var(--transition);
        align-items: stretch;
    }

    .profile-info-table tr:hover {
        background: rgba(255, 16, 122, 0.06);
        border-color: rgba(255, 16, 122, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .profile-info-table th {
        width: 130px;
        /* Başlık alanı biraz kısıldı ki karşısındaki (değer) daha çok alan bulsun */
        flex-shrink: 0;
        background: rgba(0, 0, 0, 0.25);
        border-right: 1px solid rgba(255, 255, 255, 0.03);
        padding: 14px 12px;
        display: flex;
        align-items: center;
        border-bottom: none !important;
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .profile-info-table td {
        flex: 1;
        /* Kalan tüm devasa alanı alır */
        padding: 14px 14px;
        display: flex;
        align-items: center;
        border-bottom: none !important;
        font-size: 0.95rem;
        /* Yazılar biraz daha okunaklı */
        word-break: break-word;
        /* İç içe girmeyi önler */
    }
}

/* Mobil Düzeni (Standart tablo akışı) */
@media (max-width: 991px) {
    .profile-info-container {
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .profile-info-table th,
    .profile-info-table td {
        padding: 12px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        text-align: left;
        font-size: 0.85rem;
    }

    .profile-info-table th {
        width: 44%;
        background: rgba(0, 0, 0, 0.1);
    }

    .profile-info-table td {
        width: 56%;
    }

    .profile-info-table tr:last-child th,
    .profile-info-table tr:last-child td {
        border-bottom: none;
    }

    .profile-info-table tr:hover {
        background: rgba(255, 16, 122, 0.04);
    }
}

/* Mobil Uyum (Responsive) */
@media (max-width: 991px) {
    .main-content-split {
        flex-direction: column;
        gap: 20px;
    }

    .main-gallery-side {
        width: 100%;
        position: static;
    }

    .main-info-side {
        width: 100%;
    }

    .mobile-only-header {
        display: block;
    }

    .desktop-only-header {
        display: none;
    }

    .profile-info-table th,
    .profile-info-table td {
        padding: 11px 14px;
        font-size: 0.85rem;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 16, 122, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 16, 122, 0.6);
}

.back-to-top i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .back-to-top i {
        font-size: 1.1rem;
    }
}

/* ============================================
   V3 - Çoklu İlçe Seçimi (Checkbox Grid)
   ============================================ */
.ilce-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--gray-700);
    max-height: 250px;
    overflow-y: auto;
    margin-top: 10px;
}

.ilce-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-800);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    user-select: none;
}

.ilce-checkbox-item:hover {
    background: var(--gray-700);
    border-color: var(--accent);
}

.ilce-checkbox-item input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.ilce-checkbox-item span {
    font-size: 0.85rem;
    color: var(--gray-200);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ilce-checkbox-item.active {
    background: rgba(245, 158, 11, 0.15);
    /* primary-rgb equivalent */
    border-color: var(--accent);
}

.ilce-checkbox-item.active span {
    color: var(--white);
    font-weight: 600;
}

/* Scrollbar styling */
.ilce-checkbox-grid::-webkit-scrollbar {
    width: 6px;
}

.ilce-checkbox-grid::-webkit-scrollbar-track {
    background: transparent;
}

.ilce-checkbox-grid::-webkit-scrollbar-thumb {
    background: var(--gray-600);
    border-radius: 10px;
}

.ilce-checkbox-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   İLAN VER SAYFASI STİLLERİ (PREMIUM)
   ============================================ */
.post-ad-page {
    background: var(--primary);
    color: var(--gray-300);
}

.post-ad-hero {
    padding: 100px 0 60px;
    background: radial-gradient(circle at top right, rgba(255, 16, 122, 0.15) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(255, 16, 122, 0.08) 0%, transparent 30%);
    text-align: center;
    border-bottom: 1px solid rgba(255, 16, 122, 0.1);
}

.post-ad-hero .badge-premium {
    background: var(--accent);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: inline-block;
}

.post-ad-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, var(--accent), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.post-ad-hero .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--gray-400);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features */
.post-ad-features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--gray-50);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 16, 122, 0.1);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 16, 122, 0.1);
    color: var(--accent);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 24px;
}

.feature-card h3 {
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Container */
.post-ad-form-section {
    padding: 40px 0 100px;
}

.form-container-box {
    background: #0F1318;
    border: 1px solid rgba(255, 16, 122, 0.2);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-xl);
    position: relative;
    /* overflow: hidden kaldırıldı çünkü custom select dropdown'ını kesiyordu */
}

.form-container-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent), var(--secondary));
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--accent);
    font-weight: 500;
}

.premium-form .form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.btn-xl {
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--primary);
    border: none;
    transition: var(--transition);
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

/* İLAN DETAY PREMİUM REDESIGN */
.detail-actions-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.btn-premium-action {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    color: #fff !important;
}

.btn-call-gold {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
}

.btn-whatsapp-green {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 20px rgba(18, 140, 126, 0.4);
}

.btn-premium-action:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.action-icon {
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.action-text {
    display: flex;
    flex-direction: column;
}

.action-text small {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

.action-text strong {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.fraud-warning-premium {
    background: rgba(255, 16, 122, 0.05);
    border: 1px solid rgba(255, 16, 122, 0.2);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.warning-header i {
    font-size: 1.2rem;
}

.fraud-warning-premium p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .post-ad-hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .form-container-box {
        padding: 30px 20px;
    }

    .premium-form .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .detail-actions-premium {
        grid-template-columns: 1fr;
    }

    .action-text strong {
        font-size: 1rem;
    }
}

/* ============================================
   HOUSE SILHOUETTE & PLACEHOLDER REDESIGN
   ============================================ */
.ilan-card-placeholder {
    height: 100%;
    min-height: 400px;
    background: rgba(255, 16, 122, 0.03);
    border: 2px dashed rgba(255, 16, 122, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ilan-card-placeholder:hover {
    background: rgba(255, 16, 122, 0.08);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.placeholder-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: var(--accent);
    text-align: center;
    padding: 20px;
}

.silhouette-icon {
    width: 120px;
    height: 120px;
    color: rgba(255, 16, 122, 0.6);
    transition: var(--transition);
}

.ilan-card-placeholder:hover .silhouette-icon {
    color: var(--accent);
    transform: scale(1.1);
}

.placeholder-info span {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 200px;
}

/* ============================================
   MOBILE HEADER TOGGLES
   ============================================ */
.filter-toggle-btn-mobile {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .filter-toggle-btn-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .filter-header-desktop {
        display: none !important;
    }

    .header-main {
        gap: 10px;
    }

    .search-toggle-btn {
        margin-left: auto;
    }
}

/* ============================================
   SEARCHABLE SELECT (CUSTOM)
   ============================================ */
.searchable-select-wrapper {
    position: relative;
    width: 100%;
}

.searchable-select-input {
    width: 100%;
    padding: 12px 15px !important;
    background: #0B0F14 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius-md);
    color: #fff !important;
    cursor: pointer;
}

.searchable-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    background: #161C24 !important;
    border: 1px solid rgba(255, 16, 122, 0.4) !important;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 99999;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.searchable-select-dropdown.active {
    display: block;
}

.searchable-select-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: var(--transition);
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.searchable-select-option:last-child {
    border-bottom: none;
}

.searchable-select-option:hover {
    background: rgba(255, 16, 122, 0.2) !important;
    color: var(--accent) !important;
}

.searchable-select-option.selected {
    background: var(--accent) !important;
    color: var(--primary) !important;
    font-weight: 700;
}

/* ============================================
   PREMIUM FORM ENHANCEMENTS
   ============================================ */
.premium-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.premium-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-300);
}

.premium-input,
.premium-select,
.premium-textarea {
    background: #0D1117;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: #fff;
    transition: var(--transition);
    width: 100%;
}

/* Native select dropdown option renkleri */
.premium-select option {
    background-color: #0D1117;
    color: #F5F5F5;
}

.premium-input:focus,
.premium-select:focus,
.premium-textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 16, 122, 0.05);
    outline: none;
    box-shadow: 0 0 15px var(--accent-glow);
}

.checkbox-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.ilce-checkbox-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ilce-checkbox-item:hover {
    background: rgba(255, 16, 122, 0.05);
    border-color: rgba(255, 16, 122, 0.3);
}

.ilce-checkbox-item.active {
    background: var(--accent) !important;
    color: var(--primary) !important;
    border-color: var(--accent) !important;
    font-weight: 700;
}

.ilce-checkbox-item input {
    display: none;
}

/* ============================================
   PREMIUM HOMEPAGE HERO & LAYOUT
   ============================================ */
.premium-hero-box {
    background: radial-gradient(circle at top right, rgba(255, 16, 122, 0.15) 0%, transparent 60%), #0F1318;
    border: 1px solid rgba(255, 16, 122, 0.2);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-hero-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--accent), var(--secondary));
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 16, 122, 0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, var(--accent), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.section-header-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.section-header-line h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.section-header-line .line-divider {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 16, 122, 0.3), transparent);
}

@media (max-width: 768px) {
    .premium-hero-box {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

/* ============================================
   PREMIUM AD DETAIL 2-COLUMN LAYOUT
   ============================================ */
.premium-layout-2col {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    margin-top: 20px;
    align-items: start;
}

.premium-card {
    background: #0F1318;
    border: 1px solid rgba(255, 16, 122, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-title-gold {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 16, 122, 0.1);
    padding-bottom: 12px;
}

/* Glassmorphism Gallery Overlay */
.premium-gallery-card {
    background: #0F1318;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 16, 122, 0.15);
}

.premium-gallery-card .gallery-main {
    position: relative;
    aspect-ratio: auto;
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
    min-height: 250px;
    max-height: 50vh;
}

@media (min-width: 992px) {
    .premium-gallery-card .gallery-main {
        min-height: 350px;
        max-height: 60vh;
    }
}

.detail-page {
    overflow-x: hidden;
    width: 100%;
}


.glass-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6) 60%, transparent);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
    z-index: 5;
}

.glass-header-overlay .header-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.glass-header-overlay .header-location {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 500;
}

.glass-header-overlay .badges-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

/* Sticky Contact Sidebar */
.premium-sidebar-col {
    position: sticky;
    top: 90px;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
}

.layout-vertical {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn-share-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    font-weight: 600;
}

.btn-share-premium:hover {
    background: rgba(255, 16, 122, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.side-item-premium {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    padding: 10px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.side-item-premium:hover {
    background: rgba(255, 16, 122, 0.05);
    border-color: rgba(255, 16, 122, 0.2);
    transform: translateY(-2px);
}

.side-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

@media (max-width: 991px) {
    .premium-layout-2col {
        grid-template-columns: 1fr;
    }

    .glass-header-overlay .header-title {
        font-size: 1.8rem;
    }
}

/* ============================================
   FOOTER — PROFESYONEL YENİDEN TASARIM
   ============================================ */

/* ─── CTA Banner ──────────────────────────────── */
.footer-cta-banner {
    background: linear-gradient(135deg, rgba(255, 16, 122, 0.18) 0%, rgba(138, 106, 47, 0.12) 100%);
    border-top: 1px solid rgba(255, 16, 122, 0.25);
    border-bottom: 1px solid rgba(255, 16, 122, 0.1);
    padding: 28px 0;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-cta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-cta-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
}

.footer-cta-text h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 13px 28px;
    border-radius: 50px;
    white-space: nowrap;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 16, 122, 0.35);
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 16, 122, 0.5);
    color: var(--primary-dark);
}

/* ─── Ana Footer ──────────────────────────────── */
.footer-main {
    background: #070A0D;
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
}

/* ─── Footer Brand ────────────────────────────── */
.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 16, 122, 0.08);
    border: 1px solid rgba(255, 16, 122, 0.2);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.footer-badge i {
    font-size: 0.8rem;
}

/* ─── Footer Kolon Başlıkları ─────────────────── */
.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-col-title i {
    font-size: 0.9rem;
}

/* ─── Şehir Listesi ───────────────────────────── */
.footer-city-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}

.footer-city-list li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-500);
    font-size: 0.83rem;
    padding: 5px 0;
    transition: var(--transition);
    text-decoration: none;
}

.footer-city-list li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-city-list li a i {
    font-size: 0.65rem;
    color: var(--accent);
    opacity: 0.6;
    transition: var(--transition);
}

.footer-city-list li a:hover i {
    opacity: 1;
}

.city-escort-label {
    font-size: 0.7rem;
    color: rgba(255, 16, 122, 0.5);
    margin-left: auto;
    display: none;
}

.footer-city-list li a:hover .city-escort-label {
    display: block;
}

/* ─── Genel Link Listesi ──────────────────────── */
.footer-links-list {
    list-style: none;
    margin-bottom: 24px;
}

.footer-links-list li {
    margin-bottom: 4px;
}

.footer-links-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 0.85rem;
    padding: 6px 0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-list li a i {
    width: 16px;
    color: var(--accent);
    opacity: 0.6;
    font-size: 0.85rem;
}

.footer-links-list li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-links-list li a:hover i {
    opacity: 1;
}

/* ─── Footer Dil Seçici ───────────────────────── */
.footer-lang-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}

.footer-lang-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.footer-lang-links {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.footer-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-500);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-lang-btn img {
    width: 16px;
    height: 11px;
    object-fit: cover;
    border-radius: 2px;
}

.footer-lang-btn:hover,
.footer-lang-btn.active {
    background: rgba(255, 16, 122, 0.12);
    border-color: rgba(255, 16, 122, 0.3);
    color: var(--accent);
}

/* ─── Yasal Uyarı Şeridi ──────────────────────── */
.footer-disclaimer-bar {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 18px 0;
}

.footer-disclaimer-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-disclaimer-icon {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.footer-disclaimer-inner p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
}

.footer-disclaimer-inner strong {
    color: rgba(255, 255, 255, 0.4);
}

/* ─── Alt Bar ─────────────────────────────────── */
.footer-bottom-bar {
    background: #040608;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-copyright strong {
    color: var(--accent);
}

.footer-18plus {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 16, 122, 0.5);
}

/* ─── Footer Responsive ───────────────────────── */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-city-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-city-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-inner {
        justify-content: center;
        text-align: center;
    }

    .footer-main {
        padding: 40px 0 28px;
    }
}


/* ============================================
   HOMEPAGE — PROFESYONEL GELİŞTİRMELER
   ============================================ */

/* ─── Genel Container ─────────────────────────── */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
}

/* ─── Page Header (İl/İlçe sayfaları) ────────── */
.page-header {
    background: linear-gradient(135deg, #0B0E13 0%, #141820 100%);
    border-bottom: 1px solid rgba(255, 16, 122, 0.12);
    padding: 32px 0 24px;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.page-header .ilan-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 16, 122, 0.08);
    border: 1px solid rgba(255, 16, 122, 0.2);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 50px;
    margin-bottom: 18px;
}

/* İlçe Linkleri */
.ilce-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.ilce-link {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: var(--gray-400);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.ilce-link:hover {
    background: rgba(255, 16, 122, 0.08);
    border-color: rgba(255, 16, 122, 0.3);
    color: var(--accent);
}

.ilce-link.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-header {
        padding: 20px 0 16px;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .ilce-links {
        gap: 5px;
    }

    .ilce-link {
        padding: 5px 10px;
        font-size: 0.78rem;
    }
}

/* ─── Ana Sayfa Hero ──────────────────────────── */
.premium-hero-box {
    background: radial-gradient(circle at top right, rgba(255, 16, 122, 0.15) 0%, transparent 55%),
        radial-gradient(circle at bottom left, rgba(138, 106, 47, 0.08) 0%, transparent 40%),
        #0D1117;
    border: 1px solid rgba(255, 16, 122, 0.18);
    border-radius: var(--radius-xl);
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-hero-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary), var(--accent));
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 16, 122, 0.12);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 16, 122, 0.2);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 30%, var(--accent) 70%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmer 4s ease infinite;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Header */
.section-header-line {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-top: 4px;
}

.section-header-line h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header-line .text-accent {
    color: var(--accent);
}

.section-header-line .line-divider {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 16, 122, 0.25), transparent);
}

@media (max-width: 768px) {
    .premium-hero-box {
        padding: 36px 20px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.92rem;
    }
}

/* ─── İlan Grid ───────────────────────────────── */
.ilanlar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

@media (max-width: 1400px) {
    .ilanlar-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
}

@media (max-width: 1200px) {
    .ilanlar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media (max-width: 900px) {
    .ilanlar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

@media (max-width: 540px) {
    .ilanlar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

/* ─── İlan Kartı Geliştirmeleri ───────────────── */
.ilan-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.ilan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 16, 122, 0.15);
}

/* ─── Sayfalama ───────────────────────────────── */
.pagination-wrap {
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--gray-400);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.page-item .page-link:hover {
    background: rgba(255, 16, 122, 0.1);
    border-color: rgba(255, 16, 122, 0.3);
    color: var(--accent);
}

.page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
    font-weight: 800;
}

/* ─── Copy Toast ──────────────────────────────── */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1a2e;
    border: 1px solid rgba(255, 16, 122, 0.3);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 99999;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* =====================================================
   İLAN DETAY — MOBİL İLETİŞİM BLOĞU
   ===================================================== */
.mobile-contact-block {
    display: none;
    /* masaüstünde gizli */
}

@media (max-width: 991px) {

    /* Mobilde galeri → iletişim → profil sırası */
    .premium-main-col {
        display: flex;
        flex-direction: column;
    }

    .mobile-contact-block {
        display: block;
        background: #0F1318;
        border: 1px solid rgba(255, 16, 122, 0.2);
        border-radius: var(--radius-lg);
        padding: 20px;
        margin-top: 16px;
        order: 2;
        /* galeri=1, iletişim=2, profil=3 */
    }

    .premium-gallery-card {
        order: 1;
    }

    .profile-info-card,
    .profile-desc-card,
    .profile-services-card {
        order: 3;
    }

    /* Masaüstü sidebar iletişim kartını mobilde gizle */
    .premium-sidebar-col .sticky-contact-card {
        display: none;
    }
}

.mobile-contact-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    text-align: center;
}

.mobile-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =====================================================
   İLAN DETAY — MASAÜSTÜ & GENEL
   ===================================================== */
.detail-page {
    padding-bottom: 60px;
}

.premium-layout-2col {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    margin-top: 24px;
    align-items: start;
}

@media (max-width: 1200px) {
    .premium-layout-2col {
        grid-template-columns: 1fr 300px;
        gap: 22px;
    }
}

@media (max-width: 991px) {
    .premium-layout-2col {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Sidebar konum sıralaması mobilden sonra */
    .premium-sidebar-col {
        order: 10;
        margin-top: 20px;
    }
}

/* Galeri */
.gallery-wrapper {
    position: relative;
}

.gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: zoom-in;
    background: #0a0a0a;
    min-height: 300px;
    max-height: 75vh;
}

@media (min-width: 992px) {
    .gallery-main {
        min-height: 400px;
        max-height: 80vh;
    }
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
    background: #0a0a0a;
}

.gallery-nav-btns {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.g-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
    z-index: 5;
}

.g-nav-btn.prev {
    left: 12px;
}

.g-nav-btn.next {
    right: 12px;
}

.g-nav-btn:hover {
    background: rgba(255, 16, 122, 0.7);
}

/* Thumbnails */
.gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.gallery-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.65;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--accent);
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Profile cards */
.profile-info-card,
.profile-desc-card,
.profile-services-card {
    background: #0F1318;
    border: 1px solid rgba(255, 16, 122, 0.12);
    border-radius: var(--radius-lg);
}

.detail-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-300);
}

.services-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
}

.services-list li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 16, 122, 0.08);
    border: 1px solid rgba(255, 16, 122, 0.2);
    color: var(--gray-300);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.services-list li i {
    color: var(--accent);
}

/* İlgili ilanlar */
.related-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.related-bottom .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

@media (max-width: 900px) {
    .related-bottom .row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .related-bottom .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.related-bottom .col {
    padding: 0;
}

/* Sticky sidebar */
.sticky-contact-card {
    background: #0F1318;
    border: 1px solid rgba(255, 16, 122, 0.2);
    border-radius: var(--radius-lg);
    position: sticky;
    top: 90px;
}

.btn-share-premium.w-100 {
    width: 100%;
    justify-content: center;
    cursor: pointer;
}

/* =====================================================
   ARAMA SAYFASI
   ===================================================== */
.search-page {
    min-height: 70vh;
}

.search-hero {
    background: linear-gradient(135deg, #0B0E13 0%, #141820 100%);
    border-bottom: 1px solid rgba(255, 16, 122, 0.1);
    padding: 28px 0 22px;
}

.search-hero-inner {
    display: block;
}

.search-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-hero-title i {
    color: var(--accent);
    font-size: 1.5rem;
}

.search-hero-sub {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin: 0;
}

.search-count-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 2px 10px;
    border-radius: 50px;
    margin-right: 4px;
}

/* Layout */
.search-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 900px) {
    .search-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .search-filters-panel {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        background: #0D1117;
        border-right: 1px solid rgba(255, 16, 122, 0.2);
        z-index: 1100;
        overflow-y: auto;
        padding: 20px;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
    }

    .search-filters-panel.mobile-open {
        left: 0;
    }
}

/* Filtre Panel */
.search-filters-panel {
    background: #0D1117;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 20px;
    position: sticky;
    top: 90px;
}

.filter-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.filter-clear-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
}

.filter-clear-link:hover {
    color: #fff;
}

.filter-group {
    margin-bottom: 16px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray-400);
    margin-bottom: 7px;
}

.filter-label i {
    color: var(--accent);
}

.filter-input,
.filter-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.filter-input:focus,
.filter-select:focus {
    border-color: var(--accent);
    background: rgba(255, 16, 122, 0.05);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.filter-select option {
    background: #0D1117;
    color: #fff;
}

.filter-range-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-range-in {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 9px 10px;
    color: #fff;
    font-size: 0.85rem;
    text-align: center;
    outline: none;
    transition: var(--transition);
}

.filter-range-in:focus {
    border-color: var(--accent);
}

.range-dash {
    color: var(--gray-500);
    font-weight: 700;
}

.filter-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 6px;
    font-family: inherit;
}

.filter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* Aktif filtreler bar */
.active-filters-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    background: rgba(255, 16, 122, 0.05);
    border: 1px solid rgba(255, 16, 122, 0.15);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    margin-bottom: 18px;
}

.af-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.af-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-300);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.af-clear {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    white-space: nowrap;
}

.af-clear:hover {
    color: #fff;
}

/* Mobil toggle */
.mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(255, 16, 122, 0.1);
    border: 1px solid rgba(255, 16, 122, 0.3);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    margin-bottom: 16px;
    position: relative;
}

.mft-dot {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

@media (max-width: 900px) {
    .mobile-filter-toggle {
        display: flex;
    }

    .mobile-filter-toggle.active {
        background: rgba(255, 16, 122, 0.2);
    }
}

/* Arama grid 4 kolon */
.search-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1100px) {
    .search-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 700px) {
    .search-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Empty states */
.search-empty,
.search-welcome {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.search-empty-icon,
.search-welcome-icon {
    font-size: 3.5rem;
    color: rgba(255, 16, 122, 0.3);
    margin-bottom: 20px;
}

.search-empty h2,
.search-welcome h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.search-empty p,
.search-welcome p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

.search-reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 16, 122, 0.1);
    border: 1px solid rgba(255, 16, 122, 0.3);
    color: var(--accent);
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.search-reset-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

/* =====================================================
   PREMIUM CITY HEADER TOGGLE (INDEX.PHP)
   ===================================================== */
.btn-premium-toggle {
    background: rgba(255, 16, 122, 0.1);
    color: var(--accent);
    border: 1px solid rgba(255, 16, 122, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-premium-toggle:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.ilceler-collapse-container {
    animation: fadeInDown 0.3s ease forwards;
}