/* Smart FAQ Pro Styles - Fixed for Dynamic Colors */

:root {
  --sfp-primary: #FFC107; /* أصفر افتراضي */
  --sfp-active: #4CAF50;  /* أخضر افتراضي */
}

/* =========================================
   1. تنسيقات عامة
   ========================================= */
.faq-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: right;
  color: #222;
}

.faq-intro {
  margin-bottom: 25px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  padding: 0 5px;
}

/* =========================================
   2. تصميم الطاقة الشمسية الاحترافي (Solar Theme)
   ========================================= */
.solar-faq-section {
    margin: 36px auto;
    max-width: 800px;
}

.solar-faq {
  font-family: inherit;
  width: 100%;
}

/* بطاقة السؤال */
.solar-faq details {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(0, 30, 80, 0.05);
  border: 1px solid #e9eef2;
  
  /* التعديل: استخدام المتغير للون الأساسي */
  border-left: 5px solid var(--sfp-primary) !important; 
  
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.solar-faq details:hover {
  transform: translateY(-5px) scale(1.01);
  /* جعل الظل يأخذ لوناً خفيفاً من اللون الأساسي */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}

/* رأس السؤال */
.solar-faq summary {
  padding: 1.5rem 2rem 1.5rem 4.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #0D2C4F;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: background-color 0.2s;
  outline: none;
}
.solar-faq summary::-webkit-details-marker {
  display: none;
}

/* الأيقونة (الدائرة) */
.solar-faq summary::before {
  content: '';
  position: absolute;
  left: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  
  /* التعديل: خلفية الأيقونة تأخذ اللون الأساسي */
  background: var(--sfp-primary) !important;
  border: 2px solid #fff;
  /* التعديل: الظل يأخذ اللون الأساسي */
  box-shadow: 0 0 0 2px var(--sfp-primary) !important;
  
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* حالة الفتح (Active State) */
.solar-faq details[open] summary::before {
  /* التعديل: يتغير اللون إلى لون التفعيل عند الفتح */
  background: var(--sfp-active) !important;
  box-shadow: 0 0 0 2px var(--sfp-active) !important; 
  transform: translateY(-50%) rotate(225deg);
}

.solar-faq details[open] summary {
  background-color: rgba(0, 0, 0, 0.02); 
  color: #000;
}

/* المحتوى */
.solar-faq .faq-content {
  background: #F0F4F8;
  padding: 1.5rem 2rem 1.5rem 4.5rem;
  color: #34495e;
  line-height: 1.8;
  border-top: 1px dashed #dbe2e8;
  animation: slideDown 0.4s ease-out;
}
.solar-faq .faq-content p {
  margin: 0 0 10px 0;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   3. التصميم الافتراضي (القديم)
   ========================================= */
#smart-faq-pro {
  margin-top: 40px;
  padding: 20px;
  background: #f8faff;
}
.faq-container h3 {
  background: #fff;
  border-left: 5px solid var(--sfp-primary);
  padding: 15px 20px;
  margin: 10px 0;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 18px;
}
.faq-container p {
  display: none;
  background: #fff;
  padding: 15px 20px;
  margin-top: -5px;
  border-radius: 0 0 8px 8px;
  border-left: 5px solid var(--sfp-primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  line-height: 1.7;
}

/* =========================================
   4. جداول الموقع
   ========================================= */
.entry-content .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e9eef2;
  border-radius: 8px;
  margin-bottom: 1.5em;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
  font-size: 0.95rem;
  margin-bottom: 1.5em;
}
.entry-content th {
  background-color: #f0f4f8;
  color: #0D2C4F;
  padding: 15px 20px;
  font-weight: 600;
  border-bottom: 3px solid #007bff;
  white-space: nowrap;
}
.entry-content td {
  padding: 15px 20px;
  color: #34495e;
  border-bottom: 1px solid #e9eef2;
}
.entry-content tr:nth-of-type(even) td {
  background-color: #f9fafb;
}
.entry-content tr:last-of-type td {
  border-bottom: none;
}