/* waz3ha.css */

/* تأثيرات دخول */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
section:nth-child(2) { animation-delay: 0.3s; }
section:nth-child(3) { animation-delay: 0.5s; }
section:nth-child(4) { animation-delay: 0.7s; }

/* تأثير زر الإرسال */
form button {
  position: relative;
  overflow: hidden;
}
form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.8s;
}
form button:hover::before {
  left: 100%;
}
