/* 3.1. المتغيرات والألوان */
:root {
  --primary: #3b82f6;
  --accent: #10b981;
  --bg-dark: #020617;
  --text-gray: #94a3b8;
  
  --neon-blue: #00f3ff;
  --neon-green: #00ff9d;
  --neon-purple: #9d4edd;
  --gold: #fbbf24;
  --glow-intensity: 0.8; 
  
  --bg-gradient: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e293b 100%);
  --card-bg: rgba(15, 23, 42, 0.95);
  --card-border: rgba(59, 130, 246, 0.4);

  --mouse-x: 50%;
  --mouse-y: 50%;
  --nav-height: 70px; 
}

/* 3.2. إعادة تعيين وتنسيقات أساسية */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--bg-gradient);
  color: white;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding-top: var(--nav-height); 
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 20px;
  position: relative;
  perspective: 1200px;
}

/* 3.3. الخلفية والتأثيرات العالمية */
body::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(59, 130, 246, calc(0.3 * var(--glow-intensity))) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, calc(0.2 * var(--glow-intensity))) 0%, transparent 40%),
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(251, 191, 36, 0.1) 0%, transparent 70%);
  z-index: -2;
  filter: blur(25px);
  transform: translateZ(0);
  transition: background 0.5s ease;
}

.grid-3d {
  position: fixed; top: 0; right: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(0, 243, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 243, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1; opacity: 0.5; perspective: 800px; transform-style: preserve-3d;
  animation: gridMove3D 50s linear infinite, gridRotate 20s ease-in-out infinite alternate;
}

.particles {
  position: fixed; width: 100%; height: 100%; z-index: -1; pointer-events: none;
}

.particle {
  position: absolute; border-radius: 50%; opacity: 0.3; will-change: transform, opacity;
}

/* 3.4. حركات الأنيميشن (Animation Keyframes) */
@keyframes gridMove3D {
  0%, 100% { transform: translate(0, 0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translate(50px, 50px) rotateX(5deg) rotateY(-5deg); }
}
@keyframes gridRotate {
  from { transform: rotateY(0deg) scale(1); }
  to { transform: rotateY(5deg) scale(1.05); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseNeon {
  0%, 100% { box-shadow: 0 0 15px var(--primary), 0 0 30px var(--neon-blue); }
  50% { box-shadow: 0 0 30px var(--neon-blue), 0 0 60px var(--primary); }
}
@keyframes glitch {
  0% { text-shadow: 2px 0 var(--neon-blue), -2px 0 var(--neon-green); transform: translateZ(0); }
  20% { text-shadow: -2px 2px var(--neon-blue), 2px -2px var(--neon-green); }
  40% { text-shadow: 4px -4px var(--neon-purple), -4px 4px var(--neon-blue); }
  60% { text-shadow: -4px 4px var(--neon-green), 4px -4px var(--neon-purple); }
  80% { text-shadow: 6px 0 var(--neon-blue), -6px 0 var(--neon-green); }
  100% { text-shadow: 2px 0 var(--neon-blue), -2px 0 var(--neon-green); transform: translateZ(0); }
}
@keyframes shimmerRainbow {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 10px #16a34a; }
  50% { box-shadow: 0 0 30px #22c55e; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes scanLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}


/* 3.5. مكونات الهيدر (Header Components) */
header {
  padding: 0; 
  position: relative; overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5), inset 0 -20px 50px rgba(59, 130, 246, 0.1);
  text-align: center;
}
h1 {
  font-size: 50px; 
  font-weight: 900; margin: 0;
  background: linear-gradient(to right, var(--neon-blue), var(--primary), var(--accent), var(--neon-green), var(--neon-purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-size: 300% auto;
  animation: shimmerRainbow 8s linear infinite, glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.5), 0 0 10px var(--neon-blue);
  padding: 15px 40px; border: 2px solid transparent;
  border-image: linear-gradient(45deg, var(--neon-blue), var(--neon-purple)) 1;
  transform: translateZ(0);
}
.tagline {
  color: var(--text-gray); margin-top: 20px; font-size: 24px; display: inline-block;
  padding: 10px 40px; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(15px); 
  border-radius: 30px; border: 2px solid rgba(59, 130, 246, 0.5);
  animation: pulseNeon 3s infinite; box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* شريط التنقل الثابت */
.sticky-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: var(--nav-height); 
  background: rgba(2, 6, 23, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
  z-index: 1100; 
  display: flex;
  justify-content: center;
  align-items: center;
}
.sticky-nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  margin: 0 15px;
  padding: 5px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}
.sticky-nav a:hover, .sticky-nav a.active {
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
  transform: scale(1.05);
}
.sticky-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 3px;
  background: var(--neon-blue);
  box-shadow: 0 0 10px var(--neon-blue);
  transition: width 0.3s ease;
}
.sticky-nav a:hover::after, .sticky-nav a.active::after {
  width: 100%;
}

/* 3.6. مكونات قسم البطل (Hero Section) */
.hero {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 100px; align-items: center; margin-top: 40px; animation: fadeInUp 1.5s ease-out;
}
.hero-img-container { perspective: 1500px; transform-style: preserve-3d; }
.hero-img-container::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: calc(100% + 40px); height: calc(100% + 40px); 
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
  border-radius: 30px; z-index: -1; opacity: 0.6; filter: blur(40px); 
  animation: pulseNeon 6s infinite;
}
.hero-img-frame {
  transform: rotateY(-15deg) rotateX(8deg) translateZ(50px);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1.2);
}
.hero-img-container:hover .hero-img-frame {
  transform: rotateY(0deg) rotateX(0deg) translateZ(100px);
}
.hero-img {
  width: 100%; border-radius: 30px; filter: brightness(1.1) contrast(1.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 1), 0 0 80px rgba(59, 130, 246, 0.6), 0 0 150px rgba(157, 78, 221, 0.4);
  transition: all 0.8s ease; transform: translateZ(0);
}
.hero-text h2 {
  font-size: 56px; margin-bottom: 25px;
  background: linear-gradient(to right, #fff, var(--neon-blue), var(--neon-green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}
.hero-text h2 span {
  background: linear-gradient(to right, var(--neon-blue), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: float 3s ease-in-out infinite; display: inline-block; transform: translateZ(0);
}
.hero-text p {
  color: #e2e8f0; font-size: 24px; line-height: 1.7; margin-bottom: 50px;
  border-right: 6px solid var(--neon-blue); background: rgba(15, 23, 42, 0.8);
  padding: 20px; border-radius: 15px; backdrop-filter: blur(15px);
}


/* 3.7. زر الدعوة للإجراء (CTA Button) */
.cta-btn {
  display: inline-flex; align-items: center; gap: 20px; text-decoration: none;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #22c55e 100%);
  background-size: 400% 100%; color: white; padding: 25px 55px; border-radius: 60px;
  font-weight: 900; font-size: 24px; position: relative; overflow: hidden;
  box-shadow: 0 25px 50px rgba(22, 163, 74, 0.7), 0 0 50px rgba(34, 197, 94, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: pulseGlow 2s infinite, shimmerRainbow 8s linear infinite;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateZ(0); transform-style: preserve-3d;
}
.cta-btn:hover {
  transform: translateY(-15px) scale(1.1) rotateX(10deg) translateZ(50px);
  background-position: 100% 0;
  box-shadow: 0 40px 80px rgba(22, 163, 74, 1), 0 0 80px rgba(34, 197, 94, 1);
}
.cta-btn i { font-size: 28px; animation: float 2s ease-in-out infinite; }


/* 3.8. تنسيق الأقسام العامة (General Sections) */
.section {
  margin-top: 50px; 
  scroll-margin-top: calc(var(--nav-height) + 20px); 
  animation: fadeInUp 1.5s ease-out both; padding: 40px;
  background: rgba(15, 23, 42, 0.5); backdrop-filter: blur(25px); border-radius: 30px;
  border: 2px solid rgba(59, 130, 246, 0.3); transform-style: preserve-3d;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 50px rgba(59, 130, 246, 0.1);
  transform: translateZ(0);
}
.section-title {
  font-size: 40px; margin-bottom: 50px; display: inline-block; padding-bottom: 25px;
  background: linear-gradient(to right, var(--neon-blue), var(--neon-green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(0, 243, 255, 0.5); position: relative;
}
.section-title::after {
  content: ''; position: absolute; bottom: 0; right: 0; width: 100px;
  height: 8px; background: linear-gradient(to left, var(--neon-blue), var(--neon-green));
  border-radius: 3px; box-shadow: 0 0 30px var(--neon-blue); animation: pulseNeon 3s infinite;
}

/* تنسيق قسم من نحن */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}
.about-text {
    font-size: 20px;
    line-height: 1.8;
    color: #e2e8f0;
    border-left: 6px solid var(--accent);
    padding-right: 20px;
}
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.stat-box {
    background: rgba(59, 130, 246, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--primary);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}
.stat-box h4 {
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
}
.stat-box p {
    font-size: 18px;
    color: var(--text-gray);
}


/* 4.0. تنسيقات نموذج الواتساب (Form Styling) */
.whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.whatsapp-form label {
    font-size: 20px;
    font-weight: 700;
    color: var(--neon-green);
    display: block;
    margin-bottom: 10px;
}

.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--primary);
    border-radius: 10px;
    background: #1e293b;
    color: #fff;
    font-size: 18px;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s;
}

.whatsapp-form input:focus,
.whatsapp-form select:focus,
.whatsapp-form textarea:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
    outline: none;
}

.whatsapp-form textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-whatsapp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    background: linear-gradient(135deg, #10b981 0%, #064e3b 100%);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 15px;
    font-size: 22px;
    font-weight: 900;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.7);
}

.submit-whatsapp-btn:hover {
    background: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 1);
}
/* نهاية تنسيقات النموذج */


/* 3.9. كروت الخدمات (Services Cards) */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 50px;
}
.service-card {
  background: rgba(15, 23, 42, 0.9); border: 2px solid var(--card-border);
  padding: 50px 30px; border-radius: 25px; transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative; overflow: hidden; min-height: 280px; text-align: center;
  transform-style: preserve-3d; will-change: transform; transform: translateZ(0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(59, 130, 246, 0.2);
}
.service-card::after {
  content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 100%;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
  z-index: -2; opacity: 0; border-radius: 27px; transition: opacity 0.6s; filter: blur(15px);
}
.service-card:hover {
  transform: translateY(-25px) scale(1.08) rotateY(15deg) translateZ(100px);
  background: rgba(15, 23, 42, 0.99);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(59, 130, 246, 0.5), 0 0 120px rgba(16, 185, 129, 0.4);
}
.service-card:hover::after { opacity: 0.8; animation: pulseNeon 2s infinite; }
.service-icon {
  font-size: 52px; color: var(--neon-green); margin-bottom: 25px;
  width: 90px; height: 90px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(16, 185, 129, 0.2); border-radius: 50%; transition: all 0.6s;
  transform: translateZ(0); box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}
.service-card:hover .service-icon {
  transform: rotateY(720deg) scale(1.5) translateZ(50px); color: var(--neon-blue);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.7);
}
.service-title {
  font-size: 24px; font-weight: 800; background: linear-gradient(to right, #fff, var(--neon-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-top: 15px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* 4.1. تنسيق الأسئلة الشائعة (FAQ) */
.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--card-border);
    border-radius: 15px;
    overflow: hidden;
}
.faq-question {
    background: rgba(59, 130, 246, 0.15);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    transition: background 0.3s;
}
.faq-question:hover {
    background: rgba(59, 130, 246, 0.3);
}
.faq-question i {
    transition: transform 0.3s;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: rgba(15, 23, 42, 0.9);
    padding: 0 20px;
}
.faq-answer p {
    padding: 20px 0;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* 3.10. الاتصال والتواصل الاجتماعي (أفقي مضمون لجميع الأجهزة) */
.contact-info {
  background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(20px); border-radius: 20px;
  padding: 20px; border: 2px solid rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.contact-info p {
  font-size: 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
  color: #e2e8f0; padding: 10px; background: rgba(255, 255, 255, 0.05);
  border-radius: 10px; border-right: 3px solid var(--neon-green);
}
.contact-info i { color: var(--neon-green); font-size: 18px; }
.phone-number {
  direction: ltr; font-family: monospace; letter-spacing: 1px; font-weight: bold; 
  font-size: 14px; background: rgba(15, 23, 42, 0.9); padding: 5px 8px; border-radius: 5px;
}

/* --- الحاوية: إجبار العناصر على الترتيب الأفقي --- */
.contact-grid {
  display: flex !important;           /* نظام مرن */
  flex-direction: row !important;     /* اتجاه أفقي (صف) */
  flex-wrap: wrap !important;         /* يسمح بالالتفاف لكن يحافظ على الأفقية */
  justify-content: center !important; /* توسيط العناصر */
  align-items: center !important;
  gap: 12px !important;               /* تقليل المسافة قليلاً لتتسع لأيقونات أكثر */
  margin-top: 25px;
  width: 100%;
}

/* --- الأيقونة (المكعب): حجم موزون (75px) لضمان الأفقية --- */
.social-link {
  width: 75px !important;       /* حجم مثالي (ليس صغيراً ولا ضخماً جداً) */
  height: 75px !important;      /* مربع */
  border-radius: 18px !important; 
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none; 
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15); 
  backdrop-filter: blur(5px);
  transition: transform 0.2s;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important; /* يمنع الأيقونة من الانكماش */
}

/* --- حجم الرمز داخل المكعب --- */
.social-link i { 
  font-size: 32px !important;   /* أيقونة واضحة */
  margin: 0 !important;
  display: block;
  line-height: 1 !important;
}

/* --- إخفاء النص (مهم جداً للأفقية) --- */
.social-link {
  font-size: 0 !important; 
}

/* --- الألوان --- */
.link-maps { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.link-wa { background: linear-gradient(135deg, #10b981, #22c55e); }
.link-instagram { background: linear-gradient(135deg, #833AB4, #E1306C); }
.link-snap { background: linear-gradient(135deg, #FFFC00, #FFFF66); }
.link-snap i { color: black !important; }
.link-tiktok { background: linear-gradient(135deg, #000000, #1f2937); }
.link-youtube { background: linear-gradient(135deg, #FF0000, #FF3333); }

/* تأثير اللمس */
.social-link:active { transform: scale(0.95); }




/* 3.11. الفوتر (Footer) */
footer {
  text-align: center; padding: 80px 20px; color: var(--text-gray);
  border-top: 2px solid rgba(59, 130, 246, 0.3); margin-top: 100px;
  background: linear-gradient(to bottom, transparent 0%, rgba(2, 6, 23, 0.8) 100%);
}
footer p {
  padding: 20px 50px; font-size: 22px; background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(20px); border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(59, 130, 246, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* 3.12. استجابة الشاشات الصغيرة (Media Queries) */
@media (max-width: 767px) {
  h1 { font-size: 34px; padding: 10px 15px; } /* تصغير العنوان للجوال */
  .hero-text h2 { font-size: 36px; }
  .cta-btn { font-size: 20px; padding: 20px 30px; width: 100%; justify-content: center; } /* زر كامل العرض */
  .tagline { font-size: 16px; padding: 8px 20px; }
  .section { padding: 25px 15px; } /* تقليل الحواف في الأقسام */
  
  /* تحسين شريط التنقل للجوال (أهم تعديل) */
  .sticky-nav {
    justify-content: flex-start; /* محاذاة لليمين */
    overflow-x: auto; /* تفعيل السحب */
    white-space: nowrap;
    padding: 0 10px;
    -webkit-overflow-scrolling: touch; /* سحب ناعم للآيفون */
  }
  .sticky-nav::-webkit-scrollbar {
    display: none; /* إخفاء شريط التمرير */
  }
  .sticky-nav a {
    flex-shrink: 0;
    margin: 0 5px;
    font-size: 14px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px; /* شكل كبسولة */
  }
  .sticky-nav a.active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--neon-green);
  }
}
/* =========================================
   تنسيقات قسم التواصل (فصل الأكواد للحماية)
   اضيفيها في نهاية ملف style.css
   ========================================= */

/* 1. ضبط تأخير الحركة بدلاً من style="animation-delay" */
.contact-delay {
    animation-delay: 0.4s;
}

/* 2. تنسيق الروابط وإزالة الخط التحتي بدلاً من style="text-decoration..." */
.secure-link {
    text-decoration: none !important;
    color: white !important;
    transition: color 0.3s ease;
}

.secure-link:hover {
    color: var(--neon-green) !important; /* لمسة جمالية عند التمرير */
}

/* 3. ترتيب الأرقام بجانب بعضها بدلاً من style="display: flex..." */
.extra-phones-layout {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}
/* =========================================
   تنسيقات الأمان النهائية (Final Security Audit)
   لإلغاء الحاجة لـ Inline Styles تماماً
   ========================================= */

/* 1. بديل سطر الليزر */
.animated-scan {
    animation: scanLine 4s linear infinite;
    opacity: 0.7;
}

/* 2. بديل عنوان الفورم */
.form-title {
    color: var(--neon-blue);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 28px;
}

/* 3. كلاسات التأخير الزمني (Animation Delays) */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
