/* ========================================
   Highlights Section (Carousel)
   ======================================== */
.highlights-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin: 0 auto;
  max-width: var(--container-max-width, 1140px);
  height: 420px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.18);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  z-index: 0;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(219, 103, 0, 0.85) 0%,
    rgba(242, 178, 114, 0.75) 50%,
    rgba(242, 178, 114, 0.4) 100%
  );
}

.carousel-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3.5rem;
  max-width: 560px;
}

.carousel-slide.active .carousel-content {
  animation: fadeInUp 0.55s ease 0.1s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-eyebrow {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  display: block;
}

.carousel-title {
  font-family: var(--font-heading, "Fira Sans", sans-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.carousel-description {
  font-family: var(--font-body, "Inter", sans-serif);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 380px;
}

.carousel-badge {
  position: absolute;
  bottom: 1.4rem;
  right: 1.8rem;
  z-index: 3;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
  line-height: 1.4;
}

.carousel-badge strong {
  display: block;
  font-family: var(--font-heading, "Fira Sans", sans-serif);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
}

.carousel-dots {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 6px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-dot.active {
  background: #ffffff;
  width: 24px;
  border-radius: 4px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.carousel-nav.prev {
  left: 1rem;
}
.carousel-nav.next {
  right: 1rem;
}
.carousel-nav svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .carousel-content {
    padding: 2rem;
    max-width: 100%;
  }
  .carousel-title {
    font-size: 1.5rem;
  }
  .carousel-badge {
    display: none;
  }
}
