/* ==========================================================================
   Lockewise - Utilities & Helper Classes
   Created: June 20, 2025
   ========================================================================== */

/* Hide scroll indicators */
.scroll-indicator,
#scrollIndicator,
div[class*="scroll-indicator"],
div[id*="scrollIndicator"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
}

/* Reveal animations */
.reveal-section {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-item {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

/* For instant animations (no transitions) */
.no-transition {
  transition: none !important;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient animations */
.gradient-animated-text {
  color: var(--light-blue);
}

/* Hover effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  background-color: #222222;
  border-color: rgba(59, 130, 246, 0.35);
}

/* Button effect */
.button-effect {
  position: relative;
  overflow: hidden;
}

/* Floating animation */
.float-element {
  animation: floatAnimation 4s ease-in-out infinite;
}

/* Scroll to top button */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 100;
}

#scrollToTopBtn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollToTopBtn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}
