/* Reset وبعض إعدادات المتصفح الافتراضية */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* الدكن مود كامل */
body {
  font-family: 'Arial', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
  direction: rtl;
}

/* تنسيق الهيدر */
header {
  background-color: #1f1f1f;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #333;
}

header h1 {
  font-size: 28px;
  color: #ff9800;
}

/* تنسيق المحتوى الرئيسي */
main {
  padding: 20px;
}

/* تنسيق الأقسام (التصنيفات) */
#categories-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 10px;
}

.category-btn {
  background-color: #333;
  color: #e0e0e0;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.category-btn:hover {
  background-color: #444;
}

.category-btn.active {
  background-color: #ff9800;
  color: #121212;
}

/* تنسيق الحاوية اللي بتعرض الخدمات */
#services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* تنسيق كل عنصر خدمة */
.service-item {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
  display: flex;
  flex-direction: column;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
}

/* تنسيق الصورة عشان تكون مربع ومستجيبة */
.service-image {
  width: 100%;
  aspect-ratio: 1;  /* يحافظ على نسبة 1:1 */
  object-fit: cover;
  display: block;
}

/* محتوى الخدمة */
.service-content {
  padding: 15px;
}

.service-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ff9800;
}

/* تنسيق الوصف بحيث يحافظ على السطور */
.service-description {
  margin-bottom: 8px;
  font-size: 16px;
  white-space: pre-wrap; 
}

/* السعر */
.service-price {
  font-size: 18px; /* تكبير السعر شوية */
  margin-top: 10px;
  color: #fff;
}

/* تأثير الأنيميشن (fadeInUp) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* تنسيق الأزرار الموجودة داخل بطاقة الخدمة */
.buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 15px 15px;
  justify-content: center;
}

/* زرار عام: نفس الخلفية عشان يبقوا متناسقين */
.common-btn {
  background-color: #ff9800; 
  color: #121212;
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: bold;       /* نص بولد */
  font-size: 16px;         /* أكبر شوية */
}

.common-btn:hover {
  background-color: #e68a00;
}

/* متجاوب للشاشات الصغيرة */
@media (max-width: 768px) {
  .service-item {
    width: 90%;
  }
}
