.services-hero {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  padding: 140px 20px 100px;
}

.services-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.services-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-hero p {
  color: #ccc;
  font-size: 18px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-hero {
    padding: 120px 20px 80px;
  }

  .services-hero h1 {
    font-size: 36px;
  }

  .services-hero p {
    font-size: 16px;
  }
}

/* ========== HİZMETLER ========== */
.services-section {
  background-color: #fff;
  padding: 100px 20px;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-header p {
  color: #666;
  font-size: 16px;
}

/* Grid yapı */
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

/* Kart tasarımı */
.service-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

/* İkon */
.service-card .icon {
  background-color: #e63946;
  color: #fff;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* Başlık */
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Açıklama */
.service-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
}

/* Alt başlık */
.service-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Liste */
.service-card ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.service-card ul li {
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}



/* ========== ÇALIŞMA SÜRECİ ========== */
.process-section {
  background-color: #f8f9fa;
  padding: 100px 20px;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-header p {
  color: #555;
  font-size: 16px;
}

/* Adım Grid */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  gap: 30px;
}

/* Her adım */
.step h3 {
  color: #e63946;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.step p {
  color: #555;
  font-size: 15px;
}

/* Hover animasyonu */
.step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .process-header h2 {
    font-size: 26px;
  }

  .step h3 {
    font-size: 36px;
  }
}
