/* =========================================================
   SERVICES – Premium Centered Layout
========================================================= */

.svc{
  padding: 70px 0 60px;
}

/* =========================
   HEADER
========================= */

.svc-head{
  text-align: center;
  max-width: 920px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.svc-eyebrow{
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(0,0,0,0.55);
  margin-bottom: 10px;
}

.svc-title{
  font-family: 'Poppins', sans-serif;
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.4px;
  font-weight: 800;
  color: rgba(0,0,0,0.92);
  line-height: 1.2;
}

/* Sarı çizgi */
.svc-divider{
  display: block;
  width: 88px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: #d6b25e;
}

/* Eski ::after varsa kapat */
.svc-title::after{
  content: none !important;
}

/* =========================
   GRID
========================= */

.svc-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 0 20px;
}

/* =========================
   CARD
========================= */

.svc-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

@media (hover:hover){
  .svc-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  }
}

/* IMAGE */
.svc-media{
  height: 200px;
  background: #e9eef3;
  flex-shrink: 0;
}

.svc-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BODY */
.svc-body{
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-h3{
  font-family: 'Poppins', sans-serif;
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: rgba(0,0,0,0.92);
}

.svc-p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0,0,0,0.65);
  flex: 1;
}

/* =========================
   DETAYLARI GÖR LİNK
========================= */

.svc-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #0f2443;
  text-decoration: none;
  transition: gap .2s ease, color .2s ease;
}

.svc-link::after{
  content: '→';
  transition: transform .2s ease;
}

@media (hover:hover){
  .svc-link:hover{
    color: #d6b25e;
    gap: 10px;
  }

  .svc-link:hover::after{
    transform: translateX(3px);
  }
}

/* =========================
   CTA BUTTON
========================= */

.svc-actions{
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.btn-primary{
  padding: 14px 28px;
  border-radius: 999px;
  background: #0f2443;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0,0,0,0.15);
  transition: transform .22s ease, box-shadow .22s ease;
}

@media (hover:hover){
  .btn-primary:hover{
    transform: scale(1.04);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px){
  .svc-grid{
    grid-template-columns: 1fr;
  }

  .svc{
    padding: 60px 0 50px;
  }

  .svc-media{
    height: 210px;
  }
}