/* ============================================================
   OnlineMasajYap - Ana Site Stil Dosyası
   Modern, Karanlık/Açık Tema Uyumlu
   ============================================================ */

/* ── Reset & Vars ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Tipografi */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    /* Açık Tema — Spa / Zen Paleti */
    --bg-primary: #f8f6f2;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-elevated: #f0ece5;
    --text-primary: #2c2a26;
    --text-secondary: #5e5b54;
    --text-muted: #908d86;
    --accent: #7a9e7e;
    --accent-hover: #5d8261;
    --accent-light: rgba(122, 158, 126, 0.12);
    --border: rgba(0, 0, 0, 0.07);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --hero-gradient: linear-gradient(135deg, #2c3e2d 0%, #3a4f3b 50%, #4a6040 100%);
    --overlay: rgba(255,255,255,0.85);
    --danger: #c0504d;
    --success: #5a9e6f;
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

[data-theme="dark"] {
    --bg-primary: #111210;
    --bg-secondary: #1a1b18;
    --bg-card: #1e201c;
    --bg-elevated: #282a26;
    --text-primary: #e8e5de;
    --text-secondary: #a5a29a;
    --text-muted: #6b6960;
    --accent: #8cb892;
    --accent-hover: #a3ceaa;
    --accent-light: rgba(140, 184, 146, 0.1);
    --border: rgba(255, 255, 255, 0.06);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --hero-gradient: linear-gradient(135deg, #0a0f0a 0%, #152015 50%, #1a2a1a 100%);
    --overlay: rgba(0,0,0,0.85);
}

/* ── Base ── */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    transition: background 0.35s ease, color 0.35s ease;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; display: block; }

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}
.logo-icon { font-size: 1.5rem; }

.header-nav {
    display: flex;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 450;
    transition: all 0.2s;
}
.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--accent-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-elevated);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s;
}
.theme-toggle:hover { background: var(--accent-light); }
.theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-light { display: inline; }
[data-theme="dark"] .theme-icon-dark { display: none; }
[data-theme="light"] .theme-icon-light { display: inline; }
[data-theme="light"] .theme-icon-dark { display: none; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── Hero Banner ── */
.hero-banner {
    position: relative;
    padding: 4rem 1.25rem 3rem;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--hero-gradient);
    opacity: 1;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(200,149,108,0.15) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
}
.stat-dot.live {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(58,170,109,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(58,170,109,0); }
}

/* ── Desktop Notice ── */
.desktop-notice {
    display: none;
    padding: 3rem 1.25rem;
    text-align: center;
}

.notice-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.notice-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.notice-card h2 { font-size: 1.35rem; margin-bottom: 0.75rem; font-weight: 600; }
.notice-card p { color: var(--text-secondary); font-size: 0.95rem; }
.notice-url {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent);
    font-size: 1.1rem;
}

/* ── Vitrin ── */
.vitrin-section {
    padding: 1.5rem 0.75rem 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.vitrin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.25rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.ilan-sayisi {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-elevated);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Grid */
.vitrin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* İlan Kartı */
.ilan-kart {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    animation: kartGir 0.4s ease both;
}

@keyframes kartGir {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.ilan-kart:active {
    transform: scale(0.97);
}

.kart-resim-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-elevated);
}

.kart-resim-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ilan-kart:hover .kart-resim-wrap img {
    transform: scale(1.05);
}

.kart-konum {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-weight: 450;
}

.kart-bilgi {
    padding: 0.65rem 0.6rem 0.75rem;
}

.kart-isim {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.2rem;
}

.kart-hizmet {
    font-size: 0.68rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Placeholder resim */
.kart-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    font-size: 2.5rem;
    color: var(--text-muted);
}

/* ── İlan Detay ── */
.ilan-detay {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 0.75rem 3rem;
}

.detay-geri {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 450;
}
.detay-geri:hover { color: var(--accent); }

.detay-resim-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-elevated);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-md);
}
.detay-resim-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detay-ust {
    margin-bottom: 1.25rem;
}

.detay-baslik {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.detay-konum {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.detay-hizmetler {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1rem 0;
}

.hizmet-etiketi {
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-weight: 500;
}

.detay-tanitim {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.detay-tanitim h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.detay-tanitim p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.92rem;
}

/* İletişim Butonları */
.iletisim-butonlar {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.btn-iletisim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    color: #fff;
}
.btn-iletisim:hover { color: #fff; transform: translateY(-1px); }

.btn-whatsapp {
    background: #25D366;
}
.btn-whatsapp:hover { background: #1eb954; box-shadow: 0 4px 20px rgba(37,211,102,0.35); }

.btn-telegram {
    background: #0088cc;
}
.btn-telegram:hover { background: #0077b5; box-shadow: 0 4px 20px rgba(0,136,204,0.35); }

.btn-telefon {
    background: var(--accent);
}
.btn-telefon:hover { background: var(--accent-hover); box-shadow: 0 4px 20px rgba(200,149,108,0.35); }

/* ── SEO Sayfa ── */
.seo-sayfa {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.25rem 3rem;
}

.seo-sayfa h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.seo-icerik {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}
.seo-icerik p { margin-bottom: 1rem; }
.seo-icerik h2 { font-size: 1.3rem; margin: 1.5rem 0 0.75rem; color: var(--text-primary); }
.seo-icerik h3 { font-size: 1.1rem; margin: 1.25rem 0 0.5rem; color: var(--text-primary); }

/* ── 404 ── */
.sayfa-404 {
    text-align: center;
    padding: 5rem 1.25rem;
}
.sayfa-404 h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--text-muted);
}
.sayfa-404 p { color: var(--text-secondary); margin: 0.5rem 0 2rem; }

.btn-primary {
    display: inline-flex;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.2s;
}
.btn-primary:hover { background: var(--accent-hover); color: #fff; }

/* ── Footer ── */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 3rem 1.25rem 0;
    margin-top: 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-brand .logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}
.footer-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 0.75rem;
}

.footer-links h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.footer-links nav a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.footer-links nav a:hover { color: var(--accent); }

.btn-cta {
    display: inline-flex;
    padding: 0.85rem 1.5rem;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s;
    text-align: center;
}
.btn-cta:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200,149,108,0.35);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ── Loading ── */
.vitrin-loading, .detay-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 3rem 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── Responsive ── */
@media (min-width: 769px) {
    .desktop-notice { display: block; }
    .vitrin-section { display: none; }
}

@media (max-width: 768px) {
    .desktop-notice { display: none; }
    .vitrin-section { display: block; }

    .header-nav { display: none; }
    .mobile-menu-btn { display: flex; }

    .header-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        padding: 0.75rem 1.25rem;
        gap: 0.25rem;
        box-shadow: var(--shadow-md);
        animation: menuSlide 0.25s ease;
    }

    @keyframes menuSlide {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-banner {
        padding: 2.5rem 1rem 2rem;
    }
}

@media (max-width: 380px) {
    .vitrin-grid { gap: 0.5rem; }
    .kart-bilgi { padding: 0.5rem; }
    .kart-isim { font-size: 0.75rem; }
}

/* ── Animasyonlar ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ── FAQ Sayfası ── */
.seo-icerik .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.85rem;
    overflow: hidden;
    transition: border-color 0.2s;
}
.seo-icerik .faq-item:hover {
    border-color: var(--accent);
}
.seo-icerik .faq-item h2 {
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.15rem;
    margin: 0;
    color: var(--text-primary);
    cursor: default;
    line-height: 1.4;
}
.seo-icerik .faq-item p {
    padding: 0 1.15rem 1rem;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── SEO İçerik Genel ── */
.seo-icerik h1 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-primary);
}
.seo-icerik h2 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.75rem 0 0.65rem;
    color: var(--text-primary);
    line-height: 1.35;
}
.seo-icerik h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
    color: var(--text-primary);
}
.seo-icerik p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.93rem;
    margin-bottom: 0.85rem;
}
.seo-icerik strong {
    color: var(--text-primary);
    font-weight: 600;
}
.seo-icerik ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 1rem;
}
.seo-icerik ul li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.35rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
}
.seo-icerik ul li:last-child {
    border-bottom: none;
}
.seo-icerik ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* ── Footer SEO Metin ── */
.footer-seo-text {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-seo-text p {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}


/* ── Ana Sayfa SEO İçerik Alanı (Vitrin Altı) ── */
.anasayfa-seo {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.25rem 1rem;
}
.anasayfa-seo:empty { display: none; }
.anasayfa-seo h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
    color: var(--text-primary);
}
.anasayfa-seo h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
    color: var(--text-primary);
}
.anasayfa-seo p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

/* ── Blog Liste ── */
.blog-liste {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
}
.blog-header { margin-bottom: 1.5rem; }
.blog-header .section-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 0.35rem;
}
.section-desc { color: var(--text-secondary); font-size: 0.9rem; }
.blog-grid { display: flex; flex-direction: column; gap: 1rem; }
.blog-kart {
    display: flex;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.25s;
    text-decoration: none;
    color: inherit;
}
.blog-kart:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.blog-kart-resim {
    width: 140px; min-height: 120px; flex-shrink: 0;
    background: var(--bg-elevated); overflow: hidden;
}
.blog-kart-resim img { width: 100%; height: 100%; object-fit: cover; }
.blog-kart-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--text-muted);
}
.blog-kart-bilgi {
    flex: 1; padding: 0.85rem 0.85rem 0.85rem 0;
    display: flex; flex-direction: column; justify-content: center;
}
.blog-kart-baslik {
    font-size: 0.95rem; font-weight: 600;
    color: var(--text-primary); line-height: 1.35; margin-bottom: 0.3rem;
}
.blog-kart-ozet {
    font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 0.4rem;
}
.blog-kart-alt { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.blog-kart-tarih { font-size: 0.7rem; color: var(--text-muted); }
.blog-kart-etiketler { display: flex; gap: 0.3rem; }
.blog-kart-etiketler .hizmet-etiketi { font-size: 0.6rem; padding: 0.15rem 0.45rem; }

/* ── Blog Detay ── */
.blog-detay { max-width: 720px; margin: 0 auto; padding: 0 1.25rem 3rem; }
.blog-detay-kapak {
    width: 100%; border-radius: var(--radius-lg); overflow: hidden;
    margin-bottom: 1.5rem; aspect-ratio: 16/9; background: var(--bg-elevated);
}
.blog-detay-kapak img { width: 100%; height: 100%; object-fit: cover; }
.blog-detay-baslik {
    font-family: var(--font-display); font-size: 1.5rem;
    font-weight: 700; line-height: 1.3; margin-bottom: 0.5rem;
}
.blog-detay-meta {
    display: flex; gap: 0.35rem; flex-wrap: wrap;
    color: var(--text-muted); font-size: 0.8rem; margin-bottom: 0.5rem;
}
.blog-icerik { margin-top: 1.5rem; }

@media (max-width: 480px) {
    .blog-kart { flex-direction: column; }
    .blog-kart-resim { width: 100%; min-height: 160px; }
    .blog-kart-bilgi { padding: 0.85rem; }
}

/* ════════════════════════════════════════════
   İletişim Butonları (Kart) — Sabit Yükseklik
   ════════════════════════════════════════════ */
.kart-butonlar {
    padding: 0 0.6rem 0.6rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    min-height: 36px;
    align-items: center;
}

/* TEK KANAL: Full-width metinli buton — yükseklik 36px sabit */
.kb-tek {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    height: 36px;
    padding: 0 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1;
}
.kb-tek svg { width: 14px; height: 14px; flex-shrink: 0; }
.kb-tek.btn-wa  { background: #25D366; }
.kb-tek.btn-wa:hover  { background: #1eb954; }
.kb-tek.btn-tg  { background: #0088cc; }
.kb-tek.btn-tg:hover  { background: #0077b5; }
.kb-tek.btn-tel { background: var(--accent); }
.kb-tek.btn-tel:hover { background: var(--accent-hover); }

/* BİRDEN FAZLA KANAL: İkon butonlar — yükseklik 36px sabit */
.kart-butonlar-multi {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.kb-ikon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
}
.kb-ikon svg { width: 16px; height: 16px; }
.kb-ikon.btn-wa  { background: #25D366; }
.kb-ikon.btn-wa:hover  { background: #1eb954; transform: scale(1.1); }
.kb-ikon.btn-tg  { background: #0088cc; }
.kb-ikon.btn-tg:hover  { background: #0077b5; transform: scale(1.1); }
.kb-ikon.btn-tel { background: var(--accent); }
.kb-ikon.btn-tel:hover { background: var(--accent-hover); transform: scale(1.1); }

/* ════════════════════════════════════════════
   GÖREV 4: Modal (Popup) Tasarımı
   ════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.modal-acik {
    opacity: 1;
    visibility: visible;
}

.modal-kart {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 92vh;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 0 -10px 50px rgba(0,0,0,0.3);
}
.modal-acik .modal-kart {
    transform: translateY(0);
}

/* Desktop: ortada, yuvarlatılmış */
@media (min-width: 600px) {
    .modal-overlay { align-items: center; }
    .modal-kart {
        border-radius: var(--radius-lg);
        max-height: 85vh;
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    .modal-acik .modal-kart {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-kapat {
    position: sticky;
    top: 0;
    float: right;
    z-index: 10;
    width: 40px;
    height: 40px;
    margin: 0.75rem 0.75rem 0 0;
    border: none;
    background: var(--bg-elevated);
    color: var(--text-secondary);
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    line-height: 1;
}
.modal-kapat:hover { background: var(--accent-light); color: var(--accent); }

.modal-icerik { padding: 0 1.25rem 1.5rem; clear: both; }

.modal-resim {
    width: 100%;
    aspect-ratio: 3/4;
    max-height: 360px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-elevated);
    margin-bottom: 1rem;
}
.modal-resim img { width: 100%; height: 100%; object-fit: cover; }

.modal-baslik {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.modal-konum { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 0.5rem; }
.modal-hizmetler { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0.75rem 0; }

.modal-tanitim {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    margin: 1rem 0;
}
.modal-tanitim h3 {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}
.modal-tanitim p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    white-space: pre-line;
}

/* Modal İletişim Butonları (her zaman metinli, dikey) */
.modal-butonlar {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
}

.mb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
}
.mb-btn svg { width: 20px; height: 20px; }
.mb-btn.btn-wa  { background: #25D366; }
.mb-btn.btn-wa:hover  { background: #1eb954; box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
.mb-btn.btn-tg  { background: #0088cc; }
.mb-btn.btn-tg:hover  { background: #0077b5; box-shadow: 0 4px 20px rgba(0,136,204,0.35); }
.mb-btn.btn-tel { background: var(--accent); }
.mb-btn.btn-tel:hover { background: var(--accent-hover); box-shadow: 0 4px 20px rgba(200,149,108,0.35); }

/* ── Footer Sosyal İkonlar ── */
.footer-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.5rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-elevated);
    color: var(--text-secondary);
    transition: all 0.2s;
}
.footer-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }

/* ── 404 Geliştirilmiş ── */
.four-oh-four {
    text-align: center;
    padding: 4rem 1.25rem;
}
.fof-icon { font-size: 3rem; display: block; margin-bottom: 0.5rem; }
.four-oh-four h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.four-oh-four p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.four-oh-four .fof-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}
.four-oh-four .fof-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.four-oh-four .fof-actions .btn-secondary {
    display: inline-flex;
    padding: 0.75rem 1.5rem;
    background: var(--bg-elevated);
    color: var(--text-secondary);
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid var(--border);
}
.four-oh-four .fof-actions .btn-secondary:hover {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* ════════════════════════════════════════════
   GÖREV 4: Modal Carousel / Slider
   ════════════════════════════════════════════ */
.modal-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    max-height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-elevated);
    margin-bottom: 1rem;
    touch-action: pan-y;
}
.modal-carousel .carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.modal-carousel .carousel-track.dragging {
    transition: none;
}
.modal-carousel .carousel-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}
.modal-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-carousel .carousel-slide .kart-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* Oklar */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.2s;
    opacity: 0;
}
.modal-carousel:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover { background: rgba(0,0,0,0.7); }
.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

/* Noktalar */
.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}
.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}
.carousel-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Mobilde oklar her zaman görünsün */
@media (max-width: 600px) {
    .carousel-btn { opacity: 0.7; }
    .carousel-btn:active { opacity: 1; }
}
