/**
 * Fix for animation visibility issues
 */

/* Make sure animation elements are visible by default */
[data-sal] {
  opacity: 1 !important;
  transition: none !important;
  transform: none !important;
}

/* Fix for specific animation types that might use different properties */
[data-sal="fade"],
[data-sal="slide-up"],
[data-sal="slide-down"],
[data-sal="slide-left"],
[data-sal="slide-right"],
[data-sal="zoom-in"],
[data-sal="zoom-out"] {
  opacity: 1 !important;
  transform: none !important;
}

/* Additional fix for contact form section */
#contact-title, #contact-subtitle, #contact-desc {
  opacity: 1 !important;
}

/* Fix for section titles and subtitles */
.section-title, .section-subtitle, .section-description {
  opacity: 1 !important;
}

/* Fix for additional items */
.additional-item {
  opacity: 1 !important;
} 