/* ============================================
   TECHNICIAN CAROUSEL - SHOWS 6 PEOPLE
   Mobile: 1 at a time | Desktop: 3 at a time
   ============================================ */

/* Carousel Container */
.technician-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

/* Carousel Track (holds all cards) */
.technician-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1.5rem;
}

/* Individual Technician Card */
.technician-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 0.75rem;
}

/* Desktop: Show 3 cards at a time */
@media (min-width: 992px) {
  .technician-card {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
  }
}

/* Tablet: Show 2 cards at a time */
@media (min-width: 768px) and (max-width: 991px) {
  .technician-card {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

/* Navigation Arrows */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-arrow {
  background-color: #e9914d;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:hover {
  background-color: #d17a35;
  transform: scale(1.1);
}

.carousel-arrow:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
}

/* Carousel Dots/Indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background-color: #e9914d;
  width: 30px;
  border-radius: 6px;
}

.carousel-dot:hover {
  background-color: #e9914d;
  opacity: 0.7;
}

/* Mobile: Smaller arrows */
@media (max-width: 768px) {
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .carousel-nav {
    gap: 0.75rem;
  }
}

/* Touch swipe support indicator */
.swipe-hint {
  text-align: center;
  color: #999;
  font-size: 14px;
  margin-top: 0.5rem;
  display: none;
}

@media (max-width: 768px) {
  .swipe-hint {
    display: block;
  }
}

/* Smooth animation */
.technician-carousel {
  scroll-behavior: smooth;
}

/* Keep existing testimonial card styles intact */
.technician-card .testimonial {
  height: 100%;
  margin-bottom: 0;
}

/* Counter text */
.carousel-counter {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 0.5rem;
  font-weight: 500;
}