/* Saf7ati CF7 Rocket Button - Styles */
.wpcf7-submit {
  all: unset;
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  margin: 10px auto;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer !important;
  color: #fff !important;
  background: linear-gradient(270deg, #9c0b43, #b81e5f, #9c0b43);
  background-size: 600% 600%;
  box-shadow: 0 4px 15px rgba(156, 11, 67, 0.4);
  animation: gradientMove 6s ease infinite;
  overflow: hidden;
  transition: transform 0.15s ease-in-out;
  box-sizing: border-box;
}

/* موجة ضوئية متحركة */
.wpcf7-submit::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg) translateX(-100%);
  pointer-events: none;
  animation: shine 3s linear infinite;
  border-radius: 50%;
  z-index: 1;
}

/* أيقونة 🚀 قبل النص */
.wpcf7-submit::before {
  content: "🚀";
  font-size: 20px;
  display: inline-block;
  animation: rocketHover 2s ease-in-out infinite;
  transition: transform 0.2s ease, text-shadow 0.2s ease;
  z-index: 2;
}

/* حركة الخلفية المتدرجة */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* حركة الأيقونة المستمرة */
@keyframes rocketHover {
  0% { transform: translateX(0) rotate(0deg); text-shadow: 0 0 2px #fff; }
  25% { transform: translateX(2px) rotate(5deg); text-shadow: 0 0 6px #fff, 0 0 10px #f5c0d9; }
  50% { transform: translateX(0) rotate(0deg); text-shadow: 0 0 2px #fff; }
  75% { transform: translateX(2px) rotate(-5deg); text-shadow: 0 0 6px #fff, 0 0 10px #f5c0d9; }
  100% { transform: translateX(0) rotate(0deg); text-shadow: 0 0 2px #fff; }
}

/* حركة الموجة الضوئية */
@keyframes shine {
  0% { transform: rotate(45deg) translateX(-100%); opacity: 0; }
  50% { transform: rotate(45deg) translateX(100%); opacity: 0.4; }
  100% { transform: rotate(45deg) translateX(300%); opacity: 0; }
}

/* عند الضغط على الزر */
.wpcf7-submit:active {
  transform: scale(0.96);
  box-shadow: 0 2px 8px rgba(156, 11, 67, 0.6);
}

/* تأثير إضافي عند الضغط على الأيقونة */
.wpcf7-submit:active::before {
  transform: translateY(-3px) rotate(-15deg);
  text-shadow: 0 0 10px #fff, 0 0 14px #f5c0d9;
}
