/* Chi-siamo specific scroll indicator positioning */
body.chi-siamo .scroll-indicator {
  position: absolute;
  bottom: 50%;
  left: 10px;
  transform: translateY(50%);
  text-align: left;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.chi-siamo .scroll-indicator:hover {
  transform: translateY(50%) translateX(5px);
}

body.chi-siamo .scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(218,165,32,0.8);
  border-radius: 25px;
  position: relative;
  margin: 0 0 15px 0;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

body.chi-siamo .scroll-icon span {
  width: 4px;
  height: 10px;
  background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #DAA520 100%);
  border-radius: 2px;
  display: block;
  animation: scrollAnimation 2s infinite;
}

body.chi-siamo .scroll-icon span:nth-child(1) {
  animation-delay: 0s;
}

body.chi-siamo .scroll-icon span:nth-child(2) {
  animation-delay: 0.2s;
}

body.chi-siamo .scroll-icon span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes scrollAnimation {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}

body.chi-siamo .scroll-indicator p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
