@media (max-width: 767px) {
  .service-carousel-track {
    display: flex !important;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-right: 1.5rem;
    margin-right: -1.5rem;
  }

  .service-carousel-track::-webkit-scrollbar {
    display: none;
  }

  .service-carousel-slide {
    flex: 0 0 82%;
    max-width: 82%;
    scroll-snap-align: start;
  }
}

.carousel-indicator {
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #cbd5e1;
}

.carousel-indicator-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
}

.carousel-indicator-active {
  width: 2rem;
  height: 0.375rem;
  border-radius: 9999px;
  background-color: #fbbf24;
}

.carousel-indicator:hover {
  background-color: #f59e0b;
}

.service-carousel-nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 2px solid #e2e8f0;
  background-color: #ffffff;
  color: #334155;
  box-shadow: 0 1px 3px rgb(15 23 42 / 0.08);
  transition: all 0.2s ease;
}

.service-carousel-nav-button:hover {
  border-color: #fbbf24;
  color: #d97706;
}

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