.service-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-slider-overflow {
  overflow: hidden;
  width: 100%;
}

.service-slider-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 24px;
}

.service-slide {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

/* Tombol nav */
.service-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  font-size: 14px;
  color: #333;
}

.service-nav-btn:hover {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}

.service-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Dots */
.service-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.service-dot.active {
  background: #1a1a2e;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 991px) {
  .service-slide {
    min-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 575px) {
  .service-slide {
    min-width: 100%;
  }
}

