/* إزالة علامة Made with Manus */
.manus-badge, [id*="manus"], [class*="manus"], a[href*="manus"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: -9999 !important;
}

/* تحسين المسافات بين الأقسام في الهاتف */
@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
}

/* تحسين تأثيرات الحركة */
.feature, .order-method, .contact-item {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feature:hover, .order-method:hover, .contact-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* تحسين تأثيرات الأزرار */
.btn {
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* تحسين تأثيرات الصور */
.about-image img {
  transition: all 0.7s ease;
}

.about-image:hover img {
  transform: scale(1.1) rotate(2deg);
}

/* تحسين تأثيرات أيقونات التواصل الاجتماعي */
.social-icon {
  transition: all 0.5s ease;
}

.social-icon:hover {
  transform: translateY(-15px) rotate(360deg);
  background-color: var(--accent-color);
}
