/* MasajRehberi Türkiye - Modern, Hızlı ve Mobil Uyumlu Stil Dosyası */
:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #ccfbf1;
    --secondary: #1e293b;
    --accent: #d97706;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --bg: #f8fafc;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --text-main: #334155;
    --text-muted: #64748b;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { color: var(--primary-dark); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--primary); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 16px; width: 100%; }

/* Üst Başlık (Header) */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
}
.brand-logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { font-weight: 600; color: #475569; font-size: 14px; }
.nav-links a:hover { color: var(--primary); }
.btn-add-salon {
    background: var(--primary);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 2px 4px rgba(13, 148, 136, 0.2);
}
.btn-add-salon:hover { background: var(--primary-dark); }

/* Hero Bölümü */
.hero-section {
    background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
}
.hero-title { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.hero-subtitle { font-size: 16px; opacity: 0.9; max-width: 650px; margin: 0 auto 30px auto; }

/* Arama ve Şehir Seçim Kartı */
.search-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.search-card select, .search-card input {
    flex: 1;
    min-width: 200px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    color: var(--secondary);
    background: #ffffff;
}
.search-card select:focus, .search-card input:focus {
    outline: none;
    border-color: var(--primary);
}
.search-card button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.search-card button:hover { background: var(--primary-dark); }

/* Breadcrumb */
.breadcrumb-nav { padding: 14px 0; font-size: 13px; color: var(--text-muted); }
.breadcrumb-nav a { color: var(--text-muted); }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav span { margin: 0 6px; }

/* Grid Yapısı */
.main-layout { display: grid; grid-template-columns: 1fr 320px; gap: 30px; margin: 30px 0; }
.single-layout { margin: 30px 0; }

/* Salon Listeleme Kartları */
.salon-card {
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 20px;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.salon-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.salon-card.featured {
    border: 2px solid #fbbf24;
    background: #fffdf5;
}
.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f59e0b;
    color: #fff;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
}

.salon-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.salon-name { font-size: 18px; font-weight: 700; color: var(--secondary); }
.salon-location { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; display: flex; align-items: center; gap: 5px; }

.badges-row { display: flex; gap: 8px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}
.badge-verified { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.badge-pending { background: #fef3c7; color: #b45309; border: 1px solid #fde68a; }
.badge-rating { background: #eff6ff; color: #1d4ed8; font-weight: 700; }

.salon-about-snippet { font-size: 14px; color: #475569; margin-bottom: 14px; }

.services-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.chip { background: #f1f5f9; color: #475569; padding: 3px 8px; border-radius: 4px; font-size: 12px; }

.salon-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; padding-top: 12px; border-top: 1px solid var(--border); }
.btn-whatsapp {
    background: var(--whatsapp);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-claim {
    background: #f8fafc;
    color: #d97706;
    border: 1px solid #fde68a;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
}
.btn-claim:hover { background: #fef3c7; }

.btn-detail {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Yan Panel (Sidebar) */
.sidebar-box {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 20px;
    margin-bottom: 20px;
}
.sidebar-title { font-size: 16px; font-weight: 700; color: var(--secondary); margin-bottom: 14px; border-bottom: 2px solid var(--primary-light); padding-bottom: 8px; }
.district-list, .city-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.district-list a, .city-list a { display: flex; justify-content: space-between; font-size: 14px; color: #475569; }
.district-list a:hover, .city-list a:hover { color: var(--primary); }

/* Makale & SEO İçerik Kutusu (Alt Kısım) */
.seo-content-box {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 28px;
    margin: 30px 0;
    line-height: 1.8;
}
.seo-content-box h2 { font-size: 22px; color: var(--secondary); margin-bottom: 12px; }
.seo-content-box h3 { font-size: 17px; color: var(--primary-dark); margin: 18px 0 8px 0; }
.seo-content-box p { margin-bottom: 14px; color: #334155; }

/* SSS (FAQ) Accordion / Blokları */
.faq-box { margin-top: 25px; }
.faq-item {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 10px;
}
.faq-question { font-weight: 700; font-size: 15px; color: var(--secondary); margin-bottom: 6px; }
.faq-answer { font-size: 14px; color: #475569; }

/* AdSense Alanları */
.adsense-placeholder {
    background: #f1f5f9;
    border: 1px dashed #cbd5e1;
    border-radius: 6px;
    text-align: center;
    padding: 18px;
    margin: 20px 0;
    font-size: 12px;
    color: #94a3b8;
}

/* Sorumluluk Reddi (Disclaimer) */
.legal-disclaimer {
    background: #f1f5f9;
    border-left: 4px solid #64748b;
    padding: 14px 18px;
    font-size: 12px;
    color: #475569;
    margin-top: 30px;
    border-radius: 0 6px 6px 0;
}

/* Altbilgi (Footer) */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    margin-top: auto;
    padding: 40px 0 20px 0;
    font-size: 13px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-col h4 { color: #ffffff; font-size: 15px; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: #94a3b8; }
.footer-col a:hover { color: #ffffff; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; text-align: center; font-size: 12px; }

/* Mobil Duyarlılık (Responsive) */
@media (max-width: 850px) {
    .main-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 24px; }
    .search-card { flex-direction: column; }
    .search-card select, .search-card input, .search-card button { width: 100%; min-width: 100%; }
}

@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
    .header-inner { flex-direction: column; height: auto; padding: 12px 0; gap: 10px; }
    .salon-actions { flex-direction: column; align-items: stretch; }
    .btn-detail { margin-left: 0; text-align: center; }
}

/* 81 İl Kesintisi.net Tarzı Kurumsal Dizin Stili */
.city-directory-section {
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
    margin: 40px 0 0 0;
}
.directory-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.directory-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.directory-count-badge {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
}
.directory-subtitle {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 22px;
}
.city-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.city-pro-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.city-pro-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.12);
}
.city-pro-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
}
.city-pro-card:hover .city-pro-name {
    color: var(--primary);
}
.city-pro-plate {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    background: #f8fafc;
    border-radius: 4px;
    padding: 2px 6px;
    min-width: 24px;
    text-align: center;
}
.city-pro-card:hover .city-pro-plate {
    background: var(--primary-light);
    color: var(--primary-dark);
}
.btn-toggle-cities {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px;
    font-size: 13.5px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    margin-top: 10px;
}
.btn-toggle-cities:hover {
    background: #f1f5f9;
    color: var(--primary-dark);
}

/* 3 Adımda Rezervasyon Rehber Kartı */
.booking-steps-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    padding: 24px;
    margin: 25px 0;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.step-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #d1fae5;
    position: relative;
}
.step-number {
    position: absolute;
    top: -10px;
    left: 14px;
    background: #0d9488;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-title {
    font-size: 14px;
    font-weight: 700;
    color: #065f46;
    margin-top: 4px;
    margin-bottom: 6px;
}
.step-desc {
    font-size: 12.5px;
    color: #334155;
    line-height: 1.5;
}

/* Google Haritalar Embed Kutusu */
.maps-embed-box {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.maps-embed-box iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}
