@charset "UTF-8";
/* ==========================================================================
   ASH Servis | Acil Servis Hizmeti — Kurumsal Tasarım Sistemi
   Tek dosya, sıfır bağımlılık. Açık + koyu tema. WCAG 2.2 AA.
   Renk kuralı: kurumsal mavi taşıyıcı, turuncu yalnızca eylem/aciliyet.
   ========================================================================== */

/* ---------- 1. Belirteçler ---------- */
:root {
  color-scheme: light;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  --fs-2xs: 0.75rem;
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg: clamp(1.0625rem, 1.01rem + 0.28vw, 1.1875rem);
  --fs-h4: clamp(1.0625rem, 1rem + 0.38vw, 1.25rem);
  --fs-h3: clamp(1.1875rem, 1.08rem + 0.6vw, 1.5rem);
  --fs-h2: clamp(1.4375rem, 1.24rem + 0.95vw, 2rem);
  --fs-h1: clamp(1.875rem, 1.5rem + 1.85vw, 3rem);

  --lh-tight: 1.16;
  --lh-snug: 1.35;
  --lh-body: 1.72;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --section-y: clamp(3.25rem, 2rem + 5.2vw, 7rem);
  --gutter: clamp(1.125rem, 0.55rem + 2.6vw, 2.5rem);
  --container: 1180px;
  --measure: 68ch;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-full: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 200ms;

  /* ---- Açık tema ---- */
  --bg: #ffffff;
  --bg-subtle: #f7f9fc;
  --bg-sunken: #edf1f7;
  --surface: #ffffff;
  --surface-2: #f7f9fc;
  --border: #dce3ed;
  --border-soft: #e8edf4;
  --field-border: #6d7c96;

  --text: #0c1b33;
  --text-soft: #33415c;
  --text-faint: #5a6b87;

  --brand: #10357a;
  --brand-hover: #0a2a63;
  --brand-ink: #ffffff;
  --brand-soft: #eef2fa;
  --brand-line: #c9d6ee;
  --brand-ring: rgba(16, 53, 122, 0.32);

  --accent: #c24f07;
  --accent-hover: #a54305;
  --accent-ink: #ffffff;
  --accent-soft: #fff3e9;
  --accent-line: #f4cfae;
  --accent-on-soft: #a54305;

  --wa: #0f7a63;
  --wa-hover: #0b6551;
  --wa-ink: #ffffff;

  --ok: #0f7a3d;
  --ok-soft: #eaf6ee;
  --warn: #a35a00;
  --warn-soft: #fff6e6;
  --danger: #c02616;
  --danger-soft: #fdf0ee;

  --shadow-xs: 0 1px 2px rgba(12, 27, 51, 0.06);
  --shadow-sm: 0 1px 3px rgba(12, 27, 51, 0.07), 0 1px 2px rgba(12, 27, 51, 0.04);
  --shadow-md: 0 10px 28px -12px rgba(12, 27, 51, 0.18), 0 2px 6px rgba(12, 27, 51, 0.05);
  --shadow-lg: 0 28px 60px -24px rgba(12, 27, 51, 0.3), 0 6px 18px rgba(12, 27, 51, 0.07);
  --ring: 0 0 0 3px var(--brand-ring);

  --check-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310357a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");

  --header-h: 66px;
  --topbar-h: 38px;
}

@media (prefers-color-scheme: dark) {
  :root[data-theme="dark"] {
    --bg: #0b1220;
    --bg-subtle: #0e1626;
    --bg-sunken: #090f1b;
    --surface: #121a2b;
    --surface-2: #18223a;
    --border: #253048;
    --border-soft: #1c2537;
    --field-border: #5f7095;

    --text: #e8edf6;
    --text-soft: #b3c1d6;
    --text-faint: #93a3bd;

    --brand: #7ca6f5;
    --brand-hover: #9cbcff;
    --brand-ink: #06101f;
    --brand-soft: #142140;
    --brand-line: #2b3d63;
    --brand-ring: rgba(124, 166, 245, 0.4);

    --accent: #ff9455;
    --accent-hover: #ffab77;
    --accent-ink: #1a0e00;
    --accent-soft: #2a1808;
    --accent-line: #4a2a10;
    --accent-on-soft: #ff9455;

    --wa: #0d7a64;
    --wa-hover: #11997d;

    --ok: #3fbf75;
    --ok-soft: #0e2418;
    --warn: #ffb84d;
    --warn-soft: #2a1e08;
    --danger: #ff8a7a;
    --danger-soft: #2a1310;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.55);
    --shadow-md: 0 10px 28px -12px rgba(0, 0, 0, 0.72);
    --shadow-lg: 0 28px 60px -24px rgba(0, 0, 0, 0.82);

    --check-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237ca6f5' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b1220; --bg-subtle: #0e1626; --bg-sunken: #090f1b;
  --surface: #121a2b; --surface-2: #18223a;
  --border: #253048; --border-soft: #1c2537; --field-border: #5f7095;
  --text: #e8edf6; --text-soft: #b3c1d6; --text-faint: #93a3bd;
  --brand: #7ca6f5; --brand-hover: #9cbcff; --brand-ink: #06101f;
  --brand-soft: #142140; --brand-line: #2b3d63; --brand-ring: rgba(124,166,245,.4);
  --accent: #ff9455; --accent-hover: #ffab77; --accent-ink: #1a0e00;
  --accent-soft: #2a1808; --accent-line: #4a2a10; --accent-on-soft: #ff9455;
  --wa: #0d7a64; --wa-hover: #11997d;
  --ok: #3fbf75; --ok-soft: #0e2418; --warn: #ffb84d; --warn-soft: #2a1e08;
  --danger: #ff8a7a; --danger-soft: #2a1310;
  --shadow-xs: 0 1px 2px rgba(0,0,0,.5);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.55);
  --shadow-md: 0 10px 28px -12px rgba(0,0,0,.72);
  --shadow-lg: 0 28px 60px -24px rgba(0,0,0,.82);
  --check-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237ca6f5' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
:root[data-theme="light"] {
  --bg: #ffffff; --bg-subtle: #f7f9fc; --bg-sunken: #edf1f7;
  --surface: #ffffff; --surface-2: #f7f9fc;
  --border: #dce3ed; --border-soft: #e8edf4; --field-border: #6d7c96;
  --text: #0c1b33; --text-soft: #33415c; --text-faint: #5a6b87;
  --brand: #10357a; --brand-hover: #0a2a63; --brand-ink: #ffffff;
  --brand-soft: #eef2fa; --brand-line: #c9d6ee; --brand-ring: rgba(16,53,122,.32);
  --accent: #c24f07; --accent-hover: #a54305; --accent-ink: #ffffff;
  --accent-soft: #fff3e9; --accent-line: #f4cfae; --accent-on-soft: #a54305;
  --wa: #0f7a63; --wa-hover: #0b6551;
  --ok: #0f7a3d; --ok-soft: #eaf6ee; --warn: #a35a00; --warn-soft: #fff6e6;
  --danger: #c02616; --danger-soft: #fdf0ee;
  --check-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310357a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* ---------- 2. Sıfırlama ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  /* Sabit alt CTA çubuğu klavyeyle gezerken odaklanan öğeyi örtüyordu. */
  scroll-padding-bottom: 0;
  /* Arama/menü açılırken overflow:hidden sayfayı yatay sıçratıyordu. */
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: env(safe-area-inset-bottom);
}

h1, h2, h3, h4, h5, h6 {
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); letter-spacing: -0.028em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); }
h4, h5, h6 { font-size: var(--fs-h4); line-height: var(--lh-snug); }

p { text-wrap: pretty; }
p + p { margin-top: var(--sp-4); }
strong, b { font-weight: 650; color: var(--text); }
em, i { font-style: italic; }

a {
  color: var(--brand);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
a:hover { color: var(--brand-hover); text-decoration: underline; }

ul, ol { list-style: none; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
address { font-style: normal; }
hr { border: 0; border-top: 1px solid var(--border); }
table { border-collapse: collapse; width: 100%; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 3px; }
:focus:not(:focus-visible) { outline: none; }
::selection { background: var(--brand); color: var(--brand-ink); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- 3. Yardımcılar ---------- */
.skip-link {
  position: absolute; left: var(--sp-4); top: -100px; z-index: 1000;
  padding: 12px 20px; background: var(--brand); color: var(--brand-ink);
  border-radius: var(--r-sm); font-weight: 600; box-shadow: var(--shadow-lg);
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--sp-3); text-decoration: none; color: var(--brand-ink); }

.visually-hidden, .sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

.container, .wrap { width: min(100% - (var(--gutter) * 2), var(--container)); margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: var(--fs-2xs); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand);
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--accent); border-radius: 2px; }

.badge {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.32em 0.7em; border-radius: var(--r-full);
  font-size: var(--fs-2xs); font-weight: 650;
  border: 1px solid var(--border); background: var(--surface-2); color: var(--text-soft);
}
.badge--accent { background: var(--accent-soft); border-color: var(--accent-line); color: var(--accent-on-soft); }/* ÖLÜ KOD ADAYI: hiçbir sayfada, JS ya da PHP dosyasında kullanılmıyor */

.badge--brand { background: var(--brand-soft); border-color: var(--brand-line); color: var(--brand); }/* ÖLÜ KOD ADAYI: hiçbir sayfada, JS ya da PHP dosyasında kullanılmıyor */

.badge--ok { background: var(--ok-soft); border-color: transparent; color: var(--ok); }

.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: 0 0 7px; }
.dot--live { background: var(--ok); }
/* Nabız halkası ayrı bir katmanda çizilir: box-shadow yerine transform+opacity
   kullanıldığı için ana iş parçacığında yeniden boyama tetiklemez. */
.dot--live { position: relative; }
.dot--live::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--ok); opacity: 0.55;
  animation: pulse 2.4s ease-out infinite;
  will-change: transform, opacity; pointer-events: none;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(3.2); opacity: 0; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* ---------- 4. Düğmeler ---------- */
.btn,
.call-button,
.whatsapp-button,
.main .left button,
header nav .nav-cta,
.contact-form button {
  --_bg: var(--brand);
  --_ink: var(--brand-ink);
  --_bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  padding: 0.72em 1.3em; min-height: 46px;
  border: 1px solid var(--_bd); border-radius: var(--r-md);
  background: var(--_bg); color: var(--_ink);
  font-size: var(--fs-sm); font-weight: 650; letter-spacing: -0.005em; line-height: 1.2;
  text-align: center; text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease),
    color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:hover, .call-button:hover, .whatsapp-button:hover, .main .left button:hover {
  text-decoration: none; box-shadow: var(--shadow-sm);
}
.btn:active { transform: translateY(1px); }

.btn a, .call-button a, .main .left button a, .button-a { color: inherit; text-decoration: none; font-weight: inherit; }
.btn a:hover, .button-a:hover { color: inherit; text-decoration: none; }

.btn--primary { --_bg: var(--brand); --_ink: var(--brand-ink); }
.btn--primary:hover { --_bg: var(--brand-hover); }

.btn--accent, .main .left button { --_bg: var(--accent); --_ink: var(--accent-ink); }
.btn--accent:hover, .main .left button:hover { --_bg: var(--accent-hover); }

.btn--ghost { --_bg: transparent; --_ink: var(--text); --_bd: var(--field-border); }
.btn--ghost:hover { --_bg: var(--surface-2); --_bd: var(--brand); --_ink: var(--brand); }

.btn--quiet { --_bg: var(--surface-2); --_ink: var(--text-soft); --_bd: var(--border); }
.btn--quiet:hover { --_ink: var(--brand); --_bd: var(--brand-line); }

.btn--wa, .whatsapp-button { --_bg: var(--wa); --_ink: var(--wa-ink); }
.btn--wa:hover, .whatsapp-button:hover { --_bg: var(--wa-hover); color: var(--wa-ink); }

.btn--lg { padding: 0.9em 1.6em; min-height: 52px; font-size: var(--fs-base); }
.btn--sm { padding: 0.5em 0.9em; min-height: 38px; font-size: var(--fs-xs); }
.btn--block { width: 100%; }/* ÖLÜ KOD ADAYI: hiçbir sayfada, JS ya da PHP dosyasında kullanılmıyor */


.link-more {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-size: var(--fs-sm); font-weight: 620; color: var(--brand);
}
.link-more::after { content: "\2192"; transition: transform var(--dur) var(--ease); }
.link-more:hover { text-decoration: none; }
.link-more:hover::after { transform: translateX(3px); }

/* ---------- 5. Üst şerit ---------- */
.topbar {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-2) var(--sp-5); flex-wrap: wrap;
  min-height: var(--topbar-h); padding: 0.4rem var(--gutter);
  background: var(--brand); color: var(--brand-ink);
  font-size: var(--fs-2xs); font-weight: 550;
}
.topbar a { display: inline-flex; align-items: center; min-height: 24px; color: var(--brand-ink); font-weight: 650; text-decoration: underline; }
.topbar a:hover { color: var(--brand-ink); opacity: 0.82; }
.topbar .sep { opacity: 0.45; }
.topbar span { display: inline-flex; align-items: center; gap: 0.45em; }

/* ---------- 6. Gezinme ---------- */
header nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; gap: var(--sp-4);
  min-height: var(--header-h); padding: 0 var(--gutter);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
@supports not (backdrop-filter: blur(1px)) { header nav { background: var(--bg); } }

header nav .logo, footer .logo { display: flex; align-items: center; gap: 0.6rem; flex: 0 0 auto; color: var(--text); }
header nav .logo:hover, footer .logo:hover { text-decoration: none; color: var(--brand); }

.logo-mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; flex: 0 0 36px; border-radius: 8px;
  background: var(--brand); color: #fff;
  font-size: 0.8125rem; font-weight: 800; letter-spacing: 0.02em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text b { font-size: 1.0625rem; font-weight: 750; letter-spacing: -0.02em; color: inherit; }
.logo-text span { font-size: 0.6875rem; font-weight: 500; color: var(--text-faint); letter-spacing: 0.02em; }

header nav > ul { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
header nav > ul > li { position: static; }

header nav > ul > li > a, .dropdown-btn {
  display: inline-flex; align-items: center; gap: 0.35em;
  padding: 0.5em 0.7em; border-radius: var(--r-sm);
  font-size: var(--fs-sm); font-weight: 560; color: var(--text-soft); white-space: nowrap;
}
header nav > ul > li > a:hover,
header nav > ul > li > a[aria-expanded="true"] {
  color: var(--brand); background: var(--brand-soft); text-decoration: none;
}
header nav > ul > li > a[aria-current="page"] { color: var(--brand); font-weight: 650; }
.dropdown-btn svg { transition: transform var(--dur) var(--ease); }
.dropdown-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Mega menü */
.dropdown-content {
  display: none; position: absolute; left: 0; right: 0; top: 100%; z-index: 300;
  padding: var(--sp-6) var(--gutter) var(--sp-5);
  background: var(--surface); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
}
.dropdown-content.show { display: block; animation: mega-in 180ms var(--ease); }
@keyframes mega-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.mega {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: var(--sp-5) var(--sp-6);
  width: min(100%, var(--container)); margin-inline: auto;
}
.mega-col > strong {
  display: block; margin-bottom: var(--sp-3); padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-2xs); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-faint);
}
.mega-col a { display: block; padding: 0.34em 0; font-size: var(--fs-sm); color: var(--text-soft); }
.mega-col a:hover { color: var(--brand); text-decoration: none; padding-left: 0.3em; }
.mega-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-3);
  width: min(100%, var(--container)); margin: var(--sp-5) auto 0;
  padding-top: var(--sp-4); border-top: 1px solid var(--border);
  font-size: var(--fs-sm); color: var(--text-faint);
}

.nav-actions { display: flex; align-items: center; gap: var(--sp-2); margin-left: auto; }

.icon-btn {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; padding: 0; min-height: 0;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  background: var(--surface); color: var(--text-soft); box-shadow: none;
}
.icon-btn:hover { color: var(--brand); border-color: var(--brand-line); background: var(--brand-soft); }
.icon-btn svg { width: 18px; height: 18px; }

.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }

header nav button#menuButton, .nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0; min-height: 0;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  background: var(--surface); color: var(--text);
}
.nav-toggle span {
  position: relative; display: block; width: 18px; height: 2px;
  border-radius: 2px; background: currentColor; transition: background-color var(--dur) var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  border-radius: 2px; background: currentColor; transition: transform var(--dur) var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
header nav.open .nav-toggle span { background: transparent; }
header nav.open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
header nav.open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 7. Site içi arama ---------- */
.site-search[hidden] { display: none; }
.site-search {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: start center;
  padding: clamp(3rem, 8vh, 7rem) var(--gutter) var(--gutter);
  background: color-mix(in srgb, var(--text) 45%, transparent);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}
.site-search__panel {
  width: min(100%, 640px); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.site-search__field { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-4); border-bottom: 1px solid var(--border); }
.site-search__field svg { width: 20px; height: 20px; color: var(--text-faint); flex: 0 0 20px; }
.site-search__field input { flex: 1; min-width: 0; border: 0; background: transparent; font-size: var(--fs-lg); color: var(--text); }
.site-search__field input::placeholder { color: var(--text-faint); }
.site-search__field input:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.site-search__field:focus-within { box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--brand) 35%, transparent); }
.site-search__field kbd {
  padding: 0.2em 0.45em; border: 1px solid var(--border); border-radius: 5px;
  font-family: inherit; font-size: var(--fs-2xs); color: var(--text-faint);
}
.site-search__results { max-height: min(58vh, 420px); overflow-y: auto; padding: var(--sp-2); }
.site-search__note:empty { display: none; }
.site-search__note { padding: var(--sp-2); }
.site-search__results a { display: block; padding: 0.55rem 0.75rem; border-radius: var(--r-sm); font-size: var(--fs-sm); color: var(--text-soft); }
.site-search__results a small { display: block; color: var(--text-faint); font-size: var(--fs-2xs); }
.site-search__results a:hover, .site-search__results a:focus-visible, .site-search__results a[aria-selected="true"] {
  background: var(--brand-soft); color: var(--brand); text-decoration: none;
}
.site-search__empty { padding: var(--sp-6) var(--sp-4); text-align: center; color: var(--text-faint); font-size: var(--fs-sm); }

/* ---------- 8. Kırıntı yolu ---------- */
.breadcrumb { width: min(100% - (var(--gutter) * 2), var(--container)); margin: var(--sp-5) auto 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.3rem 0.45rem; font-size: var(--fs-2xs); color: var(--text-faint); }
.breadcrumb li { display: flex; align-items: center; gap: 0.45rem; }
.breadcrumb li + li::before { content: "/"; color: var(--text-faint); font-size: 1em; }
.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb [aria-current="page"] { color: var(--text-soft); font-weight: 550; }

/* ---------- 9. Hero ---------- */
.main, section.main {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center; gap: clamp(2rem, 4vw, 4.5rem);
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto; padding: clamp(2.5rem, 1.5rem + 4vw, 5rem) 0; border-bottom: 0;
}
.main::before {
  content: ""; position: absolute; inset: -35% 0 auto; height: 620px; z-index: -1;
  background:
    radial-gradient(65% 60% at 8% 30%, color-mix(in srgb, var(--brand) 9%, transparent), transparent 72%),
    radial-gradient(55% 55% at 95% 12%, color-mix(in srgb, var(--brand) 6%, transparent), transparent 72%);
  pointer-events: none;
}

.main .left, .main > .left {
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-4);
  padding: 0; min-width: 0;
}
.main .left > * { max-width: var(--measure); }
.main .left h1, .main h1 { font-size: var(--fs-h1); }
.main .left h1 span, .main h1 span { color: var(--brand); background: none; padding: 0; }
.main .left h2 { margin-top: 0; font-size: var(--fs-h3); font-weight: 550; color: var(--text-soft); letter-spacing: -0.012em; }
.main .left h2 span { background: none; color: var(--brand); }
.main .left p { font-size: var(--fs-lg); color: var(--text-soft); margin-top: 0; }

.main .right, .main > .right, .main > aside.right { position: relative; min-width: 0; }
.main .right img, .main > aside.right img {
  width: 100%; height: auto; border-radius: var(--r-xl);
  background: var(--surface-2); box-shadow: var(--shadow-lg);
  object-fit: cover; padding: 0; margin: 0;
}

.main .left article, .main > section.left article { margin-top: var(--sp-5); }
.main .left article h2 { font-size: var(--fs-h3); font-weight: 700; color: var(--text); }
.main .left article p { font-size: var(--fs-base); color: var(--text-soft); margin-top: var(--sp-2); }
.main .left section { margin-top: var(--sp-5); }

.hero-points {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 165px), 1fr));
  gap: var(--sp-2) var(--sp-4); margin-top: var(--sp-1); width: 100%;
  font-size: var(--fs-sm); color: var(--text-soft);
}
.hero-points li {
  display: flex; align-items: flex-start; gap: 0.55em;
  min-width: 0; overflow-wrap: anywhere;
}
.hero-points li::before {
  content: ""; flex: 0 0 18px; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%;
  background: var(--brand-soft) var(--check-icon) center/11px no-repeat;
}

.sem-facts,
.sem-facts li {
  list-style: none;
}
.sem-facts { padding-left: 0; }

.cta-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-2); }

/* ---------- 10. Bölüm kabuğu ---------- */
section { scroll-margin-top: calc(var(--header-h) + 20px); }

.skills, .hakkimda, .portfolio, .feedback, .contact,
.service-areas, .service-brands, .izmit-faq, .faq-section,
.trust, .process, .section, .timeline, .coverage, .stats {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto; padding: var(--section-y) 0; background: transparent;
}

.section-head { max-width: var(--measure); margin-bottom: var(--sp-6); }
.section-head > span, .skills > span {
  display: inline-flex; align-items: center; gap: 0.5em; margin-bottom: var(--sp-3);
  font-size: var(--fs-2xs); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand);
}
.section-head > span::before, .skills > span::before {
  content: ""; width: 18px; height: 2px; background: var(--accent); border-radius: 2px;
}
.section-head p { margin-top: var(--sp-3); color: var(--text-soft); font-size: var(--fs-lg); }

/* ---------- 11. Kartlar ve ızgaralar ---------- */
.card {
  display: flex; flex-direction: column; gap: var(--sp-3);
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { border-color: var(--brand-line); box-shadow: var(--shadow-md); }
.card h3 { font-size: var(--fs-h4); }
.card p { font-size: var(--fs-sm); color: var(--text-soft); }
.card .link-more { margin-top: auto; }

.grid { display: grid; gap: clamp(0.875rem, 0.6rem + 1vw, 1.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

.skills h2, .hakkimda .right h2, .portfolio .header h2, .feedback h2 { font-size: var(--fs-h2); }
.skills .skill-items {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(0.875rem, 0.6rem + 1vw, 1.5rem); margin-top: var(--sp-6);
}
.skills .skill-items .item {
  position: relative; width: auto; display: flex; flex-direction: column;
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  cursor: default; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.skills .skill-items .item:hover { border-color: var(--brand-line); box-shadow: var(--shadow-md); }
.skills .skill-items .item .icon {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  margin-bottom: var(--sp-4); border-radius: 8px; background: var(--brand-soft); box-shadow: none;
}
.skills .skill-items .item .icon i { font-style: normal; font-size: 0.9375rem; font-weight: 750; color: var(--brand); }
.skills .skill-items .item > span { font-size: var(--fs-h4); font-weight: 680; letter-spacing: -0.015em; color: var(--text); }
.skills .skill-items .item p { margin-top: var(--sp-3); font-size: var(--fs-sm); line-height: 1.68; color: var(--text-soft); }

/* ---------- 12. Bölünmüş içerik ---------- */
.hakkimda { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); align-items: start; gap: clamp(2rem, 4vw, 4rem); }
.hakkimda .left { position: sticky; top: calc(var(--header-h) + var(--sp-5)); border-radius: var(--r-xl); overflow: hidden; }
.hakkimda .left img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 0; margin: 0; background: var(--surface-2); }
.hakkimda .right { min-width: 0; }
.hakkimda .right h3 { margin-top: var(--sp-6); }
.hakkimda .right h2 + p, .hakkimda .right h3:first-child { margin-top: 0; }
.hakkimda .right p { margin-top: var(--sp-3); color: var(--text-soft); max-width: var(--measure); }

/* ---------- 13. Bağlantı kümeleri ---------- */
.service-areas h2, .service-brands h2, .brand-category h3 { font-size: var(--fs-h2); margin-bottom: var(--sp-5); }
.brand-category h3 { font-size: var(--fs-h3); }

.service-areas ul, .brand-category ul {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 225px), 1fr));
  gap: var(--sp-2); margin: 0; padding: 0;
}
.service-areas ul li, .brand-category ul li { margin: 0; }
.service-areas ul li a, .brand-category ul li a {
  display: flex; align-items: center; gap: 0.55em; padding: 0.62em 0.85em;
  border: 1px solid var(--border); border-radius: var(--r-md); background: var(--surface);
  font-size: var(--fs-sm); font-weight: 550; color: var(--text-soft); line-height: 1.4;
}
.service-areas ul li a::before, .brand-category ul li a::before {
  content: ""; flex: 0 0 5px; width: 5px; height: 5px; border-radius: 50%;
  background: var(--border); transition: background-color var(--dur) var(--ease);
}
.service-areas ul li a:hover, .brand-category ul li a:hover {
  border-color: var(--brand-line); background: var(--brand-soft); color: var(--brand); text-decoration: none;
}
.service-areas ul li a:hover::before, .brand-category ul li a:hover::before { background: var(--accent); }

.service-brands { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); gap: clamp(1.5rem, 1rem + 2vw, 3rem); }
.service-brands .brand-category { min-width: 0; }
.service-brands .brand-category a:not([class]) {
  display: block; padding: 0.42em 0; font-size: var(--fs-sm); color: var(--text-soft);
  border-bottom: 1px solid var(--border-soft);
}
.service-brands .brand-category a:not([class]):hover { color: var(--brand); text-decoration: none; padding-left: 0.3em; }

/* ---------- 14. Güven, istatistik, süreç, kapsama ---------- */
.trust-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  width: min(100% - (var(--gutter) * 2), var(--container)); margin: 0 auto;
  border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); overflow: hidden;
}
.trust-bar div {
  display: flex; flex-direction: column; gap: 2px; padding: var(--sp-5) var(--sp-4);
  text-align: center; border-right: 1px solid var(--border-soft);
}
.trust-bar div:last-child { border-right: 0; }
.trust-bar strong { font-size: clamp(1.125rem, 1rem + 0.6vw, 1.4rem); font-weight: 750; letter-spacing: -0.03em; color: var(--brand); }
.trust-bar span { font-size: var(--fs-2xs); color: var(--text-faint); line-height: 1.5; }

.stats ol, .stats ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: var(--sp-5); }
.stats li { padding: var(--sp-5); border-left: 3px solid var(--accent); background: var(--surface-2); border-radius: 0 var(--r-md) var(--r-md) 0; }
.stats li strong { display: block; font-size: 1.6rem; letter-spacing: -0.03em; color: var(--brand); }
.stats li span { font-size: var(--fs-sm); color: var(--text-soft); }

.process ol {
  counter-reset: step; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr));
  gap: clamp(0.875rem, 0.6rem + 1vw, 1.5rem);
}
.process ol li {
  counter-increment: step; position: relative;
  padding: clamp(1.25rem, 1rem + 1vw, 1.6rem); padding-top: 3.2rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
}
.process ol li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: clamp(1.25rem, 1rem + 1vw, 1.6rem); left: clamp(1.25rem, 1rem + 1vw, 1.6rem);
  font-size: 1.25rem; font-weight: 800; letter-spacing: -0.04em;
  color: color-mix(in srgb, var(--brand) 40%, transparent);
}
.process ol li strong { display: block; font-size: var(--fs-h4); margin-bottom: var(--sp-2); }
.process ol li p { font-size: var(--fs-sm); color: var(--text-soft); }

.timeline ol { position: relative; display: grid; gap: var(--sp-5); padding-left: 1.75rem; }
.timeline ol::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--brand-line), var(--border)); border-radius: 2px;
}
.timeline ol li { position: relative; }
.timeline ol li::before {
  content: ""; position: absolute; left: -1.75rem; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--surface); border: 3px solid var(--brand);
}
.timeline ol li strong { display: block; font-size: var(--fs-h4); margin-bottom: var(--sp-1); }
.timeline ol li p { font-size: var(--fs-sm); color: var(--text-soft); max-width: var(--measure); }

.coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); gap: var(--sp-4); }
.coverage-card { padding: var(--sp-5); border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }
.coverage-card h3 { font-size: var(--fs-h4); display: flex; align-items: center; gap: 0.5em; flex-wrap: wrap; }
.coverage-card h3 .badge { margin-left: auto; }
.coverage-card p { margin-top: var(--sp-2); font-size: var(--fs-sm); color: var(--text-soft); }
.coverage-card ul { margin-top: var(--sp-3); display: flex; flex-wrap: wrap; gap: 0.35rem; }
.coverage-card ul a {
  display: inline-block; padding: 0.25em 0.6em; border: 1px solid var(--border);
  border-radius: var(--r-full); font-size: var(--fs-2xs); color: var(--text-soft);
}
.coverage-card ul a:hover { border-color: var(--brand-line); background: var(--brand-soft); color: var(--brand); text-decoration: none; }

/* ---------- 15. SSS ---------- */
.izmit-faq, .faq-section { background: transparent; }
.izmit-faq h2, .faq-section h2 { text-align: left; margin-bottom: var(--sp-5); font-size: var(--fs-h2); }
.faq-list { display: grid; gap: var(--sp-2); max-width: 860px; }

.faq-item, .faq-list details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  margin-bottom: 0; padding: 0; overflow: hidden; transition: border-color var(--dur) var(--ease);
}
.faq-list details[open] { border-color: var(--brand-line); }
/* details üzerindeki overflow:hidden odak halkasını kırpıyordu; halkayı
   summary'nin içine çizerek hem görünür kılıyor hem köşe kırpmasını koruyoruz. */
.faq-list summary:focus-visible { outline-offset: -3px; }
/* summary içine taşınan h3 görsel olarak aynı kalmalı. */
.faq-list summary h3, details summary h3 { display: inline; font: inherit; margin: 0; color: inherit; }
.faq-list summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-4);
  padding: 1rem 1.15rem; font-size: var(--fs-h4); font-weight: 620;
  letter-spacing: -0.012em; color: var(--text); cursor: pointer; list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; flex: 0 0 18px; width: 18px; height: 18px; margin-top: 4px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  color: var(--text-faint); transition: transform var(--dur) var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(180deg); }
.faq-list summary:hover { color: var(--brand); }
.faq-list details > div, .faq-list details > p {
  padding: 0 1.15rem 1.15rem; font-size: var(--fs-sm); color: var(--text-soft); line-height: 1.72;
}
.faq-list details > div > * + * { margin-top: var(--sp-3); }
.faq-list details ul { display: grid; gap: 0.35rem; padding-left: 1.2rem; }
.faq-list details ul li { list-style: disc; }

.faq-item { padding: 1.05rem 1.15rem; margin-bottom: var(--sp-2); }
.faq-item h3 { font-size: var(--fs-h4); color: var(--text); margin-bottom: var(--sp-2); }
.faq-item p { color: var(--text-soft); font-size: var(--fs-sm); line-height: 1.72; }/* ÖLÜ KOD ADAYI: hiçbir sayfada, JS ya da PHP dosyasında kullanılmıyor */


/* ---------- 16. Tablolar ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-md); }/* ÖLÜ KOD ADAYI: hiçbir sayfada, JS ya da PHP dosyasında kullanılmıyor */

.table-wrap table { min-width: 460px; font-size: var(--fs-sm); }
.table-wrap th, .table-wrap td { padding: 0.7rem 0.9rem; text-align: left; border-bottom: 1px solid var(--border-soft); }
.table-wrap th { background: var(--surface-2); font-weight: 650; color: var(--text); white-space: nowrap; }
.table-wrap td { color: var(--text-soft); vertical-align: top; }
.table-wrap tr:last-child td { border-bottom: 0; }
.table-wrap code {
  padding: 0.1em 0.4em; border-radius: 4px; background: var(--brand-soft); color: var(--brand);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.9em; font-weight: 600;
}

/* ---------- 17. İletişim ---------- */
.contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.contact > h2 { grid-column: 1 / -1; font-size: var(--fs-h2); margin-bottom: 0; }
.contact > ul { grid-column: 1 / -1; display: grid; gap: var(--sp-2); }
.contact > ul li {
  padding: var(--sp-4) var(--sp-5); background: var(--surface);
  border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: 0 var(--r-md) var(--r-md) 0;
}
.contact p { color: var(--text-soft); }
.contact p a { color: var(--brand); font-weight: 600; }

.contact-info { display: grid; gap: var(--sp-3); min-width: 0; }
.contact-form, .social-media { min-width: 0; }
.contact-method { padding: var(--sp-4) var(--sp-5); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 0; }
.contact-method h3 { margin-bottom: var(--sp-1); font-size: var(--fs-2xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); }
.contact-method p, .contact-method address { font-size: var(--fs-sm); color: var(--text); }
.contact-method a { font-weight: 600; }

.social-media { display: flex; flex-direction: column; gap: var(--sp-3); align-items: flex-start; }
.social-media h3 { font-size: var(--fs-h4); }
.social-media a {
  display: inline-flex; align-items: center; margin-right: 0; padding: 0.5em 1em;
  border: 1px solid var(--border); border-radius: var(--r-full); font-size: var(--fs-sm); color: var(--text-soft);
}
.social-media a:hover { border-color: var(--brand-line); color: var(--brand); text-decoration: none; }

/* ---------- 18. Formlar ve durumlar ---------- */
.contact-form form, .form { display: grid; gap: var(--sp-4); }
.field { display: grid; gap: 0.35rem; }
.field label, .form label { font-size: var(--fs-sm); font-weight: 600; color: var(--text); }
.field .hint { font-size: var(--fs-2xs); color: var(--text-faint); }

.contact-form input, .contact-form textarea,
.form input, .form select, .form textarea {
  width: 100%; padding: 0.7rem 0.85rem; margin-bottom: 0;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--field-border); border-radius: var(--r-sm); font-size: var(--fs-base);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: var(--text-faint); }
.contact-form input:focus, .contact-form textarea:focus,
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: var(--ring);
}
.form textarea { min-height: 130px; resize: vertical; }
.form.was-validated input:invalid, .form.was-validated textarea:invalid { border-color: var(--danger); }
.form.was-validated input:invalid ~ .error, .form.was-validated textarea:invalid ~ .error { display: block; }
.error { display: none; font-size: var(--fs-2xs); color: var(--danger); }

.form-note { padding: var(--sp-3) var(--sp-4); background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-sm); font-size: var(--fs-2xs); color: var(--text-faint); }

.alert {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5); border-radius: var(--r-md);
  border: 1px solid var(--border); background: var(--surface-2); font-size: var(--fs-sm);
}
.alert--ok { border-color: color-mix(in srgb, var(--ok) 45%, transparent); background: var(--ok-soft); color: var(--ok); }
.alert--warn { border-color: color-mix(in srgb, var(--warn) 45%, transparent); background: var(--warn-soft); color: var(--warn); }
.alert--err,
.alert--error { border-color: color-mix(in srgb, var(--danger) 45%, transparent); background: var(--danger-soft); color: var(--danger); }

.empty-state {
  display: grid; gap: var(--sp-3); justify-items: center; text-align: center;
  padding: var(--sp-8) var(--sp-5); border: 1px dashed var(--border);
  border-radius: var(--r-lg); background: var(--surface-2);
}
.empty-state h3 { font-size: var(--fs-h4); }
.empty-state p { font-size: var(--fs-sm); color: var(--text-faint); max-width: 44ch; }/* ÖLÜ KOD ADAYI: hiçbir sayfada, JS ya da PHP dosyasında kullanılmıyor */


/* Yükleme iskeleti — arama modalinde mobil.js tarafından basılır.
   Parlama, background-position yerine kayan bir kaplama katmanıyla yapılır;
   transform kompozit edildiği için ana iş parçacığında yeniden boyama olmaz. */
.skeleton {
  position: relative; overflow: hidden;
  border-radius: var(--r-sm); background: var(--bg-sunken);
}
.skeleton::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--surface-2) 50%, transparent 100%);
  animation: shimmer 1.4s ease-in-out infinite;
  will-change: transform;
}
.skeleton--line { height: 0.9em; margin-bottom: 0.5em; }

.skeleton--line:last-child { width: 60%; }
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

@media (prefers-reduced-motion: reduce) {
  .skeleton::after, .dot--live::after { animation: none; }
}

/* ---------- 19. Sabit eylemler ---------- */
.call-button {
  position: fixed; right: clamp(0.75rem, 2vw, 1.5rem); bottom: clamp(0.75rem, 2vw, 1.5rem);
  z-index: 150; --_bg: var(--accent); --_ink: var(--accent-ink); box-shadow: var(--shadow-lg);
}
.call-button:hover { --_bg: var(--accent-hover); }

.fixed-side-menu {
  position: fixed; right: clamp(0.75rem, 2vw, 1.5rem);
  bottom: calc(clamp(0.75rem, 2vw, 1.5rem) + 58px); top: auto; transform: none; z-index: 150; margin: 0;
}
.fixed-side-menu p { margin: 0; }
.whatsapp-button { display: inline-flex; margin: 0; box-shadow: var(--shadow-lg); }

.mobile-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 180; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3) calc(var(--sp-2) + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
}
.mobile-cta .btn { flex: 1 1 0; min-width: 0; padding-inline: 0.5em; }

/* ---------- 20. Görüşler ---------- */
.feedback .customers { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(0.875rem, 0.6rem + 1vw, 1.5rem); margin-top: var(--sp-6); }
.feedback .customers .item {
  width: auto; display: flex; flex-direction: column; gap: var(--sp-3);
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-lg); cursor: default;
}
.feedback .customers .item:hover { border-color: var(--brand-line); }
.feedback .customers .item .rating { color: var(--accent); font-size: 1rem; letter-spacing: 2px; }/* ÖLÜ KOD ADAYI: hiçbir sayfada, JS ya da PHP dosyasında kullanılmıyor */

.feedback .customers .item p { font-size: var(--fs-sm); line-height: 1.7; color: var(--text-soft); }
.feedback .customers .item .user { display: flex; align-items: center; gap: var(--sp-3); }
.feedback .customers .item .user img { width: 42px; height: 42px; flex: 0 0 42px; padding: 0; margin: 0; border-radius: 50%; object-fit: cover; }/* ÖLÜ KOD ADAYI: hiçbir sayfada, JS ya da PHP dosyasında kullanılmıyor */

.feedback .customers .item .user h5 { font-size: var(--fs-sm); font-weight: 650; margin-bottom: 2px; }/* ÖLÜ KOD ADAYI: hiçbir sayfada, JS ya da PHP dosyasında kullanılmıyor */

.feedback .customers .item .user p { font-size: var(--fs-2xs); color: var(--text-faint); }

/* ---------- 21. Portfolyo (eski) ---------- */
.portfolio { background: transparent; }
.portfolio .header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-4); margin-bottom: var(--sp-6); }/* ÖLÜ KOD ADAYI: hiçbir sayfada, JS ya da PHP dosyasında kullanılmıyor */

.portfolio .portfo-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(0.875rem, 0.6rem + 1vw, 1.5rem); }
.portfolio .portfo-items .item { width: auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; cursor: default; }
.portfolio .portfo-items .item:hover { border-color: var(--brand-line); box-shadow: var(--shadow-md); }
.portfolio .portfo-items .item img { border-radius: 0; padding: 0; margin: 0; }
.portfolio .portfo-items .item .info { display: flex; flex-direction: column; gap: var(--sp-3); padding: var(--sp-5); }

/* ---------- 22. Uzun metin ---------- */
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: var(--sp-4); }
.prose h2 { margin-top: var(--sp-7); font-size: var(--fs-h2); }
.prose h3 { margin-top: var(--sp-6); font-size: var(--fs-h3); }
.prose h4 { margin-top: var(--sp-5); }
.prose p, .prose li { color: var(--text-soft); }
.prose ul, .prose ol { display: grid; gap: var(--sp-2); padding-left: 1.35rem; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose ul li::marker { color: var(--brand); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  padding: var(--sp-4) var(--sp-5); border-left: 3px solid var(--brand);
  background: var(--surface-2); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--fs-sm); color: var(--text-soft);
}

main article ul, main article ol,
main section > ul:not([class]), main section > ol:not([class]) {
  display: grid; gap: var(--sp-2); padding-left: 1.35rem;
}
main article ul > li, main section > ul:not([class]) > li { list-style: disc; color: var(--text-soft); }
main article ol > li, main section > ol:not([class]) > li { list-style: decimal; color: var(--text-soft); }
main article ul ul { margin-top: var(--sp-2); }
main article ul li::marker, main section > ul:not([class]) > li::marker { color: var(--brand); }

.answer-box {
  padding: var(--sp-5); margin-block: var(--sp-5);
  border: 1px solid var(--brand-line); border-left: 4px solid var(--brand);
  border-radius: 0 var(--r-md) var(--r-md) 0; background: var(--brand-soft);
}
.answer-box > strong {
  display: block; margin-bottom: var(--sp-2); font-size: var(--fs-2xs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand);
}
.answer-box p { color: var(--text); font-size: var(--fs-base); }

.callout {
  display: flex; gap: var(--sp-3); padding: var(--sp-4) var(--sp-5);
  border: 1px solid var(--accent-line); border-radius: var(--r-md);
  background: var(--accent-soft); font-size: var(--fs-sm); color: var(--text-soft);
}
.callout strong { color: var(--accent-on-soft); }

/* Can güvenliği uyarısı — gazlı cihaz konularında zorunlu. */
.callout--alarm {
  border-width: 2px; border-color: var(--danger);
  background: var(--danger-soft); color: var(--text);
}
.callout--alarm strong { color: var(--danger); }
.callout--alarm::before {
  content: "\26A0"; flex: 0 0 auto; font-size: 1.35rem; line-height: 1.1; color: var(--danger);
}

.disclaimer {
  width: min(100% - (var(--gutter) * 2), var(--container)); margin: 0 auto var(--section-y);
  padding: var(--sp-4) var(--sp-5); background: var(--surface-2);
  border: 1px solid var(--border); border-radius: var(--r-md);
  font-size: var(--fs-2xs); line-height: 1.68; color: var(--text-faint);
}
.disclaimer strong { color: var(--text-soft); }

.cta-band {
  position: relative; overflow: hidden;
  width: min(100% - (var(--gutter) * 2), var(--container)); margin: 0 auto var(--section-y);
  padding: clamp(2rem, 1.4rem + 2.4vw, 3.25rem); border-radius: var(--r-xl);
  background: var(--brand); color: var(--brand-ink, #fff);
}
.cta-band::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(255, 255, 255, 0.05); pointer-events: none;
}
.cta-band h2 { color: var(--brand-ink, #fff); max-width: 22ch; }
.cta-band p { margin-top: var(--sp-3); color: color-mix(in srgb, var(--brand-ink, #fff) 88%, transparent); max-width: 58ch; }
.cta-band .cta-row { margin-top: var(--sp-5); position: relative; }
.cta-band .btn--accent, .cta-band .btn--primary { --_bg: var(--brand-ink, #ffffff); --_ink: var(--brand); }
.cta-band .btn--accent:hover, .cta-band .btn--primary:hover { --_bg: #eef2fa; }
.cta-band .btn--ghost { --_ink: #fff; --_bd: rgba(255, 255, 255, 0.5); }
.cta-band .btn--ghost:hover { --_bg: rgba(255, 255, 255, 0.14); --_ink: #fff; --_bd: #fff; }

.oto-cekici-listesi {
  display: inline-block; padding: 0.55em 1em; margin: var(--sp-5) 0;
  border: 1px solid var(--accent-line); border-radius: var(--r-full);
  background: var(--accent-soft); color: var(--accent-on-soft); font-weight: 620; font-size: var(--fs-sm);
}


/* ---------- 22b. Yazar / tarih bloğu (EEAT) ---------- */
.byline {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.35rem 1rem;
  margin-bottom: var(--sp-5); padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border); border-left: 3px solid var(--brand);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--surface-2);
  font-size: var(--fs-2xs); line-height: 1.6; color: var(--text-faint);
}
.byline__who { color: var(--text-soft); }
.byline__who strong { color: var(--text); font-weight: 650; }
.byline__dates time { color: var(--text-soft); font-weight: 550; }
.byline__note { flex: 1 0 100%; color: var(--text-faint); }

/* ---------- 23. Alt bilgi ---------- */
footer { display: block; margin-top: var(--section-y); padding: var(--section-y) 0 var(--sp-6); background: var(--bg-subtle); border-top: 1px solid var(--border); }
footer > * { width: min(100% - (var(--gutter) * 2), var(--container)); margin-inline: auto; }
footer .top { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 2fr); align-items: start; gap: clamp(1.5rem, 1rem + 2vw, 3rem); }
footer .top ul { display: grid; gap: var(--sp-1); }
footer .top ul li a { display: inline-block; padding-block: 0.2rem; font-size: var(--fs-sm); color: var(--text-soft); }
footer .top ul li a:hover { color: var(--brand); }
footer .separator { width: min(100% - (var(--gutter) * 2), var(--container)); height: 1px; background: var(--border); margin: var(--sp-6) auto var(--sp-5); }
footer .bottom { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); align-items: start; gap: var(--sp-5); }
footer .bottom p, footer .bottom address p { font-size: var(--fs-2xs); line-height: 1.7; color: var(--text-faint); }
footer .bottom address p + p { margin-top: var(--sp-1); }
footer .bottom .links { display: flex; flex-wrap: wrap; gap: var(--sp-1) var(--sp-4); }
footer .bottom .links a { display: inline-block; margin-left: 0; padding-block: 0.25rem; font-size: var(--fs-2xs); color: var(--text-faint); }
footer .bottom .links a:hover { color: var(--brand); }
footer .telefon-numaralari { display: grid; gap: var(--sp-1); }
footer .telefon-numaralari p { font-size: var(--fs-sm); color: var(--text-soft); }
footer .telefon-numaralari a { display: inline-flex; align-items: center; min-height: 24px; font-weight: 600; }
footer address a, footer .contact-method a, footer p > a { display: inline-flex; align-items: center; min-height: 24px; }
.footer-brand p { margin-top: var(--sp-3); font-size: var(--fs-sm); color: var(--text-faint); max-width: 44ch; }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 155px), 1fr)); gap: var(--sp-5) var(--sp-6); }
.footer-col > h2 { margin-bottom: var(--sp-3); font-size: var(--fs-2xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); }

/* ---------- 24. Eski blog sarmalayıcıları ---------- */
.blog-content-area, .section-padding { padding-block: clamp(1.25rem, 1rem + 1.6vw, 2.5rem); }
.blog-content-area + .blog-content-area { padding-top: 0; }
.row { display: block; }
[class*="col-md-"], [class*="col-sm-"], [class*="col-xs-"], [class*="col-lg-"] { width: auto; float: none; }
.single-blog-post-content, .single-blog-content, .content-wrapper { min-width: 0; }
.single-blog-content article > * + * { margin-top: var(--sp-4); }
.single-blog-content h2 { margin-top: var(--sp-6); }
.single-blog-content h3 { margin-top: var(--sp-5); }
.single-blog-content p, .single-blog-content li { color: var(--text-soft); max-width: var(--measure); }
.single-blog-content ul, .single-blog-content ol { display: grid; gap: var(--sp-2); padding-left: 1.35rem; margin-top: var(--sp-3); }
.single-blog-content ul > li { list-style: disc; }
.single-blog-content ol > li { list-style: decimal; }
.img-responsive { width: auto; max-width: min(100%, 680px); height: auto; padding: 0; margin: 0 0 var(--sp-5); border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
#linkler { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-5); }
#linkler hr { flex: 1 0 100%; margin-bottom: var(--sp-3); }
#linkler a { padding: 0.45em 0.85em; border: 1px solid var(--border); border-radius: var(--r-full); background: var(--surface); font-size: var(--fs-sm); color: var(--text-soft); }
#linkler a:hover { border-color: var(--brand-line); background: var(--brand-soft); color: var(--brand); text-decoration: none; }

.box-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: var(--sp-5); }
.box { width: auto; margin-bottom: 0; }

/* ---------- 25. Duyarlılık ---------- */
@media (max-width: 1024px) {
  .main, section.main { grid-template-columns: 1fr; }
  .main .right, .main > aside.right { order: 0; max-width: 600px; }
  .hakkimda { grid-template-columns: 1fr; }
  .hakkimda .left { position: static; max-width: 520px; }
  footer .top { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 60px; }

  header nav > ul {
    display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 190;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: var(--sp-3) var(--gutter) calc(var(--sp-6) + env(safe-area-inset-bottom));
    background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto; overscroll-behavior: contain;
  }
  header nav.open > ul { display: flex; animation: mega-in 200ms var(--ease); }
  header nav > ul > li > a, .dropdown-btn {
    width: 100%; justify-content: space-between; padding: 0.85em 0.4em;
    font-size: 1.0625rem; font-weight: 600; color: var(--text);
    border-bottom: 1px solid var(--border-soft); border-radius: 0;
  }
  .dropdown-content { position: static; display: none; padding: var(--sp-3) 0 var(--sp-4); background: transparent; border: 0; box-shadow: none; }
  .dropdown-content.show { display: block; }
  .mega { grid-template-columns: 1fr; gap: var(--sp-4); }
  .mega-col > strong { border-bottom-color: var(--border-soft); }
  .mega-foot { margin-top: var(--sp-3); }

  header nav button#menuButton, .nav-toggle { display: inline-flex; }
  header nav .nav-cta { display: none; }

  .mobile-cta { display: flex; }
  .call-button, .fixed-side-menu { display: none !important; }
  body { padding-bottom: 74px; }

  .trust-bar div { border-right: 0; border-bottom: 1px solid var(--border-soft); }
  .trust-bar div:last-child { border-bottom: 0; }
}

@media (max-width: 560px) {
  .main .left button, .main .left .btn, .cta-row .btn { width: 100%; }
  .cta-row { width: 100%; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-bar div { border-right: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
  .trust-bar div:nth-child(2n) { border-right: 0; }
  .service-areas ul, .brand-category ul { grid-template-columns: 1fr; }
  .breadcrumb ol { font-size: 0.75rem; }
  .topbar { font-size: 0.6875rem; gap: var(--sp-1) var(--sp-3); }
}

@media (max-width: 360px) {
  :root { --gutter: 1rem; }
  .mobile-cta .btn { font-size: var(--fs-2xs); }
  .hero-points { grid-template-columns: 1fr; }
  .topbar { flex-direction: column; gap: 2px; text-align: center; }
  .breadcrumb ol { font-size: 0.7rem; }
  .table-wrap table { min-width: 380px; }
}

/* ---------- 26. Yazdırma ---------- */
@media print {
  header nav, .mobile-cta, .call-button, .fixed-side-menu, .topbar,
  .skip-link, .cta-band, .site-search { display: none !important; }
  body { color: #000; background: #fff; }
  a::after { content: " (" attr(href) ")"; font-size: 0.75em; }
  .faq-list details { break-inside: avoid; }
}

/* Form hata özeti — ekran okuyucuya role="alert" ile duyurulur. */
.form-errors { margin-bottom: var(--sp-4); }
.form-errors[hidden] { display: none; }
.form-errors a { color: inherit; text-decoration: underline; font-weight: 600; }
.form-errors:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px var(--danger-soft); }
.field input[aria-invalid="true"] ~ .error,
.field select[aria-invalid="true"] ~ .error,
.field textarea[aria-invalid="true"] ~ .error { display: block; }

/* ==================================================== 20. Yapışkan CTA çubuğu
   Mobilde ekranın altına sabitlenir. Turuncu yalnızca birincil eylemde. */
.sticky-cta {
  position: fixed; inset: auto 0 0 0; z-index: 190;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: var(--bg); border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -6px 24px rgb(12 27 51 / 0.10);
}
.sticky-cta__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; min-height: 56px; padding: 0.45rem 0.25rem;
  font-size: var(--fs-2xs); font-weight: 650; line-height: 1.15;
  color: var(--text-soft); text-align: center;
}
.sticky-cta__item svg { width: 19px; height: 19px; }
.sticky-cta__item:hover, .sticky-cta__item:focus-visible { text-decoration: none; color: var(--brand); }
.sticky-cta__item:focus-visible { outline: 3px solid var(--brand); outline-offset: -3px; }
.sticky-cta__item + .sticky-cta__item { border-left: 1px solid var(--border); }
.sticky-cta__item--call { color: var(--accent-on-soft); background: var(--accent-soft); }
.sticky-cta__item--call:hover, .sticky-cta__item--call:focus-visible { color: var(--accent-hover); }
.sticky-cta__item--wa { color: var(--wa); }

@media (max-width: 900px) {
  .sticky-cta { display: grid; }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0)); }
  footer { margin-bottom: 0; }
}
@media print { .sticky-cta { display: none; } }

/* ==================================================== 21. Çerez rıza bandı */
.consent {
  position: fixed; inset: auto 0 0 0; z-index: 260;
  padding: var(--sp-4) var(--gutter);
  padding-bottom: calc(var(--sp-4) + env(safe-area-inset-bottom, 0));
  background: var(--bg); border-top: 2px solid var(--brand);
  box-shadow: 0 -10px 40px rgb(12 27 51 / 0.18);
}
.consent[hidden] { display: none; }
.consent__box {
  width: min(100% - (var(--gutter) * 0), var(--container)); margin-inline: auto;
  display: grid; gap: var(--sp-3);
  grid-template-columns: minmax(0, 1fr) auto; align-items: center;
}
.consent__box h2 { font-size: var(--fs-sm); font-weight: 700; margin: 0; }
.consent__box p { font-size: var(--fs-2xs); color: var(--text-soft); margin: 0.35rem 0 0; max-width: 70ch; }
.consent__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.consent__actions .btn { white-space: nowrap; }
@media (max-width: 700px) {
  .consent__box { grid-template-columns: 1fr; }
  .consent__actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ==================================================== 22. Yol tarifi kartı */
.branch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: var(--sp-4); }
.branch-card {
  padding: var(--sp-4) var(--sp-5); border: 1px solid var(--border);
  border-radius: var(--r-md); background: var(--surface);
}
.branch-card h3 { font-size: var(--fs-sm); font-weight: 700; margin-bottom: var(--sp-2); }
.branch-card address { font-style: normal; font-size: var(--fs-2xs); color: var(--text-soft); line-height: 1.65; }
.branch-card .branch-links { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); margin-top: var(--sp-3); }
.branch-card .branch-links a { display: inline-flex; align-items: center; min-height: 24px; font-size: var(--fs-2xs); font-weight: 650; }

/* ==================================================== 23. Bilgi/özet blokları */
.keyfacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: var(--sp-3); margin: var(--sp-5) 0; }
.keyfact { padding: var(--sp-3) var(--sp-4); border: 1px solid var(--brand-line); border-radius: var(--r-md); background: var(--brand-soft); }
.keyfact dt { font-size: var(--fs-2xs); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-faint); }
.keyfact dd { margin: 0.3rem 0 0; font-size: var(--fs-sm); font-weight: 600; color: var(--text); }
.tldr { padding: var(--sp-4) var(--sp-5); border-left: 4px solid var(--brand); background: var(--bg-subtle); border-radius: 0 var(--r-md) var(--r-md) 0; margin: var(--sp-5) 0; }
.tldr > strong { display: block; font-size: var(--fs-2xs); letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--sp-2); }
.tldr ul { display: grid; gap: 0.4rem; padding-left: 1.15rem; }
.tldr li { font-size: var(--fs-sm); color: var(--text-soft); }

@media (max-width: 900px) {
  /* Sabit CTA çubuğu 57px; klavye odağı çubuğun altında kalmasın. */
  html { scroll-padding-bottom: calc(57px + env(safe-area-inset-bottom, 0px) + 12px); }
}

/* Resmî kayıt sorgulama (SERBİS) — footer güven bloğu. Kurumsal mavi; turuncu
   yalnızca CTA/acil için ayrılmıştır. */
.resmi-sorgu {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin: var(--sp-6) auto 0; padding: var(--sp-5);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-5); flex-wrap: wrap;
  background: color-mix(in srgb, var(--brand) 8%, var(--surface));
  border: 1px solid var(--brand-line); border-radius: var(--r-lg);
}
.resmi-sorgu__metin strong { display: block; margin-bottom: 0.35rem; color: var(--text); }
.resmi-sorgu__metin p { margin: 0; max-width: 62ch; color: var(--text-soft); font-size: var(--fs-sm); }

/* ---------- Bagimsiz liste kartlari (marka silosu, cihaz branslari) ----------
   Bu listeler bagli oldugu bolum basligiyla birlikte bir "sec ve devam et"
   adimidir; her ogenin bir baslik bir de kisa aciklama satiri vardir.
   Onceki halinde aciklama, baglantiyla ayni renk ve boyutta inline metin
   olarak akiyordu: hiyerarsi yoktu ve hucreler ayirt edilemez metin bloklarina
   donusuyordu. Karta cevirip iki satiri gorsel olarak ayiriyoruz. */
.area-list {
  display: grid; gap: var(--sp-3);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  list-style: none; padding: 0; margin: 0;
}
.area-list li { margin: 0; }
.area-list li a {
  display: flex; flex-direction: column; gap: 0.3rem; height: 100%;
  padding: var(--sp-4); border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--surface); color: var(--text); text-decoration: none;
  font-weight: 600; line-height: 1.35;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.area-list li a::before { content: none; }
.area-list li a:hover, .area-list li a:focus-visible {
  border-color: var(--brand-line); background: color-mix(in srgb, var(--brand) 5%, var(--surface));
  transform: translateY(-1px);
}
/* Aciklama satiri baglantinin icine tasinir: tiklama alani tek parca kalir. */
.area-list li span {
  display: block; font-size: var(--fs-xs); font-weight: 450; line-height: 1.5;
  color: var(--text-faint);
}
@media (prefers-reduced-motion: reduce) { .area-list li a { transition: none; } }

/* ---------- Bolgesel calisma notu ----------
   Sayfada tek bir kanonik "Kisa cevap" karti olmali; bolgesel calisma bicimi
   ayri bir blok. Ayni gorsel dili kullanir ama daha sakin: ikinci bir sari
   kart, birincinin dikkatini boler. */
.intro-box {
  border-left: 3px solid var(--brand-line); border-radius: 0 var(--r-md) var(--r-md) 0;
  background: color-mix(in srgb, var(--brand) 4%, var(--surface));
  padding: var(--sp-4) var(--sp-5); margin: var(--sp-5) 0;
}
.intro-box > strong {
  display: block; margin-bottom: 0.35rem; font-size: var(--fs-2xs);
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint);
}
.intro-box p { margin: 0; color: var(--text-soft); }

/* ---------- Kaynak kunyesi ----------
   Hata kodu tablosunun altindaki dogrulanabilir kaynak listesi. Varsayilan
   <details> gorunumu ham HTML gibi duruyordu. */
.kaynak-kunye {
  margin-top: var(--sp-4); border: 1px solid var(--border-soft);
  border-radius: var(--r-md); background: var(--surface-2, var(--surface));
  padding: var(--sp-3) var(--sp-4);
}
.kaynak-kunye > summary {
  cursor: pointer; font-size: var(--fs-xs); font-weight: 600; color: var(--text-soft);
  list-style: none;
}
.kaynak-kunye > summary::-webkit-details-marker { display: none; }
.kaynak-kunye > summary::before { content: "\203A\20"; color: var(--text-faint); }
.kaynak-kunye[open] > summary::before { content: "\2304\20"; }
.kaynak-kunye ul { margin: var(--sp-3) 0 0; padding-left: 1.1rem; }
.kaynak-kunye li { font-size: var(--fs-xs); color: var(--text-faint); margin: 0.2rem 0; }
.kaynak-kunye p { margin: var(--sp-3) 0 0; font-size: var(--fs-2xs); color: var(--text-faint); }

/* ---------- Guven barinda resmi kayit baglantisi ----------
   Alti oge artik iki satira sariyor; satir sonu kenarliklari asili kalmasin. */
.trust-bar span a { color: var(--brand); font-weight: 600; }
.trust-bar span a:hover { text-decoration: underline; }

/* Ana sayfa hizmet ve marka dizini */
.service-directory {
  position: relative;
  border-top: 1px solid var(--border);
}
.service-directory--brands { background: var(--bg-subtle); }
.service-directory .container > h2 { margin-top: var(--sp-2); }
.service-directory__intro {
  max-width: 68ch;
  margin-top: var(--sp-3);
  color: var(--text-soft);
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.directory-grid li { min-width: 0; }
.directory-grid a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .3rem;
  height: 100%;
  min-height: 78px;
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
}
.directory-grid a:hover,
.directory-grid a:focus-visible {
  border-color: var(--brand-line);
  background: var(--brand-soft);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.directory-card__title {
  overflow-wrap: anywhere;
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.35;
}
.directory-card__meta {
  color: var(--text-faint);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .directory-grid { grid-template-columns: 1fr; }
  .directory-grid a { min-height: 68px; }
}
@media (max-width: 900px) {
  .trust-bar div { border-right: 0; border-bottom: 1px solid var(--border-soft); }
  .trust-bar div:last-child { border-bottom: 0; }
  /* Resmi kayit blogu dar ekranda alt alta ve tam genislikte dugme. */
  .resmi-sorgu { flex-direction: column; align-items: flex-start; }
  .resmi-sorgu .btn { width: 100%; justify-content: center; }
}
