/* izmireskortbayanlari.com - Modern VIP Styling */
:root {
    --bg-dark: #0f1117;
    --card-bg: rgba(26, 31, 46, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --accent-gold: #f59e0b;
    --accent-red: #ef4444;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --wa-green: #22c55e;
    --wa-hover: #16a34a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    background-image: radial-gradient(circle at 50% 0%, rgba(239, 68, 68, 0.12) 0%, transparent 60%);
    min-height: 100vh;
}

/* HEADER */
.site-header {
    background: rgba(15, 17, 23, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
}

.brand-logo strong {
    color: var(--accent-red);
}

.header-badges {
    display: flex;
    align-items: center;
    gap: 15px;
}

.live-pulse {
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.header-wa-btn {
    text-decoration: none;
    background: var(--wa-green);
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.header-wa-btn:hover {
    background: var(--wa-hover);
    transform: translateY(-1px);
}

/* HERO */
.hero-section {
    padding: 40px 20px 20px;
    text-align: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 750px;
    margin: 0 auto 25px;
}

/* PILLS */
.district-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.district-pills .pill {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.district-pills .pill:hover,
.district-pills .pill.active {
    background: var(--accent-red);
    color: #fff;
    border-color: var(--accent-red);
}

/* MAIN PROFILES GRID */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

.section-header {
    margin-bottom: 25px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.section-sub {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

/* PROFILE CARD */
.profile-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 12px 24px -10px rgba(239, 68, 68, 0.25);
}

.card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1e293b;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.profile-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.badge-vip {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(15, 23, 42, 0.85);
    color: var(--accent-gold);
    border: 1px solid rgba(245, 158, 11, 0.4);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    backdrop-filter: blur(4px);
}

.badge-city {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.badge-live-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15, 23, 42, 0.85);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.4);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.70rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.card-services {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 2px 0;
}

.tag-service {
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-name {
    font-size: 1.15rem;
    font-weight: 700;
}

.profile-age {
    font-size: 0.82rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
}

.card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 8px;
}

.price-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.price-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.btn-wa {
    text-decoration: none;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    text-align: center;
    padding: 11px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    margin-top: 4px;
}

.btn-wa:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

/* SEO SECTION */
.seo-content-section {
    background: rgba(26, 31, 46, 0.5);
    border-top: 1px solid var(--border-color);
    padding: 50px 20px;
}

.seo-container {
    max-width: 900px;
    margin: 0 auto;
}

.seo-container h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.seo-container h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--accent-red);
}

.seo-container p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.network-link-box {
    margin-top: 25px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
}

.network-link-box a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.network-link-box a:hover {
    text-decoration: underline;
}

/* FOOTER */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 30px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-note {
    font-size: 0.75rem;
    margin-top: 6px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.55rem;
    }
    .header-badges .live-pulse {
        display: none;
    }
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .profile-card {
        border-radius: 12px;
    }
    .card-content {
        padding: 10px;
    }
    .profile-name {
        font-size: 0.95rem;
    }
    .price-val {
        font-size: 0.95rem;
    }
    .btn-wa {
        padding: 8px 4px;
        font-size: 0.76rem;
    }
    .vip-topbar {
        font-size: 0.75rem;
        padding: 0.5rem 0.6rem;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    .vip-topbar .topbar-text {
        display: none;
    }
    .btn-contact-top span:last-child {
        display: none;
    }
    .vitrin-promo-banner {
        flex-direction: column;
        text-align: center;
    }
    .vitrin-promo-content {
        flex-direction: column;
        align-items: center;
    }
    .floating-vitrin-badge .float-text {
        display: none;
    }
    .floating-vitrin-badge {
        padding: 12px;
        border-radius: 50%;
    }
}

/* ========================================================
   VIP TOPBAR MARQUEE (Ana Site Birebir Entegrasyonu)
   ======================================================== */
.vip-topbar {
    background: linear-gradient(90deg, #000000 0%, #1C1300 50%, #000000 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.45);
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    position: relative;
    z-index: 101;
    animation: topbarGlowPulse 2.5s infinite alternate ease-in-out;
}

@keyframes topbarGlowPulse {
    0% {
        box-shadow: 0 0 10px rgba(0,0,0,0.8), inset 0 -1px 15px rgba(230, 175, 46, 0.15);
    }
    50% {
        box-shadow: 0 4px 25px rgba(230, 175, 46, 0.35), inset 0 -1px 25px rgba(230, 175, 46, 0.3);
        border-bottom-color: rgba(255, 215, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 10px rgba(0,0,0,0.8), inset 0 -1px 15px rgba(230, 175, 46, 0.15);
    }
}

.vip-topbar-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 900;
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    animation: badgeFlashGlow 1.2s infinite ease-in-out;
}

.topbar-live-dot {
    width: 7px;
    height: 7px;
    background: #EF4444;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #EF4444;
    animation: liveDotPulse 0.9s infinite alternate;
}

@keyframes liveDotPulse {
    from { opacity: 0.4; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1.3); }
}

@keyframes badgeFlashGlow {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
        box-shadow: 0 0 10px rgba(230, 175, 46, 0.4);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.9), 0 0 30px rgba(230, 175, 46, 0.6);
    }
}

.topbar-text {
    color: #E2E8F0;
    font-size: 0.83rem;
}

.vip-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.5);
    color: #4ADE80;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.25s;
    animation: waBtnPulse 1.8s infinite ease-in-out;
}

@keyframes waBtnPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(37, 211, 102, 0.3);
        border-color: rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
        border-color: rgba(74, 222, 128, 0.95);
        background: rgba(37, 211, 102, 0.28);
    }
}

.vip-topbar-link:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFF;
    border-color: #25D366;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.95);
}

/* ========================================================
   HEADER VIP SAĞ AKSİYON BUTONLARI (Ana Site Birebir)
   ======================================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-contact-top {
    background: rgba(16, 16, 20, 0.9);
    border: 1px solid rgba(37, 211, 102, 0.45);
    color: #4ADE80;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-contact-top:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: #25D366;
    color: #86EFAC;
    transform: translateY(-1px);
}

.btn-vitrin-top {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 4px 18px rgba(230, 175, 46, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-vitrin-top:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

/* ========================================================
   VİTRİN PROMO BANNER (Ana Sayfa & İlçe Sayfaları)
   ======================================================== */
.vitrin-promo-banner {
    background: linear-gradient(135deg, rgba(28, 19, 0, 0.9) 0%, rgba(15, 17, 23, 0.95) 50%, rgba(20, 10, 30, 0.9) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.vitrin-promo-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.vitrin-promo-icon {
    font-size: 2.2rem;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.35);
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vitrin-promo-text h3 {
    color: #FBBF24;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.vitrin-promo-text p {
    color: #94A3B8;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.vitrin-promo-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-vitrin-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFF;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.2s;
}

.btn-vitrin-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}

.btn-vitrin-detail {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #FDE047;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-vitrin-detail:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #FBBF24;
}

/* ========================================================
   VİTRİNE İLAN VER MODALI (Ana Site Birebir Entegrasyonu)
   ======================================================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(5, 5, 8, 0.95);
    padding: 16px;
    align-items: center;
    justify-content: center;
}

.pricing-modal-box {
    position: relative;
    max-width: 580px;
    width: 100%;
    background: #0E0E14;
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95);
    color: #FFF;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFF;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: #EF4444;
}

.pricing-tiers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 1.25rem;
}

.pricing-tier-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 0.85rem;
    text-align: center;
    transition: border-color 0.2s;
}

.pricing-tier-card:hover {
    border-color: #FBBF24;
    background: rgba(212, 175, 55, 0.06);
}

.pricing-tier-card .tier-name {
    font-size: 0.82rem;
    color: #94A3B8;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-tier-card .tier-price {
    font-size: 1.2rem;
    color: #FBBF24;
    font-weight: 900;
    margin: 4px 0;
}

.pricing-tier-card .tier-badge {
    font-size: 0.68rem;
    background: rgba(34, 197, 94, 0.15);
    color: #4ADE80;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
}

/* ========================================================
   FLOATING STICKY VİTRİN BUTONU (Mobil & Masaüstü Sabit)
   ======================================================== */
.floating-vitrin-badge {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: linear-gradient(135deg, #1C1300 0%, #000000 100%);
    border: 1.5px solid rgba(255, 215, 0, 0.7);
    color: #FBBF24;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 215, 0, 0.35);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.floating-vitrin-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 215, 0, 0.6);
    border-color: #FFD700;
    color: #FFF;
}

.float-pulse {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #22C55E;
    animation: liveDotPulse 0.9s infinite alternate;
}

.float-icon {
    font-size: 1.2rem;
}

.float-text strong {
    font-size: 0.86rem;
    letter-spacing: 0.5px;
}

/* ========================================================
   FOOTER VİTRİN BÖLÜMÜ
   ======================================================== */
.footer-vitrin-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-vitrin-info p {
    color: #D4D4D8;
    font-size: 0.86rem;
    line-height: 1.6;
    margin: 0;
}

