/* ==========================================================================
   DG OTOMOTİV — Çıkma Yedek Parça & Hasarlı Araç Alım Satım
   Ortak stil dosyası
   ========================================================================== */

:root {
  --c-bg: #000000;
  --c-bg-alt: #000000;
  --c-surface: #0a0a0b;
  --c-surface-2: #131315;
  --c-line: rgba(255,255,255,0.08);
  --c-line-bright: rgba(224,32,38,0.45);

  --c-red: #e0202a;
  --c-red-bright: #ff3b45;
  --c-red-dim: #7a1319;

  --c-silver: #c7cbd1;
  --c-silver-bright: #f1f2f4;

  --c-text: #e9e9ec;
  --c-text-dim: #98979f;
  --c-white: #f6f6f7;

  --f-display: 'Rajdhani', 'Inter', sans-serif;
  --f-body: 'Inter', sans-serif;

  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3.25rem;
  --space-xl: 5rem;

  --radius: 4px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0;
}

p { margin: 0; color: var(--c-text-dim); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section { padding: var(--space-xl) 0; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-line-bright), transparent);
  margin: 0;
}

/* Metal doku arkaplan */
.metal-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: #000000;
}

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-red-bright);
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--c-red-bright);
  display: inline-block;
}

.section-head { margin-bottom: var(--space-lg); max-width: 640px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-top: var(--space-sm); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: 0.85em 1.7em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color .2s ease;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-primary {
  background: var(--c-red);
  color: var(--c-white);
}
.btn-primary:hover { background: var(--c-red-bright); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  border-color: var(--c-line-bright);
  color: var(--c-silver-bright);
}
.btn-ghost:hover { border-color: var(--c-red-bright); color: var(--c-red-bright); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
}

.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 3px;
}

.brand-text {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: var(--c-white);
  line-height: 1.05;
  display: flex;
  flex-direction: column;
}

.brand-text span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--c-red-bright);
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--c-text-dim);
  transition: color 0.2s ease;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a:hover, .nav-links a.active { color: var(--c-white); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--c-red-bright);
}

.nav-cta {
  background: var(--c-red);
  color: var(--c-white) !important;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.nav-cta:hover { background: var(--c-red-bright); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--c-line);
  border-radius: 3px;
  width: 40px;
  height: 40px;
  color: var(--c-white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-phone-pill {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15em 0.55em;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-silver-bright);
  border: 1px solid var(--c-line);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  max-width: 250px;
}
.nav-phone-pill svg { width: 15px; height: 15px; color: var(--c-red-bright); flex-shrink: 0; }
.nav-phone-pill a { color: inherit; text-decoration: none; white-space: nowrap; }
.nav-phone-pill a:hover { color: var(--c-red-bright); }
.nav-phone-pill .ph-sep { opacity: 0.35; }

@media (max-width: 940px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--c-bg-alt);
    border-bottom: 1px solid var(--c-line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem var(--space-md) 1rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.7rem 0; width: 100%; }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone-pill { display: none; }
}

/* ---------- Breadcrumb / page hero ---------- */
.page-hero {
  padding: var(--space-lg) 0 var(--space-md);
  position: relative;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--c-text-dim);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.breadcrumb a { color: var(--c-text-dim); }
.breadcrumb a:hover { color: var(--c-red-bright); }
.breadcrumb .sep { opacity: 0.5; }

.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-top: var(--space-sm); }
.page-hero .lede { margin-top: var(--space-sm); max-width: 620px; font-size: 1.05rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-card:hover { border-color: var(--c-line-bright); transform: translateY(-3px); }

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--c-line-bright);
  background: radial-gradient(circle at 35% 30%, rgba(224,32,38,0.14), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.icon-badge .icon { width: 26px; height: 26px; }

.service-card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.92rem; }

.services-grid, .cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 880px) { .services-grid, .cards-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid, .cards-grid-3 { grid-template-columns: 1fr; } }

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
@media (max-width: 940px) { .cards-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cards-grid-4 { grid-template-columns: 1fr; } }

/* ---------- Hero (anasayfa) ---------- */
.hero { padding: clamp(2.5rem, 7vw, 5rem) 0 var(--space-lg); position: relative; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); margin-top: var(--space-sm); }
.hero h1 .accent { color: var(--c-red-bright); }

.hero .lede {
  margin-top: var(--space-sm);
  font-size: 1.1rem;
  color: var(--c-text-dim);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-red-bright);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.82rem;
  color: var(--c-text-dim);
  margin-top: 0.35rem;
}

.hero-art {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border-radius: var(--radius);
}
.hero-art img {
  width: 88%;
  height: auto;
  animation: rise 1.2s ease-out;
  filter: drop-shadow(0 20px 40px rgba(224,32,38,0.15));
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 60%, transparent 82%);
  mask-image: radial-gradient(circle at 50% 45%, #000 60%, transparent 82%);
}
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.hero-art .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--c-line);
}
.hero-art .ring.r1 { width: 92%; height: 92%; }
.hero-art .ring.r2 { width: 70%; height: 70%; border-color: var(--c-line-bright); }

/* ---------- Neden biz / hizmet bandı arka plan ---------- */
.services-section { position: relative; }
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: -5%; right: -5%; height: 100%;
  background: linear-gradient(180deg, rgba(224,32,38,0.035), transparent 65%);
  clip-path: polygon(0 6%, 100% 0%, 100% 92%, 0% 100%);
  z-index: -1;
}

/* ---------- Bölge / bilgi bandı ---------- */
.info-band { background: var(--c-surface); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.info-flex { display: flex; gap: var(--space-lg); align-items: flex-start; flex-wrap: wrap; justify-content: space-between; }
.info-copy { flex: 1 1 380px; }
.info-list { flex: 1 1 320px; display: flex; flex-direction: column; gap: var(--space-sm); }
.info-item { display: flex; gap: var(--space-sm); align-items: flex-start; padding: var(--space-sm); border: 1px solid var(--c-line); border-radius: var(--radius); }
.info-item .ic { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; color: var(--c-red-bright); }
.info-item h4 { font-size: 1rem; color: var(--c-white); font-family: var(--f-body); font-weight: 700; }
.info-item p { font-size: 0.88rem; margin-top: 0.2rem; }

/* ---------- Süreç ---------- */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
@media (max-width: 900px) { .process-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-row { grid-template-columns: 1fr; } }

.process-step { position: relative; padding-top: var(--space-md); border-top: 2px solid var(--c-line); }
.process-step .step-no {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-red);
  position: absolute; top: -0.9em; left: 0;
  background: var(--c-bg);
  padding-right: 0.4em;
}
.process-step h4 { font-size: 1.02rem; color: var(--c-white); margin-bottom: 0.4rem; }
.process-step p { font-size: 0.88rem; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(224,32,38,0.09), transparent), var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  padding: var(--space-lg) var(--space-md);
}
.cta-band h2 { margin-top: var(--space-sm); font-size: clamp(1.4rem, 2.6vw, 2rem); }
.cta-band p { max-width: 520px; margin: var(--space-sm) auto 0; }

/* ---------- Araç kartları (satılık / çıkma parça envanteri) ---------- */
.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
@media (max-width: 920px) { .vehicle-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .vehicle-grid { grid-template-columns: 1fr; } }

.vehicle-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-surface);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.vehicle-card:hover { transform: translateY(-4px); border-color: var(--c-line-bright); }

.vehicle-thumb {
  aspect-ratio: 4/3;
  position: relative;
  background: radial-gradient(circle at 25% 20%, rgba(224,32,38,0.14), transparent 55%), linear-gradient(160deg, #1c1c20, #131316);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.vehicle-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-thumb svg { width: 30%; opacity: 0.7; }

.vehicle-thumb .tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
  color: var(--c-red-bright);
  background: rgba(0,0,0,0.78);
  border: 1px solid var(--c-line-bright);
  padding: 0.3rem 0.6rem; border-radius: 999px;
}

.vehicle-thumb .durum {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--f-display); font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 0.7rem; border-radius: 3px;
  background: rgba(0,0,0,0.78);
  color: var(--c-silver-bright);
  border: 1px solid var(--c-line-bright);
}

.vehicle-info { padding: var(--space-sm) var(--space-md) var(--space-md); flex: 1; display: flex; flex-direction: column; }
.vehicle-info h3 { font-size: 1.08rem; margin-bottom: 0.3rem; }
.vehicle-info .meta { font-size: 0.8rem; color: var(--c-red-bright); margin-bottom: 0.5rem; display: flex; gap: 0.8em; flex-wrap: wrap; }
.vehicle-info p.desc { font-size: 0.88rem; flex: 1; margin-bottom: var(--space-sm); }
.vehicle-info .vcta { font-size: 0.85rem; font-weight: 700; color: var(--c-silver-bright); display: inline-flex; align-items: center; gap: 0.4em; cursor: pointer; transition: color 0.2s ease; }
.vehicle-info .vcta:hover { color: #25D366; }
.vehicle-info .vcta svg { width: 14px; height: 14px; color: var(--c-red-bright); }

/* Filtre çubuğu */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--space-lg);
}
.filter-chip {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: transparent;
  color: var(--c-text-dim);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-chip:hover { border-color: var(--c-line-bright); color: var(--c-white); }
.filter-chip.active { background: var(--c-red); border-color: var(--c-red); color: var(--c-white); }

.empty-state {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border: 1px dashed var(--c-line);
  border-radius: var(--radius);
  color: var(--c-text-dim);
}

/* ---------- Araç Detay Sayfası ---------- */
.detail-back-btn { margin-bottom: var(--space-md); }
.detail-back-btn svg { width: 16px; height: 16px; }

.detail-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; }
}

.detail-gallery-main {
  aspect-ratio: 4/3;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: radial-gradient(circle at 25% 20%, rgba(224,32,38,0.14), transparent 55%), linear-gradient(160deg, #1c1c20, #131316);
  display: flex; align-items: center; justify-content: center;
}
.detail-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }
.detail-gallery-main svg { width: 26%; opacity: 0.7; }
.detail-zoom-hint {
  position: absolute; right: 10px; bottom: 10px;
  display: flex; align-items: center; gap: 0.35rem;
  background: rgba(12,12,14,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--c-white);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  pointer-events: none;
}
.detail-zoom-hint svg { width: 13px; height: 13px; opacity: 1; }

/* ---------- Fotoğraf Zoom (Lightbox) ---------- */
.detail-lightbox {
  position: fixed; inset: 0; z-index: 20000;
  background: rgba(6,6,7,0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: var(--space-md);
}
.detail-lightbox.open { display: flex; }
.detail-lightbox img {
  max-width: 92vw; max-height: 86vh;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  cursor: zoom-out;
}
.detail-lightbox-close {
  position: absolute; top: 18px; right: 18px;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--c-white);
  cursor: pointer;
  transition: background 0.15s ease;
}
.detail-lightbox-close:hover { background: rgba(255,255,255,0.18); }
.detail-lightbox-close svg { width: 18px; height: 18px; }
.detail-lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--c-white);
  cursor: pointer;
  transition: background 0.15s ease;
}
.detail-lightbox-nav:hover { background: rgba(255,255,255,0.18); }
.detail-lightbox-nav svg { width: 20px; height: 20px; }
.detail-lightbox-nav.prev { left: 18px; }
.detail-lightbox-nav.next { right: 18px; }
.detail-lightbox-counter {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: var(--c-silver); font-size: 0.82rem; font-weight: 600;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
@media (max-width: 640px) {
  .detail-lightbox-nav { width: 38px; height: 38px; }
  .detail-lightbox-nav.prev { left: 6px; }
  .detail-lightbox-nav.next { right: 6px; }
}

.detail-gallery-thumbs { display: flex; gap: 0.6rem; margin-top: 0.75rem; flex-wrap: wrap; }
.detail-thumb {
  width: 74px; height: 56px;
  border-radius: calc(var(--radius) - 1px);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.55;
  background: #131316;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-thumb:hover { opacity: 0.85; }
.detail-thumb.active { opacity: 1; border-color: var(--c-red-bright); }

.detail-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.7rem; }
.detail-badge {
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--c-line-bright);
  color: var(--c-red-bright);
}
.detail-badge.durum { color: var(--c-silver-bright); }

.detail-title { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.2rem; }
.detail-subtitle { color: var(--c-silver); font-size: 1rem; font-weight: 600; margin-bottom: var(--space-sm); }

.detail-price-row {
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
  margin: var(--space-sm) 0;
  padding: var(--space-sm);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
}
.detail-price { font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; color: var(--c-white); }
.detail-takas-badge {
  background: rgba(127,224,160,0.12);
  border: 1px solid rgba(127,224,160,0.35);
  color: #7fe0a0;
  font-size: 0.8rem; font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 0.8rem;
  margin: var(--space-sm) 0 var(--space-md);
}
.detail-spec-item { border: 1px solid var(--c-line); border-radius: var(--radius); padding: 0.6rem 0.8rem; }
.detail-spec-item .lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-text-dim); margin-bottom: 0.15rem; }
.detail-spec-item .val { font-family: var(--f-display); font-weight: 700; color: var(--c-white); font-size: 0.95rem; }

.detail-konum-row { display: flex; align-items: center; gap: 0.5rem; color: var(--c-silver); font-size: 0.9rem; margin: 0 0 var(--space-sm); }
.detail-konum-row svg { width: 15px; height: 15px; color: var(--c-red-bright); flex-shrink: 0; }

.detail-cta-row { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: var(--space-sm); }

.detail-section-title { font-size: 1.1rem; margin: var(--space-lg) 0 0.7rem; }
.detail-desc { font-size: 0.96rem; line-height: 1.75; white-space: pre-line; }

.detail-hasar-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.detail-hasar-list .hasar-chip {
  background: rgba(200,28,38,0.12);
  border: 1px solid rgba(200,28,38,0.35);
  color: #ff9ba0;
  font-size: 0.78rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* ---------- Parça arama kutusu ---------- */
.part-search-band {
  border: 1px solid var(--c-line-bright);
  border-radius: var(--radius);
  padding: var(--space-md);
  background: linear-gradient(135deg, rgba(224,32,38,0.06), transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.part-search-band h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.part-search-band p { font-size: 0.92rem; max-width: 480px; }

/* ---------- Hakkımızda ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
@media (max-width: 940px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-media { display: flex; align-items: center; justify-content: center; }
.about-media img { width: 100%; max-width: 380px; height: auto; object-fit: contain; margin: 0 auto; }

.timeline { display: flex; flex-direction: column; gap: var(--space-md); }
.timeline-item { display: flex; gap: var(--space-md); }
.timeline-item .dot {
  flex-shrink: 0;
  width: 12px; height: 12px; margin-top: 6px;
  background: var(--c-red-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(224,32,38,0.15);
}
.timeline-item h4 { font-size: 1rem; color: var(--c-white); margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.9rem; }

/* ---------- SSS (accordion) ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; max-width: 780px; }
.faq-item {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 1.05rem var(--space-md);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--c-white);
  cursor: pointer;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--c-red-bright);
  transition: transform 0.25s ease;
}
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner { padding: 0 var(--space-md) 1.2rem; font-size: 0.92rem; color: var(--c-text-dim); }
.faq-item.open .faq-a { max-height: 400px; }

.faq-cta {
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: var(--space-md);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
}

/* ---------- İletişim ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-lg);
  align-items: flex-start;
}
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-list { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-md); }
.contact-info-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-sm);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface);
}
.contact-info-item .ic { width: 22px; height: 22px; flex-shrink: 0; color: var(--c-red-bright); margin-top: 2px; }
.contact-info-item h4 { font-size: 0.95rem; color: var(--c-white); font-family: var(--f-body); font-weight: 700; margin-bottom: 0.2rem; }
.contact-info-item p, .contact-info-item a { font-size: 0.9rem; }
.contact-info-item a:hover { color: var(--c-red-bright); }

.hours-card { margin-top: var(--space-md); }
.hours-card h4 { font-size: 1rem; margin-bottom: var(--space-sm); display: flex; align-items: center; justify-content: space-between; }
.open-badge {
  font-family: var(--f-display); font-size: 0.72rem; font-weight: 700;
  padding: 0.25rem 0.65rem; border-radius: 999px;
  border: 1px solid var(--c-line-bright); color: var(--c-text-dim);
}
.open-badge.open { color: #7fd88f; border-color: rgba(127,216,143,0.4); }
.open-badge.closed { color: var(--c-red-bright); border-color: var(--c-line-bright); }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 0.45rem 0; border-top: 1px solid var(--c-line); }
.hours-row:first-of-type { border-top: none; }
.hours-row .t { color: var(--c-text-dim); }

.wa-banner {
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  border: 1px solid rgba(37,211,102,0.35);
  background: rgba(37,211,102,0.06);
}
.wa-banner svg { width: 26px; height: 26px; color: #25D366; flex-shrink: 0; }
.wa-banner p { font-size: 0.88rem; color: var(--c-text-dim); }
.wa-banner a { font-weight: 700; color: var(--c-white); }
.wa-banner a:hover { color: #25D366; }

.map-embed {
  margin-top: var(--space-md);
  aspect-ratio: 16/10;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(92%) hue-rotate(180deg) brightness(0.85) contrast(1.05) saturate(0.5);
}
.map-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--c-surface);
  color: var(--c-text-dim);
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
}
.map-loading.hidden { opacity: 0; pointer-events: none; }
.map-loading-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--c-red-bright);
  animation: mapLoadingPulse 1s ease-in-out infinite;
}
@keyframes mapLoadingPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1); }
}
.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-silver-bright);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 0.55rem 0.9rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.map-directions-btn:hover { border-color: var(--c-line-bright); color: var(--c-red-bright); }
.map-directions-btn svg { width: 16px; height: 16px; }

/* Form */
.form-card { padding: var(--space-lg) var(--space-md); }
.form-card > .eyebrow { display: block; margin-bottom: var(--space-sm); }
.form-card h2 { margin-top: 0.2rem; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.form-card .lede-form { margin-top: 0.6rem; font-size: 0.95rem; }

form.sell-form { margin-top: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-md); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--c-silver-bright); }
.field .hint { font-size: 0.78rem; color: var(--c-text-dim); margin-top: -0.2rem; }

.field input,
.field select,
.field textarea {
  background: var(--c-surface-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-text);
  padding: 0.8rem 0.95rem;
  font-family: var(--f-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--c-red-bright); }
.field textarea { resize: vertical; min-height: 100px; }

.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
@media (max-width: 500px) { .choice-grid { grid-template-columns: 1fr; } }

.choice-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-surface-2);
  padding: 0.85rem 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--c-text);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.choice-card .ct { display: block; font-weight: 700; font-size: 0.92rem; color: var(--c-white); }
.choice-card .cd { display: block; font-size: 0.78rem; color: var(--c-text-dim); margin-top: 0.15rem; }
.choice-card:hover { border-color: var(--c-line-bright); }
.choice-card.selected { border-color: var(--c-red-bright); background: rgba(224,32,38,0.08); }

.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; color: var(--c-text-dim); }
.form-consent input { margin-top: 0.25rem; accent-color: var(--c-red); }

.form-note {
  font-size: 0.82rem;
  color: var(--c-text-dim);
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}
.form-success.show { display: block; }
.form-success .check {
  width: 56px; height: 56px; margin: 0 auto var(--space-sm);
  border-radius: 50%;
  border: 1px solid rgba(127,216,143,0.4);
  display: flex; align-items: center; justify-content: center;
}
.form-success .check svg { width: 26px; height: 26px; color: #7fd88f; }
.form-success h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.form-success p { font-size: 0.92rem; max-width: 420px; margin: 0 auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-line);
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); } }

.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: var(--space-sm); }
.footer-brand .brand-mark { width: 38px; height: 38px; }
.footer-brand .brand-text { font-size: 1rem; }

.footer-col h4 { font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-silver); margin-bottom: var(--space-sm); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a, .footer-col li { font-size: 0.9rem; color: var(--c-text-dim); }
.footer-col a:hover { color: var(--c-red-bright); }

.footer-bottom {
  border-top: 1px solid var(--c-line);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--c-text-dim);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #08160c;
  padding: 0.75rem 1.1rem 0.75rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float svg { width: 26px; height: 26px; }

/* ---------- WhatsApp numara seçim menüsü ---------- */
.dg-wa-popup {
  position: fixed;
  z-index: 10000;
  min-width: 220px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  animation: dgWaPopIn 0.15s ease;
}
@keyframes dgWaPopIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.dg-wa-popup-title {
  font-size: 0.72rem;
  color: var(--c-text-dim);
  padding: 0.25rem 0.55rem 0.4rem;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 0.1rem;
}
.dg-wa-popup-opt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--c-white);
  padding: 0.6rem 0.65rem;
  border-radius: calc(var(--radius) + 2px);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.dg-wa-popup-opt:hover { background: rgba(37, 211, 102, 0.14); color: #25D366; }
.dg-wa-popup-opt svg { color: #25D366; }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25D366;
  animation: pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 560px) {
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 0.75rem; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Utility ---------- */
.text-dim { color: var(--c-text-dim); }
.mt-lg { margin-top: var(--space-lg); }
.text-center { text-align: center; }