/* =============================
🪞 Eli Sacred Forms – تحفة المسك والعنبر الرمادية
============================= */
html, body {
  height: 100%;
}
 
.analysis-form-container.vibra-bg-ash-3 {
  /* مخفي افتراضيًا
  
  
  */
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  backdrop-filter: blur(6px);
  background: linear-gradient(135deg, #fdf7e3, #fffbea);
  min-height: 100vh;
  width: 100%;
  padding: 50px 20px;
  border-radius: 30px;
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  color: #444;
  position: relative;
  animation: fadeInSoftAsh 0.8s ease forwards;
  transition: all 0.3s ease-in-out;
  
  scroll-margin-top: 120px; /* الجديد */
}

.analysis-form-container.vibra-bg-ash-3:hover {
  background: linear-gradient(135deg, #fffde7, #fef4c5);
  box-shadow: 0 14px 40px rgba(180, 180, 180, 0.12);
  transform: translateY(-4px) scale(1.01);
}

/* 🌌 صندوق زجاجي */
.analysis-form-container.vibra-bg-ash-3 .form-glass-box {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 24px;
  padding: 50px 30px;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.04),
              0 0 30px rgba(212, 175, 55, 0.08);
  max-width: 720px;
  width: 100%;
  text-align: right;
  transition: all 0.4s ease-in-out;
}

.analysis-form-container.vibra-bg-ash-3 .form-glass-box:hover {
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05),
              0 0 40px rgba(212, 175, 55, 0.1);
  transform: scale(1.008);
}

/* 🖋️ العنوان */
.analysis-form-container.vibra-bg-ash-3 .form-heading {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 32px;
  color: #444;
  text-shadow: 0 0 4px rgba(0,0,0,0.05);
}

/* ✍️ الأسئلة */
.analysis-form-container.vibra-bg-ash-3 .eli-question {
  margin-bottom: 24px;
}

.analysis-form-container.vibra-bg-ash-3 .eli-question label {
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
  color: #555;
  font-weight: 600;
}

.analysis-form-container.vibra-bg-ash-3 .eli-question select {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  color: #333;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.analysis-form-container.vibra-bg-ash-3 .eli-question select:focus {
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* ✨ زر الإرسال */
.analysis-form-container.vibra-bg-ash-3 .eli-next-button-container {
  display: flex;
  justify-content: center;
}

.analysis-form-container.vibra-bg-ash-3 .form-submit-btn {
  background: linear-gradient(135deg, #FFD700, #fce58b);
  color: #111;
  font-weight: bold;
  border-radius: 8px;
  padding: 14px 28px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease-in-out;
}

.analysis-form-container.vibra-bg-ash-3 .form-submit-btn:hover {
  background: linear-gradient(135deg, #fff59d, #fffde7);
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* 🌿 الجملة التحتية */
.analysis-form-container.vibra-bg-ash-3 .form-footer-quote {
  text-align: center;
  font-size: 15px;
  margin-top: 16px;
  color: #666;
  font-style: italic;
  opacity: 0.8;
}

/* ✨ حركة دخول */
@keyframes fadeInSoftAsh {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.analysis-form-container .divider-glass {
  height: 2px;
  width: 80%;
  margin: 50px auto;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05),
    rgba(212, 175, 55, 0.3),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 1px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
}

.analysis-form-container.vibra-bg-ash-3 .form-error-message {
  color: #f88;
  font-size: 14px;
  margin-top: 6px;
  text-align: center;
  font-style: italic;
  transition: opacity 0.3s ease;
}


/* 📱 Responsive */
@media (max-width: 480px) {
 .analysis-form-container.vibra-bg-ash-3 .form-glass-box {
    padding: 30px 15px;
    border-radius: 20px;
  }

.analysis-form-container.vibra-bg-ash-3 {
  min-height: calc(100dvh);
}

  .analysis-form-container.vibra-bg-ash-3 .form-heading {
    font-size: 20px;
  }

  .analysis-form-container.vibra-bg-ash-3 .eli-question label {
    font-size: 16px;
  }

  .analysis-form-container.vibra-bg-ash-3 .eli-question select {
    font-size: 16px;
    padding: 10px;
  }

  .analysis-form-container.vibra-bg-ash-3 .form-submit-btn {
    font-size: 16px;
    padding: 12px 24px;
  }

  .analysis-form-container.vibra-bg-ash-3 .form-footer-quote {
    font-size: 12px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .analysis-form-container.vibra-bg-ash-3 .form-heading {
    font-size: 22px;
  }

  .analysis-form-container.vibra-bg-ash-3 .eli-question label {
    font-size: 16px;
  }

  .analysis-form-container.vibra-bg-ash-3 .form-submit-btn {
    font-size: 16px;
    padding: 12px 26px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .analysis-form-container.vibra-bg-ash-3 .form-heading {
    font-size: 24px;
  }

  .analysis-form-container.vibra-bg-ash-3 .eli-question label {
    font-size: 17px;
  }

  .analysis-form-container.vibra-bg-ash-3 .form-submit-btn {
    font-size: 17px;
    padding: 13px 28px;
  }
}


.analysis-form-container.vibra-bg-ash-3 {
  z-index: 10;
}

.analysis-form-container.vibra-bg-ash-3 .form-submit-btn {
  z-index: 11;
  position: relative;
}

/* 🟤 الحاوية الرئيسية لكل نوع علاقة */
.analysis-free.analysis-form-container {
  backdrop-filter: blur(4px);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 15px;
  border-radius: 30px;
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  color: #ccc;
  position: relative;
  animation: fadeInSoft 0.8s ease forwards;
  transition: all 0.3s ease-in-out;
  
}

.analysis-free.analysis-form-container:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
  transition: all 0.3s ease-in-out;
}


/* 🌌 الفورم الأول – Midnight 2 */
.analysis-free.vibra-bg-midnight-2 {
  background: linear-gradient(135deg, rgba(17,31,31,0.9), rgba(28,44,44,0.95));
  animation: slowGlow2 10s ease-in-out infinite alternate;
}

@keyframes slowGlow2 {
  0% { box-shadow: 0 0 20px rgba(255, 217, 102, 0.05); }
  100% { box-shadow: 0 0 40px rgba(255, 217, 102, 0.1); }
}

/* 🌌 الفورم الثاني – Midnight 3 */
.analysis-free.vibra-bg-midnight-3 {
  background: linear-gradient(135deg, rgba(20,25,35,0.9), rgba(35,40,55,0.95));
  animation: slowGlow3 12s ease-in-out infinite alternate;
}

@keyframes slowGlow3 {
  0% { box-shadow: 0 0 15px rgba(255, 217, 102, 0.04); }
  100% { box-shadow: 0 0 35px rgba(255, 217, 102, 0.12); }
}

/* 🌌 الفورم الثالث – Midnight 4 */
.analysis-free.vibra-bg-midnight-4 {
  background: linear-gradient(135deg, rgba(25,20,40,0.9), rgba(45,35,65,0.95));
  animation: slowGlow4 14s ease-in-out infinite alternate;
}

@keyframes slowGlow4 {
  0% { box-shadow: 0 0 25px rgba(255, 217, 102, 0.03); }
  100% { box-shadow: 0 0 45px rgba(255, 217, 102, 0.1); }
}

/* 🌌 الفورم الرابع – Midnight 5 */
.analysis-free.vibra-bg-midnight-5 {
  background: linear-gradient(135deg, rgba(30,25,20,0.9), rgba(55,45,35,0.95));
  animation: slowGlow5 11s ease-in-out infinite alternate;
}

@keyframes slowGlow5 {
  0% { box-shadow: 0 0 18px rgba(255, 217, 102, 0.04); }
  100% { box-shadow: 0 0 38px rgba(255, 217, 102, 0.11); }
}

/* 🌌 الفورم الخامس – Midnight 6 */
.analysis-free.vibra-bg-midnight-6 {
  background: linear-gradient(135deg, rgba(10,15,25,0.9), rgba(20,25,35,0.95));
  animation: slowGlow6 13s ease-in-out infinite alternate;
}

@keyframes slowGlow6 {
  0% { box-shadow: 0 0 22px rgba(255, 217, 102, 0.03); }
  100% { box-shadow: 0 0 42px rgba(255, 217, 102, 0.1); }
}

/* ✨ الصندوق الزجاجي */
.analysis-free.analysis-form-container .form-glass-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 25px;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.02),
              0 0 20px rgba(255, 215, 0, 0.03);
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  text-align: right;
  transition: all 0.4s ease-in-out;
}

.analysis-free.analysis-form-container .form-glass-box:hover {
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.04),
              0 0 30px rgba(255, 215, 0, 0.07);
  transform: scale(1.01);
}


/* 🪞 العنوان */
.analysis-free.analysis-form-container h3.form-heading {
  background: linear-gradient(90deg, #ffd700, #fff8c2);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
   font-size: 26px;
  font-weight: bold;
   margin-bottom: 32px;
}

/* ✍️ الأسئلة */
.analysis-free.analysis-form-container .eli-question {
  margin-bottom: 24px;
}

.analysis-free.analysis-form-container .eli-question label {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 600;
}

.analysis-free.analysis-form-container .eli-question select {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #eee;
  outline: none;
  font-family: 'Noto Sans Arabic', sans-serif;
  transition: border 0.3s ease;
}

.analysis-free.analysis-form-container .eli-question select:focus {
  border-color: #FFD700;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* ✨ زر الإرسال */
.analysis-free.analysis-form-container .eli-next-button-container {
  display: flex;
  justify-content: center;
}

.analysis-free.analysis-form-container .form-submit-btn{
  display: inline-block;
  padding: 14px 40px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 8px;
  background: linear-gradient(135deg, #FFD700, #fce58b);
  color: #111f1f;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.05),
              0 0 30px rgba(255, 215, 0, 0.2);
  cursor: pointer;
}

.analysis-free.analysis-form-container .form-submit-btn:hover {
  background: linear-gradient(135deg, #ffe267, #fff4a8);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

/* ✨ الجملة تحت الزر */
.analysis-free.analysis-form-container p.form-footer-quote {
  font-size: 14px;
  margin-top: 10px;
   font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.05);
  font-weight: 500;
  line-height: 1.8;
  opacity: 0.9;
  animation: fadeInSoft 1s ease forwards;
}

.analysis-free.analysis-form-container .form-error-message {
  color: #f88;
  font-size: 14px;
  margin-top: 6px;
  text-align: center;
  font-style: italic;
  transition: opacity 0.3s ease;
}

/* ✨ حركة دخول */
@keyframes fadeInSoft {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.analysis-free.analysis-form-container .divider-glass {
  height: 2px;
  width: 70%;
  margin: 40px auto;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 217, 102, 0.3),
    rgba(255, 255, 255, 0.05)
  );
  animation: dividerPulse 6s infinite alternate;
}

@keyframes dividerPulse {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* 1️⃣ 📱 موبايل أول (≤ 480px) */
@media (max-width: 480px) {
  .analysis-free.analysis-free,
  .form-glass-box.form-glass-box,
  .form-glass-box.form-glass-box h3.form-heading,
  .eli-question.eli-question label,
  .eli-question.eli-question select,
  .form-submit-btn.form-submit-btn {
    /* اجبارًا على Elementor */
  }

  .analysis-free.analysis-form-container {
    padding: 20px 10px;
  }

  .analysis-free.analysis-form-container .form-glass-box {
    padding: 20px 12px;
    max-width: 95%;
  }

  .analysis-free.analysis-form-container h3.form-heading {
    font-size: 20px;
  }

 .analysis-free.analysis-form-container .eli-question label {
    font-size: 16px;
  }

 .analysis-free.analysis-form-container .eli-question select {
    font-size: 16px;
    padding: 9px;
  }

  .analysis-free.analysis-form-container .form-submit-btn {
    font-size: 16px;
    padding: 9px 18px;
  }
  
  .analysis-free.analysis-form-container p.form-footer-quote {
  font-size: 11px;
  }
}


/* 2️⃣ 📲 موبايل كبير / تابلت عمودي (481px – 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .analysis-free.analysis-free,
  .form-glass-box.form-glass-box,
  .form-glass-box.form-glass-box h3.form-heading,
  .eli-question.eli-question label,
  .eli-question.eli-question select,
  .form-submit-btn.form-submit-btn {
    /* اجبارًا على Elementor */
  }

  .analysis-free.analysis-form-container {
    padding: 25px 15px;
  }

  .analysis-free.analysis-form-container .form-glass-box {
    padding: 25px 18px;
    max-width: 90%;
  }

  .analysis-free.analysis-form-container h3.form-heading {
    font-size: 20px;
  }

   .analysis-free.analysis-form-container .eli-question label {
    font-size: 16px;
  }

  .analysis-free.analysis-form-container .eli-question select {
    font-size: 16px;
    padding: 10px;
  }

  .analysis-free.analysis-form-container .form-submit-btn {
    font-size: 16px;
    padding: 10px 22px;
  }
  
  .analysis-free.analysis-form-container p.form-footer-quote {
     font-size: 14px;
  }
}


/* 3️⃣ 💻 تابلت أفقي وما فوق (768px – 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .analysis-free.analysis-free,
  .form-glass-box.form-glass-box,
  .form-glass-box.form-glass-box h3.form-heading,
  .eli-question.eli-question label,
  .eli-question.eli-question select,
  .form-submit-btn.form-submit-btn {
    /* اجبارًا على Elementor */
  }

  .analysis-free.analysis-form-container {
    padding: 30px 20px;
  }

   .analysis-free.analysis-form-container .form-glass-box {
    padding: 30px 20px;
    max-width: 85%;
  }

  .analysis-free.analysis-form-container h3.form-heading {
    font-size: 22px;
  }

   .analysis-free.analysis-form-container.eli-question label {
    font-size: 17px;
  }

   .analysis-free.analysis-form-container .eli-question select {
    font-size: 17px;
    padding: 11px;
  }

   .analysis-free.analysis-form-container .form-submit-btn {
    font-size: 17px;
    padding: 11px 24px;
  }
  
    .analysis-free.analysis-form-container p.form-footer-quote {
     font-size: 16px;
  }
}




/* 🌌 Eli Paid Form – النسخة النهائية الذهبية */

/* ✅ الحاوية العامة */


/* ✅ الزجاج الفاخر */
.paid-form-glass {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 50px 40px;
  max-width: 800px;
  width: 100%;
  margin: auto;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paid-form-glass:hover {
  transform: scale(1.01) translateY(-3px);
  box-shadow: 0 0 80px rgba(255, 215, 0, 0.2);
}

/* 🌌 شعار إيلي داخل الفورم المدفوع */
.eli-logo-paid-container {
  text-align: center;
  margin-bottom: 30px;
  animation: fadeInDrop 1.2s ease forwards;
  opacity: 0;
}

.eli-logo-paid-container .eli-logo-paid {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  box-shadow: 0 0 30px rgba(247, 226, 152, 0.3), 0 0 60px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.eli-logo-paid-container .eli-logo-paid:hover {
  transform: scale(1.06) rotate(1deg);
  box-shadow: 0 0 50px rgba(247, 226, 152, 0.5), 0 0 80px rgba(255, 215, 0, 0.3);
}

/* ✨ أنميشن */
@keyframes fadeInDrop {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 📱 موبايل */
@media (max-width: 480px) {
  .eli-logo-paid-container .eli-logo-paid {
    width: 60px;
    height: 60px;
  }
}

/* 📲 تابلت عمودي */
@media (min-width: 481px) and (max-width: 767px) {
  .eli-logo-paid-container .eli-logo-paid {
    width: 75px;
    height: 75px;
  }
}

/* 💻 تابلت أفقي / ديسكتوب متوسط */
@media (min-width: 768px) and (max-width: 1024px) {
  .eli-logo-paid-container .eli-logo-paid {
    width: 80px;
    height: 80px;
  }
}


/* ✅ العناوين */
.paid-form-glass .eli-paid-heading {
  font-size: 34px;
  font-weight: 900;
  color: #f7e298;
  margin-bottom: 8px;
  line-height: 1.4;
}

.paid-form-glass .eli-paid-subtext {
  font-size: 17px;
  color: #d6cdbb;
  margin-bottom: 35px;
}

/* ✅ السؤال والمدخلات */
.paid-form-glass .eli-question {
  margin-bottom: 25px;
}

 .paid-form-glass .eli-question label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #e0d7c3;
  margin-bottom: 8px;
}

.paid-form-glass .eli-question textarea,
.paid-form-glass .eli-question select {
  width: 100%;
  padding: 12px 14px;
  font-size: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f7e298;
  backdrop-filter: blur(3px);
}

.paid-form-glass input[type="text"],
.paid-form-glass input[type="email"],
.paid-form-glass input[type="password"],
.paid-form-glass input,
.paid-form-glass textarea {
  caret-color: #f7e298 !important;
}


.paid-form-glass .eli-question textarea:focus,
.eli-question select:focus {
  border-color: #f7e298;
  box-shadow: 0 0 5px rgba(247, 226, 152, 0.2);
}

/* تأكيد لون النص placeholder داخل textarea */
.paid-form-glass .eli-question textarea::placeholder {
  color: rgba(247, 226, 152, 0.5) !important;
  font-style: italic !important;
}

/* ✅ الأزرار */
.paid-form-glass .eli-next-button-container {
  text-align: center;
  margin-top: 30px;
}

.paid-form-glass .eli-next-section-btn,
.paid-form-glass .eli-submit-btn {
  background: linear-gradient(135deg, #FFD700, #fce58b);
  color: #111f1f;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.paid-form-glass .eli-next-section-btn:hover,
.paid-form-glass .eli-submit-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.25);
}

/* ✅ السكشنات */
.eli-form-section {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  transform: translateY(20px) scale(0.98);
}

.eli-form-section.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateY(0) scale(1);
  display: flex;
  flex-direction: column;
}

/* ✅ ألوان الخلفيات */
.eli-form-section.vibra-bg-midnight-1 { background: linear-gradient(135deg, #2c2115, #3e2f1d); }
.eli-form-section.vibra-bg-midnight-2 { background: linear-gradient(135deg, #32261a, #443622); }
.eli-form-section.vibra-bg-midnight-3 { background: linear-gradient(135deg, #392e21, #4b3d27); }
.eli-form-section.vibra-bg-midnight-4 { background: linear-gradient(135deg, #413526, #53462e); }
.eli-form-section.vibra-bg-midnight-5 { background: linear-gradient(135deg, #4a3f2b, #5c5035); }

/* ✅ الملاحظات */
.paid-form-glass .eli-warning-text {
  color: #d6cdbb;
  margin-top: 15px;
  font-size: 14px;
  font-style: italic;
}

@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

.shake-warning {
  animation: shake 0.6s ease;
}

/* 🌌 دخول أسطوري للقسم الأول */
#section-1.eli-form-section.active  .paid-form-glass {
  animation: eliHeroFadeIn 1.2s ease forwards;
}

@keyframes eliHeroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    box-shadow: 0 0 0 rgba(255, 215, 0, 0);
  }
  50% {
    opacity: 0.7;
    transform: translateY(10px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.15);
  }
}

#section-1.eli-form-section.active .eli-paid-heading,
#section-1.eli-form-section.active .eli-paid-subtext {
  animation: eliTextFadeIn 1s ease forwards;
  opacity: 0;
}

@keyframes eliTextFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
    text-shadow: none;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  }
}



/* ✅ موبايل */
@media (max-width: 480px) {
  .paid-form-glass {
    padding: 30px 20px;
  }

  .paid-form-glass .eli-paid-heading {
    font-size: 22px;
  }

  .paid-form-glass .eli-paid-subtext {
    font-size: 16px;
  }

  .paid-form-glass .eli-question label {
    font-size: 16px;
  }
  
  .paid-form-glass .eli-question textarea {
   font-size: 16px; /* لتجنب الزوم */
  }

    .paid-form-glass .eli-question select {
   font-size: 16px; /* يبقى أنيق وصغير */
  }


  .paid-form-glass .eli-next-section-btn,
  .paid-form-glass .eli-submit-btn {
    padding: 10px 20px;
  }
}

/* ✅ تابلت عمودي */
@media (min-width: 481px) and (max-width: 767px) {
  .paid-form-glass {
    padding: 40px 25px;
  }

  .paid-form-glass .eli-paid-heading {
    font-size: 28px;
  }

  .paid-form-glass .eli-paid-subtext {
    font-size: 16px;
  }

  .paid-form-glass .eli-question label {
    font-size: 16px;
  }

  .paid-form-glass .eli-question textarea {
   font-size: 16px; /* لتجنب الزوم */
  }

    .paid-form-glass .eli-question select {
   font-size: 16px; /* يبقى أنيق وصغير */
  }

  .paid-form-glass .eli-next-section-btn,
  .paid-form-glass .eli-submit-btn {
    font-size: 16px;
    padding: 12px 28px;
  }
}

/* ✅ تابلت أفقي وديسكتوب متوسط */
@media (min-width: 768px) and (max-width: 1024px) {
  .paid-form-glass {
    padding: 50px 35px;
  }

  .paid-form-glass .eli-paid-heading {
    font-size: 32px;
  }

  .paid-form-glass .eli-paid-subtext {
    font-size: 17px;
  }

  .paid-form-glass .eli-question label {
    font-size: 17px;
  }

  .paid-form-glass .eli-question textarea,
  .paid-form-glass .eli-question select {
   font-size: 17px; /* ⬅️ هنا التعديل */
  }

  .paid-form-glass .eli-next-section-btn,
  .paid-form-glass .eli-submit-btn {
    font-size: 17px;
    padding: 14px 30px;
  }
}


/* ⏳ شاشة اللودر */
.free-loader-container {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.free-loader-container.active {
  display: flex;
}

.free-loader-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

.free-loader-container .free-loader-text {
  color: #d4af37;
  font-size: 20px;
  font-family: 'Noto Sans Arabic', sans-serif;
  text-align: center;
  font-weight: bold;
}

/* 🎭 شاشة عرض النتيجة */
.free-analysis-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0f1a1a, #000);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  z-index: 100000;
  overflow-y: auto;

  /* الجديد */
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.free-analysis-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}


/* ✨ الصندوق الذهبي */
.free-analysis-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 30px;
  padding: 60px 40px;
  max-width: 900px;
  width: 100%;
  font-family: 'Noto Sans Arabic', sans-serif;
  color: #d4af37;
  font-size: 20px;
  line-height: 1.9;
  position: relative;
  animation: fadeInRise 1s ease both;
  text-align: right;

  /* ✅ الجديد */
  margin: auto;
  align-self: center;
}


/* العنوان */
.free-analysis-overlay h3{
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
  color: #d4af37;
}

.free-analysis-overlay p {
  color: #f5f5f5 !important;
  font-size: 20px;
  line-height: 1.9;
}

.free-analysis-box strong {
  color: #d4af37;
}

/* زر النسخ */
.free-analysis-box .eli-copy-button {
  margin-top: 30px;
  background: linear-gradient(135deg, #d4af37, #b89b2b);
  color: #111;
  padding: 14px 26px;
  font-size: 17px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.free-analysis-box .eli-copy-button:hover {
  background: linear-gradient(135deg, #e0c160, #c2a437);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}


.free-analysis-box .free-close-button {
  position: absolute;
  top: 20px;
  left: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 4px;
  transition: transform 0.3s ease;
}

.free-analysis-box .free-close-button:hover {
  transform: rotate(90deg) scale(1.1);
}

.free-analysis-box .free-close-icon {
  width: 28px;
  height: 28px;
  color: #d4af37; /* الذهبي الأساسي */
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

.free-close-button:hover .free-close-icon {
  color: #b89b2b; /* ذهبي أدكن على الهوفر */
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}



/* حركة الدخول */
@keyframes fadeInRise {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 📱 هواتف صغيرة ≤ 480px */
@media (max-width: 480px) {
  .free-loader-container .free-loader-text {
    font-size: 16px;
  }

  .free-analysis-box {
    font-size: 16px;
    padding: 40px 20px;
  }

  .free-analysis-overlay h3 {
    font-size: 20px;
  }

  .free-analysis-overlay p {
    font-size: 16px;
  }

  .free-analysis-box .eli-copy-button {
    font-size: 14px;
    padding: 10px 20px;
  }

  .free-analysis-box .free-close-icon {
    width: 22px;
    height: 22px;
  }
}

/* 📱 موبايل كبير / تابلت عمودي: 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
  .free-loader-container .free-loader-text {
    font-size: 16px;
  }

  .free-analysis-box {
    font-size: 16px;
    padding: 50px 30px;
  }

  .free-analysis-overlay h3 {
    font-size: 22px;
  }

  .free-analysis-overlay p {
    font-size: 16px;
  }

  .free-analysis-box .eli-copy-button {
    font-size: 15px;
    padding: 12px 24px;
  }

  .free-analysis-box .free-close-icon {
    width: 24px;
    height: 24px;
  }
}

/* 📱 تابلت أفقي وما فوق: 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .free-loader-container .free-loader-text {
    font-size: 18px;
  }

  .free-analysis-box {
    font-size: 18px;
    padding: 60px 40px;
  }

  .free-analysis-overlay h3 {
    font-size: 24px;
  }

  .free-analysis-overlay p {
    font-size: 18px;
  }

  .free-analysis-box .eli-copy-button {
    font-size: 16px;
    padding: 14px 26px;
  }

  .free-analysis-box .free-close-icon {
    width: 26px;
    height: 26px;
  }
}

/* 💻 شاشات كبيرة > 1024px */
@media (min-width: 1025px) {
  .free-loader-container .free-loader-text {
    font-size: 20px;
  }

  .free-analysis-box {
    font-size: 20px;
  }

  .free-analysis-overlay h3 {
    font-size: 28px;
  }

  .free-analysis-overlay p {
    font-size: 20px;
  }

  .free-analysis-box .eli-copy-button {
    font-size: 17px;
  }

  .free-analysis-box .free-close-icon {
    width: 28px;
    height: 28px;
  }
}

/* ⏳ شاشة اللودر */
.free-loader-container {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  z-index: 99999;
  justify-content: center;
  align-items: center !important;
  height: 100vh;
}

.free-loader-container.active {
  display: flex;
}

.free-loader-container .free-loader-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

.free-loader-container .free-loader-text {
  color: #FFD700;
  font-size: 20px;
  font-family: 'Noto Sans Arabic', sans-serif;
  text-align: center;
  font-weight: bold;
  
}

/* 🎭 شاشة عرض النتيجة */
.free-analysis-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0f1a1a, #000);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  z-index: 100000;
  overflow-y: auto;
}

/* ✨ الصندوق الذهبي */
.free-analysis-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 30px;
  padding: 60px 40px;
  max-width: 900px;
  width: 100%;
  font-family: 'Noto Sans Arabic', sans-serif;
  color: #FFD700;
  font-size: 20px;
  line-height: 1.9;
  position: relative;
  animation: fadeInRise 1s ease both;
  text-align: right;

  /* ✅ الجديد */
  margin: auto;
  align-self: center;
}


/* العنوان */
.free-analysis-overlay h3{
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
  color: #FFD700;
}

.free-analysis-overlay p {
  color: #f5f5f5;
  font-size: 20px;
  line-height: 1.9;
}

.free-analysis-box strong {
  color: #FFD700;
}

/* زر النسخ */
.free-analysis-overlay .eli-copy-button-paid {
  margin-top: 30px;
  background: linear-gradient(135deg, #FFD700, #f5d96f);
  color: #111;
  padding: 14px 26px;
  font-size: 17px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.free-analysis-overlay .eli-copy-button-paid:hover {
  background: #ffe267;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

/* زر الإغلاق */
.free-close-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.free-analysis-box .free-close-button {
  position: absolute;
  top: 20px;
  left: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 4px;
  transition: transform 0.3s ease;
}

.free-analysis-box .free-close-button:hover {
  transform: rotate(90deg) scale(1.1);
}

.free-analysis-box .free-close-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFD700; /* الذهبي الأساسي */
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

.free-close-button:hover .free-close-icon {
  color: #b89b2b; /* ذهبي أدكن على الهوفر */
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

/* حركة الدخول */
@keyframes fadeInRise {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.eli-pending-message {
  font-size: 22px;
  color: #FFD700;
  text-align: center;
  line-height: 1.8;
  animation: glowPulse 2s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    opacity: 0.7;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  }
  100% {
    opacity: 0.7;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
  }
}



/* 📱 هواتف صغيرة ≤ 480px */
@media (max-width: 480px) {
   .free-loader-container .free-loader-text {
    font-size: 16px;
  }

  .free-analysis-box {
    font-size: 16px;
    padding: 30px 15px;
  }

  .free-analysis-overlay h3 {
    font-size: 18px;
  }

  .free-analysis-overlay p {
    font-size: 16px;
  }

  .free-analysis-overlay .eli-copy-button-paid {
    font-size: 14px;
    padding: 10px 18px;
  }

  .free-analysis-box .free-close-icon {
    width: 22px;
    height: 22px;
  }
}

/* 📱 موبايل كبير / تابلت عمودي: 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
  .free-loader-box .free-loader-text {
    font-size: 16px;
  }

  .free-analysis-box {
    font-size: 16px;
    padding: 40px 20px;
  }

  .free-analysis-overlay h3 {
    font-size: 22px;
  }

  .free-analysis-overlay p {
    font-size: 16px;
  }

  .free-analysis-overlay .eli-copy-button-paid {
    font-size: 15px;
    padding: 12px 22px;
  }

  .free-analysis-box .free-close-icon {
    width: 24px;
    height: 24px;
  }
}

/* 📱 تابلت أفقي وما فوق: 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .free-loader-box .free-loader-text {
    font-size: 18px;
  }

  .free-analysis-box {
    font-size: 18px;
    padding: 50px 30px;
  }

  .free-analysis-overlay h3 {
    font-size: 24px;
  }

  .free-analysis-overlay p {
    font-size: 18px;
  }

  .free-analysis-overlay .eli-copy-button-paid {
    font-size: 16px;
    padding: 13px 24px;
  }

  .free-analysis-box .free-close-icon {
    width: 26px;
    height: 26px;
  }
}

/* 💻 شاشات كبيرة > 1024px */
@media (min-width: 1025px) {
  .free-loader-box .free-loader-text {
    font-size: 20px;
  }

  .free-analysis-box {
    font-size: 20px;
  }

  .free-analysis-overlay h3 {
    font-size: 28px;
  }

  .free-analysis-overlay p {
    font-size: 20px;
  }

  .free-analysis-overlay .eli-copy-button-paid {
    font-size: 17px;
  }

  .free-analysis-box .free-close-icon {
    width: 28px;
    height: 28px;
  }
}
















