/* ==========================================================================
   360 GARAGE AUTO SERVICE — ana stil dosyası
   Renkler, tipografi, bölüm sırası ve animasyonlar tasarım dosyasıyla birebir.
   ========================================================================== */

:root {
  --black:      #0b0b0c;  /* ana zemin */
  --black-900:  #08080a;  /* footer */
  --black-800:  #0e0e10;  /* açık bölüm zemini */
  --black-750:  #0f0f11;  /* kart zemini */
  --black-700:  #101012;  /* üst bar */
  --black-650:  #111114;  /* form alanları */
  --red:        #d81f26;
  --red-dark:   #a4141a;
  --gold:       #e6c86a;
  --line:       #1e1e21;
  --line-2:     #2b2b30;
  --text:       #f2f1ef;
  --text-2:     #c9c8c4;
  --text-3:     #9d9d9f;
  --muted:      #8a8a90;

  --ease:       cubic-bezier(.2, .7, .2, 1);
  --wrap:       1320px;
  --gutter:     clamp(18px, 5vw, 64px);
  --section-y:  clamp(64px, 8vw, 120px);
}

/* ---------- temel ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: 'Barlow', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: #ffffff; }

input, textarea, select, button { font-family: inherit; }
::selection { background: var(--red); color: #fff; }

img, iframe { max-width: 100%; }

.page { background: var(--black); min-height: 100vh; overflow-x: hidden; }
.wrap { max-width: var(--wrap); margin: 0 auto; }
.wrap--narrow { max-width: 900px; }
.mono { font-family: 'JetBrains Mono', monospace; }
.gold { color: var(--gold); }
.red  { color: var(--red); }

/* ---------- animasyonlar ---------- */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes wipeIn   { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes dropIn   { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
@keyframes shine    { 0% { transform: translateX(-120%) skewX(-18deg); } 55%, 100% { transform: translateX(320%) skewX(-18deg); } }
@keyframes marq     { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(216, 31, 38, .45); }
  70%  { box-shadow: 0 0 0 18px rgba(216, 31, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(216, 31, 38, 0); }
}

/* ==========================================================================
   GÖRSEL SLOTLARI
   .media-slot içine <img> veya <iframe> eklendiğinde CSS ile çizilmiş
   .media-fallback görseli otomatik gizlenir.
   ========================================================================== */
.media-slot { position: relative; overflow: hidden; }
.media-slot > img,
.media-slot > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}
.media-fallback { position: absolute; inset: 0; }
.media-slot:has(> img) > .media-fallback,
.media-slot:has(> iframe) > .media-fallback { display: none; }

/* ==========================================================================
   SCROLL İLERLEME ÇUBUĞU
   ========================================================================== */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 100;
  transition: width .12s linear;
}

/* ==========================================================================
   ÜST BAR
   ========================================================================== */
#topbar {
  background: var(--black-700);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--muted);
}
.topbar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 9px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  justify-content: space-between;
}
.topbar__group { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.topbar__group--end { gap: 22px; flex-wrap: nowrap; }
.topbar__addr { display: flex; align-items: center; gap: 8px; }
.topbar__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }
.topbar__brands { color: var(--gold); }
.topbar__mail { color: var(--text-2); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 11, 12, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .35s, box-shadow .35s;
}
.header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
  justify-content: space-between;
  transition: padding .35s var(--ease);
}
.header.is-stuck { background: rgba(8, 8, 10, .94); box-shadow: 0 12px 34px rgba(0, 0, 0, .55); }
.header.is-stuck .header__inner { padding-top: 9px; padding-bottom: 9px; }

.brand { display: flex; align-items: center; gap: 13px; color: var(--text); }
.brand:hover { color: var(--text); }
/* Marka isareti: assets/img/logo-mark.svg (360 derece halkasi + 360) */
#hdrLogo {
  width: 44px;
  height: 44px;
  display: block;
  flex: none;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
#hdrName {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .1em;
}
.brand__sub { font-size: 11px; letter-spacing: .3em; color: var(--muted); margin-top: 5px; }

#mainnav {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
#mainnav a { color: var(--text-2); }
#mainnav a:hover { color: #ffffff; }

#hdrCta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  padding: 13px 22px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .1em;
  font-size: 15px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: background .2s;
}
#hdrCta:hover { background: var(--red-dark); color: #fff; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #0b0b0c 0%, #111113 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero__lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 96px);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(216, 31, 38, .20), transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 104px) var(--gutter) clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-2);
  padding: 8px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 26px;
  animation: dropIn .6s .05s both var(--ease);
}
.hero__badge-sq { width: 7px; height: 7px; background: var(--red); display: inline-block; }

.hero__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.01em;
  margin: 0 0 24px;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero__line { display: block; }
.hero__line--1 { animation: fadeUp .8s .12s both var(--ease); }
.hero__line--2 { animation: fadeUp .8s .26s both var(--ease); }

.hero__lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: #b6b5b1;
  max-width: 560px;
  margin: 0 0 34px;
  text-wrap: pretty;
  animation: fadeUp .8s .4s both var(--ease);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
  animation: fadeUp .8s .52s both var(--ease);
}

.btn {
  font-family: 'Oswald', sans-serif;
  letter-spacing: .1em;
  font-size: 16px;
  text-transform: uppercase;
  padding: 17px 30px;
}
.btn--primary {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: background .2s, transform .2s;
}
.btn--primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn__shine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  animation: shine 3.6s 1.4s infinite;
}
.btn--ghost {
  border: 1px solid #35353b;
  color: var(--text);
  font-weight: 500;
  transition: border-color .2s, background .2s;
}
.btn--ghost:hover { border-color: var(--gold); background: #141416; color: var(--text); }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  animation: fadeUp .8s .64s both var(--ease);
}
.stats__item { background: var(--black-800); padding: 20px 18px; }
.stats__value {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stats__label { font-size: 12px; letter-spacing: .16em; color: var(--muted); margin-top: 7px; }

/* --- hero görsel çerçevesi --- */
.hero__art { position: relative; animation: wipeIn 1.1s .3s both cubic-bezier(.7, 0, .2, 1); }
.hero__frame {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-2);
  background: radial-gradient(130% 85% at 50% 4%, #2b2b32 0%, #17171b 42%, #0a0a0b 100%);
}
.hero__frame-tag {
  position: absolute;
  left: 22px;
  top: 20px;
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--muted);
}
.hero__frame-bar { position: absolute; left: 0; bottom: 0; width: 64px; height: 4px; background: var(--red); }

.scene__cone {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 205deg at 50% -6%, transparent 0deg, rgba(230, 200, 106, .13) 16deg, transparent 38deg, transparent 322deg, rgba(230, 200, 106, .10) 344deg, transparent 360deg);
}
.scene__floor {
  position: absolute;
  left: -45%;
  right: -45%;
  bottom: 0;
  height: 52%;
  transform: perspective(420px) rotateX(64deg);
  transform-origin: bottom;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .075) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 32px);
}
.scene__glow {
  position: absolute;
  left: 50%;
  bottom: 14%;
  transform: translateX(-50%);
  width: 62%;
  height: 26%;
  background: radial-gradient(closest-side, rgba(216, 31, 38, .30), transparent 70%);
  filter: blur(12px);
}
.scene__body {
  position: absolute;
  left: 50%;
  bottom: 24%;
  transform: translateX(-50%);
  width: 66%;
  height: 15%;
  background: #070708;
  border-radius: 60px 90px 26px 26px / 90px 90px 26px 26px;
  filter: blur(6px);
  opacity: .95;
}
.scene__roof {
  position: absolute;
  left: 50%;
  bottom: 31%;
  transform: translateX(-50%);
  width: 40%;
  height: 12%;
  background: #0a0a0c;
  border-radius: 70px 70px 12px 12px;
  filter: blur(7px);
}
.scene__wheel {
  position: absolute;
  bottom: 20%;
  width: 13%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #050506;
  filter: blur(4px);
}
.scene__wheel--l { left: 24%; }
.scene__wheel--r { right: 24%; }
.scene__beam {
  position: absolute;
  left: 50%;
  bottom: 36%;
  transform: translateX(-50%);
  width: 58%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(230, 200, 106, .75), transparent);
  filter: blur(1px);
}

/* ==========================================================================
   MARKA ŞERİDİ
   ========================================================================== */
.marquee {
  background: var(--black-800);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track { display: flex; width: max-content; animation: marq 34s linear infinite; }
.marquee__group {
  display: flex;
  gap: 56px;
  padding-right: 56px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: .24em;
  color: #4e4e55;
  white-space: nowrap;
}

/* ==========================================================================
   ORTAK BÖLÜM BAŞLIKLARI
   ========================================================================== */
.section { padding: var(--section-y) var(--gutter); }
.section--services { background: var(--black); }
.section--compare  { background: var(--black-800); border-block: 1px solid var(--line); }
.section--process  { background: var(--black); }
.section--why      { background: linear-gradient(180deg, #0e0e10, #0b0b0c); border-top: 1px solid var(--line); }
.section--faq      { background: var(--black); }
.section--contact  { background: var(--black-800); border-top: 1px solid var(--line); }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .24em;
  color: var(--red);
  margin-bottom: 14px;
}
.h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 54px);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.03;
}
.h2--gap { margin: 0 0 20px; }
.h2--sm  { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; }
.section--services .h2 { letter-spacing: -.01em; }

.lead {
  color: var(--text-3);
  line-height: 1.7;
  font-size: 16px;
  margin: 0 0 28px;
  max-width: 460px;
  text-wrap: pretty;
}
.lead--gap { margin-bottom: 34px; }

/* ==========================================================================
   HİZMETLER (SEKMELİ)
   ========================================================================== */
.services__head {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}
.tabs { display: flex; gap: 0; border: 1px solid var(--line-2); }
.tabs__btn {
  padding: 15px 30px;
  border: 0;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
  background: transparent;
  color: var(--text-3);
}
.tabs__btn.is-active { background: var(--red); color: #ffffff; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  animation: fadeUp .45s both var(--ease);
}
.cards[hidden] { display: none; }
.card {
  background: var(--black-750);
  padding: 34px 30px;
  transition: background .3s, transform .3s var(--ease), box-shadow .3s;
}
.card:hover {
  background: #151519;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
}
.card__code { font-size: 12px; color: var(--gold); letter-spacing: .16em; margin-bottom: 16px; }
.card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 23px;
  text-transform: uppercase;
  margin: 0 0 12px;
  letter-spacing: .03em;
}
.card__text { margin: 0; color: var(--text-3); line-height: 1.6; font-size: 15px; }

/* ==========================================================================
   ÖNCESİ / SONRASI
   ========================================================================== */
.compare__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.ticks { display: grid; gap: 14px; }
.ticks__row { display: flex; gap: 14px; align-items: baseline; }
.ticks__no { color: var(--gold); font-size: 13px; }
.ticks__text { color: var(--text-2); }

.compare__col { user-select: none; }
.compare {
  --pos: 55%;
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line-2);
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
}
.compare:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.compare__layer { position: absolute; inset: 0; }
.compare__clip { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare__tag {
  position: absolute;
  bottom: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .2em;
}
.compare__tag--after  { right: 16px; color: var(--gold); }
.compare__tag--before { left: 16px; color: var(--muted); }
.compare__handle { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--red); left: var(--pos); }
.compare__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: .06em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .6);
}

.paint--after { background: radial-gradient(120% 90% at 30% 10%, #4a4a55 0%, #23232a 45%, #101014 100%); }
.paint__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .30) 41%, rgba(255, 255, 255, .05) 49%, transparent 58%);
}
.paint__reflect {
  position: absolute;
  left: 0;
  right: 0;
  top: 58%;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), transparent);
}
.paint--before { background: radial-gradient(120% 90% at 30% 10%, #3a3a41 0%, #1d1d22 45%, #0d0d10 100%); }
.paint__scratches {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(72deg, transparent 0 26px, rgba(255, 255, 255, .055) 26px 27px, transparent 27px 44px);
}
.paint__dent { position: absolute; border-radius: 50%; }
.paint__dent--1 {
  left: 26%;
  top: 38%;
  width: 26%;
  aspect-ratio: 1.6 / 1;
  background: radial-gradient(closest-side, rgba(0, 0, 0, .62), transparent 72%);
}
.paint__dent--2 {
  left: 58%;
  top: 22%;
  width: 16%;
  aspect-ratio: 1.3 / 1;
  background: radial-gradient(closest-side, rgba(0, 0, 0, .5), transparent 72%);
}
.paint__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 40%, rgba(0, 0, 0, .35));
}

/* ==========================================================================
   SÜREÇ
   ========================================================================== */
.process__head { margin-bottom: 48px; max-width: 640px; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
}
.step { padding-top: 24px; }
.step--red  { border-top: 3px solid var(--red); }
.step--gold { border-top: 3px solid var(--gold); }
.step__no {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  font-weight: 600;
  color: #26262b;
  line-height: 1;
  margin-bottom: 14px;
}
.step__title { font-family: 'Oswald', sans-serif; font-size: 21px; text-transform: uppercase; margin: 0 0 10px; }
.step__text { margin: 0; color: var(--text-3); line-height: 1.6; font-size: 15px; }

/* ==========================================================================
   NEDEN BİZ + OBD PANELİ
   ========================================================================== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.why__grid .h2 { margin: 0 0 28px; }

/* OBD paneli tek gercek icerikli slot: kutunun tum ozellikleri panelin
   uzerinde durur ve panel akista kalir (position:absolute DEGIL), boylece dar
   ekranlarda icerik en/boy oraninin verdigi yukseklikten tasarsa kutu
   tasarimdaki gibi buyur. Slota <img> eklendiginde oran ve cerceve slota gecer. */
.obd:has(> img) { aspect-ratio: 5 / 4; border: 1px solid var(--line-2); }
.obd__panel {
  position: static;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--line-2);
  background: radial-gradient(110% 80% at 20% 0%, #191920, #0c0c0e);
  padding: clamp(20px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.obd__top { display: flex; justify-content: space-between; align-items: center; }
.obd__label { font-size: 11px; letter-spacing: .24em; color: var(--muted); }
.obd__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--gold);
}
.obd__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); display: inline-block; }
.obd__reading { display: flex; align-items: flex-end; gap: 14px; }
.obd__rpm {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(44px, 6.4vw, 76px);
  font-weight: 600;
  line-height: .85;
  color: var(--text);
}
.obd__unit { font-size: 12px; letter-spacing: .16em; color: var(--muted); padding-bottom: 8px; }

.obd__bars { display: flex; gap: 4px; align-items: flex-end; height: clamp(38px, 6vw, 60px); }
.obd__bar { flex: 1; background: #26262b; }
.obd__bar--mid  { background: #3a3a41; }
.obd__bar--gold { background: var(--gold); }
.obd__bar--red  { background: var(--red); }
.obd__bar[data-h="28"]  { height: 28%; }
.obd__bar[data-h="34"]  { height: 34%; }
.obd__bar[data-h="44"]  { height: 44%; }
.obd__bar[data-h="46"]  { height: 46%; }
.obd__bar[data-h="58"]  { height: 58%; }
.obd__bar[data-h="70"]  { height: 70%; }
.obd__bar[data-h="72"]  { height: 72%; }
.obd__bar[data-h="82"]  { height: 82%; }
.obd__bar[data-h="94"]  { height: 94%; }
.obd__bar[data-h="100"] { height: 100%; }

.obd__rows { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.obd__row {
  background: var(--black);
  padding: 11px 14px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: .08em;
}
.obd__key { color: var(--muted); }
.obd__val { color: #e8e7e4; }
.obd__val--red { color: var(--red); }
.obd__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.obd__foot-text { font-size: 12px; letter-spacing: .16em; color: var(--muted); }
.obd__foot-bar { width: 84px; height: 4px; background: var(--red); }

.why__list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.why__item { background: var(--black-750); padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start; }
.why__sq { width: 8px; height: 8px; background: var(--gold); margin-top: 9px; flex: none; }
.why__title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 5px;
}
.why__text { color: var(--text-3); font-size: 15px; line-height: 1.55; }

/* ==========================================================================
   S.S.S.
   ========================================================================== */
.faq__head { margin-bottom: 40px; }
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.faq__icon { color: var(--red); font-size: 24px; line-height: 1; transition: transform .25s; transform: rotate(0deg); }
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a[hidden] { display: none; }
.faq__a p {
  margin: 0;
  padding: 0 0 24px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 720px;
  animation: fadeUp .35s both var(--ease);
}

/* ==========================================================================
   İLETİŞİM
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(32px, 4vw, 64px);
}
.info {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 28px;
}
.info__item { background: var(--black); padding: 20px 22px; }
.info__label { font-size: 12px; letter-spacing: .18em; color: var(--muted); margin-bottom: 7px; }
.info__phone { font-family: 'Oswald', sans-serif; font-size: 24px; color: var(--gold); letter-spacing: .04em; }
.info__value { font-size: 16px; color: #e8e7e4; line-height: 1.5; }

/* --- harita --- */
.map { aspect-ratio: 16 / 7; border: 1px solid var(--line-2); background: #0d0f10; }
.map__grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, #14181a 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, #14181a 0 1px, transparent 1px 62px);
}
.map__road { position: absolute; background: #1b2124; }
.map__road--h { left: 0; right: 0; top: 42%; height: 10px; }
.map__road--v { top: 0; bottom: 0; left: 58%; width: 8px; }
.map__road--diag { left: -10%; right: -10%; top: 70%; height: 5px; background: #191e21; transform: rotate(-7deg); }
.map__block { position: absolute; background: #111517; }
.map__block--1 { left: 12%; top: 52%; width: 26%; height: 22%; }
.map__block--2 { left: 66%; top: 14%; width: 20%; height: 20%; }
.map__pin {
  position: absolute;
  left: 52%;
  top: 38%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.map__pin-label {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  letter-spacing: .14em;
  padding: 5px 9px;
  white-space: nowrap;
}
.map__pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(216, 31, 38, .22);
}
.map__caption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 10px;
  letter-spacing: .16em;
  color: #4e565a;
}

/* --- form --- */
.form {
  background: var(--black);
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 40px);
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; }
.field__label { font-size: 12px; letter-spacing: .16em; color: var(--muted); }
.field__input {
  background: var(--black-650);
  border: 1px solid var(--line-2);
  color: var(--text);
  padding: 14px 16px;
  font-size: 16px;
  outline: none;
  border-radius: 0;
  width: 100%;
}
.field__input:focus { border-color: var(--gold); }
.field__textarea { resize: vertical; }

.form__submit {
  background: var(--red);
  color: #fff;
  border: 0;
  cursor: pointer;
  padding: 18px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s;
}
.form__submit:hover { background: var(--red-dark); }
.form__submit[disabled] { opacity: .65; cursor: progress; }

.form__note {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 16px;
  font-size: 15px;
  letter-spacing: .04em;
  animation: fadeUp .35s both var(--ease);
}
.form__note[hidden] { display: none; }
.form__note--error { border-color: var(--red); color: var(--red); }

/* spam tuzağı — ekranda görünmez, ekran okuyucudan da uzak tutulur */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--black-900);
  border-top: 1px solid var(--line);
  padding: clamp(44px, 5vw, 72px) var(--gutter) 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer__brand {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.footer__about { color: var(--muted); line-height: 1.65; font-size: 15px; margin: 0; max-width: 280px; }
.footer__head { font-size: 12px; letter-spacing: .2em; color: var(--gold); margin-bottom: 16px; }
.footer__links { display: grid; gap: 10px; color: var(--muted); font-size: 15px; }
.footer__links a { color: var(--muted); }
.footer__links a:hover { color: #ffffff; }
/* .footer__links a seciciligi (0,1,1) .footer__phone'u (0,1,0) ezdigi icin
   telefon baglantilari ayrica hedefleniyor. */
.footer__phone,
.footer__links a.footer__phone { color: var(--text); font-family: 'Oswald', sans-serif; font-size: 19px; }
.footer__links a.footer__phone:hover { color: var(--gold); }
.footer__bottom {
  margin: 22px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: #5c5c63;
  font-size: 13px;
  letter-spacing: .06em;
}

/* ==========================================================================
   SABİT ARAMA BUTONU
   ========================================================================== */
.call-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  background: var(--red);
  color: #fff;
  padding: 16px 24px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .12em;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 999px;
  animation: pulseRing 2.4s infinite;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .55);
}
.call-fab:hover { color: #fff; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  #topbar { display: none; }
  #mainnav { display: none; }
  #hdrCta { padding: 11px 16px; font-size: 14px; }
  #hdrName { font-size: 17px; }
}

@media (max-width: 520px) {
  #hdrLogo { width: 38px; height: 38px; font-size: 13px; }
  #hdrName { font-size: 15px; letter-spacing: .06em; }
}
