/* ═══════════════════════════════════════
   KARATAY — HİZMET DETAY CSS
   ═══════════════════════════════════════ */

/* ── GİRİŞ BÖLÜMÜ ── */
.hizmet-giris {
  background: var(--black);
  padding: 80px 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
}

.hizmet-giris-inner {
  max-width: var(--max);
  padding: 0 0 64px;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 80px;
}

.hizmet-no-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hizmet-baslik {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 28px;
}

.hizmet-giris-metin {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 520px;
}

.hizmet-giris-meta {
  padding: 80px 0 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 32px;
}

.hizmet-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hizmet-meta-item:last-child { border-bottom: none; padding-bottom: 0; }

.hizmet-meta-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hizmet-meta-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

/* ── BÖLÜM ── */
.hizmet-bolum {
  padding: 80px 0;
  background: var(--white);
}

.hizmet-iki-kolon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hizmet-bolum-baslik {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 12px;
}

.hizmet-metin-blok p {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
}

.hizmet-metin-blok p:last-child { margin-bottom: 0; }

/* ── SÜREÇ ── */
.hizmet-surec-bolum {
  padding: 80px 0;
  background: var(--gray-100);
}

.surec-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--gray-300);
  margin-top: 8px;
}

.surec-adim {
  background: var(--white);
  padding: 32px 24px;
  position: relative;
}

.surec-adim::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.2s;
}

.surec-adim:hover::after { background: var(--red); }

.surec-no {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.surec-baslik {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.surec-aciklama {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── YAPI TİPLERİ ── */
.yapi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-300);
}

.yapi-item {
  background: var(--white);
  padding: 32px 28px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s;
}

.yapi-item:hover { border-bottom-color: var(--red); }

.yapi-baslik {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.yapi-aciklama {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── OPERASYON AVANTAJI ── */
.operasyon-blok {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.operasyon-metin {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-700);
  line-height: 1.75;
  margin-top: 16px;
}

.operasyon-sag {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-100);
}

.operasyon-madde {
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s;
}

.operasyon-madde:last-child { border-bottom: none; }
.operasyon-madde:hover { background: var(--gray-100); }

.operasyon-madde-baslik {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.operasyon-madde-baslik::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--red);
  flex-shrink: 0;
}

.operasyon-madde-metin {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.6;
  padding-left: 16px;
}

/* ── ÖRNEK PROJELER ── */
.ornek-projeler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  margin-top: 8px;
}

.ornek-proje {
  background: #0D0D0D;
  display: block;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.2s;
}

.ornek-proje:hover { background: #141414; }

.ornek-proje-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.ornek-proje-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.8);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), filter 0.3s;
}

.ornek-proje:hover .ornek-proje-img-wrap img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(0.9);
}

.ornek-proje-body {
  padding: 20px 24px 28px;
  border-top: 2px solid rgba(255,255,255,0.04);
  transition: border-color 0.15s;
}

.ornek-proje:hover .ornek-proje-body { border-top-color: var(--red); }

.ornek-proje-cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ornek-proje-baslik {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.ornek-proje-ozet {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── CTA ── */
.hizmet-cta {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.hizmet-cta-ic {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.hizmet-cta-baslik {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-top: 8px;
  line-height: 1.1;
}

.hizmet-cta-metin {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 480px;
}

.hizmet-cta-aksiyonlar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

/* ── DİĞER HİZMETLER ── */
.diger-hizmetler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-300);
}

.diger-hizmet {
  background: var(--white);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, background 0.15s;
}

.diger-hizmet:hover {
  border-bottom-color: var(--red);
  background: var(--white);
}

.diger-hizmet-no {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.diger-hizmet-ad {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
  flex: 1;
}

.diger-hizmet svg {
  color: var(--gray-300);
  transition: color 0.15s, transform 0.15s;
  flex-shrink: 0;
}

.diger-hizmet:hover svg {
  color: var(--red);
  transform: translateX(4px);
}
