

.svc-carousel {
  position: relative;
  margin-bottom: 2.5rem;
}

.svc-carousel .carousel-controls {
  z-index: 100;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.svc-carousel .carousel-prev,
.svc-carousel .carousel-next {
  pointer-events: all;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(34, 197, 94,0.18);
  color: #22c55e;
  padding: 0.45rem 0.8rem;
  border-radius: 0;
  font-size: 1.4rem;
  cursor: pointer;
}

.svc-carousel .carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

.svc-carousel .carousel-card {
  min-width: 260px;
  flex: 0 0 auto;
  scroll-snap-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0.3) 70%, rgba(255,255,255,1) 100%) !important;
  border: 2px solid #22c55e;
  border-radius: 0;
  padding: 1.5rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.svc-carousel .carousel-card h3 {
  color: #22c55e;
  margin: 0.25rem 0 0.5rem 0;
}

.svc-carousel .carousel-card.active {
  transform: translateY(-4px);
  border-color: #22c55e;
}

.svc-carousel .carousel-indicators {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.svc-carousel .carousel-indicators button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-carousel .carousel-indicators button::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s ease;
}

.svc-carousel .carousel-indicators button.active::after { background: #22c55e; }
.svc-carousel .carousel-card:focus { outline: 3px solid rgba(34, 197, 94,0.12); outline-offset: 6px; }
.svc-carousel .carousel-indicators button:focus { outline: 2px solid rgba(34, 197, 94,0.12); }

.nav-bar.service-dark ~ main .btn-primary.service-cta {
  position: relative;
  isolation: isolate;
}
.nav-bar.service-dark ~ main .btn-primary.service-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(34, 197, 94, 0.18);
  opacity: 0;
  pointer-events: none;
  animation: neonPulseOpacity 3.5s ease-in-out infinite alternate;
  z-index: -1;
}
@keyframes neonPulseOpacity {
  from { opacity: 0.35; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-bar.service-dark ~ main .btn-primary.service-cta::after {
    animation: none;
    opacity: 0.6;
  }
}

@keyframes shimmerBG {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.nav-bar.service-dark ~ main .service-shimmer {
  background-image: linear-gradient(90deg, rgba(34, 197, 94,0.02) 0%, rgba(255,255,255,0.00) 50%, rgba(34, 197, 94,0.02) 100%);
  background-size: 200% 100%;
  animation: shimmerBG 12s linear infinite;
}

#main-content.page-transition {
  animation: pageFadeIn 90ms cubic-bezier(.22,.9,.3,1) both;
  will-change: opacity;
  -webkit-font-smoothing: antialiased;
  filter: none !important;
}

@keyframes pageFadeIn {
  0% { opacity: 0.1; }
  100% { opacity: 1; }
}

@media (max-width: 768px) {
  .svc-carousel .carousel-controls { display: none; }
  .svc-carousel .carousel-card { min-width: 80%; }
}

@media (prefers-reduced-motion: reduce) {
  #main-content.page-transition { animation-duration: 50ms !important; }
}
