/* =========================================================================
   Özen Garaj — site teması
   Kırmızı / beyaz / siyah. Marka renkleri panelden değiştirilebilir;
   --brand, --brand-dark ve --ink değişkenleri sayfa başında yazılır.
   ====================================================================== */

:root {
  --brand: #d61f26;
  --brand-dark: #a8161c;
  --ink: #0d0d0f;

  --ink-2: #17171c;
  --ink-3: #232329;
  --paper: #ffffff;
  --paper-2: #f6f6f8;
  --paper-3: #ecedf0;
  --line: #e2e3e8;
  --line-dark: #2c2c34;

  --text: #16161a;
  --muted: #62636b;
  --muted-dark: #a6a7b0;

  --wa: #25d366;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max: 1200px;
  --header-h: 76px;

  --font: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(13, 13, 15, .06);
  --shadow: 0 12px 32px rgba(13, 13, 15, .10);
  --shadow-lg: 0 24px 60px rgba(13, 13, 15, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 { margin: 0 0 .55em; line-height: 1.15; font-weight: 800; letter-spacing: -.025em; }
h1 { font-size: clamp(2.05rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.45rem); }
h3 { font-size: clamp(1.08rem, 1.8vw, 1.3rem); }
p  { margin: 0 0 1rem; color: var(--muted); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Bölümler ---------- */
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--muted { background: var(--paper-2); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--muted-dark); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand); border-radius: 2px; }
.section--dark .eyebrow { color: #ff6b70; }
.section--dark .eyebrow::before { background: #ff6b70; }

.section-head { max-width: 740px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--split {
  max-width: none; display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.section-head--split > div { max-width: 660px; }
.section-head p { font-size: 1.05rem; margin-bottom: 0; }

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(214, 31, 38, .12); border: 1px solid rgba(214, 31, 38, .35);
  color: #ff7a7f; padding: 7px 15px; border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .02em; margin-bottom: 20px;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px; font: inherit; font-weight: 700; font-size: .96rem;
  border: 2px solid transparent; cursor: pointer; transition: .2s ease; white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: .89rem; }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--brand { background: var(--brand); color: #fff; box-shadow: 0 10px 26px rgba(214, 31, 38, .32); }
.btn--brand:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(214, 31, 38, .42); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); transform: translateY(-2px); }

.btn--outline { border-color: var(--line); color: var(--text); background: #fff; }
.btn--outline:hover { border-color: var(--brand); color: var(--brand); }

.btn--outline-light { border-color: rgba(255,255,255,.3); color: #fff; background: rgba(255,255,255,.06); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.14); }

.btn--wa { background: var(--wa); color: #06240f; }
.btn--wa:hover { transform: translateY(-2px); filter: brightness(1.06); }

/* ---------- Üst şerit ---------- */
.topbar {
  background: var(--ink); color: var(--muted-dark);
  font-size: .82rem; border-bottom: 1px solid var(--line-dark);
}
.topbar__inner { display: flex; align-items: center; gap: 18px; min-height: 40px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { color: var(--brand); }
.topbar__sep { width: 1px; height: 16px; background: var(--line-dark); }
.topbar__social { margin-left: auto; display: flex; gap: 8px; }
.topbar__social a { color: var(--muted-dark); transition: .2s; }
.topbar__social a:hover { color: #fff; }

/* ---------- Header ---------- */
/* Üst menü koyu zeminlidir: marka logosunun beyaz yazılı bölümü
   ancak koyu zeminde okunur. Açık zemine geçilirse logonun koyu yazılı
   bir sürümü gerekir. */
.header {
  position: sticky; top: 0; z-index: 100; min-height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(13, 13, 15, .90);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  transition: background .25s ease, box-shadow .25s ease;
}
.header.is-scrolled {
  background: rgba(13, 13, 15, .985);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .45);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }

/* Logo oranı korunur: yükseklik sabit, genişlik serbest.
   Kare de yatay da olsa ezilmez. */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img {
  height: 42px; width: auto; max-width: 240px; object-fit: contain;
}
.logo__text b { display: block; font-size: 1.16rem; font-weight: 900; letter-spacing: -.03em; line-height: 1.1; color: #fff; }
.logo__text small { display: block; font-size: .63rem; font-weight: 700; letter-spacing: .13em; color: var(--muted-dark); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav > a, .nav__group > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 15px; border-radius: 999px;
  font-size: .94rem; font-weight: 700; color: #d5d6de; transition: .18s;
}
.nav > a:hover, .nav__group > a:hover { color: #fff; background: rgba(255, 255, 255, .09); }
.nav a.is-active { color: var(--brand); }

.nav__group { position: relative; }
.nav__caret {
  width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; opacity: .6; transition: transform .2s;
}
.nav__group:hover .nav__caret { transform: rotate(180deg); }
.nav__menu {
  position: absolute; top: calc(100% + 14px); left: 0; min-width: 330px;
  background: #17171c; border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease;
}
.nav__group:hover .nav__menu, .nav__group:focus-within .nav__menu {
  opacity: 1; visibility: visible; transform: none;
}
.nav__menu a { display: flex; gap: 12px; align-items: center; padding: 11px 13px; border-radius: var(--radius-sm); transition: .16s; }
.nav__menu a:hover { background: rgba(255, 255, 255, .07); }
.nav__menu-icon {
  width: 38px; height: 38px; flex: 0 0 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(214, 31, 38, .16); color: var(--brand);
}
.nav__menu b { display: block; font-size: .93rem; color: #fff; }
.nav__menu small { display: block; font-size: .78rem; color: var(--muted-dark); line-height: 1.4; }

.header__cta { display: flex; align-items: center; gap: 12px; }
.header__phone { display: flex; align-items: center; gap: 10px; }
.header__phone svg { color: var(--brand); }
.header__phone small { display: block; font-size: .68rem; color: var(--muted-dark); font-weight: 600; line-height: 1.2; }
.header__phone b { display: block; font-size: .97rem; font-weight: 800; letter-spacing: -.01em; color: #fff; }
.header__phone:hover b { color: var(--brand); }

.burger {
  display: none; width: 46px; height: 46px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 12px;
  background: transparent; cursor: pointer; padding: 0; place-items: center;
}
.burger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; position: relative; transition: .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: .2s;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; padding: 92px 0 100px; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(760px 420px at 82% 8%, rgba(214, 31, 38, .40), transparent 62%),
    radial-gradient(600px 380px at 6% 92%, rgba(214, 31, 38, .16), transparent 60%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 40%, #000, transparent 76%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero__lead { font-size: 1.12rem; color: #d6d7de; max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 36px; }

.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 540px; }
.stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: 16px 15px;
}
.stat b { display: block; font-size: 1.55rem; font-weight: 900; line-height: 1.1; color: #fff; }
.stat small { font-size: .8rem; color: var(--muted-dark); }

.hero__panel {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(6px);
}
.hero__panel h2 { font-size: 1.15rem; color: #fff; margin-bottom: 20px; }
.checklist { display: grid; gap: 15px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; }
.checklist svg { flex: 0 0 20px; margin-top: 3px; color: var(--brand); }
.checklist b { display: block; color: #fff; font-size: .96rem; margin-bottom: 2px; }
.checklist div { font-size: .89rem; color: var(--muted-dark); line-height: 1.55; }
.panel__cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-weight: 700; font-size: .92rem; color: #fff;
}
.panel__cta:hover { gap: 13px; color: var(--brand); }

/* ---------- Kartlar ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: .25s ease; position: relative; overflow: hidden;
}
.card::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.section--dark .card { background: var(--ink-2); border-color: var(--line-dark); }
.section--dark .card p { color: var(--muted-dark); }

.card__icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: var(--brand); color: #fff; margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(214, 31, 38, .3);
}
.card__icon--sm { width: 44px; height: 44px; border-radius: 12px; }
.card h3 { margin-bottom: .45rem; }
.card p { font-size: .95rem; }
.card__list { display: grid; gap: 8px; margin: 0 0 20px; }
.card__list li { display: flex; gap: 9px; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.card__list svg { flex: 0 0 15px; margin-top: 4px; color: var(--brand); }
.card__link { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: .92rem; color: var(--brand); }
.card__link:hover { gap: 12px; }

/* ---------- Çalışmalar ---------- */
.works { align-items: start; }
.work {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: .25s ease;
}
.section--dark .work { background: var(--ink-2); border-color: var(--line-dark); }
.work:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.work__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-3); }
.work__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.work:hover .work__media img { transform: scale(1.06); }
.work__placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: #b7b9c2; background: var(--paper-3); }
.work__placeholder--big { aspect-ratio: 16 / 10; border-radius: var(--radius); }
.work__tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 800;
  padding: 5px 12px; border-radius: 999px; letter-spacing: .02em;
}
.work__body { padding: 20px 22px 24px; }
.work__body h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.section--dark .work__body h3 { color: #fff; }
.work__vehicle { font-size: .84rem; font-weight: 700; color: var(--brand); margin-bottom: .5rem; }
.work__summary { font-size: .9rem; margin-bottom: 14px; }
.work__more { display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; font-weight: 800; color: var(--brand); }
.work:hover .work__more { gap: 12px; }

/* ---------- Filtreler ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; font-size: .92rem; font-weight: 700; transition: .2s;
}
.filter:hover { border-color: var(--brand); color: var(--brand); }
.filter.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---------- Adımlar ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: s; }
.step { position: relative; }
.step__num {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: #fff; font-weight: 900; font-size: 1.05rem; margin-bottom: 18px;
}
.step h3 { font-size: 1.04rem; }
.step p { font-size: .92rem; margin: 0; }

/* ---------- Paketler ---------- */
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column;
}
.plan--featured {
  border-color: var(--brand); border-width: 2px;
  box-shadow: 0 18px 42px rgba(214, 31, 38, .14);
  position: relative;
}
.plan__tag {
  display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 10px;
}
.plan__note { font-size: .92rem; }
.plan ul { display: grid; gap: 11px; margin: 4px 0 24px; flex: 1; }
.plan ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: var(--muted); }
.plan ul svg { flex: 0 0 16px; margin-top: 4px; color: var(--brand); }

/* ---------- SSS ---------- */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 2px 22px; transition: .2s;
}
.faq details[open] { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; font-size: 1.01rem;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: 0 0 12px; width: 12px; height: 12px; margin-right: 2px;
  border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(45deg) translateY(-3px); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq__body { padding-bottom: 20px; }
.faq__body p { margin: 0; font-size: .96rem; }

/* ---------- Yorumlar ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.quote__stars { display: flex; gap: 2px; color: #f5a524; margin-bottom: 14px; }
.quote__stars svg { fill: currentColor; }
.quote p { color: var(--text); font-size: .98rem; }
.quote footer { color: var(--muted); font-size: .88rem; font-weight: 700; }

/* ---------- CTA ---------- */
.cta {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(560px 300px at 88% 20%, rgba(214, 31, 38, .38), transparent 62%);
}
.cta__text, .cta__actions { position: relative; z-index: 1; }
.cta__text { max-width: 620px; }
.cta h2 { color: #fff; margin-bottom: .35em; }
.cta p { color: var(--muted-dark); margin: 0; }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Sayfa başlığı ---------- */
.page-head {
  background: var(--ink); color: #fff; padding: 64px 0 56px; position: relative; overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(620px 320px at 78% 0%, rgba(214, 31, 38, .34), transparent 62%);
}
.page-head > .container { position: relative; z-index: 1; }
.page-head h1 { color: #fff; margin-bottom: .35em; }
.page-head .eyebrow { color: #ff6b70; }
.page-head .eyebrow::before { background: #ff6b70; }
.page-head__lead { max-width: 68ch; font-size: 1.06rem; color: #d6d7de; margin: 0; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted-dark); margin-bottom: 18px; }
.crumbs a:hover { color: #fff; }
.crumbs__sep { opacity: .5; }

/* ---------- Hizmet satırları ---------- */
.service-rows { display: grid; gap: 72px; }
.service-row { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.service-row--flip .service-row__text { order: 2; }
.service-row__summary { font-size: 1.05rem; font-weight: 600; color: var(--text); }
.service-row__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.tick-list { display: grid; gap: 10px; margin: 18px 0; }
.tick-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; color: var(--muted); }
.tick-list svg { flex: 0 0 17px; margin-top: 4px; color: var(--brand); }

.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mini-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; }
.mini-card b { display: block; font-size: .95rem; margin-bottom: 5px; }
.mini-card span { font-size: .86rem; color: var(--muted); line-height: 1.5; }

/* ---------- Çalışma detay ---------- */
.work-detail { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.viewer { margin: 0 0 14px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--paper-3); }
.viewer img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 10px; }
.thumb {
  padding: 0; border: 2px solid transparent; border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; background: none; aspect-ratio: 4 / 3; transition: .2s;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { border-color: var(--line); }
.thumb.is-active { border-color: var(--brand); }

.prose { margin-top: 30px; }
.prose p { font-size: 1.02rem; }
.prose h2 { margin-top: 1.6em; }

.side-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--header-h) + 20px);
}
.side-card h3 { font-size: 1.05rem; margin-bottom: 18px; }
.side-card .btn { margin-bottom: 10px; }
.spec { margin: 0 0 22px; display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; }
.spec dt { font-size: .8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.spec dd { margin: 0; font-size: .94rem; font-weight: 600; }
.spec dd a:hover { color: var(--brand); }

/* ---------- Hakkımızda ---------- */
.about-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 48px; align-items: start; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 56px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; text-align: center; transition: .22s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.contact-card__icon {
  width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(214, 31, 38, .1); color: var(--brand);
}
.contact-card--wa .contact-card__icon { background: rgba(37, 211, 102, .14); color: #12a150; }
.contact-card b { display: block; font-size: 1rem; margin-bottom: 3px; }
.contact-card span { font-size: .88rem; color: var(--muted); }

.info-list { display: grid; gap: 20px; margin-bottom: 28px; }
.info-list li { display: flex; gap: 15px; align-items: flex-start; }
.info-list svg { flex: 0 0 22px; margin-top: 3px; color: var(--brand); }
.info-list b { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 800; margin-bottom: 3px; }
.info-list a, .info-list span { font-weight: 600; font-size: .97rem; }
.info-list small { color: var(--muted); font-weight: 400; font-size: .87rem; }
.info-list a:hover { color: var(--brand); }

.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 320px; background: var(--paper-2); }
.map--tall { height: 400px; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map__link {
  height: 100%; display: grid; place-items: center; align-content: center; gap: 8px;
  text-align: center; padding: 26px; color: var(--muted);
}
.map__link svg { color: var(--brand); }
.map__link b { font-size: 1rem; color: var(--text); }
.map__link span { font-size: .87rem; }
.map__link:hover b { color: var(--brand); }

/* ---------- Form ---------- */
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.form__lead { font-size: .93rem; margin-bottom: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  background: var(--paper-2); border: 1px solid var(--line); color: var(--text);
  font-family: inherit; font-size: .95rem; transition: .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 3px rgba(214, 31, 38, .13);
}
.field textarea { resize: vertical; min-height: 110px; }
.form__note { font-size: .82rem; color: var(--muted); margin: 14px 0 0; text-align: center; }

/* ---------- Boş durum ---------- */
.empty {
  text-align: center; padding: 70px 24px; background: var(--paper-2);
  border: 1px dashed var(--line); border-radius: var(--radius-lg);
}
.empty svg { color: #b7b9c2; margin: 0 auto 18px; }
.empty p { max-width: 46ch; margin: 0 auto 22px; }

.notfound { text-align: center; padding: 96px 0; }
.notfound__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--muted-dark); padding: 68px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 46px; }
.footer .logo__text b { color: #fff; }
.footer .logo__text small { color: var(--muted-dark); }
.footer__logo img { height: 50px; max-width: 260px; }
.footer__slogan {
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand); margin: 14px 0 10px;
}
.footer__brand p { font-size: .93rem; }
.footer h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .13em; color: #fff; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { font-size: .93rem; transition: .18s; }
.footer__col a:hover { color: var(--brand); }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; }
.footer__contact svg { flex: 0 0 17px; margin-top: 3px; color: var(--brand); }

.socials { display: flex; gap: 9px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); color: var(--muted-dark); transition: .2s;
}
.socials a:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-2px); }

.footer__legal { border-top: 1px solid var(--line-dark); padding: 22px 0 26px; }
.footer__legal-info { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .82rem; margin-bottom: 14px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }

/* ---------- Yüzen butonlar ---------- */
.floaties { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: grid; gap: 11px; }
.fl {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: var(--shadow-lg); transition: .2s;
}
.fl:hover { transform: scale(1.08); }
.fl--wa { background: var(--wa); color: #06240f; }
.fl--tel { background: var(--brand); }

.mobile-bar { display: none; }

/* ---------- Animasyon ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero__inner, .service-row, .about-grid, .work-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-row--flip .service-row__text { order: 0; }
  .grid--4, .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .side-card { position: static; }
}

@media (max-width: 900px) {
  .burger { display: grid; }
  .header__phone { display: none; }
  .topbar__hours, .topbar__sep { display: none; }
  .nav {
    position: fixed; inset: calc(var(--header-h) + 40px) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--ink); border-bottom: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    padding: 14px 20px 24px; transform: translateY(-130%); transition: transform .3s ease;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav > a, .nav__group > a { padding: 14px; font-size: 1rem; border-radius: var(--radius-sm); }
  .nav__menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 0 12px; min-width: 0;
  }
  .nav__caret { display: none; }
  .grid--3, .grid--2, .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .cta { padding: 34px 26px; }
  .floaties { bottom: 84px; }
  .mobile-bar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; inset: auto 0 0 0; z-index: 95;
    background: var(--ink); border-top: 1px solid var(--line-dark);
  }
  .mobile-bar a {
    display: grid; place-items: center; gap: 3px; padding: 10px 6px;
    color: #fff; font-size: .72rem; font-weight: 700;
  }
  .mobile-bar a svg { color: var(--brand); }
  .mobile-bar a:nth-child(2) svg { color: var(--wa); }
  body { padding-bottom: 62px; }
}

@media (max-width: 560px) {
  .steps, .grid--4, .contact-cards, .form__row, .mini-cards { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .hero { padding: 64px 0 72px; }
  .logo__text small { display: none; }
  .logo img { height: 34px; max-width: 180px; }
  .form { padding: 24px 20px; }
}
