/* Google Fonts: non-blocking link in includes/header.php (avoids render-blocking @import). */

* { margin:0; padding:0; box-sizing:border-box; }
html, body { height: 100%; }
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    color: #2c3e50;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
}

/* Auth Forms */
.auth-form {
    max-width: 420px; margin: 60px auto; background: #fff;
    padding: 40px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}
.auth-form--wide {
    max-width: 480px;
}
.auth-form__lead {
    text-align: left;
    font-size: 0.95rem;
    color: #555;
    margin: 0 0 1rem;
    line-height: 1.55;
}
.auth-form__label {
    display: block;
    text-align: left;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}
.auth-form__footer {
    margin-top: 1rem;
    font-size: 0.9rem;
}
.auth-form__footer a {
    color: #be185d;
    font-weight: 600;
}
.auth-form .success {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-bottom: 16px;
    text-align: left;
}
.auth-form .error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin-bottom: 16px;
    text-align: left;
}
.auth-form h2 {
    font-family: 'Playfair Display', serif; font-size: 2rem; color: #2c3e50; margin-bottom: 25px;
}
.auth-form input, .auth-form select, .auth-form textarea {
    width: 100%; padding: 14px; margin: 12px 0; border: 1px solid #ddd;
    border-radius: 8px; font-size: 1rem;
}
.auth-form button {
    background: #d4af37; color: white; border: none; padding: 14px 30px;
    border-radius: 30px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 15px;
    transition: 0.3s;
}
.auth-form button:hover { background: #b8932a; }


/* GENEL CONTAINER */
.container { 
    max-width: 1600px;
    width: 100%;
    margin: 0 auto; 
    padding: 0 20px; 
}

/* PROFİL KARTLARI GRID */
.profiles-container {
    display: grid;
    gap: 30px;
    margin: 40px 0;
    width: 100%;
}

/* 4 kart - masaüstü */
@media (min-width: 1200px) {
    .profiles-container {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* 3 kart - tablet */
@media (min-width: 900px) and (max-width: 1199px) {
    .profiles-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 2 kart - mobil */
@media (max-width: 899px) {
    .profiles-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* 1 kart - küçük mobil */
@media (max-width: 480px) {
    .profiles-container {
        grid-template-columns: 1fr;
    }
}

/* PROFİL KART TASARIMI */
.profile-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.profile-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.profile-card__photo-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 8px 8px 0 0;
}
.profile-card__photo-wrap .profile-image {
    display: block;
    vertical-align: top;
}
.profile-image {
    height: 360px;
    width: 100%;
    object-fit: cover;
}
.profile-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.profile-name { font-size: 1.3rem; color: #343a40; margin-bottom: 8px; }
.listing-id { color: #d4af37; font-weight: bold; font-size: 1.1rem; }
.profile-location, .profile-status {
    font-size: 0.9rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.profile-location { color: #6a5acd; }
.online-dot {
    width: 10px; height: 10px;
    background: #28a745;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}
.rating { color: #ffc107; font-size: 1.1rem; }
.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.btn-whatsapp, .btn-profile {
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}
.btn-whatsapp {
    background: #28a745;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-whatsapp:hover { background: #1f9c4a; }
.btn-profile { background: #6a5acd; color: #fff; }
.btn-profile:hover { background: #5a4cb1; }

/* BADGE */
.profile-badge {
    position: absolute;
    background: none;
    padding: 0;
    z-index: 3;
}
.profile-badge.vip-badge img,
.profile-badge.premium-badge img,
.profile-badge.new-badge img,
.profile-badge.indepent-badge img {
    width: 40px; height: 40px;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.8));
}
@keyframes pulse-image {
    0%   { box-shadow: 0 0 0 0 rgba(212,175,55,0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}
.profile-badge.vip-badge,
.profile-badge.premium-badge,
.profile-badge.new-badge {
    animation: pulse-image 2s infinite;
}
.profile-badge.vip-badge,
.profile-badge.premium-badge { top: 12px; left: 12px; }
.profile-badge.indepent-badge { top: 12px; left: 12px; right: auto; animation: none; }
.profile-card:has(.vip-badge) .new-badge,
.profile-card:has(.premium-badge):not(:has(.vip-badge)) .new-badge { top: 58px; left: 12px; }
.profile-card:not(:has(.vip-badge)):not(:has(.premium-badge)) .new-badge { top: 12px; left: 12px; }
.profile-card:has(.new-badge):has(.vip-badge) .indepent-badge,
.profile-card:has(.new-badge):has(.premium-badge):not(:has(.vip-badge)) .indepent-badge { top: 104px; left: 12px; }
.profile-card:not(:has(.new-badge)):has(.vip-badge) .indepent-badge,
.profile-card:not(:has(.new-badge)):has(.premium-badge):not(:has(.vip-badge)) .indepent-badge { top: 58px; left: 12px; }
.profile-card:not(:has(.vip-badge)):not(:has(.premium-badge)):has(.new-badge) .indepent-badge { top: 58px; left: 12px; }

/* MOBİL UYARLAMALAR */
@media (max-width: 768px) {
    .profile-image { height: 180px; }
    .profile-content { padding: 15px; }
    .profile-name { font-size: 1.1rem; }
    .listing-id { font-size: 1rem; }
    .profile-location, .profile-status { font-size: 0.8rem; }
    .btn-whatsapp, .btn-profile { padding: 8px; font-size: 0.9rem; }
    .profile-badge.vip-badge img,
    .profile-badge.premium-badge img,
    .profile-badge.new-badge img,
    .profile-badge.indepent-badge img { width: 32px; height: 32px; }
    .profile-badge.vip-badge, .profile-badge.premium-badge { top: 8px; left: 8px; }
    .profile-badge.indepent-badge { top: 8px; left: 8px; right: auto; }
    .profile-card:has(.vip-badge) .new-badge,
    .profile-card:has(.premium-badge):not(:has(.vip-badge)) .new-badge { top: 46px; left: 8px; }
    .profile-card:not(:has(.vip-badge)):not(:has(.premium-badge)) .new-badge { top: 8px; left: 8px; }
    .profile-card:has(.new-badge):has(.vip-badge) .indepent-badge,
    .profile-card:has(.new-badge):has(.premium-badge):not(:has(.vip-badge)) .indepent-badge { top: 84px; left: 8px; }
    .profile-card:not(:has(.new-badge)):has(.vip-badge) .indepent-badge,
    .profile-card:not(:has(.new-badge)):has(.premium-badge):not(:has(.vip-badge)) .indepent-badge { top: 46px; left: 8px; }
    .profile-card:not(:has(.vip-badge)):not(:has(.premium-badge)):has(.new-badge) .indepent-badge { top: 46px; left: 8px; }
}

/* HEADER & FOOTER */
.site-header { background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid #d4af37; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; }
.logo h1 a { color: #d4af37; font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; text-decoration: none; }
.main-nav ul { display: flex; gap: 30px; list-style: none; }
.main-nav a { color: #2c3e50; font-weight: 500; font-size: 1rem; transition: 0.3s; text-decoration: none; }
.main-nav a:hover { color: #d4af37; }

.section-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: #2c3e50; text-align: center; margin: 40px 0 30px; position: relative; }
.section-title::after { content: ''; width: 80px; height: 3px; background: #d4af37; display: block; margin: 15px auto 0; }

.site-footer { background: #2c3e50; color: #ecf0f1; padding: 60px 0 30px; margin-top: auto; }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 30px; }
.footer-cols h3, .footer-cols h4 { color: #d4af37; margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.footer-cols a { color: #bdc3c7; transition: 0.3s; text-decoration: none; }
.footer-cols a:hover { color: #d4af37; }
.copyright { text-align: center; padding-top: 20px; border-top: 1px solid #34495e; font-size: 0.9rem; color: #95a5a6; }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* === TIKLANABİLİR ALAN + GRID DÜZELTME === */
.profile-card-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.profile-card-link {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
}

.profile-card {
    position: relative;
    z-index: 0;
}

/* Badge'ler üstte kalsın */
.profile-badge {
    z-index: 3 !important;
}

/* İçerik ve butonlar tıklanabilir olsun */
.profile-content,
.profile-image,
.profile-actions,
.btn-whatsapp,
.btn-profile {
    position: relative;
    z-index: 2;
}

/* 4 KART ZORLA */
@media (min-width: 1200px) {
    .profiles-container {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr !important;
    }
}   

/* === HAMBURGER MENÜ === */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #2c3e50;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    display: flex;
    justify-content: flex-end;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu {
    background: #fff;
    width: 280px;
    max-width: 90%;
    height: 100%;
    padding: 70px 20px 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: 0.3s ease;
}
.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}
.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #2c3e50;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu ul li {
    margin: 12px 0;
}
.mobile-menu ul a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: 0.2s;
}
.mobile-menu ul a:hover {
    color: #d4af37;
    padding-left: 8px;
}

/* === MOBİLDE NAV GİZLE + HAMBURGER GÖSTER === */
@media (max-width: 899px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    .main-nav {
        display: none !important;
    }
    .site-header .container {
        justify-content: space-between !important;
        align-items: center !important;
    }
    .logo h1 a {
        font-size: 1.8rem !important;
    }
}

/* === MOBİL: 2 KART YAN YANA (ZORLA!) === */
@media (max-width: 899px) {
    .profiles-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        margin: 20px 0 !important;
    }
    .container {
        padding: 0 8px !important;
    }
    .profile-card {
        border-radius: 6px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    }
    .profile-image {
        height: 260px !important;
        object-fit: cover !important;
    }
    .profile-content {
        padding: 10px !important;
    }
    .profile-name {
        font-size: 0.95rem !important;
        margin-bottom: 4px !important;
    }
    .listing-id {
        font-size: 0.85rem !important;
    }
    .profile-location,
    .profile-status {
        font-size: 0.7rem !important;
        margin: 4px 0 !important;
        gap: 4px !important;
    }
    .online-dot {
        width: 7px !important;
        height: 7px !important;
    }
    .rating {
        font-size: 0.9rem !important;
    }
    .profile-actions {
        gap: 6px !important;
        margin-top: 6px !important;
    }
    .btn-whatsapp,
    .btn-profile {
        padding: 6px 8px !important;
        font-size: 0.8rem !important;
        border-radius: 6px !important;
    }
    .btn-whatsapp i {
        font-size: 0.9rem !important;
    }
    .profile-badge.vip-badge img,
    .profile-badge.premium-badge img,
    .profile-badge.new-badge img {
        width: 40px !important;
        height: 40px !important;
    }
    .profile-badge.vip-badge,
    .profile-badge.premium-badge {
        top: 5px !important;
    }
}

/* Profil detay sayfası (üretilen slug.php) — ana sayfadaki kartlarla aynı PNG rozetler */
.profile-shell .profile-sidebar .profile-hero-photo {
    position: relative;
}
.profile-shell .profile-sidebar .profile-hero-photo > .profile-badge.vip-badge,
.profile-shell .profile-sidebar .profile-hero-photo > .profile-badge.premium-badge {
    top: 12px;
    left: 12px;
}
.profile-shell .profile-sidebar .profile-hero-photo:has(> .vip-badge) > .new-badge,
.profile-shell .profile-sidebar .profile-hero-photo:has(> .premium-badge):not(:has(> .vip-badge)) > .new-badge {
    top: 58px;
    left: 12px;
}
.profile-shell .profile-sidebar .profile-hero-photo:not(:has(> .vip-badge)):not(:has(> .premium-badge)) > .new-badge {
    top: 12px;
    left: 12px;
}
.profile-shell .profile-sidebar .profile-hero-photo > .profile-badge.indepent-badge,
.profile-card__photo-wrap > .profile-badge.indepent-badge {
    top: 12px;
    left: 12px;
    right: auto;
    bottom: auto;
    animation: none;
    z-index: 6;
    pointer-events: none;
}
.profile-shell .profile-sidebar .profile-hero-photo:has(> .new-badge):has(> .vip-badge) > .indepent-badge,
.profile-shell .profile-sidebar .profile-hero-photo:has(> .new-badge):has(> .premium-badge):not(:has(> .vip-badge)) > .indepent-badge {
    top: 104px;
    left: 12px;
}
.profile-shell .profile-sidebar .profile-hero-photo:not(:has(> .new-badge)):has(> .vip-badge) > .indepent-badge,
.profile-shell .profile-sidebar .profile-hero-photo:not(:has(> .new-badge)):has(> .premium-badge):not(:has(> .vip-badge)) > .indepent-badge {
    top: 58px;
    left: 12px;
}
.profile-shell .profile-sidebar .profile-hero-photo:not(:has(> .vip-badge)):not(:has(> .premium-badge)):has(> .new-badge) > .indepent-badge {
    top: 58px;
    left: 12px;
}
@media (max-width: 768px) {
    .profile-shell .profile-sidebar .profile-hero-photo > .profile-badge.vip-badge,
    .profile-shell .profile-sidebar .profile-hero-photo > .profile-badge.premium-badge {
        top: 8px;
        left: 8px;
    }
    .profile-shell .profile-sidebar .profile-hero-photo:has(> .vip-badge) > .new-badge,
    .profile-shell .profile-sidebar .profile-hero-photo:has(> .premium-badge):not(:has(> .vip-badge)) > .new-badge {
        top: 46px;
        left: 8px;
    }
    .profile-shell .profile-sidebar .profile-hero-photo > .profile-badge.indepent-badge,
    .profile-card__photo-wrap > .profile-badge.indepent-badge {
        top: 8px;
        left: 8px;
        right: auto;
    }
    .profile-shell .profile-sidebar .profile-hero-photo:has(> .new-badge):has(> .vip-badge) > .indepent-badge,
    .profile-shell .profile-sidebar .profile-hero-photo:has(> .new-badge):has(> .premium-badge):not(:has(> .vip-badge)) > .indepent-badge {
        top: 84px;
        left: 8px;
    }
    .profile-shell .profile-sidebar .profile-hero-photo:not(:has(> .new-badge)):has(> .vip-badge) > .indepent-badge,
    .profile-shell .profile-sidebar .profile-hero-photo:not(:has(> .new-badge)):has(> .premium-badge):not(:has(> .vip-badge)) > .indepent-badge {
        top: 46px;
        left: 8px;
    }
    .profile-shell .profile-sidebar .profile-hero-photo:not(:has(> .vip-badge)):not(:has(> .premium-badge)):has(> .new-badge) > .indepent-badge {
        top: 46px;
        left: 8px;
    }
}

/* Verified şeridi: profil sayfası + ana sayfa kartı — aynı ölçü ve köşe hizası */
.profile-shell .profile-sidebar .profile-hero-photo > .profile-badge.verified-badge,
.profile-card__photo-wrap > .profile-badge.verified-badge {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    animation: none;
    z-index: 6;
    pointer-events: none;
    line-height: 0;
}
.profile-shell .profile-sidebar .profile-hero-photo > .profile-badge.verified-badge img,
.profile-card__photo-wrap > .profile-badge.verified-badge img {
    width: auto !important;
    height: auto !important;
    max-width: min(118px, 32vw);
    max-height: none;
    display: block;
    vertical-align: bottom;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 1px 6px rgba(0,0,0,0.35));
}
@media (max-width: 768px) {
    .profile-shell .profile-sidebar .profile-hero-photo > .profile-badge.verified-badge img,
    .profile-card__photo-wrap > .profile-badge.verified-badge img {
        max-width: min(100px, 36vw);
    }
}

/* PROFİL SAYFASI - RESİMDEKİ GİBİ */
.profile-page { max-width: 1000px; margin: 40px auto; padding: 0 15px; font-family: 'Montserrat', sans-serif; }
.profile-header { display: flex; gap: 30px; margin-bottom: 30px; flex-wrap: wrap; align-items: flex-start; }
.profile-photo { position: relative; flex: 1; min-width: 300px; }
.profile-photo img { width: 100%; height: 420px; object-fit: cover; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.profile-photo .badge { position: absolute; top: 15px; left: 15px; background: #d4af37; color: white; padding: 6px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.profile-info { flex: 2; min-width: 300px; }
.profile-info h1 { font-size: 2.2rem; color: #2c3e50; margin: 0 0 10px; font-family: 'Playfair Display', serif; }
.profile-info .location { color: #6a5acd; font-size: 1.1rem; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.profile-info .rating { margin-bottom: 20px; display: flex; align-items: center; gap: 6px; }
.profile-info .rating i { color: #ffc107; }
.profile-info .rating span { color: #777; font-size: 0.9rem; }

.btn-whatsapp, .btn-randevu {
    display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 12px; font-weight: 600; text-decoration: none; margin-right: 10px; margin-bottom: 10px; transition: 0.3s; font-size: 1rem;
}
.btn-whatsapp { background: #25d366; color: white; }
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }
.btn-randevu { background: #6a5acd; color: white; }
.btn-randevu:hover { background: #5a4cb1; transform: translateY(-2px); }

.profile-tabs { display: flex; border-bottom: 2px solid #eee; margin-bottom: 30px; flex-wrap: wrap; }
.tab { padding: 15px 25px; cursor: pointer; font-weight: 500; color: #666; border-bottom: 3px solid transparent; transition: 0.3s; }
.tab.active { color: #d4af37; border-bottom-color: #d4af37; }

.tab-content { line-height: 1.8; color: #444; padding: 10px 0; }

.service-item { background: #f9f9f9; padding: 25px; border-radius: 12px; margin-bottom: 20px; border-left: 4px solid #d4af37; }
.service-item h3 { color: #2c3e50; margin: 0 0 10px; font-size: 1.3rem; }
.service-item .duration { color: #666; font-size: 0.9rem; margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.btn-randevu-small { display: inline-block; background: #6a5acd; color: white; padding: 8px 16px; border-radius: 8px; font-size: 0.9rem; margin-top: 10px; text-decoration: none; }

.comment-form { background: #f9f9f9; padding: 25px; border-radius: 12px; margin-bottom: 30px; }
.comment-form h3 { margin: 0 0 20px; color: #2c3e50; font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.rating-input { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.stars i { font-size: 1.4rem; color: #ddd; cursor: pointer; transition: 0.2s; }
.stars i.fas { color: #ffc107; }
.btn-comment { background: #6a5acd; color: white; padding: 12px 20px; border: none; border-radius: 8px; cursor: pointer; font-weight: 600; }

.comments-list .comment { background: white; padding: 18px; border-radius: 10px; margin-bottom: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.comments-list .comment strong { color: #2c3e50; display: block; margin-bottom: 6px; }
.comments-list .comment p { margin: 8px 0; color: #444; }
.comments-list .comment small { color: #999; font-size: 0.8rem; }

.back-link { display: inline-flex; align-items: center; gap: 8px; color: #6a5acd; text-decoration: none; margin-top: 30px; font-weight: 500; font-size: 1rem; }
.back-link:hover { color: #5a4cb1; }

/* MOBİL */
@media (max-width: 768px) {
    .profile-header { flex-direction: column; }
    .profile-photo img { height: 300px; }
    .form-row { grid-template-columns: 1fr; }
    .profile-tabs { justify-content: center; }
    .tab { padding: 12px 18px; font-size: 0.95rem; }
    .btn-whatsapp, .btn-randevu { width: 100%; justify-content: center; }
}

/* =============================================================================
   Ana sayfa (index) — ajans / admin ile uyumlu modern görünüm
   ============================================================================= */
.page-home,
.page-home .home-section {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
}

body.page-home {
    background: #ffffff;
    overflow-x: hidden;
}

.home-page {
    padding-top: 8px;
    padding-bottom: 48px;
}

.home-section {
    margin-bottom: 8px;
}

.home-section--premium {
    margin-top: 12px;
}

.section-title__label {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    width: 100%;
}

.section-title {
    font-size: clamp(1.35rem, 3.6vw, 1.95rem);
    margin: 36px 0 28px;
    padding-bottom: 0;
}

/* Ana sayfa: örnekteki gibi sans-serif, tam büyük harf, ikon + başlık yatay */
.page-home .home-section .section-title {
    font-family: 'Plus Jakarta Sans', 'Montserrat', system-ui, sans-serif;
    font-weight: 800;
    text-align: left;
    color: #2d3436;
}

.page-home .home-section .section-title::after {
    display: none;
}

.section-title__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    padding: 2px;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.section-title__badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.section-title__badge--vip {
    background: #fff;
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.28);
}

.section-title__badge--premium {
    background: #fff;
    box-shadow: 0 2px 12px rgba(190, 24, 93, 0.2);
}

.section-title__text {
    flex: 1 1 auto;
    min-width: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    /* İnce açık mavi kenar hissi (örnek görünüme yakın) */
    text-shadow:
        0 0 1px rgba(56, 189, 248, 0.35),
        0 0 2px rgba(125, 211, 252, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.95);
}

.section-title--vip {
    color: #2d3436;
}

.section-title--premium {
    color: #2d3436;
}

/* ——— Ana sayfa: Hikayeler (şerit + modal) ——— */
.page-home .home-stories {
    margin: 0 0 1.5rem;
    padding: 0;
}

.home-stories__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 14px;
}

.home-stories__new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
}

.home-stories__new-img {
    display: block;
    width: auto;
    height: clamp(26px, 4.6vw, 38px);
    object-fit: contain;
}

.home-stories__title {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', 'Montserrat', system-ui, sans-serif;
    font-size: clamp(1.05rem, 3vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.15;
    color: #1c1917;
}

.home-stories__strip {
    position: relative;
    display: block;
    padding-right: 48px;
}

.home-stories__track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 6px 2px 12px;
    margin: 0;
}

.home-stories__track {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    min-height: 0;
}

.home-stories__item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 88px;
    text-align: center;
}

.home-stories__open {
    display: block;
    width: 80px;
    height: 80px;
    padding: 0;
    margin: 0 auto;
    border: none;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.home-stories__open:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 4px;
    border-radius: 50%;
}

.home-stories__bubble {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    box-sizing: border-box;
}

.home-stories__bubble-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, #ec4899 0%, #db2777 40%, #f97316 100%);
    z-index: 0;
}

.home-stories__bubble-inner {
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f4;
    border: 2px solid #fff;
    box-sizing: border-box;
    z-index: 1;
}

.home-stories__bubble-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.home-stories__bubble-img--empty {
    background: linear-gradient(160deg, #d6d3d1, #a8a29e);
}

.home-stories__badge {
    position: absolute;
    right: -1px;
    bottom: -1px;
    z-index: 2;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #1e40af;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 22px;
    text-align: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.home-stories__label {
    display: block;
    width: 100%;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0d9488;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-stories__scroll-fab {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e7e5e4;
    background: #fff;
    color: #57534e;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.home-stories__scroll-fab:hover {
    background: #fafaf9;
    color: #1c1917;
}

/* Tam ekran değil: masaüstünde kart; mobilde kenarlıksız */
.home-story-viewer {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: block;
}

.home-story-viewer[hidden] {
    display: none !important;
}

.home-story-viewer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 0;
    cursor: pointer;
}

.home-story-viewer__shell {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(16px, env(safe-area-inset-top, 0px)) 16px max(16px, env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    pointer-events: none;
}

.home-story-viewer__inner {
    pointer-events: auto;
    position: relative;
    width: min(400px, calc(100vw - 32px));
    height: min(82vh, 680px);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    background: #0c0a09;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.home-story-viewer__progress {
    display: flex;
    gap: 4px;
    padding: 10px 12px 6px;
    flex-shrink: 0;
}

.home-story-viewer__seg {
    flex: 1 1 0;
    height: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.28);
    overflow: hidden;
}

.home-story-viewer__seg-fill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.96);
    transform-origin: left center;
}

.home-story-viewer__seg--done .home-story-viewer__seg-fill {
    width: 100%;
}

@keyframes homeStoryProgressFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.home-story-viewer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 12px 10px;
    flex-shrink: 0;
}

.home-story-viewer__profile {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    min-width: 0;
}

.home-story-viewer__profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.home-story-viewer__profile-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.home-story-viewer__profile-name {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-story-viewer__time {
    font-size: 0.75rem;
    opacity: 0.85;
}

.home-story-viewer__close {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-story-viewer__stage {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-story-viewer__media--img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.home-story-viewer__media--vid {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    object-fit: contain;
}

.home-story-viewer__hit {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 35%;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

.home-story-viewer__hit--prev {
    left: 0;
}

.home-story-viewer__hit--next {
    right: 0;
}

@media (max-width: 520px) {
    .home-story-viewer__shell {
        padding: 0;
        align-items: stretch;
    }

    .home-story-viewer__inner {
        width: 100%;
        height: 100%;
        max-height: none;
        min-height: 100%;
        border-radius: 0;
        box-shadow: none;
    }
}

.home-no-results {
    text-align: center;
    color: #78716c;
    padding: 2.5rem 1.25rem;
    margin: 0 auto 1rem;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px dashed rgba(120, 113, 108, 0.35);
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.page-home .profile-card {
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 14px rgba(28, 25, 23, 0.08);
    border: 1px solid #d6d3d1;
}

.page-home article.profile-card:hover {
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05), 0 8px 22px rgba(28, 25, 23, 0.1);
}

/* Ana sayfa: genel .profile-card:hover translateY görselleri yumuşatır — kartı oynatma, sadece gölge */
.page-home article.profile-card--home-tile:hover {
    transform: none;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06), 0 10px 28px rgba(28, 25, 23, 0.12);
}

/* Ana sayfa ilan kartı — article + isim / foto / alt “Escort şehir” (çoklu SEO linki) */
.page-home article.profile-card--home-tile {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}
.page-home .profile-card__name-link,
.page-home .profile-card__photo-link,
.page-home .profile-card__city-link {
    color: inherit;
    text-decoration: none;
}
.page-home .profile-card__name-link:hover,
.page-home .profile-card__city-link:hover {
    text-decoration: underline;
}
.page-home .profile-card__photo-link {
    flex: 1 1 auto;
    display: block;
    min-height: 0;
}
.page-home .profile-card__photo-link:focus-visible {
    outline: 3px solid rgba(190, 24, 93, 0.45);
    outline-offset: 2px;
    border-radius: 0;
}
.page-home .profile-card__head {
    background: #fff;
    padding: 12px 12px 11px;
    text-align: center;
    border-bottom: 1px solid rgba(120, 113, 108, 0.12);
    flex-shrink: 0;
}
.page-home .profile-card__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    font-family: 'Montserrat', system-ui, sans-serif;
    color: #be185d;
    letter-spacing: 0.03em;
    line-height: 1.3;
}
.page-home .profile-card__title .profile-card__name-link,
.page-home .profile-card__title .profile-card__name-link span {
    color: inherit;
}
.page-home .profile-card__photo-wrap {
    border-radius: 0;
    /* Üst/alt şerit + dikey (portre) foto alanı */
    aspect-ratio: 3 / 4;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
}
.page-home .profile-card__photo-wrap .profile-image {
    width: 100%;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover;
    object-position: center center;
    display: block;
    vertical-align: top;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    image-rendering: auto;
}
.page-home .profile-card__online-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    z-index: 5;
    pointer-events: none;
}
.page-home .profile-card__foot {
    background: #fff;
    padding: 12px 12px 14px;
    text-align: center;
    border-top: 1px solid rgba(120, 113, 108, 0.1);
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
}
.page-home .profile-card__escort-line {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 500;
    color: #1c1917;
    font-family: 'Montserrat', system-ui, sans-serif;
}
.page-home .profile-card__escort-line strong {
    font-weight: 800;
}
.page-home .profiles-container {
    align-items: stretch;
}
/* Ana sayfa: masaüstü 5 sütun; tablet aralığında da 5 (dar ekranda kart küçülür); mobil 2 sütun */
@media (min-width: 900px) {
    .page-home .profiles-container {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}
@media (max-width: 899px) {
    .page-home .profiles-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }
}
.page-home .profiles-container > .profile-card--home-tile {
    min-height: 0;
}
.page-home .profile-card__name-link:focus-visible,
.page-home .profile-card__city-link:focus-visible {
    outline: 3px solid rgba(190, 24, 93, 0.45);
    outline-offset: 2px;
    border-radius: 0;
}
@media (max-width: 768px) {
    .page-home .profile-card__title {
        font-size: 0.95rem;
    }
    .page-home .profile-card__escort-line {
        font-size: 0.85rem;
    }
}

/* SEO blok — tam genişlik arka plan */
.page-home .seo-content {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 48px;
    padding: clamp(40px, 6vw, 72px) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 45%, #f5f3ff 100%);
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, #a16207, #7c3aed, #be185d) 1;
}

.seo-content__inner {
    max-width: 1100px;
}

.seo-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.seo-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.45rem, 4vw, 2.15rem);
    font-weight: 700;
    color: #1c1917;
    line-height: 1.25;
    margin: 0 0 1rem;
}

.seo-hero__lead {
    font-size: clamp(1rem, 2.5vw, 1.12rem);
    font-weight: 500;
    color: #991b1b;
    line-height: 1.65;
    margin: 0 auto;
    max-width: 820px;
}

.seo-hero__lead strong {
    font-weight: 700;
}

.seo-schema-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.seo-card {
    background: #fff;
    padding: clamp(22px, 4vw, 36px);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(28, 25, 23, 0.08);
    border: 1px solid rgba(120, 113, 108, 0.12);
    margin: 28px 0 0;
    color: #44403c;
    line-height: 1.85;
    font-size: 1.02rem;
}

.seo-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    color: #5b21b6;
    margin: 0 0 1rem;
}

.seo-card__subtitle {
    font-size: 1.15rem;
    color: #15803d;
    margin: 1.75rem 0 0.75rem;
    font-weight: 700;
}

.seo-card__subtitle--accent {
    color: #6d28d9;
    margin-top: 2rem;
}

.seo-list {
    padding-left: 1.35rem;
    margin: 0.5rem 0 0;
}

.seo-list li {
    margin: 0.4rem 0;
}

.seo-note {
    background: linear-gradient(90deg, #eff6ff 0%, #eef2ff 100%);
    padding: 1.1rem 1.25rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin: 1.75rem 0 0;
}

.seo-note p {
    margin: 0;
    font-style: italic;
    color: #1e40af;
    font-size: 0.95rem;
}

.seo-keywords {
    font-size: 0.88rem;
    color: #a8a29e;
    text-align: center;
    margin: 2.5rem 0 0;
    line-height: 1.65;
}

@media (max-width: 599px) {
    .section-title {
        margin: 28px 0 20px;
    }

    .section-title__badge {
        width: 46px;
        height: 46px;
    }

    .section-title__badge img {
        width: 100%;
        height: 100%;
    }

    .page-home .seo-content {
        margin-top: 32px;
        padding-left: 0;
        padding-right: 0;
    }

    .seo-content__inner.container {
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* Ana sayfa — konum kenar çubuğu */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.home-layout {
    display: grid;
    grid-template-columns: minmax(0, 276px) minmax(0, 1fr);
    gap: 24px 22px;
    align-items: start;
    padding-top: 8px;
    padding-bottom: 48px;
}

.home-layout__main {
    min-width: 0;
}

/* Ana sayfa ilan filtreleri (GET) */
.home-listing-filters-wrap {
    margin-bottom: 16px;
}

.home-listing-filters {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.home-listing-filters__row--dropdowns {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: stretch;
    border: 1px solid #d9dde3;
    background: #f8f8f8;
}

.home-filter-dd {
    position: relative;
    border-right: 1px solid #d9dde3;
    background: #f8f8f8;
    flex: 1 0 120px;
    min-width: 110px;
    max-width: 170px;
}

.home-filter-dd:last-child {
    border-right: 0;
}

.home-filter-dd[open] {
    background: #ffffff;
    z-index: 10;
}

.home-filter-dd__summary {
    list-style: none;
    cursor: pointer;
    padding: 10px 9px 10px 8px;
    font-weight: 600;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #353a40;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    user-select: none;
    min-height: 39px;
    white-space: nowrap;
}

.home-filter-dd__summary::-webkit-details-marker {
    display: none;
}

.home-filter-dd__summary::before {
    content: '';
    width: 10px;
    height: 10px;
    border: 1px solid #bfc5cd;
    background: #fff;
    box-sizing: border-box;
    flex-shrink: 0;
}

.home-filter-dd__summary::after {
    content: '';
    margin-left: auto;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #df5b92;
    transition: transform 0.2s ease;
}

.home-filter-dd[open] .home-filter-dd__summary::after {
    transform: rotate(180deg);
}

.home-filter-dd__body {
    position: absolute;
    top: calc(100% + 1px);
    left: -1px;
    min-width: 220px;
    max-width: 310px;
    background: #fff;
    border: 1px solid #d9dde3;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.09);
    padding: 10px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 15;
}

.home-filter-dd__body--scroll {
    max-height: 250px;
    overflow-y: auto;
}

.home-filter-dd__body--nat {
    max-height: 270px;
}

.home-filter-dd__note {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0 0 6px;
    line-height: 1.35;
}

.home-filter-dd__chk {
    font-size: 0.85rem;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    line-height: 1.35;
}

.home-filter-dd__chk input {
    margin-top: 3px;
    flex-shrink: 0;
}

.home-listing-filters__row--quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.home-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid #d7d7d7;
    background: #f6f6f6;
    font-size: 0.76rem;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.home-filter-pill input {
    width: 10px;
    height: 10px;
    margin: 0;
}

.home-filter-pill:has(input:checked) {
    border-color: #df5b92;
    background: #fff0f6;
    color: #8d1f57;
}

@media (max-width: 640px) {
    .home-filter-dd {
        flex: 1 1 calc(50% - 1px);
        max-width: none;
        min-width: 0;
    }
    .home-filter-dd__summary {
        font-size: 0.72rem;
    }
    .home-filter-dd__body {
        min-width: 200px;
        max-width: 260px;
    }
}

/* FAQ (/faq) — iki sütun, ince ayırıcı, düz beyaz */
.faq-page {
    background: #ffffff;
    border-radius: 0;
    padding: 0 0 8px;
}

.faq-page__header {
    margin-bottom: 8px;
}

.faq-page__title {
    margin: 0 0 12px;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1c1917;
}

.faq-page__lead {
    margin: 0 0 24px;
    line-height: 1.55;
    color: #57534e;
    max-width: 56rem;
}

.faq-page__list {
    background: #ffffff;
}

.faq-row {
    display: grid;
    grid-template-columns: minmax(0, 30%) minmax(0, 70%);
    gap: 20px 36px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid #eeeeee;
}

.faq-row:last-child {
    border-bottom: none;
}

.faq-row__q {
    margin: 0;
    font-weight: 500;
    color: #1c1917;
    line-height: 1.5;
}

.faq-row__a {
    margin: 0;
    color: #292524;
    line-height: 1.65;
    font-size: inherit;
}

.faq-row__a p {
    margin: 0 0 1em;
}

.faq-row__a p:last-child {
    margin-bottom: 0;
}

.faq-row__a ul {
    margin: 0.5em 0 0.75em;
    padding-left: 1.25em;
    list-style: disc;
}

.faq-row__a li + li {
    margin-top: 0.35em;
}

.home-loc-sidebar {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(120, 113, 108, 0.18);
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(28, 25, 23, 0.055);
    overflow: hidden;
    /* Sayfa kaydırmasıyla birlikte hareket eder; liste içinde ayrı scroll yok */
    position: relative;
    align-self: start;
}

/* Mobil: kısa ülke / şehir seçici + arama (masaüstünde gizli) */
.home-loc-mobile {
    display: none;
}

.home-loc-mobile__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-loc-mobile .home-loc-mobile__inner {
    background: linear-gradient(180deg, #fce7f3 0%, #fbcfe8 55%, #f9a8d4 100%);
    border-radius: 18px;
    padding: 14px 12px 16px;
    border: 1px solid rgba(244, 63, 94, 0.18);
}

.home-loc-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 999px;
    padding: 11px 14px;
    min-height: 48px;
    border: 1px solid rgba(225, 29, 72, 0.1);
    box-shadow: 0 2px 10px rgba(190, 18, 60, 0.06);
}

.home-loc-pill--disabled {
    opacity: 0.72;
}

.home-loc-pill__icon {
    color: #e11d48;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    font-size: 0.95rem;
}

.home-loc-pill__select-wrap {
    flex: 1;
    min-width: 0;
}

.home-loc-pill__select {
    width: 100%;
    border: 0;
    background: transparent;
    font: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    color: #be123c;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    padding: 0;
    line-height: 1.3;
}

.home-loc-pill--disabled .home-loc-pill__select {
    color: #78716c;
    cursor: not-allowed;
}

.home-loc-pill__chev {
    color: #a8a29e;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.home-loc-pill--search {
    gap: 12px;
}

.home-loc-pill__search-input {
    flex: 1;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 0.9rem;
    color: #44403c;
    min-width: 0;
    padding: 0;
}

.home-loc-pill__search-input::placeholder {
    color: #a8a29e;
}

.home-loc-pill__search-icon {
    color: #a8a29e;
    flex-shrink: 0;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .home-loc-mobile {
        display: block;
    }
    .home-loc-desktop {
        display: none !important;
    }
    .home-loc-sidebar {
        background: transparent;
        border: none;
        box-shadow: none;
        overflow: visible;
    }
}

.home-loc-search-wrap {
    position: relative;
    padding: 10px 10px 8px;
    border-bottom: 1px solid rgba(120, 113, 108, 0.12);
}

.home-loc-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #a8a29e;
    font-size: 0.8rem;
    pointer-events: none;
}

.home-loc-search {
    width: 100%;
    padding: 8px 10px 8px 34px;
    border: 1px solid #e7e5e4;
    border-radius: 10px;
    font-size: 0.84rem;
    background: #fafaf9;
}

.home-loc-header {
    padding: 10px 12px;
    font-weight: 800;
    font-size: 0.94rem;
    color: #fff;
    text-align: center;
    background: linear-gradient(120deg, #ea580c 0%, #9333ea 55%, #7c3aed 100%);
    letter-spacing: 0.02em;
}

.home-loc-header--world {
    background: linear-gradient(120deg, #0d9488 0%, #2563eb 50%, #4f46e5 100%);
}

.home-loc-list {
    /* Tam yükseklik: ülkeler / şehirler sayfa kaydırmasıyla görünür, kutu içi scroll yok */
    padding: 6px 0 10px;
}

.home-loc-row,
.home-loc-summary {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(120, 113, 108, 0.1);
}

.home-loc-row--all {
    font-weight: 600;
}

.home-loc-row.is-active,
.home-loc-details.is-active > .home-loc-summary {
    background: rgba(254, 243, 199, 0.45);
}

.home-loc-flag {
    flex-shrink: 0;
    font-size: 0.92rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Sol menü: flag-icons — ör. flag24 fi fi-tr, fi fi-al (ISO 3166-1 alpha-2) */
.home-loc-sidebar .home-loc-flag-icon.flag24.fi {
    /* flag-icons: .fi ≈ 4:3; 24×18 px hedef */
    width: 24px !important;
    height: 18px !important;
    font-size: 18px;
    line-height: 18px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    vertical-align: middle;
    background-size: cover;
    background-position: center;
}

.home-loc-sidebar .home-loc-flag-icon--fallback {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    background: linear-gradient(180deg, #e8e7e6 0%, #d4d2cf 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.home-loc-sidebar .home-loc-flag-icon--world {
    width: 24px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #38bdf8 0%, #0ea5e9 35%, #0369a1 100%);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.25),
        inset 0 -2px 6px rgba(0, 0, 0, 0.15);
    position: relative;
}

.home-loc-sidebar .home-loc-flag-icon--world::after {
    content: "";
    position: absolute;
    inset: 3px 3px 4px 3px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    opacity: 0.9;
}

.home-loc-link {
    flex: 1;
    min-width: 0;
    color: #be185d;
    font-weight: 700;
    text-decoration: none;
}

.home-loc-link:hover {
    text-decoration: underline;
}

.home-loc-count {
    flex-shrink: 0;
    color: #78716c;
    font-size: 0.76rem;
}

.home-loc-details {
    border-bottom: 1px solid rgba(120, 113, 108, 0.1);
}

.home-loc-details > summary {
    list-style: none;
    cursor: pointer;
}

.home-loc-details > summary::-webkit-details-marker {
    display: none;
}

.home-loc-summary::after {
    content: "+";
    margin-left: auto;
    font-weight: 800;
    color: #44403c;
    flex-shrink: 0;
}

.home-loc-details[open] > .home-loc-summary::after {
    content: "−";
}

/* Açılan ülke / şehir altı — nötr gri tonlar */
.home-loc-children {
    background: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
    border-top: 1px solid rgba(113, 113, 122, 0.22);
    border-left: 3px solid #a1a1aa;
    margin: 0 6px 4px 10px;
    border-radius: 0 10px 10px 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    overflow: hidden;
}

.home-loc-children .home-loc-row,
.home-loc-children .home-loc-summary {
    border-bottom-color: rgba(113, 113, 122, 0.14);
}

.home-loc-children .home-loc-link {
    color: #9f1239;
    font-weight: 600;
}

/* İl / alt bölüm içinde tekrar açılan seviye — biraz daha koyu gri */
.home-loc-children .home-loc-children {
    background: linear-gradient(180deg, #e7e5e4 0%, #d6d3d1 100%);
    border-left-color: #78716c;
    margin: 0 4px 6px 8px;
    border-radius: 0 8px 8px 8px;
}

.home-loc-children .home-loc-children .home-loc-link {
    color: #831843;
    font-weight: 600;
}

.home-loc-children .home-loc-row.is-active,
.home-loc-children .home-loc-details.is-active > .home-loc-summary {
    background: rgba(120, 113, 108, 0.2);
}

.home-loc-children .home-loc-children .home-loc-row.is-active,
.home-loc-children .home-loc-children .home-loc-details.is-active > .home-loc-summary {
    background: rgba(87, 83, 78, 0.18);
}

.seo-location-body {
    margin-top: 1rem;
    line-height: 1.65;
    color: #44403c;
}

@media (max-width: 991px) {
    .home-layout {
        grid-template-columns: 1fr;
    }
    .home-loc-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }
    .faq-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}