/* ============================================================
   Malatya Beyaz Eşya Servisi — ön yüz stilleri
   Mobil öncelikli. Admin paneli style.css kullanmaya devam eder.
   ============================================================ */

:root {
    --navy: #0f2f52;
    --navy-2: #0a2240;
    --blue: #1b5c9e;
    --orange: #e0560b;
    --orange-2: #c44a07;
    --green: #1c8c4e;
    --ink: #17212c;
    --text: #33404d;
    --muted: #64717e;
    --line: #dde2e7;
    --soft: #f3f5f7;
    --paper: #fbfaf7;
    --white: #fff;
    --r: 4px;
    --head-h: 64px;
    --font: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-head: "Barlow Condensed", "Barlow", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    padding-bottom: 64px; /* mobil arama çubuğu */
}
img, svg { max-width: 100%; }
/* Uzun e-posta/adres gibi kelimeler taşmasın */
body, p, li, td, a, h1, h2, h3 { overflow-wrap: anywhere; word-break: break-word; }
.ico { flex-shrink: 0; vertical-align: middle; }
a { color: var(--blue); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .6em; }
h1, h2 { font-family: var(--font-head); font-weight: 700; letter-spacing: .2px; }
h1 { font-size: clamp(2rem, 7vw, 3.1rem); }
h2 { font-size: clamp(1.65rem, 5vw, 2.25rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 16px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }
[id] { scroll-margin-top: calc(var(--head-h) + 12px); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    min-height: 50px; padding: 12px 22px;
    font: 700 1.02rem/1.2 var(--font);
    border-radius: var(--r); border: 2px solid transparent;
    text-decoration: none; cursor: pointer;
    transition: background-color .15s, border-color .15s, color .15s;
}
.btn--call { background: var(--orange); color: #fff; }
.btn--call:hover { background: var(--orange-2); }
.btn--wa { background: var(--green); color: #fff; }
.btn--wa:hover { background: #167341; }
.btn--line { border-color: currentColor; color: var(--navy); background: transparent; }
.btn--line:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--block { width: 100%; }

/* ---------- Üst şerit ---------- */
.topbar { display: none; background: var(--navy-2); color: #c9d4df; font-size: .88rem; }
.topbar__in { display: flex; gap: 28px; align-items: center; min-height: 36px; }
.topbar__in span, .topbar__in a { display: inline-flex; align-items: center; gap: 6px; }
.topbar a { color: #fff; font-weight: 600; text-decoration: none; margin-left: auto; }

/* ---------- Başlık ---------- */
.head { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.head__in { display: flex; align-items: center; gap: 16px; min-height: var(--head-h); }

.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); margin-right: auto; }
.logo__mark {
    display: grid; place-items: center; width: 40px; height: 40px;
    background: var(--navy); color: #fff; border-radius: var(--r);
    font: 700 1.5rem/1 var(--font-head);
    box-shadow: inset 0 -4px 0 var(--orange);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__text strong { font: 700 1.28rem/1.05 var(--font-head); text-transform: uppercase; letter-spacing: .3px; }
.logo__text small { font-size: .74rem; font-weight: 600; color: var(--muted); letter-spacing: 1.6px; text-transform: uppercase; }
.logo--light { color: #fff; }
.logo--light .logo__text small { color: #9fb0c2; }

.head__call { display: none; }

.burger {
    display: grid; place-items: center; width: 46px; height: 46px;
    background: none; border: 1px solid var(--line); border-radius: var(--r);
    color: var(--ink); cursor: pointer; padding: 0;
}
.burger__close { display: none; }
.burger[aria-expanded="true"] .burger__open { display: none; }
.burger[aria-expanded="true"] .burger__close { display: block; }

.nav {
    display: none;
    position: fixed; left: 0; right: 0; top: var(--head-h); bottom: 0;
    background: #fff; overflow-y: auto; padding: 8px 16px 96px;
    flex-direction: column;
}
.nav.is-open { display: flex; }
.nav a {
    display: flex; align-items: center; min-height: 54px;
    border-bottom: 1px solid var(--line);
    color: var(--ink); font-weight: 600; font-size: 1.1rem; text-decoration: none;
}
.nav a.is-active { color: var(--orange); }
.nav .nav__call {
    margin-top: 20px; justify-content: center; gap: 10px; border: 0;
    background: var(--orange); color: #fff; border-radius: var(--r); min-height: 54px;
}
body.menu-open { overflow: hidden; }

/* ---------- Genel bölümler ---------- */
.sec { padding: 48px 0; }
.sec--soft { background: var(--soft); }
.sec--navy { background: var(--navy); color: #d5dfe9; }
.sec--navy h2, .sec--navy h3 { color: #fff; }
.sec__head { max-width: 720px; margin-bottom: 28px; }
.sec__head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.sec--navy .sec__head p { color: #b7c6d6; }
.kicker {
    display: inline-block; margin-bottom: 10px;
    font-size: .8rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
    color: var(--orange);
}

/* ---------- Hero + slider ---------- */
.hero { background: var(--navy); color: #d8e2ec; position: relative; overflow: hidden; }
.hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; z-index: 3;
    background: repeating-linear-gradient(-45deg, var(--orange) 0 14px, #f2a23a 14px 28px);
}
.hero__in { position: relative; display: grid; gap: 0; padding-bottom: 46px; }
.hero__media {
    position: relative; overflow: hidden; background: #0a2240;
    aspect-ratio: 4 / 3; margin: 0 -16px 26px;
}
.slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .8s ease; }
.slide.is-active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.slide figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 44px 16px 18px;
    background: linear-gradient(transparent, rgba(6, 20, 38, .9));
    color: #fff; display: flex; flex-direction: column; gap: 2px; padding-right: 110px;
}
.slide figcaption strong { font: 700 1.35rem/1.15 var(--font-head); letter-spacing: .2px; }
.slide figcaption span { font-size: .95rem; color: #d3dde7; }
.slider__dots { position: absolute; z-index: 2; right: 10px; bottom: 14px; display: flex; gap: 2px; }
.slider__dots button { width: 30px; height: 30px; padding: 0; border: 0; background: none; cursor: pointer; display: grid; place-items: center; }
.slider__dots button::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.5); transition: background .2s, transform .2s; }
.slider__dots button.is-active::before { background: var(--orange); transform: scale(1.25); }

.hero h1 { color: #fff; margin-bottom: 14px; }
.hero h1 em { font-style: normal; color: #ffb27a; }
.hero__lead { font-size: 1.08rem; color: #c3d1de; max-width: 560px; }
.hero__actions { display: grid; gap: 10px; margin: 20px 0 22px; }
.hero__checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.hero__checks li { display: flex; gap: 10px; align-items: flex-start; }
.hero__checks .ico { color: #6fd39b; margin-top: 3px; }
.btn--big { min-height: 56px; font-size: 1.2rem; }

/* ---------- Özellik kartları ---------- */
.features { display: grid; gap: 12px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px 18px; }
.feature .ico { color: var(--orange); margin-bottom: 10px; }
.feature h3 { margin-bottom: 6px; }
.feature p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ---------- Cihaz tipleri ---------- */
.types { display: grid; gap: 16px; }
.types__group { border: 1px solid var(--line); border-radius: var(--r); padding: 18px 18px 8px; background: var(--soft); }
.types__group h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.types__group h3 .ico { color: var(--navy); }
.types .chips { margin-bottom: 10px; }

/* Servis talep kartı */
.ticket {
    background: var(--paper); color: var(--text);
    border-radius: var(--r); padding: 22px 18px 20px;
    border-top: 5px solid var(--orange);
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.ticket__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.ticket h2 { font-size: 1.6rem; margin: 0; }
.ticket__no { font-size: .8rem; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.ticket__sub { font-size: .95rem; color: var(--muted); margin-bottom: 16px; }

/* ---------- Form ---------- */
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 5px; }
.field label span { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
    width: 100%; min-height: 50px; padding: 11px 13px;
    font: 400 1rem var(--font); color: var(--ink);
    background: #fff; border: 1px solid #c3cbd3; border-radius: var(--r);
    -webkit-appearance: none; appearance: none;
}
.field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2333404d' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: 2px solid rgba(27,92,158,.2); }
.form-note { font-size: .85rem; color: var(--muted); margin: 10px 0 0; }
.hp { position: absolute !important; left: -9999px !important; }
.row2 { display: grid; gap: 0 14px; }

.alert { padding: 14px 16px; border-radius: var(--r); margin-bottom: 18px; border-left: 4px solid; }
.alert--ok { background: #e9f6ee; border-color: var(--green); color: #14532d; }
.alert--err { background: #fdecea; border-color: #c0392b; color: #7b1d13; }

/* ---------- Güven şeridi ---------- */
.facts { border-bottom: 1px solid var(--line); background: #fff; }
.facts__in { display: grid; grid-template-columns: 1fr 1fr; }
.fact { display: flex; gap: 12px; align-items: flex-start; padding: 18px 8px 18px 0; border-bottom: 1px solid var(--line); }
.fact:nth-last-child(-n+2) { border-bottom: 0; }
.fact .ico { color: var(--orange); margin-top: 2px; }
.fact strong { display: block; color: var(--ink); font-size: .98rem; line-height: 1.25; }
.fact span { font-size: .85rem; color: var(--muted); line-height: 1.35; display: block; margin-top: 2px; }

/* ---------- Hizmet kartları ---------- */
.svc { display: grid; gap: 18px; }
.svc__card {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--line); border-radius: var(--r);
    padding: 24px 20px;
}
.svc__icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: var(--r); background: var(--soft); color: var(--navy); margin-bottom: 16px; }
.svc__card h3 { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; margin-bottom: 8px; }
.svc__card p { color: var(--muted); }
.ticklist { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 7px; }
.ticklist li { position: relative; padding-left: 26px; }
.ticklist li::before {
    content: ""; position: absolute; left: 2px; top: .5em; width: 12px; height: 7px;
    border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green);
    transform: rotate(-45deg);
}
.svc__card .btn { margin-top: auto; align-self: flex-start; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; text-decoration: none; color: var(--blue); }
.link-arrow:hover { text-decoration: underline; }

/* Fotoğraflı hizmet kartı */
.svc__card--img { padding: 0; overflow: hidden; }
.svc__photo { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--soft); }
.svc__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.svc__card--img:hover .svc__photo img { transform: scale(1.03); }
.svc__body { padding: 22px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.svc__body h3 a { color: var(--ink); text-decoration: none; }
.svc__body h3 a:hover { color: var(--orange); }
.svc__body .btn { margin-top: auto; align-self: flex-start; }
.ticklist--2 { grid-template-columns: 1fr 1fr; gap: 7px 12px; }

.sec__foot { margin: 22px 0 0; font-weight: 600; color: var(--ink); }
.sec__head--row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 12px; max-width: none; }
.sec__head--row h2 { margin: 0; }

/* ---------- Fotoğraf + metin ---------- */
.media-split { display: grid; gap: 28px; align-items: center; }
.media-split__img { border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; background: var(--soft); position: relative; }
.media-split__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.media-split__img::after { content: ""; position: absolute; left: 0; bottom: 0; width: 40%; height: 5px; background: var(--orange); }
.lead { font-size: 1.08rem; color: var(--text); }

/* ---------- Adımlar ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; counter-reset: s; }
.steps li { position: relative; padding: 0 0 26px 58px; counter-increment: s; }
.steps li::before {
    content: counter(s); position: absolute; left: 0; top: 0;
    width: 40px; height: 40px; display: grid; place-items: center;
    font: 700 1.3rem/1 var(--font-head); color: #fff; background: var(--orange); border-radius: var(--r);
}
.steps li::after { content: ""; position: absolute; left: 19px; top: 44px; bottom: 4px; width: 2px; background: rgba(255,255,255,.18); }
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps h3 { margin-bottom: 4px; }
.steps p { margin: 0; color: #b7c6d6; }
.sec:not(.sec--navy) .steps p { color: var(--muted); }
.sec:not(.sec--navy) .steps li::after { background: var(--line); }

/* ---------- Fiyat notu ---------- */
.note {
    display: grid; gap: 14px;
    border: 2px dashed #c9d1d9; border-radius: var(--r);
    padding: 22px 20px; background: #fff;
}
.note h2, .note h3 { margin-bottom: 6px; }
.note h3 { font-family: var(--font-head); font-size: 1.5rem; }
.note--stack { align-self: start; }
.note p:last-child { margin-bottom: 0; }

/* ---------- Bölgeler ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 22px; }
.chips li { padding: 7px 12px; background: #fff; border: 1px solid var(--line); border-radius: 3px; font-size: .95rem; color: var(--ink); }
.chips--strong li { background: var(--navy); border-color: var(--navy); color: #fff; font-weight: 600; }
.areas h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 10px; }

/* ---------- SSS ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
    list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 14px; align-items: center;
    padding: 18px 0; font-weight: 700; color: var(--ink); font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { transition: transform .2s; color: var(--muted); }
.faq details[open] summary .ico { transform: rotate(180deg); }
.faq details > div { padding: 0 0 18px; color: var(--text); }
.faq details > div p:last-child { margin: 0; }

/* ---------- Çağrı bandı ---------- */
.cta { background: var(--orange); color: #fff; }
.cta__in { display: grid; gap: 18px; padding: 36px 16px; }
.cta h2 { color: #fff; margin: 0 0 4px; }
.cta p { margin: 0; color: #ffe6d6; }
.cta__phone { display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; font: 700 clamp(1.8rem, 7vw, 2.6rem)/1 var(--font-head); letter-spacing: .5px; }
.cta .btn--ghost:hover { color: var(--orange-2); }

/* ---------- Hizmet sayfası başlığı ---------- */
.svchero { position: relative; background: var(--navy); color: #c9d6e2; overflow: hidden; }
.svchero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; z-index: 3; background: repeating-linear-gradient(-45deg, var(--orange) 0 14px, #f2a23a 14px 28px); }
.svchero__media { aspect-ratio: 16 / 9; overflow: hidden; background: #0a2240; }
.svchero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svchero__in { position: relative; z-index: 2; padding-top: 22px; padding-bottom: 40px; }
.svchero h1 { color: #fff; margin: 8px 0 10px; }
.svchero__lead { font-size: 1.08rem; max-width: 640px; }
.svchero .hero__actions { margin: 18px 0 18px; }
.svchero__facts { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .95rem; }
.svchero__facts li { display: inline-flex; align-items: center; gap: 6px; color: #e3eaf1; }
.svchero__facts .ico { color: #6fd39b; }

.callbox { background: var(--navy); color: #c3d1de; border-radius: var(--r); padding: 22px 20px; border-top: 5px solid var(--orange); align-self: start; }
.callbox h3 { color: #fff; font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 6px; }
.callbox p { margin: 0; }
.callbox__phone { display: block; color: #fff; text-decoration: none; font: 700 2rem/1.1 var(--font-head); margin: 12px 0 10px; }
.callbox__hours { display: flex; gap: 8px; align-items: center; font-size: .92rem; }

.partgrid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.partgrid li { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--orange); border-radius: var(--r); padding: 11px 12px; }
.partgrid strong { display: block; color: var(--ink); font-size: .96rem; line-height: 1.25; margin-bottom: 3px; }
.partgrid span { display: block; font-size: .84rem; line-height: 1.35; color: var(--muted); }

.twocards { display: grid; gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 20px; }
.card__h { display: flex; gap: 10px; align-items: center; font-size: 1.55rem; margin-bottom: 16px; }
.card__h .ico { color: var(--orange); }
.card__note { margin: 14px 0 0; font-size: .9rem; color: var(--muted); padding-top: 12px; border-top: 1px dashed var(--line); }
.numlist { margin: 0; padding: 0; list-style: none; counter-reset: n; display: grid; gap: 10px; }
.numlist li { counter-increment: n; position: relative; padding-left: 36px; }
.numlist li::before { content: counter(n); position: absolute; left: 0; top: 1px; width: 24px; height: 24px; border-radius: 50%; background: var(--navy); color: #fff; font: 700 .8rem/24px var(--font); text-align: center; }

.scope { list-style: none; padding: 0; margin: 0 0 22px; display: grid; grid-template-columns: 1fr; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r); }
.scope li { display: flex; gap: 10px; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink); }
.scope li:last-child { border-bottom: 0; }
.scope .ico { color: var(--green); }
.scope li.scope__all { grid-column: 1 / -1; background: #fff8f2; color: var(--orange-2); border-right: 0 !important; border-bottom: 0; }
.scope li.scope__all .ico { color: var(--orange); }
.ticklist li.ticklist__all { grid-column: 1 / -1; font-weight: 700; color: var(--orange-2); }
.scope__h { font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 10px; }
.card--wide { padding: 26px 22px; }
.ticklist--cols { margin: 0; }

/* ---------- Alt sayfa başlığı ---------- */
.pagehead { background: var(--navy); color: #c3d1de; padding: 26px 0 30px; position: relative; }
.pagehead::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--orange); }
.pagehead h1 { color: #fff; margin: 8px 0 8px; }
.pagehead p { margin: 0; max-width: 680px; font-size: 1.05rem; }
.crumbs { font-size: .88rem; display: flex; flex-wrap: wrap; gap: 6px; color: #9fb0c2; }
.crumbs a { color: #d5dfe9; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ---------- İçerik + yan panel ---------- */
.layout { display: grid; gap: 32px; }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.4em; }
.prose ul { margin: 0 0 1.2em; }
.prose li { margin-bottom: 4px; }
.prose img { height: auto; border-radius: var(--r); }
.prose blockquote { margin: 1.2em 0; padding: 12px 18px; border-left: 4px solid var(--orange); background: var(--soft); }

.parts { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r); margin: 0 0 1.4em; padding: 0; list-style: none; }
.parts li { padding: 12px 16px; border-bottom: 1px solid var(--line); margin: 0; }
.parts li:last-child { border-bottom: 0; }
.parts strong { display: block; color: var(--ink); }
.parts span { font-size: .93rem; color: var(--muted); }

.side { display: grid; gap: 18px; align-content: start; }
.side__box { border: 1px solid var(--line); border-radius: var(--r); padding: 20px; background: #fff; }
.side__box--call { background: var(--navy); border-color: var(--navy); color: #c3d1de; }
.side__box--call h3 { color: #fff; font-family: var(--font-head); font-size: 1.5rem; }
.side__phone { display: block; color: #fff; font: 700 1.9rem/1.1 var(--font-head); text-decoration: none; margin: 6px 0 14px; }
.side__box .btn + .btn { margin-top: 10px; }
.side__links { list-style: none; padding: 0; margin: 0; }
.side__links li { border-bottom: 1px solid var(--line); }
.side__links li:last-child { border: 0; }
.side__links a { display: block; padding: 10px 0; text-decoration: none; color: var(--ink); font-weight: 600; }
.side__links a:hover { color: var(--orange); }

/* ---------- Blog ---------- */
.posts { display: grid; gap: 18px; }
.post { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; }
.post__media { display: block; overflow: hidden; background: var(--soft); }
.post__img { display: block; aspect-ratio: 16/9; object-fit: cover; width: 100%; height: auto; background: var(--soft); transition: transform .4s ease; }
.post:hover .post__img { transform: scale(1.03); }
.post__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.post__date { font-size: .82rem; color: var(--muted); margin-bottom: 6px; }
.post h2, .post h3 { font-family: var(--font); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.post h2 a, .post h3 a { color: var(--ink); text-decoration: none; }
.post h2 a:hover, .post h3 a:hover { color: var(--blue); }
.post p { color: var(--muted); font-size: .96rem; }
.post .link-arrow { margin-top: auto; }
.article__meta { font-size: .9rem; color: #9fb0c2; margin-top: 6px; }
.article__img { width: 100%; height: auto; border-radius: var(--r); margin-bottom: 24px; }

.pager { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 32px 0 0; }
.pager a { display: grid; place-items: center; min-width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--r); text-decoration: none; color: var(--ink); font-weight: 600; }
.pager .active a { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination ul { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 32px 0 0; }
.pagination a { display: grid; place-items: center; min-width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--r); text-decoration: none; color: var(--ink); font-weight: 600; }
.pagination .active a { background: var(--navy); color: #fff; border-color: var(--navy); }

.empty { text-align: center; padding: 48px 0; color: var(--muted); }

/* ---------- İletişim ---------- */
.contact { display: grid; gap: 28px; }
.cinfo { list-style: none; padding: 0; margin: 0 0 20px; border: 1px solid var(--line); border-radius: var(--r); }
.cinfo li { display: flex; gap: 14px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.cinfo li:last-child { border: 0; }
.cinfo .ico { color: var(--orange); margin-top: 3px; }
.cinfo small { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 600; }
.cinfo a, .cinfo span { color: var(--ink); font-weight: 600; text-decoration: none; }
.cinfo .big { font: 700 1.6rem/1.2 var(--font-head); }
.map { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; background: var(--soft); }
.map__consent { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 20px; color: var(--muted); }
.map__consent .ico { color: var(--navy); }
.map__consent p { margin: 0; max-width: 320px; font-size: .92rem; }
.map__consent a { font-size: .9rem; }
.form-kvkk { font-size: .8rem; color: var(--muted); margin: 8px 0 0; line-height: 1.45; }
.legal { max-width: 820px; }
.legal h2 { font-size: 1.6rem; }
.legal__table { overflow-x: auto; margin: 0 0 1.2em; }
.legal__table table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: .95rem; }
.legal__table th, .legal__table td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.legal__table th { background: var(--soft); color: var(--ink); }
.legal__date { color: var(--muted); font-size: .9rem; margin-top: 2em; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.formbox { border: 1px solid var(--line); border-radius: var(--r); padding: 22px 18px; background: var(--paper); border-top: 5px solid var(--orange); }

/* ---------- İki sütun metin ---------- */
.split { display: grid; gap: 28px; }
.plain-list { list-style: none; padding: 0; margin: 0; }
.plain-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.plain-list li:last-child { border: 0; }
.plain-list--cols { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 4px 18px; }
.plain-list .ico { color: var(--orange); margin-top: 3px; }
.plain-list strong { color: var(--ink); display: block; }

/* ---------- Alt bilgi ---------- */
.foot { background: #0b1f36; color: #9fb0c2; font-size: .96rem; }
.foot__grid { display: grid; gap: 30px; padding-top: 44px; padding-bottom: 36px; }
.foot__about p { margin: 14px 0 0; max-width: 340px; }
.foot__h { font-family: var(--font); font-size: .82rem; text-transform: uppercase; letter-spacing: 1.6px; color: #fff; margin-bottom: 12px; }
.foot__list, .foot__contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.foot a { color: #d5dfe9; text-decoration: none; }
.foot a:hover { color: #fff; text-decoration: underline; }
.foot__contact li { display: flex; gap: 10px; align-items: flex-start; }
.foot__contact .ico { color: var(--orange); margin-top: 3px; }
.foot__phone { font: 700 1.3rem/1.2 var(--font-head); color: #fff !important; }
.foot__notice { background: #081829; border-top: 1px solid rgba(255,255,255,.08); color: #e6edf4; font-size: .95rem; }
.foot__notice .wrap { display: flex; gap: 10px; align-items: flex-start; padding-top: 14px; padding-bottom: 14px; }
.foot__notice .ico { color: var(--orange); margin-top: 3px; }
.foot__bottom { background: #081829; border-top: 1px solid rgba(255,255,255,.1); font-size: .88rem; }
.foot__bottom-in { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-top: 16px; padding-bottom: 16px; }
.foot__private { color: #fff; font-weight: 600; }
.foot__credit { color: #6f8399; font-size: .78rem; margin-left: auto; margin-right: 14px; }
.foot__credit a { color: #8fa3b8; }

/* ---------- Mobil arama çubuğu ---------- */
.callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: grid; grid-template-columns: 1fr 1fr;
    background: #fff; border-top: 1px solid var(--line);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
}
.callbar__btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; border-radius: var(--r);
    color: #fff; font-weight: 700; text-decoration: none; font-size: 1.02rem;
}
.callbar__btn--call { background: var(--orange); }
.callbar__btn--wa { background: var(--green); }
.callbar__btn--form { background: var(--navy); }

/* ============================================================
   Tablet
   ============================================================ */
@media (min-width: 640px) {
    .hero__actions { grid-template-columns: auto auto; justify-content: start; }
    .facts__in { grid-template-columns: repeat(4, 1fr); }
    .fact { border-bottom: 0; padding: 22px 14px 22px 0; }
    .svc { grid-template-columns: 1fr 1fr; }
    .hero__media { aspect-ratio: 16 / 9; }
    .features { grid-template-columns: 1fr 1fr; }
    .svchero__media { aspect-ratio: 21 / 9; }
    .partgrid li { padding: 14px 16px; }
    .twocards { grid-template-columns: 1fr 1fr; }
    .scope { grid-template-columns: 1fr 1fr; }
    .plain-list--cols { display: grid; grid-template-columns: 1fr 1fr; column-gap: 32px; }
    .plain-list--cols li:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
    .scope li:nth-child(odd) { border-right: 1px solid var(--line); }
    .ticklist--cols { grid-template-columns: 1fr 1fr; gap: 10px 32px; }
    .row2 { grid-template-columns: 1fr 1fr; }
    .posts { grid-template-columns: 1fr 1fr; }
    .parts { grid-template-columns: 1fr 1fr; }
    .parts li:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
    .parts li:nth-child(odd) { border-right: 1px solid var(--line); }
    .foot__grid { grid-template-columns: 1fr 1fr; }
    .cta__in { grid-template-columns: 1fr auto; align-items: center; }
}

/* ============================================================
   Masaüstü
   ============================================================ */
@media (min-width: 1000px) {
    body { padding-bottom: 0; font-size: 17.5px; }
    :root { --head-h: 76px; }
    .callbar { display: none; }
    .topbar { display: block; }

    .burger { display: none; }
    .logo { margin-right: 0; }
    .logo__mark { width: 46px; height: 46px; font-size: 1.7rem; }
    .logo__text strong { font-size: 1.45rem; }
    .nav {
        display: flex; position: static; flex-direction: row; padding: 0; background: none; overflow: visible;
        margin: 0 auto; gap: 4px;
    }
    .nav a { border: 0; min-height: 0; padding: 8px 12px; font-size: 1rem; position: relative; }
    .nav a:hover { color: var(--orange); }
    .nav a.is-active::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: -2px; height: 3px; background: var(--orange); }
    .nav .nav__call { display: none; }
    .head__call {
        display: inline-flex; align-items: center; gap: 10px;
        background: var(--orange); color: #fff; text-decoration: none;
        padding: 8px 16px; border-radius: var(--r); font: 700 1.25rem/1.1 var(--font-head);
    }
    .head__call:hover { background: var(--orange-2); }
    .head__call span { display: flex; flex-direction: column; }
    .head__call small { font: 600 .7rem/1 var(--font); text-transform: uppercase; letter-spacing: 1px; color: #ffe0cc; margin-bottom: 3px; }

    .sec { padding: 76px 0; }
    .hero__in { grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-top: 56px; padding-bottom: 72px; }
    .hero__media { order: 2; margin: 0; aspect-ratio: 4 / 3; width: 100%; border-radius: var(--r); box-shadow: 0 18px 40px rgba(0,0,0,.35); }
    .hero__media::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--orange); z-index: 3; }
    .slide figcaption { padding: 60px 26px 24px; }
    .slide figcaption strong { font-size: 1.6rem; }
    .features { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .feature { padding: 26px 24px; }
    .media-split { grid-template-columns: .9fr 1.1fr; gap: 56px; }
    .media-split__img { aspect-ratio: 4 / 5; }
    .svchero__media { position: absolute; inset: 0; aspect-ratio: auto; }
    .svchero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,28,52,.95) 0%, rgba(8,28,52,.82) 50%, rgba(8,28,52,.35) 100%); }
    .svchero__in { padding-top: 56px; padding-bottom: 72px; min-height: 460px; display: flex; flex-direction: column; justify-content: center; }
    .svchero__in > * { max-width: 680px; }
    .split--intro { grid-template-columns: 1.4fr .8fr; }
    .partgrid { grid-template-columns: repeat(4, 1fr); }
    .ticket { padding: 28px 26px 24px; }
    .svc__card { padding: 30px 28px; }
    .layout { grid-template-columns: minmax(0, 1fr) 330px; gap: 48px; }
    .side { position: sticky; top: calc(var(--head-h) + 20px); }
    .posts { grid-template-columns: repeat(3, 1fr); }
    .contact { grid-template-columns: 1fr 1fr; gap: 40px; }
    .split { grid-template-columns: 1fr 1fr; gap: 56px; }
    .steps--row { grid-template-columns: repeat(4, 1fr); gap: 28px; }
    .steps--row li { padding: 58px 0 0; }
    .steps--row li::after { left: 50px; right: -18px; top: 19px; bottom: auto; width: auto; height: 2px; }
    .note { grid-template-columns: 1fr auto; align-items: center; padding: 28px 32px; }
    .foot__grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; padding-top: 60px; }
    .pagehead { padding: 40px 0 44px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; }
}
