/* ÇALIŞMA ALANLARIMIZ BÖLÜMÜ STİLLERİ */
.services-section {
  padding: 100px 0 100px 0;
  background-color: #ffffff;
}

.services-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

/* Ortalanmış İkonlu Üst Başlık */
.services-centered-icon-header {
  text-align: center;
  margin-bottom: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.services-centered-icon-header .header-icon-seal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4C233C 0%, #2A1321 100%);
  color: #EBD8B8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(235, 216, 184, 0.4);
  box-shadow: 0 12px 28px rgba(76, 35, 60, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.services-centered-icon-header:hover .header-icon-seal {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 36px rgba(76, 35, 60, 0.35);
}

.services-centered-icon-header .services-subtitle {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #4C233C;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px 24px;
  background: #ffffff;
  border: 1px solid rgba(76, 35, 60, 0.12);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.services-centered-icon-header .services-subtitle::before,
.services-centered-icon-header .services-subtitle::after {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #EBD8B8;
  border-radius: 50%;
  display: inline-block;
}

.services-centered-icon-header .services-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 400;
}

/* 3x3 Grid Düzeni */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* LÜKS PRESTİJ HİZMET KARTI */
.service-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #EAEAEA;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.03);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border-color: #E0E0E0;
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(76, 35, 60, 0.06);
  color: #4C233C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: #4C233C;
  color: #EBD8B8;
  transform: scale(1.05);
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  color: #1C1D21;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

/* Detaylı Bilgi Minimal Çerçeveli Buton */
.service-wa-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #4C233C;
  background-color: transparent;
  border: 1px solid #E0E0E0;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-wa-link:hover {
  background-color: #FBF8F5;
  border-color: #4C233C;
  color: #4C233C;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-container {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .service-card {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .services-container {
    padding-left: 20px;
    padding-right: 20px;
  }

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