/* ==========================================================================
   CHEFCARPENDİK — style.css
   Tema: Siyah / koyu gri + kan kırmızısı vurgu (#E50914)
   Yapı: 1) Değişkenler 2) Reset 3) Genel 4) Header 5) Bölümler
         6) Blog 7) Footer 8) Yüzen butonlar 9) Animasyonlar 10) Responsive
   ========================================================================== */

/* ---------- 1) CSS DEĞİŞKENLERİ (renkleri tek yerden yönetiriz) ---------- */
:root {
    --bg:        #0a0a0a;   /* en koyu zemin */
    --bg-soft:   #121212;   /* yumuşak koyu */
    --surface:   #1a1a1a;   /* kart yüzeyi */
    --surface-2: #222222;   /* ikincil yüzey */
    --line:      #2a2a2a;   /* ince çizgiler */
    --text:      #f5f5f5;   /* ana metin */
    --muted:     #a8a8a8;   /* soluk metin */
    --accent:    #E50914;   /* kan kırmızısı vurgu */
    --accent-2:  #ff2b35;   /* parlak kırmızı (hover) */
    --whatsapp:  #25D366;   /* WhatsApp yeşili */
    --radius:    14px;
    --shadow:    0 10px 30px rgba(0,0,0,.45);
    --container: 1200px;
    --header-h:  84px;
    --ease:      cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2) RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
    /* Gövde metni: Inter (yüksek okunabilirlik). Başlıklar: Sora (modern, geometrik) */
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6,
.section-title, .hero h1, .brand-mark, .eyebrow, .article-head h1, .article-body h2 {
    font-family: 'Sora', 'Inter', system-ui, sans-serif;
    letter-spacing: -.02em;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Erişilebilirlik: içeriğe atla linki */
.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 9999;
    background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- 3) GENEL DÜZEN ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.section { padding: 90px 0; }
.section--alt { background: var(--bg-soft); }

.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.eyebrow {
    display: inline-block; color: var(--accent); font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; font-size: .8rem; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; }
.section-title .accent { color: var(--accent); }
.section-desc { color: var(--muted); margin-top: 16px; }

/* Butonlar */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: .95rem;
    border: 2px solid transparent; cursor: pointer; transition: all .3s var(--ease);
    white-space: nowrap;
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-2); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(229,9,20,.4); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- 4) HEADER (yapışkan + scroll YÖNÜNE göre gizlenen) ---------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1002;
    height: var(--header-h);
    display: flex; align-items: center;
    background: rgba(10,10,10,.96);
    border-bottom: 1px solid transparent;
    /* YENİ animasyon: yukarı/aşağı kayma (transform) + arka plan geçişi */
    transition: transform .45s var(--ease), background .35s var(--ease),
                box-shadow .35s var(--ease), border-color .35s var(--ease);
    will-change: transform;
}
/* Sayfanın en tepesinde: tamamen saydam ve çerçevesiz */
.site-header.at-top { background: transparent; box-shadow: none; border-bottom-color: transparent; }
/* Aşağı kaydırınca header yukarı kayıp gizlenir (modern auto-hide) */
.site-header.header-hidden { transform: translateY(-100%); }
/* Yukarı kaydırırken görünür + katı koyu arka plan + ince alt çizgi */
.site-header.scrolled {
    background: rgba(12,12,12,.9);
    backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 8px 30px rgba(0,0,0,.5);
    border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 18px; }

/* Marka / logo */
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-weight: 800; font-size: 1.5rem; }
.brand-mark .accent { color: var(--accent); }
.brand-sub { font-size: .7rem; letter-spacing: 6px; color: var(--muted); margin-top: 4px; }

/* Masaüstü menü — YENİ hover efekti: pürüzsüz "pill" arka plan (yazıya değen alt çizgi YOK) */
.main-nav > ul { display: flex; gap: 4px; align-items: center; }
.main-nav a {
    position: relative; display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px; border-radius: 10px;
    font-weight: 600; font-size: .95rem; color: var(--muted);
    transition: color .25s var(--ease), background .25s var(--ease);
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.main-nav a.is-active { color: #fff; background: rgba(229,9,20,.18); }
.main-nav .caret { font-size: .6rem; opacity: .8; transition: transform .3s var(--ease); }
.has-dropdown:hover .caret { transform: rotate(180deg); }

.header-cta { padding: 10px 22px; }

/* ---------- 4b) HİZMETLER MEGA MENÜ (dropdown) ---------- */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(640px, 92vw);
    background: rgba(18,18,18,.98); backdrop-filter: blur(14px);
    border: 1px solid var(--line); border-radius: 16px; padding: 14px;
    box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
/* Buton ile menü arasındaki boşlukta menü kapanmasın diye görünmez köprü */
.dropdown::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dropdown-item {
    display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px;
    transition: background .2s var(--ease), transform .2s var(--ease);
}
.dropdown-item:hover { background: rgba(229,9,20,.14); transform: translateX(3px); }
.dd-icon { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: transparent; font-size: 1.2rem; }
.dd-text { display: flex; flex-direction: column; line-height: 1.25; }
.dd-text strong { font-size: .92rem; font-weight: 600; color: #fff; }
.dd-text small { font-size: .76rem; color: var(--muted); }

/* Hamburger (mobilde görünür) */
/* Mobil menü ikonu: "+" işareti — açılınca 225° dönerek "X" olur (creative) */
.nav-toggle {
    display: none; position: relative; z-index: 1001; width: 40px; height: 40px;
    background: rgba(255,255,255,.06); border: 1px solid var(--line);
    border-radius: 12px; cursor: pointer; padding: 0;
    transition: transform .5s var(--ease), background .3s, border-color .3s;
}
.nav-toggle .bar {
    position: absolute; top: 50%; left: 50%; background: #fff; border-radius: 3px;
    transition: .45s var(--ease);
}
.nav-toggle .bar-h { width: 22px; height: 3px; transform: translate(-50%, -50%); }
.nav-toggle .bar-v { width: 3px; height: 22px; transform: translate(-50%, -50%); }
.nav-toggle.open { transform: rotate(225deg); border-color: rgba(229,9,20,.6); background: rgba(229,9,20,.12); }
.nav-toggle.open .bar { background: var(--accent); }
.nav-toggle.open .bar-v { height: 22px; }       /* "+" 45° dönünce "X" görünümü */

/* Mobil açılır menü: SAĞDAN sola kayan drawer */
.mobile-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(82%, 340px); height: 100%;
    padding-top: calc(var(--header-h) + 8px);
    background: rgba(12,12,14,.98); backdrop-filter: blur(14px);
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 60px rgba(0,0,0,.55);
    transform: translateX(100%); transition: transform .45s var(--ease);
    z-index: 1001; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
/* Drawer içindeki linkler sırayla içeri süzülsün (creative) */
.mobile-nav.open > ul > li { animation: navItemIn .5s var(--ease) both; }
.mobile-nav.open > ul > li:nth-child(1) { animation-delay: .08s; }
.mobile-nav.open > ul > li:nth-child(2) { animation-delay: .14s; }
.mobile-nav.open > ul > li:nth-child(3) { animation-delay: .20s; }
.mobile-nav.open > ul > li:nth-child(4) { animation-delay: .26s; }
.mobile-nav.open > ul > li:nth-child(5) { animation-delay: .32s; }
.mobile-nav.open > ul > li:nth-child(6) { animation-delay: .38s; }
@keyframes navItemIn { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }

/* Drawer arka planı (karartma) */
.nav-backdrop {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,.5); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.nav-backdrop.show { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }            /* menü açıkken arka plan kaymasın */

.mobile-nav > ul { padding: 14px 20px 24px; }
.mobile-nav a { display: block; padding: 14px 6px; border-bottom: 1px solid var(--line); font-weight: 600; }
.mobile-cta, .mobile-dir { display: flex !important; align-items: center; gap: 10px; }
.mobile-cta .btn-ico, .mobile-dir .btn-ico { flex: 0 0 auto; }
.mobile-cta { color: var(--accent) !important; }
.mobile-dir { color: #fff !important; }
.mobile-dir .btn-ico { color: var(--accent); }
.mobile-dir:hover { color: var(--accent) !important; }

/* Mobil alt menü (Hizmetler açılır listesi) */
.m-sub-toggle {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    background: none; border: 0; border-bottom: 1px solid var(--line);
    color: var(--text); font: inherit; font-weight: 600; padding: 14px 6px; cursor: pointer;
}
.m-sub-toggle .caret { transition: transform .3s var(--ease); font-size: .8rem; }
.m-has-sub.open .m-sub-toggle .caret { transform: rotate(180deg); color: var(--accent); }
.m-sub { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); padding-left: 12px; }
.m-has-sub.open .m-sub { max-height: 720px; }
.m-sub a { font-weight: 500; color: var(--muted); padding: 12px 6px; }
.m-sub a:hover { color: var(--accent); }

/* ---------- 5) HERO ---------- */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding-top: var(--header-h);
    background:
        linear-gradient(115deg, rgba(8,8,10,.92) 0%, rgba(8,8,10,.7) 45%, rgba(8,8,10,.4) 100%),
        url('/assets/img/services/service-ppf-arac-kaplama.png') center/cover fixed;
}
.hero::after { /* alt kısımda kırmızı parıltı */
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(229,9,20,.22), transparent 45%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4.4rem); font-weight: 900; line-height: 1.08;
    letter-spacing: -1px; margin-bottom: 22px;
}
.hero h1 .accent { color: var(--accent); }
.hero p { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; margin-top: 48px; flex-wrap: wrap; }
.hero-badge strong { display: block; font-size: 1.9rem; color: var(--accent); font-weight: 800; }
.hero-badge span { color: var(--muted); font-size: .9rem; }

/* Hero dönen başlık (her hizmet için bir başlık, animasyonla geçer) */
.hero-lead {
    display: block; font-size: clamp(1rem, 2.4vw, 1.6rem); font-weight: 700;
    color: #fff; opacity: .9; letter-spacing: 0; margin-bottom: 4px;
}
.hero-rotator { position: relative; display: block; }
.rot-line {
    position: absolute; left: 0; top: 0; width: 100%;
    color: #fff;
    opacity: 0; transform: translateY(34px) scale(.98); filter: blur(6px);
    transition: opacity .55s ease, transform .55s ease, filter .55s ease;
    pointer-events: none; will-change: opacity, transform;
}
.rot-line.is-active {
    position: relative;
    opacity: 1; transform: none; filter: none; pointer-events: auto;
}
.hero-sub {
    font-size: 1.15rem; color: var(--muted); max-width: 560px;
    margin-bottom: 34px; min-height: 3.4em;
    transition: opacity .4s ease;
}
.hero-sub.is-swapping { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
    .rot-line { transition: opacity .3s ease; transform: none; filter: none; }
}

/* Görsel (Gemini) ikonlar — emoji yerine kullanılır */
.svc-icon-img { width: 100%; height: 100%; max-width: 40px; max-height: 40px; object-fit: contain; display: block; }
.svc-icon-emoji { line-height: 1; }
.btn-ico { vertical-align: -3px; margin-right: 5px; }

/* ---------- 5b) HİZMET KARTLARI ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px 26px; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
    position: relative; overflow: hidden;
}
.card::before { /* üstte ince kırmızı çizgi hover'da uzar */
    content: ''; position: absolute; top: 0; left: 0; height: 3px; width: 0;
    background: var(--accent); transition: width .4s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: rgba(229,9,20,.5); box-shadow: var(--shadow); }
.card:hover::before { width: 100%; }
.card-icon {
    width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center;
    background: rgba(229,9,20,.12); color: var(--accent); font-size: 1.6rem; margin-bottom: 18px;
    transition: transform .3s ease, background .3s ease;
}
.card:hover .card-icon { transform: translateY(-2px) scale(1.05); background: rgba(229,9,20,.18); }
.card-icon .svc-icon-img { max-width: 44px; max-height: 44px; }
/* Arka planı temizlenmiş ikon (hizmetler sayfası) */
.card-icon--bare { background: transparent !important; border-radius: 0; width: auto; height: 64px; place-items: center start; }
.card-icon--bare .svc-icon-img { max-width: 60px; max-height: 60px; }
.card:hover .card-icon--bare { background: transparent !important; transform: translateY(-2px) scale(1.05); }
.dd-icon .svc-icon-img { max-width: 32px; max-height: 32px; }
/* Hizmet detay sayfası büyük ikon kutusu */
.svc-detail-icon {
    display: inline-grid; place-items: center; width: 88px; height: 88px;
    border-radius: 20px; background: rgba(229,9,20,.12); margin-bottom: 16px;
}
.svc-detail-icon .svc-icon-img { max-width: 58px; max-height: 58px; }
.svc-detail-icon .svc-icon-emoji { font-size: 2.6rem; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .95rem; }

/* Anasayfa hizmet kartları: arkada ilgili hizmet görseli + koyu yarı saydam kaplama.
   Görsel inline --card-bg değişkeniyle gelir; içerik (ikon, başlık, metin) aynı konumda kalır. */
/* Anasayfa hizmet kartları: arkada gerçek <img> görsel + üzerine koyu overlay.
   İçerik (ikon, başlık, metin) overlay'in üstünde kalır; konumları değişmez. */
.service-card { background-color: #101012; }
.service-card__bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0; pointer-events: none;
    transition: transform .5s var(--ease), opacity .35s ease;
    opacity: .9;
}
.service-card__overlay {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(8,8,10,.42) 0%, rgba(8,8,10,.6) 55%, rgba(6,6,8,.82) 100%);
    transition: background .35s ease;
}
/* Görsel/overlay dışındaki tüm içerik üstte ve okunaklı */
.service-card > *:not(.service-card__bg):not(.service-card__overlay) {
    position: relative; z-index: 2;
}
.service-card:hover .service-card__bg { transform: scale(1.06); opacity: 1; }
.service-card:hover .service-card__overlay {
    background: linear-gradient(180deg, rgba(8,8,10,.28) 0%, rgba(8,8,10,.46) 55%, rgba(6,6,8,.72) 100%);
}
.service-card::before { z-index: 3; }
.service-card h3 a { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.7); }
.service-card p { color: #e6e6e6; text-shadow: 0 1px 6px rgba(0,0,0,.65); }

/* ---------- 5c) NEDEN BİZ (split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.feature-list .tick { color: var(--accent); font-weight: 900; font-size: 1.2rem; flex: 0 0 auto; }
.feature-list .tick--svg { display: inline-flex; align-items: center; justify-content: center; width: 24px; }
.feature-list h4 { font-size: 1.05rem; }
.feature-list p { color: var(--muted); font-size: .92rem; }

/* ---------- 5d) GALERİ ---------- */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery a { display: block; border-radius: 12px; overflow: hidden; position: relative; }
.gallery img { aspect-ratio: 4/3; object-fit: cover; transition: transform .5s var(--ease), filter .5s; filter: grayscale(.3); }
.gallery a:hover img { transform: scale(1.08); filter: grayscale(0); }

/* ---------- 5e) CTA şeridi ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--accent), #8b0000);
    border-radius: 20px; padding: 50px; text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; }
.cta-band p { opacity: .9; margin: 12px 0 26px; }
.cta-band .btn { background: #0a0a0a; color: #fff; }
.cta-band .btn:hover { background: #000; }

/* ---------- 6) BLOG ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(229,9,20,.4); }
.post-thumb { aspect-ratio: 16/10; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-thumb img { transform: scale(1.06); }
.post-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-cat {
    align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--accent); background: rgba(229,9,20,.12);
    padding: 5px 12px; border-radius: 50px;
}
.post-card h3 { font-size: 1.15rem; line-height: 1.35; }
.post-card h3 a:hover { color: var(--accent); }
.post-meta { color: var(--muted); font-size: .82rem; margin-top: auto; display: flex; gap: 14px; }
.post-excerpt { color: var(--muted); font-size: .92rem; }

/* Blog detay (single) */
.article-hero { padding-top: calc(var(--header-h) + 30px); }
.article-head { max-width: 820px; margin: 0 auto; text-align: center; }
.article-head h1 { font-size: clamp(1.8rem,4vw,3rem); font-weight: 800; line-height: 1.2; margin: 16px 0; }
.article-cover { max-width: 980px; margin: 36px auto 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.article-cover img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.article-body { max-width: 760px; margin: 0 auto; padding: 50px 0; font-size: 1.06rem; }
.article-body h2 { font-size: 1.6rem; margin: 38px 0 14px; padding-left: 14px; border-left: 3px solid var(--accent); }
.article-body h3 { font-size: 1.18rem; margin: 26px 0 10px; color: #fff; font-weight: 700; }
.article-body p { margin-bottom: 18px; color: #d8d8d8; }
.article-body ul { margin: 0 0 22px 22px; list-style: disc; color: #d8d8d8; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: #fff; }
.article-body > :first-child { margin-top: 0; }

/* Lead (ilk paragraf) — daha büyük ve dikkat çekici */
.article-body .lead { font-size: 1.18rem; color: #eaeaea; line-height: 1.7; }

/* Numaralı uygulama süreci */
.article-body ol.steps { list-style: none; counter-reset: step; margin: 0 0 24px; padding: 0; }
.article-body ol.steps li {
    position: relative; padding: 4px 0 4px 52px; margin-bottom: 16px;
    color: #d8d8d8; min-height: 34px;
}
.article-body ol.steps li::before {
    counter-increment: step; content: counter(step);
    position: absolute; left: 0; top: 0;
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent); color: #fff; font-weight: 700; font-size: .95rem;
    box-shadow: 0 4px 14px rgba(229,9,20,.35);
}
.article-body ol.steps li strong { display: block; margin-bottom: 2px; }

/* Bilgi / vurgu kutusu */
.info-box {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm, 10px);
    padding: 16px 20px; margin: 0 0 24px;
}
.info-box p { margin: 0; }

/* Kapsam tablosu */
.article-body table {
    width: 100%; border-collapse: collapse; margin: 0 0 24px;
    font-size: .98rem;
}
.article-body table th, .article-body table td {
    text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line);
    color: #d8d8d8;
}
.article-body table th { color: #fff; font-weight: 600; background: rgba(255,255,255,.03); }

/* SSS akordeonu */
.svc-faq { margin: 8px 0 4px; }
.svc-faq details {
    border: 1px solid var(--line); border-radius: var(--radius-sm, 10px);
    padding: 0 18px; margin-bottom: 12px; background: rgba(255,255,255,.02);
    transition: border-color .2s ease;
}
.svc-faq details[open] { border-color: var(--accent); }
.svc-faq summary {
    list-style: none; cursor: pointer; padding: 16px 0;
    font-weight: 600; color: #fff; display: flex; justify-content: space-between; gap: 14px;
}
.svc-faq summary::-webkit-details-marker { display: none; }
.svc-faq summary::after { content: '+'; color: var(--accent); font-size: 1.4rem; line-height: 1; }
.svc-faq details[open] summary::after { content: '–'; }
.svc-faq details p { margin: 0 0 16px; color: #cfcfcf; }

/* Öne çıkanlar (güven şeridi) */
.svc-highlights {
    max-width: 980px; margin: 28px auto 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.svc-highlight {
    display: flex; align-items: center; gap: 12px;
    background: var(--surface, #141417); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 16px 18px;
}
.svc-highlight svg { color: var(--accent); flex: 0 0 auto; }
.svc-highlight strong { display: block; color: #fff; font-size: .98rem; }
.svc-highlight span { color: var(--muted); font-size: .82rem; }
@media (max-width: 720px) { .svc-highlights { grid-template-columns: 1fr; } }

.breadcrumb { color: var(--muted); font-size: .88rem; }
.breadcrumb a:hover { color: var(--accent); }

.back-link { display: inline-flex; gap: 8px; color: var(--accent); font-weight: 600; margin-top: 10px; }

/* ---------- 6b) İLETİŞİM HARİTASI ---------- */
.map-wrap {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow);
    filter: grayscale(.2) contrast(1.05);
}
.map-wrap iframe { display: block; }

/* ---------- 7) FOOTER ---------- */
.site-footer { background: #060606; border-top: 1px solid var(--line); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.brand--footer { margin-bottom: 16px; }
.footer-about { color: var(--muted); font-size: .95rem; max-width: 380px; }
.footer-social { display: flex; gap: 16px; margin-top: 18px; }
.footer-social a { color: var(--muted); font-weight: 600; transition: color .25s; }
.footer-social a:hover { color: var(--accent); }
.footer-title { font-size: 1.05rem; margin-bottom: 18px; }
.footer-links li, .footer-contact li { margin-bottom: 12px; color: var(--muted); }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 0; text-align: center; color: var(--muted); font-size: .85rem; }

/* ---------- 8) YÜZEN İLETİŞİM BUTONLARI ---------- */
/* Ortak buton görünümü; konumlar .fab--left / .fab--right ile verilir */
.fab {
    position: fixed; bottom: 22px; z-index: 1500;
    width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.4);
    overflow: hidden;
    transition: width .35s var(--ease), border-radius .35s var(--ease);
}
.fab--left  { left: 22px; }    /* Telefon: SOL alt köşe */
.fab--right { right: 22px; }   /* WhatsApp: SAĞ alt köşe */

/* İçindeki yazı normalde gizli; hover'da yumuşakça açılır (genişleme efekti) */
.fab-label {
    max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0;
    font-weight: 700; font-size: .9rem;
    transition: max-width .35s var(--ease), opacity .3s, margin .35s var(--ease);
}
.fab:hover { width: 178px; border-radius: 50px; }
/* Sol buton: yazı ikonun SAĞINDA açılır; sağ buton: yazı ikonun SOLUNDA açılır */
.fab--left:hover .fab-label  { max-width: 120px; opacity: 1; margin-left: 10px; }
.fab--right:hover .fab-label { max-width: 120px; opacity: 1; margin-right: 10px; }

/* WhatsApp: yeşil + yumuşak PULSE animasyonu */
.fab--whatsapp { background: var(--whatsapp); animation: pulse-green 2.2s infinite; }
/* Telefon: kırmızı + BOUNCE animasyonu (farklı bir animasyon) */
.fab--phone { background: var(--accent); animation: bounce-red 2s infinite; }
/* hover'da animasyon dursun ki yazı net okunsun */
.fab:hover { animation-play-state: paused; }

/* Yukarı çık butonu — SAĞDA, WhatsApp'ın biraz üstünde (çok yakın değil) + süzülme animasyonu */
.to-top {
    position: fixed; right: 28px; bottom: 96px; z-index: 1400;
    width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
    background: var(--surface-2); color: #fff; cursor: pointer; font-size: 1.1rem;
    opacity: 0; pointer-events: none; transform: translateY(12px);
    transition: opacity .35s, transform .35s var(--ease), background .3s, border-color .3s;
}
.to-top.show {
    opacity: 1; pointer-events: auto;
    animation: float-up 2.4s ease-in-out infinite; /* yumuşak süzülme animasyonu */
}
.to-top:hover {
    background: var(--accent); border-color: var(--accent);
    animation-play-state: paused; transform: translateY(-4px) scale(1.08);
}

/* ---------- 9) ANİMASYONLAR ---------- */
/* WhatsApp pulse: yeşil halka dalgası */
@keyframes pulse-green {
    0%   { box-shadow: 0 8px 22px rgba(0,0,0,.4), 0 0 0 0 rgba(37,211,102,.55); }
    70%  { box-shadow: 0 8px 22px rgba(0,0,0,.4), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 8px 22px rgba(0,0,0,.4), 0 0 0 0 rgba(37,211,102,0); }
}
/* Telefon bounce: hafif zıplama + kırmızı parıltı */
@keyframes bounce-red {
    0%, 100% { transform: translateY(0);   box-shadow: 0 8px 22px rgba(229,9,20,.45); }
    50%      { transform: translateY(-7px); box-shadow: 0 16px 28px rgba(229,9,20,.6); }
}
/* Yukarı çık butonu: yumuşak yukarı-aşağı süzülme */
@keyframes float-up {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* Scroll ile içeri kayma efekti (JS .in-view ekler) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Kullanıcı "hareketi azalt" derse animasyonları kapat (erişilebilirlik) */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}

/* ---------- 10) RESPONSIVE ---------- */
@media (max-width: 992px) {
    .grid-3, .grid-4, .post-grid, .gallery { grid-template-columns: repeat(2,1fr); }
    .split { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .main-nav, .header-cta { display: none; }   /* masaüstü menü gizlenir */
    .nav-toggle { display: flex; }                /* hamburger görünür */
    .section { padding: 64px 0; }
    .hero { background-attachment: scroll; }       /* mobilde fixed bg performans sorunu yapmasın */
}
@media (max-width: 560px) {
    .grid-3, .grid-4, .post-grid, .gallery, .footer-grid { grid-template-columns: 1fr; }
    .cta-band { padding: 34px 22px; }
    .fab { width: 54px; height: 54px; }
    .hero-actions .btn { flex: 1; justify-content: center; }
}
