/* إضافة تغييرات وتحسينات للنسخة المحمولة */

/* تحسين خاص بنمط الهيدر للهواتف المحمولة */
@media (max-width: 768px) {
  .header-content {
    justify-content: space-between !important;
    padding: 0.5rem 0;
  }

  .logo {
    flex: 1;
  }

  .mobile-menu-btn:focus {
    outline: none;
    background-color: rgba(30, 64, 175, 0.1);
  }

  /* تحسين عرض الصور في الهواتف */
  .type-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* تحسين عرض الأزرار العائمة */
  .floating-contacts {
    right: 1rem;
    bottom: 1.5rem;
    left: auto;
    gap: 1rem;
  }

  .floating-btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  /* تحسين أزرار المتصفح */
  .btn {
    white-space: nowrap;
  }

  /* إصلاح مشكلة إظهار القائمة المتنقلة */
  .nav.mobile-active {
    display: flex !important;
    z-index: 1000;
  }
}

/* تحسين المسافات والتباعدات للهواتف الصغيرة */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .hero-content {
    padding: 2rem 0;
  }

  /* تحسين عرض أنواع المكيفات */
  .type-card {
    margin-bottom: 1.5rem;
  }
}
