/* ==========================================================================
   Hacar Teknik — tema stilleri
   Kaynak: hacar-teknik-brand-kit/developer/brand-tokens.json
   Yön farkı tamamen mantıksal özelliklerle çözülür (margin-inline, inset-inline,
   text-align: start …), böylece Arapça için ayrı bir rtl.css gerekmez.
   ========================================================================== */

:root {
  /* Marka */
  --navy-950: #0a1e36;
  --navy-900: #152e50;
  --navy-700: #244b78;
  --blue-500: #2474c6;
  --blue-100: #eaf3fc;
  --amber: #f59e0b;
  --amber-ink: #a15c00;
  --whatsapp: #0f7a45;
  --whatsapp-dark: #0b5c34;

  /* Nötr */
  --ink: #172033;
  --muted: #5f6b7a;
  --line: #d8e0ea;
  --line-strong: #aab4c2;
  --surface: #f6f8fb;
  --card: #ffffff;

  /* Anlamsal */
  --success: #18794e;
  --warning: #a15c00;
  --error: #b42318;

  /*
   * Tipografi — tek yığın, iki dil.
   * Thmanyah yalnızca Arapça aralığını üstlenir (assets/fonts/fonts.css
   * içindeki unicode-range), Latin harfler IBM Plex Sans'a düşer. Thmanyah'ta
   * ğ Ğ İ ş Ş bulunmadığı için Türkçe metin ona verilmez.
   */
  --font-body: "Thmanyah Sans", "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Thmanyah Display", "IBM Plex Sans", system-ui, -apple-system, sans-serif;

  /* Yarıçap ve gölge */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 999px;
  --shadow-card: 0 8px 28px rgba(10, 30, 54, .08);
  --shadow-float: 0 16px 48px rgba(10, 30, 54, .16);

  --container: 1180px;
  --sticky-bar: 76px;
}

@media (min-width: 768px) {
  :root { --sticky-bar: 0px; }
}

/* --- temel -------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-block-end: var(--sticky-bar);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.18;
  text-wrap: balance;
  color: var(--navy-950);
}

/* Arapça satır yüksekliği Latin'den fazla ister; harekesiz metinde bile
   inişler/çıkışlar daha derin. */
html[dir="rtl"] body { line-height: 1.8; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 { line-height: 1.35; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); }

/* Kehribar odak halkası — marka kuralı. Hiçbir yerde kaldırılmaz. */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--blue-100); color: var(--navy-950); }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100%;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--navy-950);
  color: #fff;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: top .16s ease;
}
.skip-link:focus { top: 1rem; }

.wrap { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.ltr { direction: ltr; unicode-bidi: isolate; }

/* --- düğmeler ----------------------------------------------------------- */

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .75rem 1.25rem;
  border: 2px solid transparent; border-radius: var(--r-md);
  font: inherit; font-weight: 600; font-size: 1rem; line-height: 1.2;
  text-align: center; text-decoration: none; white-space: nowrap;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .12s ease;
}
.button:active:not(:disabled) { transform: translateY(1px); }
.button:disabled { opacity: .55; cursor: not-allowed; }

.button--primary { background: var(--navy-900); color: #fff; }
.button--primary:hover { background: var(--navy-950); color: #fff; }

.button--secondary { background: #fff; color: var(--navy-900); border-color: var(--navy-900); }
.button--secondary:hover { background: var(--blue-100); }

.button--whatsapp { background: var(--whatsapp); color: #fff; }
.button--whatsapp:hover { background: var(--whatsapp-dark); color: #fff; }

.button--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.button--ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.button--small { min-height: 40px; padding: .45rem .85rem; font-size: .875rem; }
.button--block { width: 100%; }

.text-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 600; color: var(--navy-700);
  text-decoration: underline; text-underline-offset: 4px;
}
.icon-end { flex: 0 0 auto; }
html[dir="rtl"] .icon-end { transform: scaleX(-1); }

/* --- kart / yüzey ------------------------------------------------------- */

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

.eyebrow {
  display: block;
  margin: 0;
  font-size: .8125rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--navy-700);
}

.section { padding-block: 4rem; }
.section--card { background: var(--card); }
.section--navy { background: var(--navy-950); color: var(--blue-100); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .eyebrow { color: var(--blue-500); }

.section__head { max-width: 40rem; margin-block-end: 2.25rem; }
.section__head h2 { margin-block-start: .5rem; font-size: clamp(1.7rem, 3.2vw, 2.125rem); letter-spacing: -.012em; }
.section__head p { margin-block-start: .75rem; font-size: 1.0625rem; color: var(--muted); }
.section--navy .section__head p { color: rgba(234, 243, 252, .85); }

/* --- bilgi kutuları ----------------------------------------------------- */

.callout {
  display: flex; gap: .75rem;
  padding: 1rem;
  border: 1px solid;
  border-radius: var(--r-lg);
  font-size: .9375rem; line-height: 1.6;
}
.callout svg { flex: 0 0 auto; margin-block-start: .15rem; }
.callout strong { display: block; color: var(--navy-950); }
.callout--info { background: rgba(36, 116, 198, .07); border-color: rgba(36, 116, 198, .3); color: var(--ink); }
.callout--info svg { color: var(--navy-700); }
.callout--warning { background: rgba(245, 158, 11, .1); border-color: rgba(245, 158, 11, .4); }
.callout--warning svg { color: var(--amber-ink); }
.callout--safety { background: rgba(180, 35, 24, .05); border-color: rgba(180, 35, 24, .25); }
.callout--safety svg { color: var(--error); }

/* --- üst şerit ve başlık ------------------------------------------------ */

.topbar { background: var(--navy-950); color: var(--blue-100); font-size: .8125rem; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 44px; }
.topbar__areas { color: rgba(234, 243, 252, .85); }
.topbar a { color: #fff; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.topbar a:hover { text-decoration: underline; }

@media (max-width: 1079px) { .topbar__areas { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, .95);
  border-block-end: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.site-header__inner { display: flex; align-items: center; gap: 1rem; min-height: 72px; }

@media (min-width: 768px) { .site-header__inner { min-height: 80px; } }

/* Marka kilidi: kit içindeki daire logo adı rozetin *içinde* taşıdığı için
   40 px'te okunmuyor; kitin ikon varyantı + tipografik isim kullanılıyor. */
.lockup { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; flex: 0 0 auto; }
.lockup svg { width: 42px; height: 42px; color: var(--navy-900); flex: 0 0 auto; }
.lockup img { width: auto; max-height: 46px; }
.lockup__text { display: flex; flex-direction: column; line-height: 1; white-space: nowrap; }
.lockup__text b { font-size: 1.0625rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--navy-950); }
.lockup__text span { margin-block-start: .3rem; font-size: .625rem; font-weight: 600; letter-spacing: .14em; color: var(--muted); }

@media (min-width: 768px) {
  .lockup svg { width: 46px; height: 46px; }
  .lockup__text b { font-size: 1.125rem; }
}

.site-nav { display: none; margin-inline-start: auto; }
.site-nav__list { display: flex; gap: .15rem; list-style: none; }
.site-nav a {
  display: block;
  padding: .5rem .65rem; border-radius: var(--r-sm);
  font-size: .9375rem; font-weight: 500; color: var(--ink);
  text-decoration: none; white-space: nowrap;
  transition: background-color .16s ease, color .16s ease;
}
.site-nav a:hover,
.site-nav .current-menu-item > a { background: var(--blue-100); color: var(--navy-900); }
.site-nav ul ul { display: none; }

@media (min-width: 1080px) { .site-nav { display: block; } }

.site-header__actions { display: flex; align-items: center; gap: .5rem; margin-inline-start: auto; }
@media (min-width: 1080px) { .site-header__actions { margin-inline-start: 0; } }

.site-header__cta { display: none; }
@media (min-width: 768px) { .site-header__cta { display: inline-flex; } }

.lang-switch {
  display: inline-flex; align-items: center; gap: .35rem;
  min-height: 44px; padding-inline: .6rem;
  border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 600; color: var(--navy-900);
  text-decoration: none;
}
.lang-switch:hover { background: var(--blue-100); }
.lang-switch .trp-language-switcher { border: 0; background: none; }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: none; border: 0; border-radius: var(--r-sm);
  color: var(--navy-900); cursor: pointer;
}
.menu-toggle:hover { background: var(--blue-100); }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (min-width: 1080px) { .menu-toggle { display: none; } }

.mobile-nav { border-block-start: 1px solid var(--line); background: var(--card); }
.mobile-nav[hidden] { display: none; }
.mobile-nav ul { list-style: none; }
.mobile-nav li + li { border-block-start: 1px solid var(--line); }
.mobile-nav a {
  display: flex; align-items: center; min-height: 52px;
  font-size: 1rem; font-weight: 500; color: var(--ink); text-decoration: none;
}
.mobile-nav__actions { display: grid; gap: .5rem; padding-block: 1rem; }

@media (min-width: 1080px) { .mobile-nav { display: none; } }

/* --- mobil yapışkan eylem çubuğu ---------------------------------------- */
/* İki dönüşüm yolu görsel olarak ayrı kalır: lacivert randevu, yeşil WhatsApp. */

.sticky-actions {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
  padding: .75rem;
  padding-block-end: calc(.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  border-block-start: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.sticky-actions .button { font-size: .9375rem; padding-inline: .5rem; }

@media (min-width: 768px) { .sticky-actions { display: none; } }

/* --- sayfa başlığı ------------------------------------------------------ */

.page-hero {
  background: var(--blue-100);
  border-block-end: 1px solid var(--line);
  padding-block: 2.75rem;
}
.page-hero h1 { margin-block-start: .5rem; font-size: clamp(1.9rem, 4.5vw, 2.75rem); letter-spacing: -.018em; max-width: 24ch; }
.page-hero__lead { margin-block-start: 1rem; max-width: 46rem; font-size: 1.0625rem; color: var(--muted); }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-block-start: 1.5rem; }

@media (min-width: 768px) { .page-hero { padding-block: 3.5rem; } }

.breadcrumbs { background: var(--card); border-block-end: 1px solid var(--line); font-size: .875rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .35rem .5rem; list-style: none; padding-block: .75rem; color: var(--muted); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--navy-700); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 500; }
.breadcrumbs .sep { color: var(--line-strong); }

/* --- ana sayfa kahraman -------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(234, 243, 252, .85), var(--surface));
  border-block-end: 1px solid var(--line);
}

/*
 * Filigran: kitin daire logosu, çok düşük opaklıkta.
 * Rengi değiştirilmez, oranı bozulmaz — yalnızca saydamlaşır. Metnin altında
 * değil, sol sütunun boş kalan alanındadır; kontrastı düşürmez.
 * Sütunlar alt alta indiğinde (mobil) boşluk kalmadığı için gizlenir.
 */
.hero__watermark {
  display: none;
  position: absolute;
  z-index: 0;
  inset-block-start: 50%;
  inset-inline-start: -7rem;
  width: 40rem;
  max-width: 78%;
  transform: translateY(-50%);
  opacity: .04;
  pointer-events: none;
  user-select: none;
}

.hero__inner { position: relative; z-index: 1; }

@media (min-width: 900px) {
  .hero__watermark { display: block; }
}

@media (prefers-contrast: more) {
  .hero__watermark { display: none; }
}
.hero__inner { display: grid; gap: 2.5rem; padding-block: 3rem 3.5rem; }
.hero h1 { margin-block-start: .75rem; font-size: clamp(2.1rem, 5.2vw, 3.4rem); letter-spacing: -.02em; }
.hero__lead { margin-block-start: 1.25rem; max-width: 34rem; font-size: 1.125rem; color: var(--muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-block-start: 2rem; }
.hero__proof { display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; margin-block-start: 2rem; list-style: none; }
.hero__proof li { display: flex; align-items: center; gap: .45rem; font-size: .875rem; font-weight: 500; color: var(--navy-900); }
.hero__proof svg { color: var(--success); }

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 3.5rem; padding-block: 4rem 4.5rem; }
}

.steps { padding: 1.75rem; }
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .3rem .75rem; border-radius: var(--r-pill);
  background: rgba(24, 121, 78, .1); color: var(--success);
  font-size: .8125rem; font-weight: 600;
}
.badge i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.steps h2 { margin-block-start: 1rem; font-size: 1.5rem; }
.steps ol { display: grid; gap: 1rem; margin-block-start: 1.25rem; list-style: none; }
.steps li { display: flex; gap: .75rem; }
.steps .num {
  flex: 0 0 auto; width: 28px; height: 28px; margin-block-start: .1rem;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--navy-900); color: #fff; font-size: .8125rem; font-weight: 700;
}
.steps b { display: block; color: var(--navy-950); }
.steps p { font-size: .875rem; color: var(--muted); }
.steps .button { margin-block-start: 1.5rem; }
.steps__areas { margin-block-start: 1rem; font-size: .8125rem; color: var(--muted); }

/* --- ızgaralar ---------------------------------------------------------- */

.grid { display: grid; gap: 1rem; list-style: none; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }

.tile {
  display: flex; flex-direction: column; height: 100%;
  padding: 1.35rem; text-decoration: none; color: inherit;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.tile:hover { box-shadow: var(--shadow-float); }
.tile h3 { font-size: 1.0625rem; }
.tile p { margin-block-start: .5rem; font-size: .875rem; color: var(--muted); }
.tile .more { margin-block-start: auto; padding-block-start: 1rem; font-size: .875rem; font-weight: 600; color: var(--navy-700); display: inline-flex; align-items: center; gap: .35rem; }

.pill-list { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; }
/* Bağlantısız rozet (taslaktaki bölge sayfaları için) da aynı görünür. */
.pill-list a,
.pill-list span {
  display: inline-flex; align-items: center; min-height: 44px; padding-inline: 1rem;
  border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--card);
  font-size: .9375rem; font-weight: 600; color: var(--navy-900); text-decoration: none;
  transition: border-color .16s ease, background-color .16s ease;
}
.pill-list a:hover { border-color: var(--blue-500); background: var(--blue-100); }

.link-list a {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  min-height: 58px; padding-inline: 1rem;
  border: 1px solid var(--line); border-radius: var(--r-md); background: var(--card);
  font-weight: 600; color: var(--navy-900); text-decoration: none;
  transition: border-color .16s ease, background-color .16s ease;
}
.link-list a:hover { border-color: var(--blue-500); background: var(--blue-100); }
.link-list svg { color: var(--blue-500); }

.check-list { display: grid; gap: .65rem; list-style: none; }
.check-list li { display: flex; gap: .65rem; font-size: .9375rem; line-height: 1.6; }
.check-list svg { flex: 0 0 auto; margin-block-start: .3rem; color: var(--success); }

/* --- yedek parça kartları ------------------------------------------------ */

.parts-grid { display: grid; gap: 1rem; list-style: none; }
@media (min-width: 640px) { .parts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .parts-grid { grid-template-columns: repeat(3, 1fr); } }

.part-card { position: relative; display: flex; flex-direction: column; height: 100%; padding: 1rem; transition: box-shadow .18s ease; }
.part-card:hover, .part-card:focus-within { box-shadow: var(--shadow-float); }
.part-card__media { display: block; border-radius: var(--r-md); overflow: hidden; background: var(--blue-100); aspect-ratio: 4 / 3; }
.part-card__media img { width: 100%; height: 100%; object-fit: cover; }
.part-card__placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: var(--navy-700); }
.part-card__placeholder svg { width: 54px; height: 54px; }
.part-card__body { display: flex; flex-direction: column; height: 100%; padding: .9rem .35rem .35rem; }
.part-card h3 { margin-block-start: .6rem; font-size: 1.0625rem; }
.part-card h3 a { color: inherit; text-decoration: none; }
.part-card h3 a::after { content: ""; position: absolute; inset: 0; }
.part-card__sku { margin-block-start: .3rem; font-size: .875rem; color: var(--muted); }
.part-card__sku b { color: var(--ink); font-weight: 600; direction: ltr; unicode-bidi: isolate; }
.part-card__fit { margin-block-start: .5rem; font-size: .8125rem; color: var(--muted); }
.part-card__more { margin-block-start: auto; padding-block-start: 1rem; font-size: .875rem; font-weight: 600; color: var(--navy-700); display: inline-flex; align-items: center; gap: .35rem; }

.chips { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.chip { padding: .2rem .6rem; border-radius: var(--r-pill); font-size: .75rem; font-weight: 700; }
.chip--used { background: var(--blue-100); color: var(--navy-700); }
.chip--refurbished { background: rgba(245, 158, 11, .15); color: var(--amber-ink); }
.chip--new { background: rgba(24, 121, 78, .1); color: var(--success); }
.chip--muted { background: none; padding-inline: 0; font-weight: 500; color: var(--muted); }

/* --- katalog filtresi ---------------------------------------------------- */

.catalog-filter { display: grid; gap: 1rem; padding: 1.25rem; }
@media (min-width: 760px) { .catalog-filter { grid-template-columns: 2fr 1fr auto; align-items: end; } }
.catalog-filter label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy-950); }
.catalog-filter .field { margin-block-start: .4rem; }

.field {
  display: block; width: 100%; min-height: 48px;
  padding: .6875rem .875rem;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: var(--r-md);
  font: inherit; font-size: 1rem; line-height: 1.5;
}
.field:hover { border-color: var(--navy-700); }
.field[aria-invalid="true"] { border-color: var(--error); border-width: 2px; }
.field::placeholder { color: #8592a3; }

select.field {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235F6B7A'%3E%3Cpath d='M5.5 7.5 10 12l4.5-4.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 20px;
  padding-inline-end: 2.5rem;
}
html[dir="rtl"] select.field { background-position: left .75rem center; }

/* --- tek parça sayfası ---------------------------------------------------- */

.part-single { display: grid; gap: 2rem; }
@media (min-width: 900px) { .part-single { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.part-single__media { padding: 1.25rem; }
.part-single__media img,
.part-single__media .part-card__placeholder { border-radius: var(--r-md); aspect-ratio: 4 / 3; width: 100%; object-fit: cover; background: var(--blue-100); }
.part-single h1 { margin-block-start: .75rem; font-size: clamp(1.6rem, 3.5vw, 2.125rem); }
.part-single__sku { margin-block-start: .5rem; font-size: 1.0625rem; color: var(--muted); }
.part-single__sku b { color: var(--ink); direction: ltr; unicode-bidi: isolate; }
.part-single__body { margin-block-start: 1.25rem; }
.part-meta { margin-block-start: 1.5rem; border-block: 1px solid var(--line); }
.part-meta > div { display: grid; gap: .25rem; padding-block: .75rem; }
.part-meta > div + div { border-block-start: 1px solid var(--line); }
.part-meta dt { font-size: .875rem; font-weight: 600; color: var(--muted); }
.part-meta dd { margin: 0; font-size: .9375rem; }
@media (min-width: 560px) { .part-meta > div { grid-template-columns: minmax(0, 12rem) 1fr; gap: 1rem; } }

/* --- SSS ----------------------------------------------------------------- */

.faq { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--card); overflow: hidden; }
.faq details + details { border-block-start: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.25rem; cursor: pointer; list-style: none;
  font-size: 1.0625rem; font-weight: 600; color: var(--navy-950);
}
.faq summary::-webkit-details-marker { display: none; }
.faq .sign {
  flex: 0 0 auto; width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; color: var(--navy-700);
  transition: transform .18s ease;
}
.faq details[open] .sign { transform: rotate(45deg); }
.faq .faq__answer { padding: 0 1.25rem 1.25rem; font-size: .9375rem; color: var(--muted); }

/* --- blog ---------------------------------------------------------------- */

.post-grid { display: grid; gap: 1.25rem; list-style: none; }
@media (min-width: 700px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card { position: relative; display: flex; flex-direction: column; height: 100%; overflow: hidden; transition: box-shadow .18s ease; }
.post-card:hover { box-shadow: var(--shadow-float); }
.post-card__media { aspect-ratio: 16 / 9; background: var(--blue-100); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { display: flex; flex-direction: column; height: 100%; padding: 1.25rem; }
.post-card h2, .post-card h3 { font-size: 1.125rem; }
.post-card h2 a, .post-card h3 a { color: inherit; text-decoration: none; }
.post-card h2 a::after, .post-card h3 a::after { content: ""; position: absolute; inset: 0; }
.post-card__meta { font-size: .8125rem; color: var(--muted); }
.post-card__excerpt { margin-block-start: .6rem; font-size: .9375rem; color: var(--muted); }

.pagination { display: flex; flex-wrap: wrap; gap: .5rem; margin-block-start: 2.5rem; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; padding-inline: .5rem;
  border: 1px solid var(--line); border-radius: var(--r-md); background: var(--card);
  font-weight: 600; color: var(--navy-900); text-decoration: none;
}
.pagination .page-numbers:hover { border-color: var(--blue-500); background: var(--blue-100); }
.pagination .page-numbers.current { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }

/* --- yazı / sayfa içeriği ------------------------------------------------ */

.entry-content { max-width: 68ch; }
.entry-content > * + * { margin-block-start: 1rem; }
.entry-content h2 { margin-block-start: 2.25rem; font-size: 1.5rem; }
.entry-content h3 { margin-block-start: 1.75rem; font-size: 1.1875rem; }
.entry-content ul, .entry-content ol { padding-inline-start: 1.5rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li + li { margin-block-start: .35rem; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote {
  margin-inline: 0;
  padding-inline-start: 1.25rem;
  border-inline-start: 3px solid var(--blue-500);
  color: var(--muted);
}
.entry-content img { border-radius: var(--r-md); }
.entry-content table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.entry-content th, .entry-content td { padding: .6rem .75rem; border: 1px solid var(--line); text-align: start; }
.entry-content th { background: var(--blue-100); color: var(--navy-950); }

.table-scroll { overflow-x: auto; }

/* Elementor ile düzenlenen sayfalarda tema genişlik sınırını uygulamayız. */
.elementor-page .entry-content { max-width: none; }

/* --- iletişim / bilgi kartları ------------------------------------------- */

.info-grid { display: grid; gap: 1rem; list-style: none; }
@media (min-width: 800px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-card { padding: 1.5rem; }
.info-card h2 { display: flex; align-items: center; gap: .5rem; font-size: 1.25rem; }
.info-card svg { color: var(--blue-500); }
.info-card dl { margin-block-start: .75rem; font-size: .9375rem; }
.info-card dl > div { display: flex; justify-content: space-between; gap: 1rem; }
.info-card dl > div + div { margin-block-start: .35rem; }
.info-card dt { color: var(--muted); }
.info-card dd { margin: 0; font-weight: 500; }

/* --- alt bilgideki harita (tıklayınca yüklenir) --------------------------- */

.footer-map {
  margin-block-end: 2rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
}
.footer-map__intro { padding: 1.25rem; }
.footer-map__intro h2 { display: flex; align-items: center; gap: .5rem; margin: 0; font-size: 1.0625rem; letter-spacing: 0; text-transform: none; }
.footer-map__intro svg { color: var(--blue-500); }
.footer-map__intro p { margin-block-start: .4rem; max-width: 52ch; font-size: .8125rem; color: rgba(234, 243, 252, .75); }
.footer-map__intro .button { margin-block-start: 1rem; }
.footer-map__frame:empty { display: none; }
.footer-map__frame iframe { display: block; width: 100%; height: 300px; border: 0; }

/* --- alt bilgi ----------------------------------------------------------- */

.site-footer { margin-block-start: 4rem; background: var(--navy-950); color: rgba(234, 243, 252, .85); }
.site-footer__inner { display: grid; gap: 2.25rem; padding-block: 3.25rem 2rem; }
@media (min-width: 900px) { .site-footer__inner { grid-template-columns: 1.2fr .8fr .8fr 1.1fr; } }
.site-footer h2 { margin-block-end: 1rem; font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.site-footer ul { list-style: none; }
.site-footer li + li { margin-block-start: .6rem; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .lockup svg { color: #fff; }
.site-footer .lockup__text b { color: #fff; }
.site-footer .lockup__text span { color: rgba(234, 243, 252, .7); }
.site-footer__blurb { max-width: 22rem; margin-block-start: 1rem; font-size: .875rem; }
.site-footer__contact li { display: flex; gap: .65rem; font-size: .875rem; }
.site-footer__contact svg { flex: 0 0 auto; margin-block-start: .25rem; color: var(--blue-500); }
.site-footer__legal { border-block-start: 1px solid rgba(255, 255, 255, .12); font-size: .75rem; color: rgba(234, 243, 252, .7); }
.site-footer__legal .wrap { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; padding-block: 1.15rem; }

/* --- yardımcılar --------------------------------------------------------- */

.stack > * + * { margin-block-start: 1rem; }
.mt-6 { margin-block-start: 1.5rem; }
.mt-8 { margin-block-start: 2rem; }
.muted { color: var(--muted); }
.text-small { font-size: .875rem; }
.empty-state { padding: 2.5rem; text-align: center; }
.empty-state p + p { margin-block-start: .5rem; }

.layout-sidebar { display: grid; gap: 2.5rem; }
@media (min-width: 960px) {
  .layout-sidebar { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 3rem; align-items: start; }
  .layout-sidebar__aside { position: sticky; top: 6.5rem; }
}
