/* ═══════════════════════════════════════════════════
   PEAK DETAILING — HOME SERVİCES EDITORIAL
   Numbered list, typography-heavy, no cards
═══════════════════════════════════════════════════ */

.svc-editorial {
  padding: 32px clamp(24px, 5vw, 80px) 0;
  max-width: 1440px;
  margin: 0 auto;
}

/* ── Başlık ── */
.svc-ed-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0 clamp(40px, 6vw, 100px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Sağ: İstatistik bloğu */
.svc-ed-header-stats {
  display: flex;
  align-items: flex-end;
  gap: 0;
  padding-bottom: 4px;
  margin-top: 28px;
}
.svc-ed-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.svc-ed-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.svc-ed-stat-sup {
  font-size: 0.55em;
  color: #E85D1F;
  vertical-align: super;
  font-weight: 700;
}
.svc-ed-stat-star {
  font-size: 0.6em;
  color: #D8B473;
  vertical-align: middle;
}
.svc-ed-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
.svc-ed-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  margin: 0 clamp(16px, 2vw, 32px);
  align-self: center;
  flex-shrink: 0;
}

.svc-ed-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.svc-ed-kicker-line {
  width: 32px;
  height: 1px;
  background: #E85D1F;
  flex-shrink: 0;
}
.svc-ed-kicker-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #E85D1F;
}

.svc-ed-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: #fff;
}
.svc-ed-title em {
  font-style: normal;
  color: #E85D1F;
}

.svc-ed-header-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.35);
  max-width: 380px;
  align-self: end;
}

/* ── Liste ── */
.svc-ed-list { }

.svc-ed-item {
  display: grid;
  grid-template-columns: 64px 1.2fr 0.9fr 140px;
  align-items: center;
  gap: 0 clamp(24px, 3vw, 48px);
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  position: relative;
  transition: background 0.3s;
}

/* Hover arka plan */
.svc-ed-item::before {
  content: '';
  position: absolute;
  left: clamp(-24px, -5vw, -80px);
  right: clamp(-24px, -5vw, -80px);
  top: 0;
  bottom: 0;
  background: rgba(255,255,255,0.02);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.svc-ed-item:hover::before { opacity: 1; }

/* Gold çizgi — soldan sağa süpürür */
.svc-ed-item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: clamp(-24px, -5vw, -80px);
  right: clamp(-24px, -5vw, -80px);
  height: 1px;
  background: #D8B473;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.23,1,0.32,1);
  pointer-events: none;
}
.svc-ed-item:hover::after { transform: scaleX(1); }

/* Numara */
.svc-ed-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.18);
  transition: color 0.3s;
}
.svc-ed-item:hover .svc-ed-num { color: #E85D1F; }

/* Hizmet adı */
.svc-ed-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.88);
  line-height: 1.05;
  transition: color 0.3s;
}
.svc-ed-item:hover .svc-ed-name { color: #fff; }

/* Açıklama */
.svc-ed-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin: 0;
  transition: color 0.3s;
}
.svc-ed-item:hover .svc-ed-desc { color: rgba(255,255,255,0.68); }

/* Link */
.svc-ed-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
  transition: color 0.3s;
}
.svc-ed-link span { transition: transform 0.3s; }
.svc-ed-item:hover .svc-ed-link { color: rgba(255,255,255,0.45); }
.svc-ed-item:hover .svc-ed-link span { transform: translateX(4px); }

/* ── CTA ── */
.svc-ed-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0 100px;
}

.svc-ed-cta-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s;
}
.svc-ed-cta-link span { color: #E85D1F; }
.svc-ed-cta-link:hover { color: #fff; }

.svc-ed-cta-wa {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #080808;
  background: #E85D1F;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.25s;
}
.svc-ed-cta-wa:hover { background: #FF6B2B; }

/* ── Responsive: ≤1024px ── */
@media (max-width: 1024px) {
  .svc-editorial { padding: 80px 40px 0; }
  .svc-ed-header { grid-template-columns: 1fr; gap: 32px; }
  .svc-ed-header-sub { max-width: 100%; }
  .svc-ed-item {
    grid-template-columns: 48px 1fr 140px;
    grid-template-rows: auto auto;
  }
  .svc-ed-desc {
    grid-column: 2 / 3;
    grid-row: 2;
    margin-top: 8px;
  }
  .svc-ed-link { grid-row: 1 / 3; }
  .svc-ed-item::before { left: -40px; right: -40px; }
  .svc-ed-item::after  { left: -40px; right: -40px; }
}

/* ── Responsive: ≤1024px (telefon + tablet) — MAKSİMİZE mobil kartlar ── */
@media (max-width: 1024px) {
  .svc-editorial { padding: 54px 18px 0; }

  /* Başlık + istatistikler */
  .svc-ed-header { gap: 26px; padding-bottom: 30px; }
  .svc-ed-title { font-size: clamp(40px, 11vw, 56px); line-height: 0.9; }
  .svc-ed-header-stats { margin-top: 2px; }
  .svc-ed-stat { gap: 6px; }
  .svc-ed-stat-num { font-size: clamp(30px, 9vw, 40px); }
  .svc-ed-stat-label { font-size: 9px; letter-spacing: 0.16em; }
  .svc-ed-stat-sep { height: 34px; margin: 0 12px; }

  /* Liste → kart destesi */
  .svc-ed-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 22px;
  }
  .svc-ed-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
    column-gap: 15px;
    row-gap: 0;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    background: rgba(255,255,255,0.025);
    -webkit-tap-highlight-color: transparent;
  }
  /* masaüstü hover dekorları mobilde kapalı */
  .svc-ed-item::before,
  .svc-ed-item::after { display: none; }
  .svc-ed-item:active {
    border-color: rgba(232,93,31,0.55);
    background: rgba(232,93,31,0.07);
  }

  /* Büyük numara — turuncu accent */
  .svc-ed-num {
    grid-column: 1; grid-row: 1;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    color: #E85D1F;
    opacity: 0.95;
  }
  /* Hizmet adı */
  .svc-ed-name {
    grid-column: 2; grid-row: 1;
    font-size: 21px;
    line-height: 1.06;
    color: #fff;
  }

  /* Açıklama — tam genişlik */
  .svc-ed-desc {
    grid-column: 1 / -1; grid-row: 2;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
  }

  /* "Detaylı Bilgi ›" — mobilde her zaman görünür, turuncu, üst ayraçlı */
  .svc-ed-link {
    grid-column: 1 / -1; grid-row: 3;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 13px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #E85D1F !important;
  }
  .svc-ed-link span {
    color: #E85D1F;
    font-size: 16px;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════
   GENİŞ EKRAN — sadece ≥1600px CSS genişliğinde devreye girer.
   Amaç: services bölümü, üst/alttaki tam-genişlik bölümlere göre
   "içeri büzülmesin"; geniş monitörde yan boşluklar azalsın.
   NOT: 1599px ve altı (mobil/tablet/standart laptop) HİÇ değişmez.
   Geri almak için bu iki @media bloğunu silmek yeterli.
═══════════════════════════════════════════════════ */
@media (min-width: 1600px) {
  .svc-editorial { max-width: 1600px; }
}
@media (min-width: 2000px) {
  .svc-editorial { max-width: 1760px; }
}
