/* ==== IMPACT HERO SECTION ==== */

/* Note: Smooth scrolling handled by JavaScript for better control */

.ica-impact {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background */
.ica-impact__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Slider */
.ica-impact__slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ica-impact__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  z-index: 1;
  /* will-change: opacity, transform; - Removed for better performance */
  aspect-ratio: 16/9;
}

.ica-impact__slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 3;
}

/* Note: .prev class removed - not used in current implementation */

.ica-impact__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay */
.ica-impact__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(210deg, #17968C 0%, #C6D62B 100%);
  opacity: 0.85;
  z-index: 4;
  pointer-events: none;
}

/* Content */
.ica-impact__content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 8vw, 4rem) 0;
  color: white;
}

/* Icon */
.ica-impact__icon {
  width: 300px;
  height: 100px;
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  object-fit: contain;
  aspect-ratio: 350/130;
}

/* Typography */
.ica-impact__title {
  font-family: var(--font-ui) !important;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: white;
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.ica-impact__description {
  font-family: var(--font-ui) !important;
  font-size: 14px;
  font-weight: 500;
  color: white;
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Group */
.ica-impact__cta-group {
  display: flex;
  gap: clamp(1rem, 3vw, 3rem);
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-impact-dance,
.btn-impact-mt {
  display: inline-block;
  text-align: center;
  padding: 15px 25px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  border: none;
  border-radius: 0;
  box-shadow: -6px 6px 0px 1px rgba(30, 49, 47, 0.45);
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-impact-dance {
  background-color: var(--ica-green-deep);
  color: white;
}

.btn-impact-dance:hover {
  background: var(--ica-bg);
  color: var(--ica-green-deep);
  transform: translateY(-2px);
}

.btn-impact-mt {
  background-color: var(--ica-bg);
  color: var(--ica-green-deep);
}

.btn-impact-mt:hover {
  background: var(--ica-green-deep);
  color: var(--ica-bg);
  transform: translateY(-2px);
}

.btn-impact-dance:active,
.btn-impact-mt:active {
  transform: translateY(0);
}

/* Simple focus styles */
.btn-impact-dance:focus,
.btn-impact-mt:focus {
  outline: 2px solid var(--ica-mint);
  outline-offset: 2px;
}

/* Responsive */
@media (min-width: 768px) {
  .ica-impact__icon {
    width: 350px;
    height: 130px;
  }
  
  .btn-impact-dance,
  .btn-impact-mt {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .ica-impact {
    min-height: 80vh;
  }
  
  .ica-impact__content {
    padding: clamp(1.5rem, 6vw, 3rem) 0;
  }
  
  .ica-impact__cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-impact-dance,
  .btn-impact-mt {
    width: 100%;
    max-width: 300px;
  }
}
