/* ========================================
   🎨 COMPONENTS CSS - مكونات خاصة
   ======================================== */

/* ========================================
   👥 الشهادات والتقييمات
   ======================================== */

.testimonial-avatar {
  background: linear-gradient(135deg, var(--primary), #1a7a4f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}

.testimonial-avatar-alt1 {
  background: linear-gradient(135deg, #1a7a4f, var(--primary));
}

.testimonial-avatar-alt2 {
  background: linear-gradient(135deg, #0a3c23, var(--primary));
}

/* ========================================
   👨‍💼 فريق العمل
   ======================================== */

.team-member-avatar {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), #1a7a4f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.team-member-avatar-alt1 {
  background: linear-gradient(135deg, #1a7a4f, var(--primary));
}

.team-member-avatar-alt2 {
  background: linear-gradient(135deg, #0a3c23, var(--primary));
}

/* ========================================
   📄 المقالات والمحتوى
   ======================================== */

.article-content {
  padding: 100px 5% 60px;
  max-width: 900px;
  margin: auto;
}

.article-section {
  margin-bottom: 30px;
}

.article-heading {
  margin: 0;
  color: #333;
}

.article-text {
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.article-highlight {
  background: #f0f8ff;
  padding: 20px;
  border-right: 4px solid var(--primary);
  margin-bottom: 30px;
  border-radius: 8px;
}

.article-divider {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

/* ========================================
   🎯 الشارات والعلامات
   ======================================== */

.badge-primary {
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
}

.badge-accent {
  background: var(--accent);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
}

/* ========================================
   📱 الاستجابة
   ======================================== */

@media (max-width: 768px) {
  .article-content {
    padding: 60px 5% 40px;
  }

  .team-member-avatar {
    height: 150px;
    font-size: 3rem;
  }

  .testimonial-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .article-content {
    padding: 40px 5% 30px;
  }

  .team-member-avatar {
    height: 120px;
    font-size: 2.5rem;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .article-highlight {
    padding: 15px;
    border-right-width: 3px;
  }
}

/* ========================================
   🔘 BUTTONS
======================================== */


.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

/* ========================================
   🃏 CARDS
======================================== */

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

/* ========================================
   📦 BOXES
======================================== */

.box-light {
  background: #f0f0f0;
  padding: 20px;
  border-radius: 12px;
}

.box-info {
  background: #f0f8ff;
  padding: 20px;
  border-right: 4px solid var(--primary);
  border-radius: 8px;
}

.box-highlight {
  padding: 30px;
  background: rgba(15,81,50,0.05);
  border-right: 4px solid var(--primary);
  border-radius: 12px;
}

/* ========================================
   💬 FLOAT BUTTON
======================================== */

.btn-floating {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  border: none;
  font-size: 30px;
  z-index: 999;
}
/* ===============================
   BUTTON SYSTEM (SaaS Style)
================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 20px;
  border-radius: 10px;

  font-size: 15px;
  font-weight: 600;

  border: none;
  cursor: pointer;
  text-decoration: none;

  transition: all 0.25s ease;
}



/* ⚪ OUTLINE */
.btn-outline {
  margin-top: 8px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}*/

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* 🟢 WHATSAPP */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
}