/* ==========================================================================
   Kardeşler Direksiyon Servisi — responsive stil
   Tasarım kaynağı: "Kardesler Direksiyon v4.dc.html" (4a masaüstü + 4b mobil)
   Mobil öncelikli yazıldı; 760px ve 1080px kırılımlarında masaüstüne açılır.
   ========================================================================== */

:root {
  /* renkler */
  --bg: #FAFAF8;
  --ink: #14202A;
  --muted: #5B6975;
  --faint: #8A97A2;
  --line: #E6E7E3;
  --line-2: #DDE2E6;
  --surface: #ECEDE9;
  --red: #D32F23;
  --wa: #25D366;
  --wa-ink: #0B1F14;
  --wa-deep: #0F6B3A;

  /* koyu bölümler */
  --dark: #14202A;
  --on-dark: #FFFFFF;
  --on-dark-soft: #B7C2CC;
  --on-dark-mute: #9FB0BE;
  --on-dark-nav: #DDE4EA;
  --on-dark-tick: #C9D2DA;

  /* tipografi */
  --body: 'Plus Jakarta Sans', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* ölçü */
  --pad: clamp(20px, 5vw, 64px);
  --maxw: 1440px;
  --header-h: 60px;
  --bar-h: 64px;
  --r: 12px;
  --r-md: 16px;

  --ease: cubic-bezier(.22, .8, .3, 1);
}

@media (min-width: 1080px) {
  :root { --header-h: 76px; --bar-h: 0px; }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--bar-h);
}

body.is-locked { overflow: hidden; }

img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }

h1, h2, h3 { margin: 0; text-wrap: pretty; font-weight: 800; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--red); color: #fff; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--red); color: #fff;
  padding: 12px 20px; font-weight: 700;
  border-radius: 0 0 var(--r) 0;
}
.skip:focus { left: 0; }

.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;
}

/* --------------------------------------------------------------- düzen -- */

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

section { border-bottom: 1px solid var(--line); }
.sec { padding-block: clamp(48px, 9vw, 96px); }
.sec-head { margin-bottom: clamp(24px, 4vw, 40px); }

h1 { font-size: clamp(2.35rem, 1.2rem + 5vw, 4.5rem); line-height: 1.01; letter-spacing: -.045em; }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.5vw, 2.75rem); line-height: 1.08; letter-spacing: -.04em; }
h3 { font-weight: 700; font-size: clamp(1.15rem, 1.02rem + .5vw, 1.375rem); line-height: 1.25; letter-spacing: -.025em; }

.eyebrow {
  font: 700 clamp(11px, 10px + .2vw, 12px)/1 var(--body);
  letter-spacing: .14em; text-transform: uppercase; color: var(--red);
}

.lede { color: var(--muted); font-size: clamp(1rem, .95rem + .35vw, 1.19rem); line-height: 1.6; }
.on-dark .lede { color: var(--on-dark-soft); }

/* --------------------------------------------------------------- düğme -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 22px; border: 0; border-radius: var(--r);
  font: 700 clamp(15px, 14px + .25vw, 17px)/1 var(--body);
  cursor: pointer; text-align: center;
  transition: transform .18s var(--ease), filter .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn:active { transform: translateY(0); }

.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { color: #fff; }
.btn--wa { background: var(--wa); color: var(--wa-ink); }
.btn--wa:hover { color: var(--wa-ink); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-row .btn { flex: 1 1 240px; }
@media (min-width: 760px) { .btn-row .btn { flex: 0 0 auto; } }

/* -------------------------------------------------------------- başlık -- */

.header {
  position: sticky; top: 0; z-index: 40;
  height: var(--header-h);
  background: rgba(20, 32, 42, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
}
.header a:hover { color: #fff; }
.header__in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { width: 34px; height: 34px; }
.brand__name { font: 800 18px/1 var(--body); letter-spacing: -.04em; }
.brand__sub { font: 600 8px/1 var(--body); letter-spacing: .22em; color: var(--on-dark-mute); margin-top: 3px; }

@media (min-width: 1080px) {
  .brand img { width: 40px; height: 40px; }
  .brand__name { font-size: 21px; }
  .brand__sub { font-size: 9px; margin-top: 4px; }
}

.nav { display: none; }
@media (min-width: 1080px) {
  .nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 32px); font: 500 15px var(--body); }
  .nav a { color: var(--on-dark-nav); position: relative; padding-block: 6px; }
  .nav a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: 2px; background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform .22s var(--ease);
  }
  .nav a:hover, .nav a[aria-current="true"] { color: #fff; }
  .nav a:hover::after, .nav a[aria-current="true"]::after { transform: scaleX(1); }
}

.header__cta { display: none; }
@media (min-width: 1080px) {
  .header__cta {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1.5px solid rgba(255, 255, 255, .5);
    padding: 11px 18px; border-radius: var(--r);
    font: 700 15px var(--body);
    transition: background .2s var(--ease), border-color .2s var(--ease);
  }
  .header__cta:hover { background: var(--red); border-color: var(--red); }
}

.header__tools { display: flex; align-items: center; gap: 8px; }
@media (min-width: 1080px) { .header__tools { display: none; } }

.icon-btn {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: var(--r);
  background: transparent; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; flex: 0 0 auto;
}
.icon-btn:hover { border-color: #fff; }

.burger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.burger span + span { margin-top: 4px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------- mobil menü -- */

.drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; pointer-events: none; }
.drawer[data-open="true"] { visibility: visible; pointer-events: auto; }

.drawer__scrim {
  position: absolute; inset: 0; width: 100%;
  background: rgba(11, 18, 24, .6);
  opacity: 0; transition: opacity .28s var(--ease);
  border: 0; cursor: pointer;
}
.drawer[data-open="true"] .drawer__scrim { opacity: 1; }

.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--dark); color: #fff;
  padding: 18px 22px calc(28px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  overflow-y: auto;
}
.drawer[data-open="true"] .drawer__panel { transform: translateX(0); }
.drawer__panel a:hover { color: #fff; }

.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.drawer__top .eyebrow { color: var(--on-dark-mute); }
.drawer__close {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: var(--r); background: transparent; color: #fff;
  cursor: pointer; display: grid; place-items: center; font-size: 22px; line-height: 1;
}
.drawer nav a {
  display: block; padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font: 700 18px var(--body); letter-spacing: -.03em;
}
.drawer__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.drawer__meta { margin-top: 22px; font: 400 13px/1.7 var(--body); color: var(--on-dark-mute); }

@media (min-width: 1080px) { .drawer { display: none; } }

/* ---------------------------------------------------------------- hero -- */

.hero {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-block: clamp(24px, 4vw, 72px) clamp(40px, 6vw, 72px);
  border-bottom: 0;
}
.hero a:hover { color: #fff; }

.hero__glow {
  position: absolute; left: 50%; top: 40px; translate: -50% 0;
  width: min(760px, 140vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 160, 190, .22), rgba(20, 32, 42, 0) 62%);
  pointer-events: none;
}

.hero__in { position: relative; display: grid; gap: clamp(20px, 4vw, 48px); }

@media (min-width: 1080px) {
  .hero__in { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .hero__glow { left: auto; right: -80px; top: 50%; translate: 0 -50%; }
  .hero__copy { order: 1; }
  .hero__visual { order: 2; }
}

.hero h1 { color: #fff; }
.hero__copy .lede { margin-top: clamp(14px, 2vw, 28px); max-width: 540px; }
.hero .btn-row { margin-top: clamp(24px, 3.2vw, 40px); }

.ticks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px;
  margin-top: clamp(28px, 3.6vw, 48px);
  font: 500 clamp(14px, 13px + .2vw, 15px) var(--body);
  color: var(--on-dark-tick);
}
.ticks li { display: flex; align-items: center; gap: 8px; }
.ticks li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex: 0 0 auto; }

@media (min-width: 1080px) {
  .ticks { display: flex; flex-wrap: wrap; gap: 28px; }
}

/* 3B simit */
.stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  aspect-ratio: 1;
  touch-action: pan-y;
}
.stage::after {
  content: '';
  position: absolute; left: 50%; bottom: 6%;
  translate: -50% 0;
  width: 68%; height: 12%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
.stage__canvas { position: absolute; inset: 0; }
.stage__canvas canvas { width: 100% !important; height: 100% !important; }
.stage__fallback { position: absolute; inset: 0; display: grid; place-items: center; padding: 8%; }
.stage__fallback img { width: 100%; }

/* -------------------------------------------------------------- markalar */

.brands {
  padding-block: 18px;
  display: flex; align-items: center; gap: 18px;
  overflow-x: auto; white-space: nowrap; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.brands::-webkit-scrollbar { display: none; }
.brands__label { flex: 0 0 auto; }
.brands ul { display: flex; gap: 18px; font: 500 clamp(14px, 13px + .2vw, 15px) var(--body); color: var(--muted); }
.brands li { flex: 0 0 auto; }

@media (min-width: 1080px) {
  .brands { padding-block: 28px; overflow: visible; white-space: normal; align-items: baseline; gap: 24px; }
  .brands ul { flex-wrap: wrap; gap: 8px 22px; }
}

/* -------------------------------------------------------------- hizmetler */

@media (min-width: 1080px) {
  .sec--services .sec-grid { display: grid; grid-template-columns: minmax(0, 380px) 1fr; gap: 64px; align-items: start; }
  .sec--services .sec-head { position: sticky; top: calc(var(--header-h) + 24px); margin-bottom: 0; }
}
.sec--services .sec-head p { color: var(--muted); margin-top: 16px; font-size: clamp(.95rem, .9rem + .2vw, 1.06rem); line-height: 1.6; }

.service { padding: 20px 0; border-top: 1px solid var(--line); }
.service__n { font: 700 13px/1 var(--body); color: var(--red); }
.service h3 { margin-top: 10px; }
.service p { color: var(--muted); margin-top: 6px; font-size: clamp(.94rem, .9rem + .15vw, 1rem); line-height: 1.55; max-width: 640px; }

@media (min-width: 1080px) {
  .service { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 26px 0; }
  .service__n { font-size: 14px; line-height: 1.6; }
  .service h3 { margin-top: 0; }
  .service p { margin-top: 8px; line-height: 1.6; }
}

/* -------------------------------------------------------------- adımlar -- */

.steps { display: grid; gap: 20px; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 40px; } }

.step { border-top: 2px solid var(--dark); padding-top: 16px; display: grid; grid-template-columns: 56px 1fr; gap: 12px; }
.step__n { font: 800 44px/1 var(--body); color: var(--red); letter-spacing: -.05em; }
.step p { color: var(--muted); margin-top: 6px; font-size: clamp(.94rem, .9rem + .15vw, 1rem); line-height: 1.55; }

@media (min-width: 900px) {
  .step { display: block; padding-top: 24px; }
  .step__n { font-size: 64px; }
  .step h3 { margin-top: 20px; font-size: 1.375rem; }
  .step p { margin-top: 8px; line-height: 1.6; }
}

/* ------------------------------------------------------------ belirtiler */

@media (min-width: 1080px) {
  .sec--symptoms .sec-grid { display: grid; grid-template-columns: minmax(0, 380px) 1fr; gap: 64px; align-items: start; }
}

.symptoms { display: grid; }
@media (min-width: 760px) { .symptoms { grid-template-columns: 1fr 1fr; gap: 0 40px; } }

.symptoms li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-top: 1px solid var(--line);
  font: 500 clamp(.94rem, .9rem + .15vw, 1rem)/1.5 var(--body);
}
.symptoms li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex: 0 0 auto; margin-top: 7px; }
@media (min-width: 1080px) { .symptoms li { padding: 18px 0; } }

.sec--symptoms .btn-row { margin-top: 24px; }
@media (min-width: 1080px) { .sec--symptoms .btn-row { margin-top: 32px; } }

/* --------------------------------------------------------------- galeri -- */

.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 12px; }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.shot {
  display: block; width: 100%;
  background: none; border: 0; padding: 0;
  text-align: left; cursor: zoom-in;
  color: inherit;
}
.shot__media {
  display: block; position: relative;
  aspect-ratio: 4/3; background: var(--line-2);
  border-radius: var(--r); overflow: hidden;
}
@media (min-width: 760px) { .shot__media { border-radius: var(--r-md); } }
.shot__media::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 10px; text-align: center;
  font: 500 10px ui-monospace, Menlo, monospace;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
}
.shot__media img {
  position: relative;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.shot:hover .shot__media img { transform: scale(1.05); }
.shot__t {
  display: block; margin-top: 10px;
  font: 700 clamp(.94rem, .86rem + .35vw, 1.125rem)/1.25 var(--body);
  letter-spacing: -.02em;
  transition: color .2s var(--ease);
}
.shot:hover .shot__t { color: var(--red); }
.shot__d {
  display: block; color: var(--muted); margin-top: 3px;
  font-size: clamp(.75rem, .7rem + .25vw, .94rem); line-height: 1.45;
}
@media (min-width: 760px) { .shot__t { margin-top: 16px; } .shot__d { margin-top: 4px; } }

.note { margin-top: 18px; font: 400 clamp(11px, 10px + .2vw, 12px)/1.5 var(--body); color: var(--faint); }

/* ------------------------------------------------------------- lightbox -- */

.lightbox {
  border: 0; padding: 0; background: transparent;
  max-width: 100vw; max-height: 100vh; width: 100%; height: 100%; overflow: hidden;
}
.lightbox::backdrop { background: rgba(20, 32, 42, .94); }
.lightbox__in {
  width: 100%; height: 100%;
  display: grid; grid-template-rows: 1fr auto;
  place-items: center; padding: clamp(12px, 4vw, 48px); gap: 14px;
}
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: var(--r); }
.lightbox__cap { color: var(--on-dark-soft); font: 500 14px/1.5 var(--body); text-align: center; max-width: 60ch; }
.lightbox__cap b { display: block; font: 700 17px/1.3 var(--body); color: #fff; margin-bottom: 4px; letter-spacing: -.02em; }
.lightbox__x, .lightbox__nav {
  position: fixed;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff; width: 46px; height: 46px;
  border-radius: 50%; display: grid; place-items: center;
  cursor: pointer; font-size: 22px; line-height: 1;
}
.lightbox__x:hover, .lightbox__nav:hover { background: var(--red); border-color: var(--red); }
.lightbox__x { top: 16px; right: 16px; }
.lightbox__nav[data-dir="prev"] { left: 12px; top: 50%; translate: 0 -50%; }
.lightbox__nav[data-dir="next"] { right: 12px; top: 50%; translate: 0 -50%; }

/* ------------------------------------------------------------------ sss -- */

@media (min-width: 1080px) {
  .sec--faq .sec-grid { display: grid; grid-template-columns: minmax(0, 380px) 1fr; gap: 64px; align-items: start; }
  .sec--faq h2 { margin-bottom: 0; }
}

.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }

.faq__q {
  all: unset; box-sizing: border-box;
  display: flex; width: 100%;
  align-items: center; justify-content: space-between;
  gap: 14px; padding: 18px 0; cursor: pointer;
}
.faq__q:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
.faq__q h3 { font-size: clamp(1rem, .95rem + .35vw, 1.19rem); line-height: 1.3; }
.faq__q:hover h3 { color: var(--red); }

.faq__sign {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--dark);
  display: grid; place-items: center; flex: 0 0 auto;
  position: relative;
  transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), transform .3s var(--ease);
}
.faq__sign::before, .faq__sign::after {
  content: ''; position: absolute; background: currentColor; border-radius: 2px;
  transition: opacity .22s var(--ease);
}
.faq__sign::before { width: 12px; height: 2px; }
.faq__sign::after { width: 2px; height: 12px; }
.faq__q[aria-expanded="true"] .faq__sign { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(180deg); }
.faq__q[aria-expanded="true"] .faq__sign::after { opacity: 0; }
@media (min-width: 1080px) { .faq__sign { width: 34px; height: 34px; } .faq__q { padding: 22px 0; } }

.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq__a[data-open="true"] { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { color: var(--muted); font-size: clamp(.94rem, .9rem + .15vw, 1rem); line-height: 1.6; padding-bottom: 18px; max-width: 640px; }
@media (min-width: 1080px) { .faq__a p { padding: 0 60px 24px 0; } }

/* ------------------------------------------------------------- iletişim -- */

.contact { display: grid; gap: 32px; }
@media (min-width: 1080px) { .contact { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }

.phone-xl {
  display: block; margin-top: 12px;
  font: 800 clamp(2.1rem, 1.1rem + 4vw, 4rem)/1 var(--body);
  letter-spacing: -.05em;
}
.phone-xl:hover { color: var(--red); }

.contact__meta { margin-top: 28px; display: grid; gap: 18px; border-top: 1px solid var(--line); padding-top: 22px; }
@media (min-width: 760px) { .contact__meta { grid-template-columns: 1fr 1fr; gap: 24px; } }
.contact__meta dt { font: 600 clamp(11px, 10px + .2vw, 12px) var(--body); letter-spacing: .14em; color: var(--muted); text-transform: uppercase; }
.contact__meta dd { margin: 4px 0 0; font: 500 clamp(.94rem, .9rem + .15vw, 1rem)/1.5 var(--body); }

.status { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font: 600 clamp(12px, 11px + .2vw, 13px) var(--body); }
.status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.status[data-open="true"] { color: var(--wa-deep); }
.status[data-open="false"] { color: var(--red); }

.map {
  position: relative; aspect-ratio: 4/3;
  border-radius: var(--r); overflow: hidden;
  background: var(--surface);
  background-image: repeating-linear-gradient(-45deg, transparent 0 14px, #E2E4DF 14px 15px);
}
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (min-width: 760px) { .map { border-radius: var(--r-md); } }

/* --------------------------------------------------------------- form --- */

.quote {
  margin-top: 28px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 20px 24px;
}
@media (min-width: 760px) { .quote { padding: 28px; } }
.quote h3 { font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem); }
.quote > p { color: var(--muted); font-size: .94rem; line-height: 1.55; margin-top: 6px; }
.quote__grid { display: grid; gap: 12px; margin-top: 18px; }
@media (min-width: 560px) { .quote__grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--wide { grid-column: 1 / -1; }
.field label { font: 700 12px var(--body); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font: 500 16px var(--body); color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-2);
  border-radius: 10px; padding: 13px 14px; width: 100%;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 21px, calc(100% - 14px) 21px;
  background-size: 6px 6px; background-repeat: no-repeat;
}
.quote .btn { width: 100%; margin-top: 16px; }

/* --------------------------------------------------------------- footer -- */

.footer { background: var(--dark); color: #fff; padding-block: 28px 32px; }
.footer a:hover { color: var(--red); }
.footer__in { display: grid; gap: 14px; }
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__brand img { width: 32px; height: 32px; }
.footer__brand span { font: 800 17px/1 var(--body); letter-spacing: -.04em; }
.footer__meta { font: 400 13px/1.7 var(--body); color: var(--on-dark-mute); }
.footer__meta a[href^="tel"] { color: #fff; font-weight: 600; }
.footer__sister { margin-top: 4px; }
.footer__sister a { color: #fff; font-weight: 700; }

@media (min-width: 900px) {
  .footer { padding-block: 32px; }
  .footer__in { grid-template-columns: auto 1fr; align-items: center; gap: 28px; }
  .footer__meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 28px; font-size: 14px; }
  .footer__sister { margin-top: 0; }
}

/* ------------------------------------------------------- sabit aksiyonlar */

.fab {
  display: none; position: fixed; right: 24px; bottom: 24px;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); place-items: center; z-index: 30;
  box-shadow: 0 10px 30px rgba(20, 32, 42, .28);
  transition: transform .2s var(--ease);
}
.fab:hover { transform: scale(1.08); }
@media (min-width: 1080px) { .fab { display: grid; } }

.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0;
  height: var(--bar-h);
  display: grid; grid-template-columns: repeat(3, 1fr);
  z-index: 30; background: var(--bg);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.actionbar a { display: flex; align-items: center; justify-content: center; gap: 8px; font: 700 15px var(--body); }
.actionbar a:nth-child(1) { background: var(--red); color: #fff; }
.actionbar a:nth-child(2) { background: var(--wa); color: var(--wa-ink); }
.actionbar a:nth-child(3) { background: var(--dark); color: #fff; }
.actionbar a:hover { color: inherit; }
@media (min-width: 1080px) { .actionbar { display: none; } }

/* ------------------------------------------------------------- animasyon */

/* Varsayılan: içerik GÖRÜNÜR. Gizleme yalnızca <html class="js"> varken
   devreye girer; böylece JS kapalıysa ya da bir hata olursa sayfa boş kalmaz. */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- yazdır -- */

@media print {
  .header, .drawer, .actionbar, .fab, .stage, .map, .quote, .lightbox { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .hero, .footer { background: #fff !important; color: #000 !important; }
  .hero h1, .footer__meta { color: #000 !important; }
  .faq__a { grid-template-rows: 1fr !important; }
}
