/* ✅ نطاق منع التعارض */
.isolated-section {
  direction: rtl;
  font-family: 'Arial', sans-serif;
  background-color: #f4f7f6;
  color: #333;
  padding: 20px;
  box-sizing: border-box;
}

/* ✅ الحاوية العامة */
.isolated-section .container {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/* ✅ العناوين والنصوص */
.isolated-section h1,
.isolated-section h2 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 25px;
  color: #2c3e50;
}

.isolated-section h1 {
  font-size: 2em;
}

.isolated-section h2 {
  font-size: 1.6em;
}

.isolated-section p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* ✅ الكروت */
.isolated-section .cta-card,
.isolated-section .faq-card,
.isolated-section .plan-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ✅ زر واتساب */
.isolated-section .whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: #fff;
  padding: 14px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  margin: 0 auto;
}

.isolated-section .whatsapp-button img {
  margin-left: 10px;
  width: 24px;
  height: 24px;
}

.isolated-section .whatsapp-button:hover {
  background-color: #1da851;
  transform: translateY(-2px);
}

/* ✅ زر أضف إعلان */
.isolated-section .add-button {
  background-color: #0d6efd;
  margin-top: 20px;
}

.isolated-section .add-button:hover {
  background-color: #0b5ed7;
}

/* ✅ الكلمات المفتاحية */
.isolated-section .seo-keywords {
  font-size: 0.9em;
  color: #777;
  margin-top: 25px;
  line-height: 1.6;
}

/* ✅ الأسئلة الشائعة */
.isolated-section .faq-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #cfd8dc;
}

.isolated-section .faq-item:last-child {
  border-bottom: none;
}

.isolated-section .faq-question {
  font-weight: bold;
  color: #333;
  font-size: 1.1em;
  margin-bottom: 8px;
}

.isolated-section .faq-answer {
  color: #666;
  font-size: 1em;
  line-height: 1.6;
}

/* ✅ استجابة الهواتف */
@media (max-width: 768px) {
  .isolated-section .container {
    padding: 20px;
  }

  .isolated-section h1 {
    font-size: 1.6em;
  }

  .isolated-section h2 {
    font-size: 1.4em;
  }

  .isolated-section .whatsapp-button {
    font-size: 1em;
    padding: 12px 18px;
  }

  .isolated-section .whatsapp-button img {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .isolated-section .whatsapp-button {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
