/* =====================================================================
   İstanbul TV Servisi — Tasarım Sistemi "Tamir Fişi"
   İlham: devre kartı yeşili, bakır lehim, servis fişi kağıdı, mühür damgası.
   Palet: PCB yeşili / bakır / fiş kağıdı · Erişilebilir (WCAG)
   ===================================================================== */

:root {
  /* Renkler — devre kartı + bakır + fiş kağıdı */
  --pcb-950: #0a1912;
  --pcb-900: #0e2a1c;
  --pcb-800: #163d29;
  --pcb-700: #205438;
  --pcb-600: #2c6e49;
  --copper-700: #8a4a24;
  --copper-600: #b5651d;
  --copper-500: #c97a3d;
  --copper-400: #e0a367;
  --paper-050: #f7f2e4;
  --paper-100: #efe6cd;
  --paper-200: #e3d6b2;
  --line: #d8caa2;
  --line-dark: rgba(15, 31, 22, 0.16);
  --ink: #1b2016;
  --ink-2: #3d4536;
  --muted: #6b7261;
  --signal-500: #3f9d6e;
  --signal-400: #58c896;
  --success: #2f8f5b;
  --danger: #b3402f;

  /* Tipografi */
  --font-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;
  --h1: clamp(2.1rem, 4vw + 1rem, 3.6rem);
  --h2: clamp(1.6rem, 2.4vw + 0.6rem, 2.5rem);
  --h3: clamp(1.15rem, 1.2vw + 0.6rem, 1.4rem);

  /* Yapı */
  --wrap: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(10, 25, 18, 0.08);
  --shadow: 0 14px 36px rgba(10, 25, 18, 0.14);
  --shadow-lg: 0 26px 60px rgba(10, 25, 18, 0.22);
  --ring: 0 0 0 4px rgba(201, 122, 61, 0.3);
  --t: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Geriye dönük değişken takma adları (mevcut bileşenler için) */
:root {
  --navy-900: var(--pcb-900);
  --navy-800: var(--pcb-800);
  --navy-700: var(--pcb-700);
  --navy-600: var(--pcb-600);
  --navy-500: var(--pcb-600);
  --orange-600: var(--copper-600);
  --orange-500: var(--copper-500);
  --orange-400: var(--copper-400);
  --white: #fffdf7;
  --paper: var(--paper-050);
  --paper-2: var(--paper-100);
  --font: var(--font-body);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper-050);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: -1px -1px;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--pcb-700); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--copper-600); }

h1, h2, h3, h4 {
  line-height: 1.12; margin: 0 0 0.6em; color: var(--pcb-900);
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em;
  text-transform: none;
}
h1 { font-size: var(--h1); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
p { margin: 0 0 1rem; color: var(--ink-2); }

/* Erişilebilirlik */
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--copper-500); color: #fff; padding: 10px 18px;
  border-radius: 8px; font-weight: 700; transition: top var(--t);
}
.skip-link:focus { top: 12px; color: #fff; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Yerleşim yardımcıları */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(48px, 7vw, 96px) 0; }
.section--paper { background: var(--paper-100); }
.section--navy { background: var(--pcb-900); color: #d8e8dc; }
.section--navy h2, .section--navy h3 { color: #fff; }
.grid { display: grid; gap: 24px; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--copper-600); font-family: var(--font-mono); font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 14px;
}
.eyebrow::before { content: "//"; color: var(--pcb-600); font-weight: 700; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Butonlar */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px; font-family: var(--font-display); font-weight: 700; font-size: 0.94rem;
  border: 2px solid transparent; cursor: pointer; transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  will-change: transform; text-align: center; letter-spacing: 0.01em;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: linear-gradient(135deg, var(--copper-500), var(--copper-700)); color: #fff; box-shadow: 0 10px 24px rgba(181, 101, 29, 0.35); }
.btn--primary:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 16px 32px rgba(181, 101, 29, 0.45); }
.btn--navy { background: var(--pcb-800); color: #fff; }
.btn--navy:hover { color: #fff; background: var(--pcb-700); transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--pcb-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--copper-500); color: var(--copper-600); transform: translateY(-3px); }
.btn--light { background: #fffdf7; color: var(--pcb-800); }
.btn--light:hover { color: var(--copper-600); transform: translateY(-3px); }
.btn--block { width: 100%; }

/* Üst bilgi çubuğu */
.topbar { background: var(--pcb-950); color: #b9ceb9; font-size: 0.85rem; font-family: var(--font-mono); }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 9px; padding-bottom: 9px; }
.topbar a { color: #b9ceb9; }
.topbar a:hover { color: var(--copper-400); }
.topbar__left, .topbar__right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 15px; height: 15px; color: var(--copper-400); }

/* Header / Navigasyon */
.header { position: sticky; top: 0; z-index: 100; background: rgba(247, 242, 228, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow var(--t); }
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { width: 46px; height: 46px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.14rem; color: var(--pcb-900); letter-spacing: -0.01em; }
.brand__name span { color: var(--copper-500); }
.brand__sub { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.menu > li { position: relative; }
.menu a { display: block; padding: 10px 14px; border-radius: 10px; font-weight: 600; color: var(--pcb-800); font-size: 0.95rem; }
.menu a:hover, .menu a[aria-current="page"] { background: var(--paper-200); color: var(--copper-600); }
.menu a[aria-current="page"] { color: var(--copper-600); }

/* Açılır menü */
.has-sub > a::after { content: "▾"; margin-left: 6px; font-size: 0.7em; color: var(--muted); }
.submenu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  background: #fffdf7; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: 8px; list-style: none; margin: 0; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { font-size: 0.92rem; padding: 9px 12px; }

.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; border-radius: 10px; }
.nav__toggle svg { width: 28px; height: 28px; color: var(--pcb-900); }

/* Hero */
.hero { position: relative; overflow: hidden; background: radial-gradient(1200px 600px at 80% -10%, var(--pcb-700), var(--pcb-950) 60%); color: #e7f2ea; }
.hero::before { content: ""; position: absolute; inset: 0; background: url("../img/pattern.svg"); opacity: 0.6; pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; padding: clamp(52px, 7vw, 104px) 0; position: relative; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(224, 163, 103, 0.16); color: var(--copper-400); border: 1px solid rgba(224, 163, 103, 0.4); padding: 7px 16px; border-radius: 999px; font-family: var(--font-mono); font-weight: 600; font-size: 0.78rem; margin-bottom: 22px; }
.hero__badge svg { width: 16px; height: 16px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--copper-400); }
.hero__lead { font-size: 1.14rem; color: #cfe0d3; max-width: 560px; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero__stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero__stat b { display: block; font-family: var(--font-mono); font-size: 1.8rem; color: #fff; font-weight: 600; }
.hero__stat span { font-size: 0.84rem; color: #a9c2ae; }

/* Fiş kartı (imza bileşeni) — servis fişi görünümlü kart */
.hero__card {
  background: var(--paper-050);
  color: var(--ink);
  border-radius: 4px;
  padding: 30px 30px 26px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--paper-200);
}
.hero__card::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 128px;
  height: 0; border-top: 2px dashed var(--line);
}
.hero__card::after {
  content: "";
  position: absolute; left: -9px; top: 118px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--pcb-950);
  box-shadow: calc(100% + 18px) 0 0 var(--pcb-950);
}
.hero__card h3 { color: var(--pcb-900); font-family: var(--font-mono); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.hero__card .ticket__no { position: absolute; top: 22px; right: 26px; font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; }
.hero__list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 14px; }
.hero__list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-2); font-size: 0.98rem; }
.hero__list svg { width: 20px; height: 20px; color: var(--signal-500); flex: none; margin-top: 1px; }

/* Damga rozeti */
.stamp {
  display: inline-flex; align-items: center; justify-content: center;
  width: 92px; height: 92px; border-radius: 50%;
  border: 3px solid var(--signal-500); color: var(--signal-500);
  font-family: var(--font-mono); font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.04em; text-align: center;
  transform: rotate(-9deg); opacity: 0.92; line-height: 1.15;
  background: rgba(63, 157, 110, 0.06);
}

/* Kartlar */
.card { background: #fffdf7; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t), border-color var(--t); height: 100%; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(201, 122, 61, 0.4); }
.card__icon { width: 56px; height: 56px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(135deg, var(--paper-100), #fffdf7); border: 1px solid var(--line); margin-bottom: 18px; }
.card__icon svg { width: 28px; height: 28px; color: var(--copper-500); }
.card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 14px; }
.card__link { font-family: var(--font-mono); font-weight: 600; font-size: 0.88rem; color: var(--pcb-700); display: inline-flex; align-items: center; gap: 6px; }
.card__link svg { width: 16px; height: 16px; transition: transform var(--t); }
.card:hover .card__link svg { transform: translateX(4px); }

.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Özellik / neden biz */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature__icon { width: 48px; height: 48px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--pcb-900); }
.feature__icon svg { width: 24px; height: 24px; color: var(--copper-400); }
.feature h3 { font-size: 1.08rem; margin-bottom: 4px; }
.feature p { font-size: 0.95rem; color: var(--muted); margin: 0; }
.section--navy .feature p { color: #a9c2ae; }

/* Süreç adımları */
.steps { counter-reset: step; }
.step {
  position: relative;
  background: rgba(255, 253, 247, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.step:hover {
  transform: translateY(-6px);
  background: #fffdf7;
  border-color: rgba(201, 122, 61, 0.4);
  box-shadow: var(--shadow);
}
.step__num { width: 50px; height: 50px; border-radius: 10px; background: linear-gradient(135deg, var(--copper-500), var(--copper-700)); color: #fff; font-family: var(--font-mono); font-weight: 700; font-size: 1.2rem; display: grid; place-items: center; margin-bottom: 16px; box-shadow: 0 10px 22px rgba(181, 101, 29, 0.3); }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* Markalar */
.brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.brand-chip { display: grid; place-items: center; background: #fffdf7; border: 1px solid var(--line); border-radius: 8px; padding: 18px 10px; font-family: var(--font-display); font-weight: 700; color: var(--pcb-800); text-align: center; font-size: 0.9rem; transition: transform var(--t), border-color var(--t), color var(--t); }
.brand-chip:hover { transform: translateY(-4px); border-color: var(--copper-500); color: var(--copper-600); }

/* Bölgeler / ilçeler */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.area-chip { background: #fffdf7; border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.92rem; color: var(--pcb-800); }
.area-chip svg { width: 16px; height: 16px; color: var(--copper-500); flex: none; }

/* CTA bandı */
.cta-band { background: linear-gradient(135deg, var(--pcb-800), var(--pcb-950)); border-radius: 18px; padding: clamp(32px, 5vw, 56px); color: #fff; display: grid; grid-template-columns: 1.4fr auto; gap: 30px; align-items: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(224,163,103,0.45), transparent 70%); }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #cfe0d3; margin: 0; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }

/* SSS akordeon */
.accordion { max-width: 820px; margin: 0 auto; }
.acc-item { border: 1px solid var(--line); border-radius: 10px; background: #fffdf7; margin-bottom: 14px; overflow: hidden; }
.acc-btn { width: 100%; text-align: left; background: none; border: 0; padding: 20px 22px; font-size: 1.02rem; font-family: var(--font-display); font-weight: 700; color: var(--pcb-900); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc-btn .sign { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--paper-200); display: grid; place-items: center; transition: transform var(--t), background var(--t), color var(--t); font-weight: 800; }
.acc-btn[aria-expanded="true"] .sign { transform: rotate(45deg); background: var(--copper-500); color: #fff; }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height var(--t); }
.acc-panel__inner { padding: 0 22px 20px; color: var(--ink-2); }

/* Formlar */
.form-card { background: #fffdf7; border: 1px solid var(--line); border-radius: 12px; padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 7px; color: var(--pcb-900); }
.field .req { color: var(--danger); }
.input, .select, .textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 8px;
  font: inherit; color: var(--ink); background: #fffdf7; transition: border-color var(--t), box-shadow var(--t);
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--copper-500); box-shadow: var(--ring); outline: none; }
.textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.error-msg { color: var(--danger); font-size: 0.84rem; margin-top: 6px; display: none; }
.field.invalid .error-msg { display: block; }
.field.invalid .input, .field.invalid .select, .field.invalid .textarea { border-color: var(--danger); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--ink-2); }
.check input { margin-top: 4px; width: 18px; height: 18px; flex: none; accent-color: var(--copper-500); }
.captcha { display: flex; align-items: center; gap: 14px; background: var(--paper-100); border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; }
.captcha__q { font-family: var(--font-mono); font-weight: 700; color: var(--pcb-900); font-size: 1.02rem; }
.captcha input { width: 90px; }
.form-note { font-size: 0.84rem; color: var(--muted); }
.form-success { display: none; background: #e9f5ee; border: 1px solid #a9d9bd; color: var(--success); padding: 16px 18px; border-radius: 8px; font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: block; }

/* Sayfa başlığı (iç sayfalar) */
.page-hero { background: linear-gradient(135deg, var(--pcb-800), var(--pcb-950)); color: #fff; padding: clamp(40px, 6vw, 72px) 0; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: url("../img/pattern.svg"); opacity: 0.5; }
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #cfe0d3; max-width: 640px; margin: 0; }

/* Breadcrumb */
.crumbs { font-size: 0.84rem; margin-bottom: 16px; font-family: var(--font-mono); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.crumbs li { display: flex; align-items: center; gap: 8px; color: #9fbaa5; }
.crumbs a { color: #cfe0d3; }
.crumbs a:hover { color: var(--copper-400); }
.crumbs li + li::before { content: "/"; color: #5d7a66; }
.crumbs [aria-current] { color: var(--copper-400); font-weight: 600; }

/* İçerik (blog / yasal) */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { color: var(--ink-2); padding-left: 1.3em; }
.prose li { margin-bottom: 8px; }
.prose blockquote { border-left: 4px solid var(--copper-500); background: var(--paper-100); margin: 1.4em 0; padding: 14px 20px; border-radius: 0 10px 10px 0; color: var(--pcb-800); }
.prose img { border-radius: 10px; margin: 1.2em 0; }
.tip { background: #fbeee0; border: 1px solid var(--paper-200); border-radius: 8px; padding: 16px 18px; margin: 1.4em 0; }
.tip strong { color: var(--copper-600); }

/* Blog kartı */
.post-card { display: flex; flex-direction: column; background: #fffdf7; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t); height: 100%; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__img { aspect-ratio: 16 / 9; background: linear-gradient(135deg, var(--pcb-700), var(--pcb-950)); display: grid; place-items: center; }
.post-card__img svg { width: 60px; height: 60px; color: rgba(255,255,255,0.85); }
.post-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__tag { color: var(--copper-600); font-family: var(--font-mono); font-weight: 600; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; }
.post-card h3 { font-size: 1.1rem; margin: 8px 0 10px; }
.post-card p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.post-card__meta { font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); margin-top: 12px; }

/* İletişim bilgi kutuları */
.info-card { display: flex; gap: 16px; align-items: flex-start; background: #fffdf7; border: 1px solid var(--line); border-radius: 10px; padding: 22px; box-shadow: var(--shadow-sm); }
.info-card__icon { width: 46px; height: 46px; flex: none; border-radius: 8px; background: var(--pcb-900); display: grid; place-items: center; }
.info-card__icon svg { width: 22px; height: 22px; color: var(--copper-400); }
.info-card h3 { font-size: 1.03rem; margin-bottom: 2px; }
.info-card p, .info-card a { margin: 0; font-size: 0.96rem; color: var(--ink-2); }

.map-embed { border: 0; width: 100%; height: 380px; border-radius: 10px; filter: sepia(0.08) saturate(0.9); }

/* Footer */
.footer { background: var(--pcb-950); color: #a9c2ae; padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer h4 { color: #fff; font-family: var(--font-mono); font-size: 0.9rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer a { color: #a9c2ae; }
.footer a:hover { color: var(--copper-400); }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 0.94rem; }
.footer__about p { color: #93ac97; font-size: 0.94rem; }
.footer .brand__name, .footer .brand__sub { color: #fff; }
.footer .brand__sub { color: #7c9682; }
.footer__contact { display: grid; gap: 12px; font-size: 0.94rem; }
.footer__contact div { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--copper-400); flex: none; margin-top: 2px; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: background var(--t), transform var(--t); }
.footer__social a:hover { background: var(--copper-500); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.82rem; color: #7c9682; }
.footer__bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }

/* Yüzen aksiyon butonları */
.floating { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); transition: transform var(--t); }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 28px; height: 28px; color: #fff; }
.fab--wa { background: #25d366; }
.fab--call { background: var(--copper-500); }

/* Çerez bandı */
.cookie { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 120; background: #fffdf7; border: 1px solid var(--line); box-shadow: var(--shadow-lg); border-radius: 12px; padding: 18px 22px; display: none; align-items: center; gap: 20px; justify-content: space-between; flex-wrap: wrap; max-width: 720px; margin: 0 auto; }
.cookie.show { display: flex; }
.cookie p { margin: 0; font-size: 0.9rem; color: var(--ink-2); flex: 1; min-width: 240px; }
.cookie__actions { display: flex; gap: 10px; }

/* Animasyon (kaydırınca belir) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* Mobil menü paneli */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 18, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.backdrop.show { opacity: 1; visibility: visible; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero__grid { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .hero__visual { min-height: 320px; }
  .hero__visual img { min-height: 320px; }
}
@media (max-width: 820px) {
  .topbar__left .hide-sm { display: none; }
  .nav__toggle { display: inline-flex; }
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 320px);
    background: rgba(255, 253, 247, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(216, 202, 162, 0.5);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 96px 24px 32px;
    box-shadow: -10px 0 40px rgba(10, 25, 18, 0.15);
    z-index: 115;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  .menu.open {
    transform: translateX(0);
  }
  .menu a {
    padding: 12px 16px;
    font-size: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--pcb-900);
    border-bottom: 1px solid rgba(15, 31, 22, 0.06);
    transition: background 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
    border-radius: 8px;
  }
  .menu a:hover, .menu a[aria-current="page"] {
    background: rgba(201, 122, 61, 0.08);
    color: var(--copper-600);
    padding-left: 22px;
  }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid rgba(201, 122, 61, 0.3);
    border-radius: 0;
    margin: 4px 0 8px 16px;
    padding: 0;
    background: transparent;
  }
  .submenu a {
    font-size: 0.92rem;
    font-weight: 600;
    padding: 8px 12px;
    border-bottom: none;
    color: var(--pcb-800);
  }
  .submenu a:hover {
    background: rgba(201, 122, 61, 0.04);
    padding-left: 18px;
  }
  .has-sub > a::after {
    float: right;
  }
  .nav__cta .btn--navy {
    display: none;
  }
  .cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px; }
  .topbar .wrap {
    justify-content: center;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .topbar__left {
    display: none;
  }
  .topbar__right {
    justify-content: center;
    width: 100%;
  }
  .topbar__right .hide-xs { display: none; }
  .hero__visual { min-height: 260px; }
  .team-img { max-height: 300px; }
  .step {
    padding: 24px 20px;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .brand {
    gap: 8px;
  }
  .brand__logo {
    width: 38px;
    height: 38px;
  }
  .brand__logo-img {
    width: 38px;
    height: 38px;
  }
  .brand__name {
    font-size: 0.98rem;
  }
  .brand__sub {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
  .nav {
    padding: 10px 0;
  }
  .nav__toggle svg {
    width: 24px;
    height: 24px;
  }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM VISUAL ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero Image Support ────────────────────────────────────── */
.hero__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  display: block;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 18, 0.4), transparent);
  pointer-events: none;
  z-index: 1;
}

/* ── Brand Logo Image ──────────────────────────────────────── */
.brand__logo-img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: contain;
  flex: none;
}

/* ── Service Card Images ───────────────────────────────────── */
.card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card__img:hover {
  transform: scale(1.05);
}

/* ── Blog Card Real Images ─────────────────────────────────── */
.post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Team Section Image ────────────────────────────────────── */
.team-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 480px;
}

/* ── Istanbul Skyline – Hizmet Bölgeleri Background ────────── */
.area-section-bg {
  position: relative;
  overflow: hidden;
}
.area-section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}
.area-section-bg .wrap {
  position: relative;
  z-index: 1;
}

/* ── Premium Glassmorphism Enhancement ─────────────────────── */
.card--glass {
  background: rgba(255, 253, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ── Animated Gradient Border – Hero Card ──────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero__card {
  overflow: hidden;
}
.hero__card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 128px;
  height: 2px;
  border-top: none;
  background: linear-gradient(
    90deg,
    transparent,
    var(--copper),
    var(--pcb-500),
    var(--copper),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* ── Image Reveal Animation ────────────────────────────────── */
.img-reveal {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.img-reveal.in {
  opacity: 1;
  transform: none;
}

/* ── Premium Stats Pulse Glow ──────────────────────────────── */
.hero__stat b {
  text-shadow:
    0 0 12px rgba(191, 146, 94, 0.35),
    0 0 24px rgba(191, 146, 94, 0.15);
}

/* =====================================================================
   Corporate premium refresh
   ===================================================================== */
:root {
  --pcb-950: #08111f;
  --pcb-900: #101b2d;
  --pcb-800: #17263d;
  --pcb-700: #223a5e;
  --pcb-600: #2f5f8f;
  --copper-700: #9a4d12;
  --copper-600: #c46f1f;
  --copper-500: #e0872e;
  --copper-400: #f3b25d;
  --copper: var(--copper-500);
  --pcb-500: var(--pcb-600);
  --paper-050: #f7f9fc;
  --paper-100: #eef3f8;
  --paper-200: #dce6f0;
  --line: #d9e2ec;
  --line-dark: rgba(16, 27, 45, 0.1);
  --ink: #142033;
  --ink-2: #34445a;
  --muted: #66758a;
  --signal-500: #168a7a;
  --signal-400: #35b8a4;
  --success: #15764d;
  --danger: #b42318;
  --white: #ffffff;
  --paper: var(--paper-050);
  --paper-2: var(--paper-100);
  --font-display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-body: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;
  --h1: 3.35rem;
  --h2: 2.35rem;
  --h3: 1.28rem;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow-sm: 0 8px 24px rgba(16, 27, 45, 0.08);
  --shadow: 0 18px 44px rgba(16, 27, 45, 0.12);
  --shadow-lg: 0 28px 70px rgba(8, 17, 31, 0.22);
  --ring: 0 0 0 4px rgba(22, 138, 122, 0.2);
}

body {
  background: var(--paper-050);
  background-image: linear-gradient(180deg, #ffffff 0, #f7f9fc 420px, #f7f9fc 100%);
  color: var(--ink);
}

h1, h2, h3, h4,
.brand__name,
.brand__sub,
.eyebrow,
.footer h4 {
  letter-spacing: 0;
}

p { color: var(--ink-2); }
.wrap { padding-inline: clamp(16px, 3vw, 28px); }
.section { padding: 72px 0; }
.section--paper { background: #eef3f8; }
.section--navy {
  background:
    linear-gradient(135deg, rgba(8, 17, 31, 0.94), rgba(23, 38, 61, 0.96)),
    url("../img/bg-repair-bench.png") center / cover;
}

.topbar {
  background: #08111f;
  color: #c3d0df;
}

.topbar a { color: #d3dde9; }
.topbar__item svg { color: var(--signal-400); }
.topbar__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.topbar__logo:hover { color: #8cf2dd; }
.topbar__logo img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #fff;
  padding: 2px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}
.topbar__left { gap: 18px; }

.header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 226, 236, 0.92);
}

.nav { min-height: 74px; }
.brand { min-width: 0; }
.brand__name {
  color: var(--pcb-950);
  font-size: 1.08rem;
  white-space: nowrap;
}
.brand__name span { color: var(--signal-500); }
.brand__sub {
  color: #69788d;
  font-size: 0.66rem;
}
.brand__logo-img {
  width: 56px;
  height: 56px;
  background: #fff;
  border: 2px solid rgba(22, 138, 122, 0.22);
  box-shadow: 0 10px 24px rgba(16, 27, 45, 0.12);
  padding: 3px;
}

.menu { gap: 2px; }
.menu a {
  border-radius: 8px;
  color: #223047;
  font-family: var(--font-display);
  font-size: 0.91rem;
}
.menu a:hover,
.menu a[aria-current="page"] {
  background: #eef6f5;
  color: var(--signal-500);
}
.has-sub > a::after {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.52em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.65;
}
.submenu {
  border-radius: 8px;
  border-color: rgba(217, 226, 236, 0.95);
  box-shadow: 0 18px 46px rgba(16, 27, 45, 0.14);
}

.btn {
  min-height: 46px;
  border-radius: 8px;
  padding: 12px 22px;
  font-family: var(--font-display);
  letter-spacing: 0;
}
.btn--primary {
  background: linear-gradient(135deg, var(--signal-500), #0f766e);
  box-shadow: 0 12px 28px rgba(22, 138, 122, 0.28);
}
.btn--primary:hover { box-shadow: 0 18px 36px rgba(22, 138, 122, 0.34); }
.btn--navy { background: var(--pcb-900); }
.btn--navy:hover { background: var(--signal-500); }
.btn--ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--pcb-800);
}
.btn--ghost:hover {
  border-color: rgba(22, 138, 122, 0.45);
  color: var(--signal-500);
}

.hero {
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.95) 0%, rgba(16, 27, 45, 0.9) 54%, rgba(16, 27, 45, 0.68) 100%),
    url("../img/bg-brand-tv.png") center / cover no-repeat;
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.28;
}
.hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  min-height: min(760px, calc(100vh - 118px));
  padding: clamp(64px, 8vw, 112px) 0 clamp(48px, 7vw, 88px);
}
.hero__badge {
  background: rgba(53, 184, 164, 0.13);
  color: #8cf2dd;
  border-color: rgba(53, 184, 164, 0.34);
}
.hero h1 span { color: #8cf2dd; }
.hero__lead { color: #d9e5ee; }
.hero__stat b { font-size: 1.62rem; }
.hero__stat span { color: #c4d2df; }
.hero__visual {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero__visual img {
  min-height: 440px;
  object-position: center;
}

.card,
.post-card,
.form-card,
.info-card,
.acc-item,
.step,
.tip {
  border-radius: 8px;
}
.card,
.post-card,
.form-card,
.info-card,
.step,
.acc-item {
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.card {
  overflow: hidden;
  min-height: 100%;
}
.card:hover,
.post-card:hover,
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 138, 122, 0.35);
  box-shadow: var(--shadow);
}
.card__icon,
.feature__icon,
.info-card__icon {
  border-radius: 8px;
}
.card__icon {
  background: #eef6f5;
  border-color: #cde7e2;
}
.card__icon svg,
.card__link,
.area-chip svg { color: var(--signal-500); }
.card__img {
  height: 172px;
  border-radius: 8px;
}

.feature { min-width: 0; }
.feature__icon { background: #101b2d; }
.feature__icon svg { color: #8cf2dd; }

.brand-grid {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}
.brand-chip,
.area-chip {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(16, 27, 45, 0.05);
}
.brand-chip:hover,
.area-chip:hover {
  border-color: rgba(22, 138, 122, 0.42);
  color: var(--signal-500);
}
.area-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.area-chip {
  min-height: 48px;
  overflow-wrap: anywhere;
}

.cta-band {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 27, 45, 0.96), rgba(15, 118, 110, 0.92)),
    url("../img/motherboard-repair.png") center / cover;
}
.cta-band::after { display: none; }
.cta-band__actions .btn { flex: 0 1 auto; }

.page-hero {
  background:
    linear-gradient(135deg, rgba(8, 17, 31, 0.94), rgba(23, 38, 61, 0.9)),
    url("../img/istanbul-skyline.png") center / cover;
}
.page-hero::before {
  background: linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.18;
}

.input, .select, .textarea {
  background: #fff;
  border-color: #ccd8e4;
  border-radius: 8px;
}
.captcha {
  background: #eef3f8;
  border-radius: 8px;
}
.form-success {
  border-radius: 8px;
  background: #e8f7f3;
  border-color: #a7ded2;
}

.footer {
  background:
    linear-gradient(180deg, #101b2d, #08111f);
}
.footer .brand__name span { color: #8cf2dd !important; }
.footer__social a { border-radius: 8px; }
.footer__social a:hover { background: var(--signal-500); }
.fab {
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(16, 27, 45, 0.22);
}
.fab--call { background: var(--signal-500); }
.cookie { border-radius: 8px; }

.img-reveal { will-change: opacity, transform; }
.reveal.in .img-reveal,
.img-reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .nav { gap: 14px; }
  .menu a { padding-inline: 10px; }
}

@media (max-width: 992px) {
  :root {
    --h1: 2.65rem;
    --h2: 2rem;
  }
  .section { padding: 60px 0; }
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero__visual img { min-height: 320px; }
  .grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 820px) {
  .header {
    position: sticky;
    top: 0;
  }
  .nav { min-height: 64px; }
  .menu {
    display: none;
    width: min(88vw, 360px);
    background: rgba(255, 255, 255, 0.98);
    padding: 88px 20px 28px;
    transform: none;
    transition: none;
  }
  .menu.open {
    display: flex;
    transform: none;
  }
  .menu a {
    border-bottom: 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .menu a:hover,
  .menu a[aria-current="page"] {
    padding-left: 16px;
  }
  .submenu {
    display: block;
    margin: 4px 0 10px;
    padding-left: 10px;
    border-left: 2px solid #cde7e2;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .has-sub.is-open > .submenu {
    display: block;
  }
  .has-sub.is-open > a::after {
    transform: translateY(1px) rotate(225deg);
  }
  .submenu a {
    display: flex;
    min-height: 38px;
  }
}

@media (max-width: 640px) {
  :root {
    --h1: 2.15rem;
    --h2: 1.72rem;
    --h3: 1.12rem;
  }
  .wrap { padding-inline: 16px; }
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 28px; }
  .topbar .wrap { justify-content: space-between; }
  .topbar__left { display: flex; }
  .topbar__left .topbar__item { display: none; }
  .topbar__right { width: auto; }
  .topbar__logo span { display: none; }
  .topbar__logo img {
    width: 28px;
    height: 28px;
  }
  .hero__grid { padding: 48px 0; }
  .hero__cta,
  .cta-band__actions,
  .cookie__actions {
    width: 100%;
  }
  .hero__cta .btn,
  .cta-band__actions .btn,
  .cookie__actions .btn {
    width: 100%;
  }
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero__stat {
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .hero__visual img { min-height: 240px; }
  .area-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }
  .card,
  .form-card,
  .info-card,
  .step {
    padding: 22px;
  }
  .captcha {
    align-items: stretch;
    flex-direction: column;
  }
  .captcha input {
    width: 100%;
  }
  .floating {
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }
  .fab {
    width: 50px;
    height: 50px;
  }
  .cookie {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 16px;
  }
}

@media (max-width: 420px) {
  .brand__name { font-size: 0.92rem; }
  .brand__sub { display: none; }
  .nav__toggle { padding: 6px; }
  .hero__badge { width: 100%; justify-content: center; }
}

/* Yazdırma */
@media print {
  .topbar, .header, .footer, .floating, .cookie, .btn { display: none !important; }
}
