/* Site teması — koyu plum / magenta gradyan */
:root {
    --brand: #6b1b4b;
    --brand-dark: #3d0c2b;
    --brand-mid: #52203a;
    --brand-light: #8f3566;
    --brand-pale: #d4a5c0;
    --pink: var(--brand);
    --pink-dark: var(--brand-dark);
    --pink-light: var(--brand-pale);
    --pink-soft: #f8f0f4;
    --pink-glow: rgba(107, 27, 75, 0.4);
    --hero-dark: #3d0c2b;
    --hero-mid: #6b1b4b;
    --gradient-brand: linear-gradient(90deg, #3d0c2b 0%, #6b1b4b 50%, #3d0c2b 100%);
    --gradient-brand-v: linear-gradient(180deg, #3d0c2b 0%, #6b1b4b 45%, #52203a 100%);
    --bg: #52203a;
    --bg-page: var(--gradient-brand-v);
    --white: #ffffff;
    --surface: #ffffff;
    --text-on-brand: rgba(255, 255, 255, 0.92);
    --text-muted-on-brand: rgba(255, 255, 255, 0.65);
    --border: #e8dfe5;
    --text: #1a1016;
    --text-muted: #6e5c68;
    --muted: #6e5c68;
    --vip-red: #ef4444;
    --video-purple: #7c3aed;
    --online-green: #22c55e;
    --verified-green: #16a34a;
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
    --container: 1240px;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 20px rgba(20, 12, 18, 0.06);
    --shadow-md: 0 8px 32px rgba(20, 12, 18, 0.1);
    --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-on-brand);
    background: var(--brand-dark);
    background-image: var(--bg-page);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-pale); text-decoration: none; }
a:hover { color: #fff; }

.site-main {
    color: var(--text-on-brand);
}
.site-main .blog-card,
.site-main .blog-card a,
.site-main .cities-province-card,
.site-main .cities-district-card {
    color: var(--text);
}
.site-main .profile-card,
.site-main .profile-card a {
    color: #fff;
}
.site-main .profile-card a:hover { color: #fff; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Header */
.site-header {
    background: var(--gradient-brand);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(61, 12, 43, 0.35);
    position: sticky;
    top: 0;
    z-index: 200;
}
.site-header .nav-link {
    color: rgba(255, 255, 255, 0.82);
}
.site-header .nav-link:hover,
.site-header .nav-link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}
.site-header .nav-link-accent {
    background: rgba(255, 255, 255, 0.18);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.site-header .nav-link-accent:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #fff !important;
}
.site-header .nav-toggle span { background: #fff; }
.page-home .site-header,
.page-listing .site-header { background: var(--gradient-brand); }
.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 16px;
    position: relative;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
}
.brand:hover { color: var(--text); }
.brand-logo {
    display: block;
    height: 48px;
    width: auto;
    max-width: min(200px, 55vw);
    object-fit: contain;
}
.brand-logo-footer {
    height: 42px;
    max-width: 180px;
}
.footer-logo-link {
    display: inline-block;
    margin-bottom: 10px;
}
.footer-logo-link:hover { opacity: 0.9; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 6px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}
.nav-link:hover { color: var(--pink); background: var(--pink-soft); }
.nav-link.is-active { color: var(--pink); background: var(--pink-soft); font-weight: 600; }
.nav-link-accent {
    background: var(--pink-soft);
    color: var(--pink) !important;
    font-weight: 600;
    border-radius: 999px;
    padding-left: 16px !important;
    padding-right: 16px !important;
}
.nav-link-accent:hover { background: var(--pink); color: #fff !important; }
.nav-cta {
    background: var(--pink) !important;
    color: var(--white) !important;
    font-weight: 600;
}
.nav-cta:hover { background: var(--pink-dark) !important; color: var(--white) !important; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 6px;
    margin-top: 6px;
    z-index: 100;
}
.nav-dropdown.is-open .nav-dropdown-menu { display: block; }
.nav-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-chevron {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.2s;
}
.nav-dropdown.is-open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-menu a {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--text-muted);
    border-radius: 4px;
}
.nav-dropdown-menu a:hover { background: var(--pink-soft); color: var(--pink); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--pink);
}

.site-main { padding-bottom: 40px; }

/* Üst reklam — plum zemin */
.home-banners-band {
    background: var(--gradient-brand);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin: 0;
}
.home-banners {
    margin: 0 auto;
    padding: 0 16px;
    max-width: var(--container);
}
.home-banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
}
.home-banner-slot {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.home-banner-link {
    display: block;
    line-height: 0;
    text-decoration: none;
}
.home-banner-link img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 728 / 90;
    max-height: 120px;
}
.home-banner-link img.is-gif {
    object-fit: contain;
    background: #fff;
}
@media (max-width: 640px) {
    .home-banners-grid {
        grid-template-columns: 1fr;
    }
    .home-banner-link img {
        max-height: 90px;
    }
}

/* Intro & toolbar */
.page-intro {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    padding: 24px 16px 16px;
    max-width: var(--container);
    margin: 0 auto;
}
.intro-label { font-size: 12px; font-weight: 600; color: var(--brand-pale); text-transform: uppercase; }
.intro-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
}
.intro-desc { color: var(--text-muted-on-brand); font-size: 14px; margin-top: 6px; }
.intro-metrics { display: flex; gap: 28px; }
.intro-metrics dt { font-size: 11px; color: var(--text-muted-on-brand); text-transform: uppercase; }
.intro-metrics dd { font-size: 1.5rem; font-weight: 700; color: var(--brand-pale); }

.toolbar-section {
    max-width: var(--container);
    margin: 0 auto 20px;
    padding: 0 16px;
}
.toolbar-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
}
.toolbar-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.toolbar-result {
    margin: 10px 0 0;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}
.filter-pill {
    cursor: pointer;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.filter-pill input { display: none; }
.filter-pill span { pointer-events: none; }
.filter-pill:has(input:checked) {
    background: var(--brand-light);
    border-color: var(--brand-pale);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 14px var(--pink-glow);
}
.filter-pill:hover:not(:has(input:checked)) {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.city-menu {
    position: absolute;
    right: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    list-style: none;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 50;
    max-height: 260px;
    overflow-y: auto;
}
.city-menu a { display: block; padding: 8px 12px; font-size: 14px; color: var(--text); }

/* Platin vitrin — yatay kaydırma */
.platin-section {
    margin-bottom: 32px;
    padding: 16px 0;
    background: transparent;
    border: none;
    box-shadow: none;
}
.platin-section-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}
.platin-head-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.platin-head-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.35);
}
.platin-section-head h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
}
.platin-head-count {
    font-size: 13px;
    color: var(--text-muted-on-brand);
    margin-top: 4px;
}
.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.platin-carousel {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.platin-scroll {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    touch-action: pan-x;
    padding: 4px 2px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    container-type: inline-size;
    container-name: platin-scroll;
}
.platin-scroll::-webkit-scrollbar {
    display: none;
    height: 0;
    width: 0;
}
.platin-nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s, opacity 0.15s;
    padding: 0 0 2px;
}
.platin-nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
}
.platin-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
@media (max-width: 640px) {
    .platin-carousel { gap: 6px; }
    .platin-nav {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }
}
.platin-scroll-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 14px;
    width: max-content;
    min-width: 100%;
    padding: 4px 4px 8px;
}
.platin-scroll-track .profile-card {
    flex: 0 0 auto;
    flex-shrink: 0;
    width: 168px;
    min-width: 168px !important;
    max-width: 240px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
@media (min-width: 480px) {
    .platin-scroll-track .profile-card {
        --platin-card-w: 185px;
        flex: 0 0 var(--platin-card-w);
        width: var(--platin-card-w);
        min-width: var(--platin-card-w) !important;
    }
}
@supports (width: 1cqw) {
    @container platin-scroll (min-width: 600px) {
        .platin-scroll-track .profile-card {
            --platin-card-w: clamp(168px, calc((100cqw - 56px) / 5), 240px);
            flex: 0 0 var(--platin-card-w);
            width: var(--platin-card-w);
            min-width: var(--platin-card-w) !important;
        }
    }
}
@media (min-width: 768px) {
    .platin-scroll-track .profile-card {
        --platin-card-w: clamp(180px, 19vw, 240px);
        flex: 0 0 var(--platin-card-w);
        width: var(--platin-card-w);
        min-width: var(--platin-card-w) !important;
    }
}
.platin-empty {
    padding: 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-muted-on-brand);
    font-size: 14px;
}
.overlay-platin {
    background: linear-gradient(135deg, #fbbf24, #d97706) !important;
    font-size: 9px !important;
}

.vip-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.vip-section-head.listing-head { margin-top: 8px; }
.vip-head-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--vip-red);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
}
.vip-head-badge-alt {
    background: var(--pink);
    font-size: 14px;
}
.vip-section-head h2,
.listing-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}

/* Grid — 5 sütun masaüstü, 2 mobil */
.profiles-grid,
.profiles-grid-main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
@media (min-width: 600px) {
    .profiles-grid,
    .profiles-grid-main { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
}
@media (min-width: 900px) {
    .profiles-grid,
    .profiles-grid-main { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
    .profiles-grid,
    .profiles-grid-main { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
}

/* Profil kartı */
.profile-card {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    min-width: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.28);
}
.profile-card.is-vip {
    border-color: #fbbf24;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(251, 191, 36, 0.45);
}
.profile-card.is-ad-listing .card-link {
    cursor: pointer;
}
.card-link {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    height: 100%;
}
.card-link:hover { color: inherit; }

.card-photo {
    position: relative;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, #e8e4ec, #d4ced8);
    overflow: hidden;
}
.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.profile-card:hover .card-photo img { transform: scale(1.04); }

.card-body {
    padding: 12px 14px 14px;
    text-align: left;
    background: rgba(0, 0, 0, 0.38);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
.card-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0;
}
.card-location {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    margin: 4px 0 0;
}
.card-online-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--verified-green);
    background: rgba(34, 197, 94, 0.12);
    border-radius: 999px;
}
.card-online-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--online-green);
    animation: pulse-online 1.5s ease infinite;
}
@keyframes pulse-online {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.card-name-bar { display: none; }
.card-city-bar { display: none; }

/* VIP kırmızı daire */
.overlay-vip {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 40px;
    height: 40px;
    background: var(--vip-red);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Video mor rozet — VIP altında */
.has-video-only .overlay-video,
.is-vip .overlay-video {
    top: 52px;
    left: 8px;
}
.overlay-video {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 40px;
    height: 40px;
    background: var(--video-purple);
    color: var(--white);
    font-size: 7px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    z-index: 3;
    padding: 4px;
}

/* ONLINE köşe şeridi */
.overlay-online-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 90px;
    height: 90px;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}
.overlay-online-badge::before {
    content: 'ONLINE';
    position: absolute;
    right: -28px;
    bottom: 18px;
    width: 120px;
    padding: 5px 0;
    background: var(--verified-green);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.05em;
    transform: rotate(-45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.card-city-bar {
    padding: 10px 8px;
    text-align: center;
    background: var(--white);
    border-top: 1px solid var(--border);
}
.card-city-bar p {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.listing-section { margin-bottom: 32px; }

.infinite-scroll-footer {
    padding: 24px 16px 32px;
    text-align: center;
}
.infinite-scroll-status {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted-on-brand);
    font-weight: 500;
}
.infinite-scroll-footer.is-loading .infinite-scroll-status::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 8px;
    vertical-align: middle;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: infinite-spin 0.7s linear infinite;
}
@keyframes infinite-spin {
    to { transform: rotate(360deg); }
}
.listing-section .section-head-title {
    color: var(--text-on-brand);
}
.listing-section .section-head-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.platin-section .section-head-title,
.platin-section-head h2 {
    color: #fff;
}

/* Promo reklam */
.promo-block { margin-bottom: 28px; }
.promo-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--pink-light);
    border-radius: 8px;
}
@media (min-width: 768px) {
    .promo-card { grid-template-columns: 1.4fr 1fr; align-items: center; }
}
.promo-content h2 { font-size: 1.2rem; font-weight: 700; color: var(--pink); margin: 6px 0; }
.block-label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }
.promo-list { list-style: none; margin-top: 10px; font-size: 14px; color: var(--text-muted); }
.btn, .btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--pink);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary:hover, .btn:hover { background: var(--pink-dark); color: var(--white); }
.btn-outline {
    background: var(--white);
    color: var(--pink);
    border: 2px solid var(--pink);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
}

/* Detay sayfa */
.profile-page { padding: 20px 16px 48px; }
.page-profile .breadcrumb,
.profile-page .breadcrumb {
    font-size: 13px;
    color: var(--text-muted-on-brand);
    margin-bottom: 20px;
}
.page-profile .breadcrumb a,
.profile-page .breadcrumb a {
    color: var(--brand-pale);
    text-decoration: none;
}
.page-profile .breadcrumb a:hover,
.profile-page .breadcrumb a:hover { color: #fff; }
.page-profile .breadcrumb .current,
.profile-page .breadcrumb .current {
    color: #fff;
    font-weight: 600;
}
.page-profile .breadcrumb .sep,
.profile-page .breadcrumb .sep { opacity: 0.45; }
.detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}
@media (min-width: 900px) {
    .detail-layout { grid-template-columns: minmax(300px, 400px) 1fr; gap: 32px; }
}
.page-profile .detail-gallery,
.profile-page .detail-gallery {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.gallery-main {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
    background: #f0f0f0;
    cursor: zoom-in;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-zoom {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    font-size: 18px;
}
.detail-photo-sidebar {
    margin-top: 16px;
    padding: 18px 16px;
    border: none;
    border-radius: var(--radius);
    background: var(--gradient-brand-v);
    box-shadow: 0 8px 28px rgba(61, 12, 43, 0.25);
}
@keyframes detail-online-blink {
    0%, 100% { opacity: 1; color: #2e7d32; }
    50% { opacity: 0.25; color: #43a047; }
}
.detail-online-blink {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin: 0 0 16px;
    animation: detail-online-blink 1.1s ease-in-out infinite;
}
.profile-attr-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.profile-attr-list li {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 15px;
    line-height: 1.45;
}
.profile-attr-list li:last-child { border-bottom: none; }
.profile-attr-label {
    color: var(--brand-pale);
    font-weight: 600;
    flex: 0 0 auto;
}
.profile-attr-value {
    color: #fff;
    font-weight: 500;
}
.detail-photo-sidebar .detail-online-blink {
    color: #a7f3d0;
}
.page-profile .card-panel,
.profile-page .detail-info.card-panel {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: var(--text-on-brand);
}
.page-profile .detail-header,
.profile-page .detail-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.page-profile .detail-header h1,
.profile-page .detail-header h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}
.page-profile .detail-age,
.profile-page .detail-age {
    font-weight: 600;
    color: var(--brand-pale);
    font-size: 0.85em;
}
.page-profile .detail-lead,
.profile-page .detail-lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 10px;
    line-height: 1.5;
}
.page-profile .detail-rating-line,
.profile-page .detail-rating-line {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #fbbf24;
}
.page-profile .detail-call-block,
.profile-page .detail-call-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.page-profile .detail-tags,
.profile-page .detail-tags {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.page-profile .detail-tags h3,
.profile-page .detail-tags h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-pale);
    margin: 0 0 10px;
}
.page-profile .detail-tags .tag,
.profile-page .detail-tags .tag {
    display: inline-block;
    margin: 0 6px 6px 0;
    padding: 5px 12px;
    font-size: 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}
.page-profile .detail-tags .tag-accent,
.profile-page .detail-tags .tag-accent {
    background: rgba(107, 27, 75, 0.5);
    border-color: rgba(212, 165, 192, 0.35);
}
.page-profile .detail-description-block h2,
.profile-page .detail-description-block h2 {
    font-size: 1.05rem;
    color: #fff;
    margin: 0 0 12px;
}
.page-profile .detail-description,
.profile-page .detail-description {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}
.page-profile .detail-description p,
.profile-page .detail-description p { margin: 0 0 0.75em; }
.page-profile .detail-actions,
.profile-page .detail-actions { margin-top: 24px; }
.page-profile .btn-outline,
.profile-page .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 22px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    display: inline-block;
}
.page-profile .btn-outline:hover,
.profile-page .btn-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: var(--brand-pale);
    color: #fff;
}
.page-profile .similar-section,
.profile-page .similar-section {
    margin-top: 40px;
    padding-bottom: 24px;
}
.page-profile .similar-section .listing-title,
.profile-page .similar-section .listing-title {
    color: #fff;
    margin-bottom: 20px;
}
.page-profile .gallery-thumb,
.profile-page .gallery-thumb {
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
}
.page-profile .gallery-thumb.active,
.profile-page .gallery-thumb.active {
    border-color: var(--brand-pale);
    box-shadow: 0 0 0 1px var(--brand-light);
}
.page-profile .gallery-main,
.profile-page .gallery-main {
    background: rgba(0, 0, 0, 0.35);
}
.page-profile .detail-badges-overlay .badge-today,
.page-profile .detail-badges-overlay .badge-discount {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    color: #fff;
}
.page-profile .badge-today { background: var(--online-green); }
.page-profile .badge-discount { background: var(--vip-red); }
.btn-call-me {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: var(--online-green);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 14px rgba(34, 160, 80, 0.35);
    transition: background 0.2s, transform 0.15s;
}
.btn-call-me:hover {
    background: #1b8a42;
    color: var(--white);
    transform: translateY(-1px);
}
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: #25d366;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-1px);
}
.btn-wa-icon { flex-shrink: 0; }
button.btn-whatsapp {
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.ad-listing-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ad-listing-modal[hidden] { display: none !important; }
.ad-listing-modal-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
}
.ad-listing-modal-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    padding: 28px 24px 24px;
    background: #fff;
    color: #111;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    text-align: center;
}
.ad-listing-modal-warning {
    margin: 0 0 16px;
    color: #c62828;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}
.ad-listing-modal-title {
    margin: 0 0 12px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #111;
}
.ad-listing-modal-text,
.ad-listing-modal-question {
    margin: 0 0 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #222;
}
.ad-listing-modal-question { margin-bottom: 20px; }
.ad-listing-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ad-listing-btn-cancel {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: #e8e8e8;
    color: #111;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
}
.ad-listing-btn-cancel:hover { background: #d5d5d5; }
.ad-listing-btn-confirm {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: #25d366;
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
}
.ad-listing-btn-confirm:hover {
    background: #1da851;
    color: #fff !important;
}
.ad-listing-btn-whatsapp {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: #25d366;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
}
.ad-listing-btn-whatsapp:hover {
    background: #1da851;
    color: #fff !important;
}
.ad-listing-btn-telegram {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: #229ed9;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
}
.ad-listing-btn-telegram:hover {
    background: #1a8bc4;
    color: #fff !important;
}
body.ad-listing-modal-open { overflow: hidden; }

.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; }
.gallery-thumb {
    flex: 0 0 64px;
    height: 80px;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
}
.gallery-thumb.active { border-color: var(--pink); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.pagination a {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text-muted);
}
.pagination a.active,
.pagination a:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    color: var(--text-muted-on-brand);
}

.site-footer {
    background: var(--gradient-brand);
    color: rgba(255, 255, 255, 0.75);
    padding: 48px 0 28px;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
    display: grid;
    gap: 24px;
}
@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        align-items: start;
    }
}
.footer-about p { font-size: 14px; color: rgba(255, 255, 255, 0.55); margin-top: 8px; max-width: 320px; }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}
.footer-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}
.footer-links a:hover { color: var(--pink-light); }
.footer-links-inline {
    margin-top: 14px;
}
.footer-cities {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-cities-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}
.footer-cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
}
@media (min-width: 480px) {
    .footer-cities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
    .footer-cities-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 1024px) {
    .footer-cities-grid { grid-template-columns: repeat(10, 1fr); }
}
.footer-cities-grid a {
    display: block;
    padding: 8px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.footer-cities-grid a:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}
.footer-traffic {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-traffic-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
}
.footer-traffic-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 4px 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    min-width: 140px;
}
.footer-traffic-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    width: 100%;
    text-align: center;
}
.footer-traffic-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.footer-traffic-hint {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
}
.footer-traffic-live {
    position: relative;
}
.footer-traffic-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    animation: footer-live-pulse 2s ease-out infinite;
    flex-shrink: 0;
    align-self: center;
}
@keyframes footer-live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
@media (min-width: 640px) {
    .footer-traffic-item {
        min-width: 160px;
    }
}
.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Reklam sayfası */
.reklam-page { max-width: var(--container); margin: 0 auto; padding: 24px 16px; }
.reklam-form, .package-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 8px;
}
.reklam-form input, .reklam-form select, .reklam-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 500px) { .form-row-2 { grid-template-columns: 1fr; } }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.lightbox[hidden] { display: none !important; }
body.lightbox-open { overflow: hidden; }
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: pointer;
    z-index: 1;
}
.lightbox-figure {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: 95vw;
    max-height: 90vh;
    pointer-events: none;
}
.lightbox-figure img {
    display: block;
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    border: none;
    background: var(--white);
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.lightbox-nav[hidden] { display: none; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin: 0;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
}
.lightbox-counter[hidden] { display: none; }

/* Admin login */
.admin-body {
    background: var(--pink-soft);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.admin-card {
    background: var(--white);
    border: 1px solid var(--pink-light);
    padding: 36px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
}
.admin-card h1 { color: var(--pink); }
.alert-success { background: #e8f5e9; color: #2e7d32; padding: 12px; border-radius: 6px; margin-bottom: 12px; }
.alert-error { background: #ffebee; color: #c62828; padding: 12px; border-radius: 6px; margin-bottom: 12px; }

/* Blog */
.blog-list-section { padding-bottom: 48px; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.12);
    transform: translateY(-2px);
}
.blog-card-link { display: block; color: inherit; text-decoration: none; }
.blog-card-media {
    aspect-ratio: 16 / 9;
    background: var(--pink-soft);
    overflow: hidden;
}
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--pink-soft), #fff); }
.blog-card-body { padding: 18px 20px 22px; }
.blog-card-body time { font-size: 0.8rem; color: var(--muted); }
.blog-card-body h2 { font-size: 1.15rem; margin: 8px 0 10px; color: var(--text); line-height: 1.35; }
.blog-card-body p { font-size: 0.92rem; color: var(--muted); margin: 0 0 12px; line-height: 1.5; }
.blog-read-more { font-size: 0.88rem; font-weight: 600; color: var(--pink); }
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.pagination-info { color: var(--muted); font-size: 0.9rem; }
.blog-article { max-width: 760px; padding-bottom: 56px; }
.blog-article-head { margin-bottom: 24px; }
.breadcrumb { font-size: 0.88rem; color: var(--muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--pink); text-decoration: none; }
.breadcrumb span { margin: 0 6px; }
.blog-article-head h1 { font-size: clamp(1.5rem, 4vw, 2rem); line-height: 1.25; margin: 0 0 8px; }
.blog-article-meta { color: var(--muted); font-size: 0.9rem; margin: 0; }
.blog-article-hero {
    margin: 0 0 28px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.blog-article-hero img { width: 100%; height: auto; display: block; }
.blog-article-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text);
}
.blog-article-content h2,
.blog-article-content h3 { margin-top: 1.5em; color: var(--text); }
.blog-article-content p { margin: 0 0 1em; }
.blog-article-content ul,
.blog-article-content ol { margin: 0 0 1em; padding-left: 1.4em; }
.blog-article-content img { max-width: 100%; height: auto; border-radius: 8px; }
.blog-article-foot { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--gradient-brand-v);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 16px;
        box-shadow: 0 12px 32px rgba(61, 12, 43, 0.4);
    }
    .site-nav.is-open { display: flex; }
    .nav-dropdown { width: 100%; }
    .nav-dropdown-btn {
        width: 100%;
        justify-content: space-between;
        text-align: left;
        padding: 12px 14px;
    }
    .nav-dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--pink-light);
        margin: 0 0 8px 12px;
        padding: 4px 0 8px;
        max-height: 280px;
        overflow-y: auto;
        min-width: 0;
    }
    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;
    }
    .nav-link { width: 100%; text-align: left; padding: 12px 14px; }
}

/* Şehirler sayfası */
.cities-page { padding-bottom: 48px; }
.cities-region-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.cities-region-btn {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.cities-region-btn:hover,
.cities-region-btn.is-active {
    background: var(--pink-soft);
    border-color: var(--pink);
    color: var(--pink);
}
.cities-province-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}
.cities-province-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.cities-province-card:hover {
    border-color: var(--pink);
    box-shadow: 0 4px 16px rgba(107, 27, 75, 0.15);
}
.cities-province-name {
    font-weight: 600;
    font-size: 1.05rem;
}
.cities-province-region,
.cities-province-meta,
.cities-province-count {
    font-size: 0.8rem;
    color: var(--muted);
}
.cities-province-count { color: var(--pink); font-weight: 500; }
.cities-breadcrumb { margin-bottom: 20px; }
.cities-district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}
.cities-district-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    text-decoration: none;
    color: inherit;
}
.cities-district-card:hover {
    border-color: var(--pink);
    background: var(--pink-soft);
}
.cities-district-card strong { font-size: 0.95rem; }
.cities-district-card span { font-size: 0.8rem; color: var(--muted); }
.cities-district-all {
    grid-column: 1 / -1;
    max-width: 100%;
    background: linear-gradient(135deg, var(--pink-soft), #fff);
}

/* ——— Ana sayfa hero & filtreler ——— */
.home-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.home-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(107, 27, 75, 0.95), transparent 70%),
        var(--gradient-brand);
}
.home-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 32px;
    padding: 40px 16px 36px;
}
@media (min-width: 900px) {
    .home-hero-inner {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: end;
        padding: 56px 16px 44px;
        gap: 40px;
    }
}
.home-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pink-light);
    margin-bottom: 10px;
}
.home-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.02em;
}
.home-hero-lead {
    margin-top: 14px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 420px;
}
.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.btn-hero-primary {
    padding: 14px 28px;
    background: var(--pink);
    color: #fff !important;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 8px 28px var(--pink-glow);
    border: none;
}
.btn-hero-primary:hover {
    background: var(--pink-dark);
    transform: translateY(-1px);
}
.btn-hero-ghost {
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff !important;
}
.home-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    margin-top: 28px;
}
.home-hero-stat dt {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}
.home-hero-stat dd {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.home-hero-cities-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
}
.home-hero-city-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.home-city-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}
.home-city-chip:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: var(--pink);
    color: #fff;
}
.home-city-chip em {
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    background: var(--pink);
    border-radius: 999px;
}
.home-city-chip-more {
    border-style: dashed;
    color: var(--pink-light);
}

.home-filters-bar {
    margin: 16px auto 24px;
    padding: 0 16px;
    position: relative;
    z-index: 10;
    max-width: var(--container);
}
.home-filters-form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: none;
}
.home-filters-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
}
.home-filters-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.home-filters-count {
    font-size: 0.9rem;
    color: var(--text-muted-on-brand);
    margin: 0;
    white-space: nowrap;
}
.home-filters-count strong {
    color: var(--brand-pale);
    font-weight: 800;
}

.page-home .home-banners-band {
    margin-top: 0;
}
.page-home .platin-section {
    margin-top: 8px;
}
.platin-section .section-head-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.pagination a {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
}
.pagination a.active,
.pagination a:hover {
    background: var(--brand);
    border-color: var(--brand-light);
    color: #fff;
}

.page-intro .intro-label { color: var(--brand-pale); }
.page-intro .intro-title { color: #fff; }
.page-intro .intro-desc,
.page-intro .intro-metrics dt { color: var(--text-muted-on-brand); }
.page-intro .intro-metrics dd { color: var(--brand-pale); }
.blog-list-section .blog-card { color: var(--text); }
.cities-page .cities-province-card,
.cities-page .cities-district-card { color: var(--text); }
.cities-region-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}
.cities-region-btn:hover,
.cities-region-btn.is-active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}
.cities-breadcrumb a { color: var(--brand-pale); }
.cities-breadcrumb { color: var(--text-muted-on-brand); }

.location-bar {
    padding: 24px 16px 8px;
}
.location-breadcrumb {
    font-size: 0.8rem;
    color: var(--text-muted-on-brand);
    margin-bottom: 12px;
}
.location-breadcrumb a { color: var(--brand-pale); font-weight: 500; }
.location-breadcrumb a:hover { color: #fff; }
.location-breadcrumb span { margin: 0 6px; opacity: 0.5; }
.location-bar-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}
.location-bar-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}
.location-bar-meta { font-size: 0.9rem; color: var(--text-muted-on-brand); }
.location-bar .btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.location-bar .btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.location-bar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.location-seo {
    margin: 0 auto 24px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}
.location-seo-text {
    margin: 0 0 12px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-muted-on-brand);
}
.location-seo-text a {
    color: var(--brand-pale);
    text-decoration: underline;
}
.location-seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}
.location-seo-links a {
    font-size: 0.82rem;
    color: var(--brand-pale);
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.location-seo-links a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.section-head-text {
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-head-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--pink-soft);
    color: var(--pink);
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 10px;
}
.section-head-title {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0;
}
.vip-section-head.listing-head,
.section-head.listing-head { margin-top: 0; }

.pagination a { border-radius: var(--radius-sm); }

@media (max-width: 900px) {
    .site-nav {
        background: var(--gradient-brand-v);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .site-nav .nav-link { color: rgba(255, 255, 255, 0.92); }
    .site-nav .nav-link:hover,
    .site-nav .nav-link.is-active { background: rgba(255, 255, 255, 0.12); color: #fff; }
}
