/* ===== Kategoriler Slider ===== */
.services-section {
  padding: 28px 0 32px;
  background: #f8fafc;
}

.services-container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.services-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.services-title {
  flex-shrink: 0;
  width: 118px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  background: #e4e9ef;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-align: center;
  color: #2d3a52;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

a.services-title:hover {
  background: #dde4ec;
  color: #FF6600;
}

.services-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.services-track {
  display: flex;
  gap: 14px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.service-card {
  flex: 0 0 calc((100% - 42px) / 4);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 12px;
  background: #ffffff;
  border: 1px solid #dde4ec;
  border-radius: 10px;
  min-height: 88px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: #c8d3e0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
}

.service-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.service-icon--seo       { background: #e8f5e9; color: #43a047; }
.service-icon--web       { background: #e3f2fd; color: #1e88e5; }
.service-icon--eticaret  { background: #fff3e0; color: #fb8c00; }
.service-icon--script    { background: #f3e5f5; color: #8e24aa; }
.service-icon--mobile    { background: #e0f7fa; color: #00acc1; }
.service-icon--market    { background: #fce4ec; color: #e53935; }
.service-icon--hosting   { background: #e8eaf6; color: #3949ab; }
.service-icon--ux        { background: #fff8e1; color: #f9a825; }

.service-body {
  min-width: 0;
}

.service-name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.3;
  margin-bottom: 5px;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #718096;
  line-height: 1.3;
}

.service-meta svg {
  flex-shrink: 0;
  color: #92c866;
}

.services-nav {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #d5dee9;
  border-radius: 50%;
  color: #64748b;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.services-nav:hover:not(:disabled) {
  background: #ffffff;
  color: #2d3748;
  border-color: #b8c5d4;
}

.services-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ===== Responsive ===== */
@media (max-width: 1292px) {
  .services-container {
    padding: 0 16px;
  }
}

@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 calc((100% - 14px) / 2);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 20px 0 24px;
  }

  .services-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .services-title {
    width: 100%;
    min-height: auto;
    padding: 10px;
  }

  .services-nav {
    width: 32px;
    height: 32px;
  }

  .services-nav--prev {
    order: 2;
  }

  .services-viewport {
    order: 4;
    width: 100%;
  }

  .services-nav--next {
    order: 3;
    margin-left: auto;
  }

  .service-card {
    flex: 0 0 calc(100% - 0px);
  }
}
