.elementor-4832 .elementor-element.elementor-element-2b19320c{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-67329a2c *//* === تنظيف عالمي === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === خطوط === */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&display=swap');

/* === متغيرات عامة === */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #0ea5e9;
  --bg: #ffffff; /* خلفية بيضاء كما طلبت */
  --card-bg: #ffffff;
  --text: #0f172a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
  --transition-fast: 0.25s ease;
}

/* === الجسم العام === */
body {
  font-family: 'Tajawal', sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
  margin: 0;
  scroll-behavior: smooth;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* === الحاويات === */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.4rem;
}

/* === العناوين === */
h1 {
  color: #2c3e50;
  font-size: 3.5em;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 900;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  color: #34495e;
  font-size: 2.2em;
  margin: 40px 0 20px;
  position: relative;
  padding-right: 25px;
}
h2::before {
  content: '●';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-size: 1.5em;
}

h3 {
  color: #3498db;
  font-size: 1.6em;
  margin: 25px 0 15px;
  display: flex;
  align-items: center;
}
h3 i {
  margin-left: 10px;
  color: #ff6b6b;
}

/* === أقسام المحتوى === */
.section,
.content-card {
  background: var(--card-bg);
  margin: 40px 0;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.section::before,
.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b);
}

/* === الجداول === */
.table-wrapper {
  overflow-x: auto;
  margin: 0.8rem 0 1rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  min-width: 600px;
}
th, td {
  padding: 0.5rem 0.4rem;
  border: 1px solid #e5e7eb;
  text-align: right;
  vertical-align: top;
}
th {
  background: #eff6ff;
  font-weight: 600;
  white-space: nowrap;
}
tr:nth-child(even) td {
  background: #f9fafb;
}

/* === صناديق المعلومات === */
.highlight-box,
.info-box,
.tip-box,
.note-box {
  padding: 0.9rem;
  border-radius: 12px;
  margin: 1rem 0;
}
.info-box {
  background: #e8f4fd;
  border-right: 4px solid #667eea;
}
.highlight-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}
.tip-box {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
}
.note-box {
  background: #fef9c3;
  border: 1px solid #facc15;
}

/* === الإعلانات === */
.adsense,
.ads-placeholder {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 3px dashed #3498db;
  text-align: center;
  padding: 60px 20px;
  margin: 50px 0;
  border-radius: 20px;
  font-size: 1.3em;
  color: #6c757d;
  position: relative;
  overflow: hidden;
}
.adsense::before,
.ads-placeholder::before {
  content: 'ADVERTISEMENT';
  position: absolute;
  top: 10px;
  right: 10px;
  background: #3498db;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8em;
}

/* === الروابط الداخلية === */
.internal-link-box {
  background: #e8f4fd;
  padding: 15px 20px;
  border-radius: 10px;
  border-right: 4px solid #667eea;
  margin: 25px 0;
}
.internal-link-box a {
  color: #667eea;
  font-weight: 700;
  text-decoration: none;
}
.internal-link-box a:hover {
  text-decoration: underline;
}

/* === الأسئلة الشائعة === */
.faq-item {
  background: #f8f9fa;
  padding: 25px;
  margin: 20px 0;
  border-radius: 15px;
  border-right: 5px solid #667eea;
  transition: all 0.3s ease;
}
.faq-item:hover {
  background: #ffffff;
  transform: translateX(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.faq-question {
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.2em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  color: #6c757d;
  margin-top: 15px;
  line-height: 1.8;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}

/* === الزر الرئيسي === */
.btn-primary,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 18px 45px;
  border-radius: 50px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  font-weight: 700;
  font-size: 1.2em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary:hover,
.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

/* === مراجعة العملاء === */
.testimonial {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 30px;
  border-radius: 20px;
  margin: 20px 0;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-size: 4em;
  position: absolute;
  top: 10px;
  right: 20px;
  opacity: 0.3;
}

/* === التصميم المتجاوب === */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5em;
  }
  h2 {
    font-size: 1.8em;
  }
  .section,
  .content-card {
    padding: 25px;
  }
  table {
    min-width: 500px;
  }
}/* End custom CSS */