:root {
    --primary: #c9a962;
    --primary-dark: #a88b4a;
    --primary-light: #e8d5a3;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --text-primary: #f5f5f7;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    --border: rgba(201, 169, 98, 0.15);
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #e8d5a3 50%, #c9a962 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --radius: 12px;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.main-content { padding-top: 76px; min-height: 80vh; }

/* Navbar */
#mainNav {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    transition: all 0.3s;
}
#mainNav.scrolled { padding: 0.5rem 0; box-shadow: var(--shadow); }
.navbar-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.brand-icon { font-size: 1.2rem; }
.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--primary) !important; }
.btn-contact {
    background: var(--gradient-gold) !important;
    color: var(--bg-dark) !important;
    border-radius: 50px;
    padding: 0.4rem 1.2rem !important;
    font-weight: 600;
}
.districts-dropdown {
    max-height: 400px;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--theme-hero, var(--gradient-dark));
    overflow: hidden;
}
.hero-sexy .hero-glow {
    position: absolute;
    inset: -20% 10% auto;
    height: 60%;
    background: radial-gradient(ellipse, color-mix(in srgb, var(--primary) 35%, transparent), transparent 70%);
    pointer-events: none;
    filter: blur(8px);
    animation: heroPulse 6s ease-in-out infinite;
}
@keyframes heroPulse {
    0%, 100% { opacity: .55; transform: scale(1); }
    50% { opacity: .9; transform: scale(1.08); }
}
.hero-sexy .hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.hero-sexy .hero-badge {
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 25%, transparent), color-mix(in srgb, var(--primary-light) 15%, transparent));
    border: 1px solid color-mix(in srgb, var(--primary) 45%, transparent);
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,169,98,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(201,169,98,0.05) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    background: rgba(201,169,98,0.15);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-title span { color: var(--primary); }
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 2rem;
}
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}
.hero-stat .number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}
.hero-stat .label { font-size: 0.85rem; color: var(--text-muted); }

/* Page hero (compact) */
.page-hero.compact { padding: 6rem 0 2rem; text-align: center; }
.page-hero.compact .hero-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: .5rem; }
.page-hero.compact .hero-sub { color: var(--text-secondary); margin: 0; }

/* Banner slider */
.banner-slider-section { margin-top: 76px; }
.main-content:has(+ .banner-slider-section), .banner-slider-section + .main-content { padding-top: 0; }
.banner-carousel { border-bottom: 1px solid var(--border); }
.banner-carousel .carousel-item { min-height: 340px; position: relative; background: var(--bg-dark); }
.banner-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.5); }
.banner-slide-content { position: relative; z-index: 2; padding: 4.5rem 1rem 3rem; color: #fff; text-align: center; min-height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.banner-slide-content h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: .65rem; }
.banner-slide-content p { max-width: 560px; opacity: .9; margin-bottom: 1rem; }
.banner-strip { padding: 1rem 0; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.banner-strip-item { display: block; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); text-decoration: none; color: inherit; transition: transform .2s; }
.banner-strip-item:hover { transform: translateY(-2px); color: inherit; }
.banner-strip-item img { width: 100%; height: 100px; object-fit: cover; }
.banner-strip-item span { display: block; padding: .55rem; font-size: .85rem; text-align: center; }

/* Favorites */
.btn-favorite { background: transparent; border: 1px solid var(--border); color: var(--text-secondary); width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: all .2s; cursor: pointer; flex-shrink: 0; }
.btn-favorite:hover, .btn-favorite.is-favorite { color: #e2557a; border-color: #e2557a; background: rgba(226,85,122,.12); }
.btn-favorite.is-favorite .bi-heart::before { content: "\f415"; }
.profile-contact { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.escort-card-actions .btn-favorite { width: 38px; height: 38px; font-size: .95rem; }
.nav-favorites .fav-nav-count { display: inline-block; min-width: 1.1rem; padding: 0 .35rem; font-size: .7rem; line-height: 1.2; background: var(--primary); color: var(--bg-dark); border-radius: 999px; margin-left: .15rem; }
.nav-favorites .fav-nav-count:empty { display: none; }

/* Search Box */
.nav-search-form { align-items: center; min-width: 200px; max-width: 280px; }
.nav-search-form .form-control { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: #fff; }
.search-box-lg { max-width: 720px; margin-left: auto; margin-right: auto; }
.search-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 2rem;
}
.search-box .form-control, .search-box .form-select {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}
.search-box .form-control:focus, .search-box .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201,169,98,0.15);
    background: var(--bg-dark);
    color: var(--text-primary);
}
.btn-gold {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,169,98,0.3);
    color: var(--bg-dark);
}

/* Section */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
}

/* Escort Card */
.escort-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.escort-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(201,169,98,0.3);
}
.escort-card-link { text-decoration: none; color: inherit; flex: 1; display: flex; flex-direction: column; }
.escort-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(160deg, #2a2438 0%, #1a1524 55%, #121018 100%);
}
.escort-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #1a1524;
    transition: transform 0.5s;
}
.escort-card-image img.img-fallback {
    object-fit: contain;
    padding: 18%;
    opacity: 0.85;
}
.escort-card:hover .escort-card-image img { transform: scale(1.08); }
.escort-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.badge-vip {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}
.badge-platinum {
    background: linear-gradient(135deg, #e8e8f0, #a8a8c0, #f5f5ff);
    color: #1a1a2e;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(200,200,255,.35);
}
.badge-gold {
    background: linear-gradient(135deg, #f0c14b, #d4a017);
    color: #1a1200;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}
.badge-standard {
    background: rgba(255,255,255,.12);
    color: #ccc;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}
.tier-platinum {
    border-color: rgba(200,200,255,.35) !important;
    box-shadow: 0 0 0 1px rgba(200,200,255,.15);
}
.tier-vip { border-color: rgba(201,169,98,.4) !important; }
.tier-gold { border-color: rgba(240,193,75,.35) !important; }
.badge-featured {
    background: rgba(255,255,255,0.9);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}
.badge-online {
    background: #2ecc71;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    animation: onlinePulse 1.8s ease-in-out infinite;
}
@keyframes onlinePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,.5); }
    50% { box-shadow: 0 0 0 6px rgba(46,204,113,0); }
}
.escort-tagline {
    font-size: 0.8rem;
    color: var(--primary);
    font-style: italic;
    margin: 0 0 0.4rem;
}
.profile-tagline {
    font-size: 1.15rem;
    color: var(--primary);
    font-style: italic;
    margin: 0.25rem 0 1rem;
}
.profile-gallery-main { position: relative; }
.profile-online-dot {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 14px;
    height: 14px;
    background: #2ecc71;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: onlinePulse 1.8s ease-in-out infinite;
}
.profile-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.profile-detail-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.profile-detail-list li span { color: var(--text-muted); }
.profile-detail-list li strong { color: var(--text-primary); font-weight: 500; }
.profile-detail-list li a { color: var(--primary); text-decoration: none; }
.gallery-thumb { transition: transform 0.3s, border-color 0.3s; border: 2px solid transparent; cursor: pointer; }
.gallery-thumb:hover { transform: scale(1.03); border-color: var(--primary); }
.escort-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.escort-card:hover .escort-card-overlay { opacity: 1; }
.view-profile {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}
.escort-card-body { padding: 1.25rem; flex: 1; }
.escort-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.escort-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.escort-meta i { color: var(--primary); margin-right: 4px; }
.escort-desc { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }
.escort-card-actions {
    display: flex;
    border-top: 1px solid var(--border);
}
.btn-action {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
    border-right: 1px solid var(--border);
}
.btn-action:last-child { border-right: none; }
.btn-action:hover { background: var(--bg-card-hover); color: var(--primary); }
.btn-call:hover { color: #4CAF50; }
.btn-wa:hover { color: #25D366; }
.btn-wa-only { flex: 2; color: #25D366; font-weight: 600; }
.btn-contact-wa { background: #25D366 !important; border-color: #25D366 !important; }
.btn-contact-wa:hover { background: #1fb855 !important; color: #fff !important; }
.btn-profile-wa-only { width: 100%; justify-content: center; display: inline-flex; align-items: center; gap: 8px; }
.hero-wa-cta .btn { display: inline-flex; align-items: center; gap: 8px; }

/* District Grid */
.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}
.district-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
}
.district-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    color: var(--primary);
}
.district-item i { font-size: 1.5rem; color: var(--primary); display: block; margin-bottom: 0.5rem; }
.district-item span { font-weight: 500; font-size: 0.9rem; }

/* Profile Page */
.profile-hero {
    background: var(--gradient-dark);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}
.profile-gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    max-height: 600px;
}
.profile-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.profile-info h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
}
.profile-badges { display: flex; gap: 0.5rem; margin: 1rem 0; flex-wrap: wrap; }
.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}
.stat-item .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }
.stat-item .value { font-weight: 600; color: var(--primary); font-size: 1.1rem; }
.profile-contact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}
.btn-profile-call, .btn-profile-wa {
    flex: 1;
    min-width: 180px;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s;
}
.btn-profile-call {
    background: var(--gradient-gold);
    color: var(--bg-dark);
}
.btn-profile-wa {
    background: #25D366;
    color: white;
}
.btn-profile-call:hover, .btn-profile-wa:hover { transform: scale(1.03); color: inherit; }
.profile-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.profile-section h3 {
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-tag {
    background: rgba(201,169,98,0.1);
    color: var(--primary-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid var(--border);
}

/* Blog */
.blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(201,169,98,0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    border-color: rgba(201,169,98,0.35);
}
.blog-card-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1a1524;
    position: relative;
}
.blog-card-image::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(transparent, rgba(10,8,14,0.85));
    pointer-events: none;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.55s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.07); }
.blog-card-body { padding: 1.25rem 1.35rem 1.5rem; flex: 1; }
.blog-card-body h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.65rem; line-height: 1.35; }
.blog-card-body h3 a { color: var(--text-primary); text-decoration: none; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.blog-excerpt { font-size: 0.9rem; color: var(--text-secondary); }
.blog-figure {
    margin: 1.75rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201,169,98,0.2);
    background: #120e18;
}
.blog-figure img {
    width: 100%;
    height: auto;
    max-height: 640px;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.blog-figure figcaption {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    color: var(--primary);
    background: rgba(0,0,0,0.35);
}
.blog-lead {
    font-size: 1.08rem;
    color: var(--text-primary) !important;
    margin-bottom: 1.25rem;
}
.blog-content h2 {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin: 2rem 0 0.85rem;
}
.blog-content .btn-gold-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,169,98,0.4);
}
.blog-content .btn-gold-link:hover { border-bottom-color: var(--primary); }
.blog-content ul { padding-left: 1.2rem; margin: 0.75rem 0 1.25rem; }
.blog-content ul li { margin-bottom: 0.4rem; }

/* Breadcrumb */
.breadcrumb-nav {
    padding: 1rem 0;
    font-size: 0.85rem;
}
.breadcrumb-nav a { color: var(--primary); text-decoration: none; }
.breadcrumb-nav span { color: var(--text-muted); }

/* Page Header */
.page-header {
    background: var(--gradient-dark);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}
.page-header p { color: var(--text-secondary); max-width: 600px; margin: 1rem auto 0; }

/* Footer */
.site-footer { background: var(--bg-card); border-top: 1px solid var(--border); }
.footer-top { padding: 4rem 0 2rem; }
.footer-title {
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}
.footer-desc { color: var(--text-secondary); font-size: 0.9rem; }
.footer-contact a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.footer-contact a:hover { color: var(--primary); }
.footer-districts { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-districts a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    transition: all 0.3s;
}
.footer-districts a:hover { border-color: var(--primary); color: var(--primary); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Pagination */
.pagination .page-link {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text-secondary);
}
.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
}

/* SEO content blocks */
.seo-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.seo-content h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}
.seo-content p, .seo-content li {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.seo-content a { color: var(--primary); text-decoration: none; }
.seo-content a:hover { text-decoration: underline; }
.seo-faq {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: var(--bg-dark);
}
.seo-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
}
.seo-faq p { margin: 0.75rem 0 0; }

.network-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
}
.network-links-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.network-card {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-dark);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}
.network-card strong {
    color: var(--primary);
    font-size: 0.9rem;
}
.network-card span {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.4;
}
.network-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    text-decoration: none;
}
.footer-network-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.footer-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin: 1rem 0 0.5rem;
}
.profile-seo-block { margin-top: 0; }
.profile-lead { color: var(--text-secondary); font-size: 1.05rem; }
.profile-sexy-line {
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 600;
    margin: -0.25rem 0 1rem;
    line-height: 1.45;
}
.profile-description {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-secondary);
}
.profile-description p { margin-bottom: 1rem; }
.profile-description p:last-child { margin-bottom: 0; }
.profile-description strong { color: var(--text-primary); }

/* Vitrin reklam alanı */
.ad-slot-card {
    border: 2px dashed rgba(201, 169, 98, 0.55) !important;
    background: linear-gradient(165deg, var(--bg-card) 0%, rgba(201, 169, 98, 0.08) 100%);
    box-shadow: 0 8px 28px rgba(201, 169, 98, 0.12);
}
.ad-slot-image {
    background: linear-gradient(160deg, rgba(201, 169, 98, 0.22), rgba(232, 90, 120, 0.12) 50%, var(--bg-dark) 100%);
}
.ad-slot-visual {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}
.ad-slot-spark { font-size: 1.2rem; margin-top: 0.35rem; }
.ad-slot-badge { letter-spacing: 0.04em; }
.ad-slot-sub { color: var(--gold, var(--primary)); font-weight: 600; }
.ad-slot-phone { color: #25d366 !important; font-weight: 600; }
.ad-slot-phone i { color: #25d366; }
.ad-slot-desc { color: var(--text-muted); font-size: 0.8rem; }
.ad-slot-wa { background: rgba(37, 211, 102, 0.15) !important; color: #25d366 !important; }
.ad-slot-card:hover {
    border-color: rgba(201, 169, 98, 0.85) !important;
    box-shadow: 0 12px 32px rgba(201, 169, 98, 0.22);
}
.ad-slot-row {
    margin: 0.25rem 0 0.5rem;
}
.ad-slot-placeholder {
    opacity: 0.78;
    border-style: dotted !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section { min-height: auto; padding: 3rem 0; }
    .hero-stats { gap: 1.5rem; }
    .profile-contact { flex-direction: column; }
    .section { padding: 3rem 0; }
}

/* Mobil vitrin — fotoğraf odaklı tile (4 sütun, metin minimum) */
@media (max-width: 767.98px) {
    .vitrin-grid {
        --vitrin-gap: 0.35rem;
    }
    .vitrin-grid .vitrin-grid-item {
        padding-left: calc(var(--vitrin-gap) * 0.5);
        padding-right: calc(var(--vitrin-gap) * 0.5);
    }
    .vitrin-grid .escort-card {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    }
    .vitrin-grid .escort-card:hover {
        transform: none;
    }
    .vitrin-grid .escort-card-link {
        display: block;
        position: relative;
    }
    .vitrin-grid .escort-card-image {
        aspect-ratio: 3/4;
    }
    .vitrin-grid .escort-card-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(transparent 52%, rgba(8, 6, 12, 0.88) 100%);
        pointer-events: none;
        z-index: 1;
    }
    /* Rozet, online, katman etiketi — gizle */
    .vitrin-grid .escort-card-badges,
    .vitrin-grid .escort-card-overlay,
    .vitrin-grid .escort-tagline,
    .vitrin-grid .escort-desc,
    .vitrin-grid .escort-meta {
        display: none !important;
    }
    /* Sadece isim — fotoğraf üzerinde */
    .vitrin-grid .escort-card-body {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 1.4rem 0.35rem 0.4rem;
        background: none;
        pointer-events: none;
    }
    .vitrin-grid .escort-name {
        font-size: 0.68rem;
        font-weight: 600;
        margin: 0;
        line-height: 1.15;
        color: #fff;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /* Alt bar yerine küçük WA ikonu */
    .vitrin-grid .escort-card-actions {
        position: absolute;
        bottom: 3px;
        right: 3px;
        z-index: 3;
        border: none;
        width: auto;
        background: transparent;
    }
    .vitrin-grid .btn-detail {
        display: none !important;
    }
    .vitrin-grid .btn-wa-only {
        width: 24px;
        height: 24px;
        min-width: 24px;
        padding: 0;
        margin: 0;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(37, 211, 102, 0.95);
        color: #fff;
        font-size: 0;
        line-height: 1;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    }
    .vitrin-grid .btn-wa-only i {
        font-size: 0.78rem;
    }
    .vitrin-grid .btn-wa-only span,
    .vitrin-grid .btn-wa-only:not(:has(i)) {
        font-size: 0;
    }
    /* Reklam kartı mobilde de okunaklı kalsın */
    .vitrin-grid .ad-slot-card .escort-tagline,
    .vitrin-grid .ad-slot-card .escort-desc,
    .vitrin-grid .ad-slot-card .escort-meta {
        display: block !important;
    }
    .vitrin-grid .ad-slot-card .escort-card-body {
        position: relative;
        background: var(--bg-card);
        padding: 0.55rem 0.45rem;
        pointer-events: none;
    }
    .vitrin-grid .ad-slot-card .escort-name {
        white-space: normal;
        font-size: 0.62rem;
        line-height: 1.2;
    }
    .vitrin-grid .ad-slot-card .escort-card-image::after {
        display: none;
    }
    .vitrin-grid .ad-slot-card .escort-card-overlay {
        display: flex;
        opacity: 1;
        background: linear-gradient(transparent 40%, rgba(0,0,0,0.75));
    }
    .vitrin-grid .ad-slot-card .btn-detail { display: none !important; }
    .vitrin-grid .ad-slot-card .btn-wa-only {
        width: auto;
        height: auto;
        min-width: 0;
        padding: 0.4rem;
        border-radius: 0 0 10px 10px;
        font-size: 0.62rem;
    }
    .vitrin-grid .ad-slot-card .btn-wa-only i { font-size: 0.78rem; }
    /* Katman rengi ince çerçevede kalsın */
    .vitrin-grid .tier-platinum { border-color: rgba(200, 200, 255, 0.45) !important; }
    .vitrin-grid .tier-vip { border-color: rgba(201, 169, 98, 0.5) !important; }
    .vitrin-grid .tier-gold { border-color: rgba(240, 193, 75, 0.45) !important; }
}

@media (max-width: 576px) {
    .navbar-brand .brand-text {
        font-size: 1rem;
    }
}
