
```css
/* بارگذاری فونت‌های Vazirmatn */
@font-face {
  font-family: 'Vazirmatn';
  src: url('/wp-content/themes/neve/fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/wp-content/themes/neve/fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* اعمال فونت به کل سایت */
body, p, h1, h2, h3, h4, h5, h6, a, button, strong,
.entry-content, .single-post .entry-content, .post, .wp-block-paragraph, .site, .header, .footer {
  font-family: 'Vazirmatn', sans-serif !important;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #f0e6d9;
  color: #333;
  font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  text-align: center;
  overflow-x: hidden;
  direction: rtl;
}
a { text-decoration: none; color: inherit; }

/* --- Hero Section --- */
.hero {
  padding: 40px 20px;
  background: #ffffff;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #8B4513;
  animation: fadeInUp 1s ease-out;
}
.hero .intro-p {
  font-size: 1.2rem;
  margin: 25px auto;
  color: #555;
  max-width: 700px;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.hero-img {
  width: 320px; height: 320px; border-radius: 18px;
  box-shadow: 0 8px 20px rgba(139,69,19,0.08);
  margin: 0 auto 30px;
  object-fit: cover;
  animation: fadeInUp 1.4s ease-out 0.6s both;
  background: #ececec;
  transition: all 0.3s ease;
}
.hero-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(139,69,19,0.15);
}
.cta-buttons {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}
.btn {
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(to right, #8B4513, #A0522D);
  color: white;
}
.btn:hover {
  background: linear-gradient(to right, #A0522D, #CD853F);
  transform: translateY(-3px);
}

/* --- Features Section --- */
.features {
  padding: 40px 20px;
  background: #ffffff;
}
.features-grid {
  max-width: 800px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.stats-p {
  background: #f0e6d9;
  border-radius: 12px;
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #8B4513;
  border: 1px solid #d4af37;
  transition: all 0.3s ease;
  animation: fadeInUp 1.2s ease-out 0.9s both;
}
.stats-p:hover {
  background: #d4af37;
  box-shadow: 0 6px 15px rgba(139,69,19,0.08);
  transform: translateY(-3px);
}

/* --- FAQ Section --- Fix وسط‌چین */
.faq {
  padding: 40px 20px;
  background: #ffffff;
}
.faq h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #8B4513;
  animation: fadeInUp 1s ease-out;
}
.faq img {
  margin-bottom: 30px;
}
.faq-list {
  max-width: 800px; margin: 0 auto; list-style: none;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.faq-item {
  background: #f0e6d9;
  border-radius: 12px;
  border: 1px solid #d4af37;
  transition: all 0.3s ease;
  animation: fadeInUp 1.2s ease-out 1.5s both;
  text-align: center;
}
.faq-item:hover {
  box-shadow: 0 8px 20px rgba(139,69,19,0.08);
  transform: translateY(-3px);
  border-color: #CD853F;
}
.faq-item summary {
  padding: 1.2rem 2rem;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #8B4513;
  position: relative;
  text-align: center;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.faq-item summary::before {
  content: "▶";
  font-size: 1.2rem;
  color: #8B4513;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::before {
  content: "▼";
}
.faq-answer {
  padding: 0 2rem 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  background: #f0e6d9;
  display: block;
  width: 100%;
  margin: 0 auto;
}
.faq-answer p {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  direction: rtl;
}
.faq-item details[open] .faq-answer {
  max-height: 300px;
  padding: 1rem 2rem 1.5rem;
}

/* Fix خاص دسکتاپ: فورس وسط‌چین */
@media (min-width: 769px) {
  .faq-item summary,
  .faq-answer,
  .faq-answer p {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
}

/* --- CTA Section --- */
.cta-section {
  padding: 40px 20px;
  background: linear-gradient(to right, #8B4513, #A0522D);
  color: white;
  text-align: center;
	margin-top: 30px;
}
.cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.cta-content p {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
.cta-content .btn {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  background: white;
  color: #8B4513;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(139,69,19,0.1);
  transition: all 0.3s ease;
}
.cta-content .btn:hover {
  background: #d4af37;
  color: #A0522D;
  transform: translateY(-2px);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.3rem; }
  .hero .intro-p { font-size: 1rem; }
  .hero-img { width: 100%; max-width: 260px; height: auto; }
  .faq h2 { font-size: 2rem; }
  .faq-item summary { font-size: 1rem; padding: 1rem; }
  .cta-content p { font-size: 1.6rem; }
  .cta-content .btn { font-size: 1rem; padding: 0.8rem 2rem; }
}

/* --- رفع کامل راست‌چینی FAQ در Neve --- */
.faq {
  direction: rtl !important;
  text-align: center !important;
}

/* پاسخ‌ها و پاراگراف‌ها وسط */
.faq-answer,
.faq-answer p {
  text-align: center !important;
  direction: rtl !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* کل لیست FAQ وسط در صفحه */
.faq-list {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  list-style: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

/* بلاک هر سوال */
.faq-item {
  width: 100% !important;
  max-width: 800px !important;
  background: #f0e6d9 !important;
  border-radius: 12px !important;
  border: 1px solid #d4af37 !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
}

/* --- Pricing Section --- */
.pricing-section {
  padding: 40px 20px;
  background: #ffffff;
}
.pricing-section h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #8B4513;
  animation: fadeInUp 1s ease-out;
}
.pricing-section .subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.pricing-table {
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #f0e6d9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(139,69,19,0.08);
  animation: fadeInUp 1s ease-out 0.6s both;
}
.pricing-table th,
.pricing-table td {
  padding: 1.2rem;
  text-align: center;
  border-bottom: 1px solid #d4af37;
  font-family: 'Vazirmatn', sans-serif;
}
.pricing-table th {
  background: linear-gradient(to right, #8B4513, #A0522D);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}
.pricing-table td {
  color: #333;
  font-size: 1rem;
  font-weight: 500;
}
.pricing-table tr:hover {
  background: #d4af37;
  transition: all 0.3s ease;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* --- Responsive for Pricing --- */
@media (max-width: 768px) {
  .pricing-section h2 { font-size: 2rem; }
  .pricing-section .subtitle { font-size: 1rem; }
  .pricing-table th,
  .pricing-table td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  .pricing-table {
    font-size: 0.9rem;
  }
}

/* --- رفع کامل راست‌چینی FAQ در Neve --- */
.faq {
  direction: rtl !important;
  text-align: center !important;
}

/* حذف فلش مرورگر از summary */
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
  display: none !important;
  content: "" !important;
}

/* خود summary را وسط‌چین و فلکس کن تا متن دقیقاً وسط بیفتد */
.faq-item summary {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  list-style: none !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 1.2rem 2rem !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  color: #8B4513 !important;
  cursor: pointer !important;
  background: none !important;
  border: none !important;
}

/* پاسخ‌ها و پاراگراف‌ها وسط */
.faq-answer,
.faq-answer p {
  text-align: center !important;
  direction: rtl !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* کل لیست FAQ وسط در صفحه */
.faq-list {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  list-style: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

/* بلاک هر سوال */
.faq-item {
  width: 100% !important;
  max-width: 800px !important;
  background: #f0e6d9 !important;
  border-radius: 12px !important;
  border: 1px solid #d4af37 !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
}

/* ==== Service Section سکشن تماس با ما و یا شماره تعمیرکار (Reusable) ==== */
.service-section {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(139,69,19,0.06);
  margin: 40px auto;
  max-width: 1000px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}
.service-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #8B4513;
  margin-bottom: 15px;
}
.service-section .service-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.7;
}

/* Buttons */
.service-section .service-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.service-section .btn-call,
.service-section .btn-wa {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 18px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.service-section .btn-call {
  background: linear-gradient(to right, #8B4513, #A0522D);
  color: #fff;
}
.service-section .btn-call:hover {
  background: linear-gradient(to right, #A0522D, #CD853F);
  transform: translateY(-3px);
}
.service-section .btn-wa {
  background: #f0e6d9;
  color: #8B4513;
  border: 1px solid #d4af37;
}
.service-section .btn-wa:hover {
  background: #d4af37;
  transform: translateY(-3px);
}

/* Feature Grid */
.service-section .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}
.service-section .service-grid .item {
  background: #f0e6d9;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #d4af37;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}
.service-section .service-grid .item:hover {
  background: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(139,69,19,0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .service-section h2 { font-size: 1.6rem; }
  .service-section .service-subtitle { font-size: 1rem; }
  .service-section .btn-call,
  .service-section .btn-wa {
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==== لوکیشن ==== */
.workshop-section {
  background: #ffffff;
  padding: 50px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(139,69,19,0.06);
  margin: 40px auto;
  max-width: 1100px;
  animation: fadeInUp 0.8s ease-out;
  text-align: center;
}

.workshop-section h2 {
  font-size: 2.2rem;
  color: #8B4513;
  font-weight: 700;
  margin-bottom: 15px;
}

.workshop-section .intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.map-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.map-box iframe {
  width: 100%;
  height: 400px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(139,69,19,0.08);
}

.info-card {
  background: #f0e6d9;
  border: 1px solid #d4af37;
  border-radius: 18px;
  padding: 1.5rem;
  text-align: right;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  box-shadow: 0 6px 15px rgba(139,69,19,0.05);
}

.info-card h3 {
  color: #8B4513;
  margin-bottom: 1rem;
  text-align: center;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.info-card li {
  margin-bottom: 0.6rem;
}

.info-card a {
  color: #A0522D;
  text-decoration: none;
  font-weight: 600;
}

.info-card a:hover {
  text-decoration: underline;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
}

/* ✅ دکمه تماس فوری */
.btn-call {
  background: linear-gradient(to right, #8B4513, #A0522D);
  color: #ffffff !important;
  border: none;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(139,69,19,0.2);
  padding: 1rem 2rem;
  border-radius: 18px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-call:hover {
  background: linear-gradient(to right, #A0522D, #CD853F);
  transform: translateY(-3px);
  color: #fff !important;
}

/* دکمه باز کردن نقشه */
.btn-map {
  background: #f0e6d9;
  color: #8B4513;
  border: 1px solid #d4af37;
  padding: 1rem 2rem;
  border-radius: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-map:hover {
  background: #d4af37;
  transform: translateY(-3px);
}

/* انیمیشن */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 📱 واکنش‌گرا */
@media (max-width: 900px) {
  .map-info {
    grid-template-columns: 1fr;
  }

  .info-card {
    text-align: center;
  }

  .btn-call, .btn-map {
    width: 100%;
    font-size: 1.05rem;
  }
}

/* ==== برندهایی که تعمیر می‌کنیم ==== */
.brands-section {
  background: #f0e6d9;
  padding: 50px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(139,69,19,0.05);
  margin: 40px auto;
  max-width: 1100px;
  animation: fadeInUp 0.8s ease-out;
  text-align: center;
}

.brands-section h3 {
  font-size: 2rem;
  color: #8B4513;
  font-weight: 700;
  margin-bottom: 15px;
}

.brands-section .brands-intro {
  font-size: 1.05rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.brand-card {
  background: #ffffff;
  border: 1px solid #d4af37;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: #8B4513;
  box-shadow: 0 4px 12px rgba(139,69,19,0.05);
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.brand-card:hover {
  background: linear-gradient(to right, #d4af37, #f0e6d9);
  transform: translateY(-4px);
}

/* 📱 واکنش‌گرا */
@media (max-width: 768px) {
  .brands-section h3 {
    font-size: 1.6rem;
  }

  .brand-card {
    font-size: 1rem;
  }
}

/* ==== ضمانت کار ==== */
.guarantee-section {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(139,69,19,0.06);
  margin: 40px auto;
  max-width: 1100px;
  animation: fadeInUp 0.8s ease-out;
  text-align: center;
}

.guarantee-section h3 {
  font-size: 2rem;
  color: #8B4513;
  font-weight: 700;
  margin-bottom: 15px;
}

.guarantee-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.guarantee-card {
  background: #f0e6d9;
  border: 1px solid #d4af37;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 6px 15px rgba(139,69,19,0.05);
  transition: all 0.3s ease;
}

.guarantee-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(to right, #d4af37, #ffffff);
}

.guarantee-card .icon {
  font-size: 2rem;
  color: #8B4513;
  margin-bottom: 10px;
}

.guarantee-card h4 {
  color: #8B4513;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.guarantee-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* 📱 واکنش‌گرا */
@media (max-width: 768px) {
  .guarantee-section h3 {
    font-size: 1.6rem;
  }

  .guarantee-card {
    padding: 1.2rem;
  }
}

/* ==== زمان اعزام ==== */
.arrival-section {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(139,69,19,0.06);
  margin: 40px auto;
  max-width: 1100px;
  animation: fadeInUp 0.8s ease-out;
  text-align: center;
}

.arrival-section h3 {
  font-size: 2rem;
  color: #8B4513;
  font-weight: 700;
  margin-bottom: 15px;
}

.arrival-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ✅ سه کارت ثابت در هر ردیف (با Flexbox) */
.arrival-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.arrival-card {
  background: #f0e6d9;
  border: 1px solid #d4af37;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 6px 15px rgba(139,69,19,0.05);
  transition: all 0.3s ease;
  width: calc(33.333% - 1rem); /* 👈 همیشه سه کارت در ردیف */
  min-width: 280px;
  box-sizing: border-box;
}

.arrival-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(to right, #d4af37, #ffffff);
}

.arrival-card .icon {
  font-size: 2rem;
  color: #8B4513;
  margin-bottom: 10px;
}

.arrival-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

.arrival-card strong {
  color: #8B4513;
}

/* 📱 واکنش‌گرا */
@media (max-width: 950px) {
  .arrival-card {
    width: calc(50% - 1rem); /* دو کارت در ردیف در تبلت */
  }
}

@media (max-width: 600px) {
  .arrival-card {
    width: 100%; /* یک کارت در ردیف در موبایل */
  }

  .arrival-section h3 {
    font-size: 1.6rem;
  }
}

/* 🎞️ انیمیشن */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==== ابزار و نحوه کار در محل ==== */
.tools-section {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(139,69,19,0.06);
  margin: 40px auto;
  max-width: 1100px;
  animation: fadeInUp 0.8s ease-out;
  text-align: center;
}

.tools-section h3 {
  font-size: 2rem;
  color: #8B4513;
  font-weight: 700;
  margin-bottom: 15px;
}

.tools-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ✅ سه کارت در هر ردیف با Flexbox */
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.tools-card {
  background: #f0e6d9;
  border: 1px solid #d4af37;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 6px 15px rgba(139,69,19,0.05);
  transition: all 0.3s ease;
  width: calc(33.333% - 1rem);
  min-width: 280px;
  box-sizing: border-box;
}

.tools-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(to right, #d4af37, #ffffff);
}

.tools-card .icon {
  font-size: 2rem;
  color: #8B4513;
  margin-bottom: 10px;
}

.tools-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

.tools-card strong {
  color: #8B4513;
}

/* 📱 واکنش‌گرا */
@media (max-width: 950px) {
  .tools-card {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  .tools-card {
    width: 100%;
  }

  .tools-section h3 {
    font-size: 1.6rem;
  }
}

/* ✨ انیمیشن */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==== ارسال عکس و مشاوره سریع ==== */
.consult-section {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(139,69,19,0.06);
  margin: 40px auto;
  max-width: 1100px;
  animation: fadeInUp 0.8s ease-out;
  text-align: center;
}

.consult-section h3 {
  font-size: 2rem;
  color: #8B4513;
  font-weight: 700;
  margin-bottom: 15px;
}

.consult-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ✅ سه کارت در هر ردیف */
.consult-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.consult-card {
  background: #f0e6d9;
  border: 1px solid #d4af37;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 6px 15px rgba(139,69,19,0.05);
  transition: all 0.3s ease;
  width: calc(33.333% - 1rem);
  min-width: 280px;
  box-sizing: border-box;
}

.consult-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(to right, #d4af37, #ffffff);
}

.consult-card .icon {
  font-size: 2rem;
  color: #8B4513;
  margin-bottom: 10px;
}

.consult-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

.consult-card strong {
  color: #8B4513;
}

/* ✅ دکمه‌ها */
.consult-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  font-weight: 700;
  border: none;
  padding: 1rem 2rem;
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

.btn-call {
  background: linear-gradient(to right, #8B4513, #A0522D);
  color: #fff !important;
  border: none;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(139,69,19,0.2);
  padding: 1rem 2rem;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-call:hover {
  background: linear-gradient(to right, #A0522D, #CD853F);
  transform: translateY(-3px);
}

/* 📱 واکنش‌گرا */
@media (max-width: 950px) {
  .consult-card {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  .consult-card {
    width: 100%;
  }

  .consult-section h3 {
    font-size: 1.6rem;
  }
}

/* ✨ انیمیشن */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==== FAQ تماس اولیه (آکاردئون بدون JS) ==== */
.soalat-section {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(139,69,19,0.06);
  margin: 40px auto;
  max-width: 1100px;
  animation: fadeInUp 0.8s ease-out;
  text-align: center;
}

.soalat-section h3 {
  font-size: 1.8rem;
  color: #8B4513;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ظرف آکاردئون: دو ستون در دسکتاپ، تک‌ستون در موبایل */
.soalat-accordion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  text-align: right;
}

.qa {
  background: #f0e6d9;
  border: 1px solid #d4af37;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(139,69,19,0.05);
  overflow: hidden;
}

/* استایل سربرگ آکاردئون */
.qa > summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  list-style: none;
  position: relative;
  font-weight: 700;
  color: #8B4513;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
}

/* حذف نشانگر پیش‌فرض مرورگر */
.qa > summary::-webkit-details-marker { display: none; }

/* فلش سفارشی */
.qa > summary::after {
  content: "▼";
  font-size: 0.9rem;
  color: #8B4513;
  transition: transform 0.25s ease;
  margin-right: 0.6rem;
}

/* حالت باز */
.qa[open] > summary::after {
  transform: rotate(180deg);
}

/* بدنه پاسخ */
.answer {
  padding: 0 1.2rem 1rem 1.2rem;
  color: #555;
  line-height: 1.8;
  font-size: 0.98rem;
  border-top: 1px solid #d4af37;
  animation: faqFade 0.25s ease;
}

/* هاور کارت */
.qa:hover {
  background: linear-gradient(to right, #d4af37, #ffffff);
  transform: translateY(-2px);
  transition: transform 0.2s ease, background 0.2s ease;
}

/* واکنش‌گرا */
@media (max-width: 900px) {
  .soalat-accordion {
    grid-template-columns: 1fr;
  }
}

/* انیمیشن‌ها */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes faqFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==== دیگر خدمات ما در برگه های تجاری ==== */
.other-services-section {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(139,69,19,0.06);
    margin: 40px auto;
    max-width: 1100px;
    animation: fadeInUp 0.8s;
    direction: rtl;
    text-align: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.other-services-section h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.services-intro {
    margin-bottom: 2rem;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-block {
    background: linear-gradient(to bottom, #f0e6d9, #d4af37);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: right;
}

.service-block:hover {
    transform: translateY(-5px);
}

.block-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.block-icon {
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

.service-block h4 {
    color: #8B4513;
    margin: 0;
    font-size: 1.1rem;
}

.service-block p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-block a {
    color: #8B4513;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.service-block a:hover {
    color: #A0522D;
}

.cta-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(to right, #8B4513, #A0522D);
    border-radius: 12px;
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: white;
    color: #8B4513;
    border-radius: 18px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 0.5rem;
    transition: transform 0.3s;
}

.cta-content .btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .other-services-section {
        padding: 20px 10px;
        margin: 20px auto;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .service-block {
        padding: 1rem;
    }
    .block-header {
        justify-content: flex-start;
    }
}

/* ==== سبک وبلاگ حرفه‌ای ==== */
/* ==== Blog Post Section ==== */

.chart-section {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(139,69,19,0.06);
    margin: 40px auto;
    max-width: 1100px;
    animation: fadeInUp 0.8s;
    direction: rtl;
    text-align: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.chart-section h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.chart-section p {
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1rem;
}

.pie-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#CD853F 0deg 108deg, #D2691E 108deg 198deg, #8B4513 198deg 270deg, #A0522D 270deg 324deg, #DAA520 324deg 360deg);
    margin: 0 auto 1rem;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.chart-legend li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #666;
}

.chart-legend li::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 0.5rem;
    border-radius: 50%;
}

.chart-legend li:nth-child(1)::before { background: #CD853F; }
.chart-legend li:nth-child(2)::before { background: #D2691E; }
.chart-legend li:nth-child(3)::before { background: #8B4513; }
.chart-legend li:nth-child(4)::before { background: #A0522D; }
.chart-legend li:nth-child(5)::before { background: #DAA520; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
    text-align: right;
}

.stat-item {
    background: #f0e6d9;
    border: 1px solid #d4af37;
    border-radius: 12px;
    padding: 1rem;
}

.stat-percent {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B4513;
}

.stat-desc {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.tip {
    border-left: 4px solid #D2691E;
    background: #f0e6d9;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: right;
}

@media (max-width: 768px) {
    .chart-section {
        padding: 20px 10px;
        margin: 20px auto;
    }
    .pie-chart {
        width: 150px;
        height: 150px;
    }
    .chart-legend {
        gap: 0.5rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.prevention-section {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(139,69,19,0.06);
    margin: 40px auto;
    max-width: 1100px;
    animation: fadeInUp 0.8s;
    direction: rtl;
    text-align: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.prevention-section h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.prevention-section p {
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1rem;
}

.prevention-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: right;
}

.prevent-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(to right, #f0e6d9, #ffffff);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-right: 4px solid #d4af37;
}

.prevent-list-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(139,69,19,0.05);
    border-right-color: #8B4513;
}

.prevent-icon {
    font-size: 1.5rem;
    color: #8B4513;
    margin-left: 1rem;
    flex-shrink: 0;
}

.prevent-list-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tip {
    border-left: 4px solid #D2691E;
    background: #f0e6d9;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: right;
}

@media (max-width: 768px) {
    .prevention-section {
        padding: 20px 10px;
        margin: 20px auto;
    }
    .prevent-list-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .prevent-icon {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}

.costs-section {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(139,69,19,0.06);
    margin: 40px auto;
    max-width: 1100px;
    animation: fadeInUp 0.8s;
    direction: rtl;
    text-align: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.costs-section h2 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.costs-section p {
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, #d4af37, #8B4513);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 80px;
    text-align: right;
    order: 1;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 80px;
    text-align: left;
    order: 3;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: 40px;
    height: 40px;
    background: #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(139,69,19,0.3);
}

.marker-icon {
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.timeline-content {
    background: #f0e6d9;
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid #d4af37;
    width: 45%;
    box-shadow: 0 4px 12px rgba(139,69,19,0.05);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.timeline-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139,69,19,0.08);
}

.timeline-content h4 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tip {
    border-left: 4px solid #D2691E;
    background: #f0e6d9;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: right;
}

@media (max-width: 768px) {
    .costs-section {
        padding: 20px 10px;
        margin: 20px auto;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
    }
    .timeline-item .timeline-content {
        width: calc(100% - 50px);
        margin: 1.5rem 0 0 50px !important;
        text-align: right;
        order: 3;
    }
    .timeline-marker {
        left: 20px;
        top: 0;
        transform: translateX(-50%);
    }
}

.intro-section {
    padding: 40px 20px;
    background: linear-gradient(to bottom, #f0e6d9, #ffffff);
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(139,69,19,0.06);
    margin: 40px auto;
    max-width: 1100px;
    animation: fadeInUp 0.8s;
    direction: rtl;
    text-align: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.intro-section h1 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.intro-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

.intro-quote {
    border-left: 4px solid #8B4513;
    background: #d4af37;
    padding: 1.5rem;
    margin: 1rem 0;
    font-style: italic;
    border-radius: 8px;
    text-align: right;
}

.intro-quote cite {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-style: normal;
    text-align: left;
}

.intro-steps {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: right;
}

.intro-steps li {
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: #f0e6d9;
    border-radius: 8px;
    border-top: 3px solid #A0522D;
    transition: background 0.3s;
}

.intro-steps li:hover {
    background: #d4af37;
}

.intro-steps strong {
    color: #8B4513;
}

@media (max-width: 768px) {
    .intro-section {
        padding: 20px 10px;
        margin: 20px auto;
    }
    .intro-section h1 {
        font-size: 2rem;
    }
    .intro-steps {
        text-align: center;
    }
}

.board-section {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(139,69,19,0.06);
    margin: 40px auto;
    max-width: 1100px;
    animation: fadeInUp 0.8s;
    direction: rtl;
    text-align: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.board-section h2 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.board-section p {
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1rem;
}

.board-symptoms {
    margin: 1rem 0;
    text-align: right;
}

.board-symptoms h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.board-detail {
    background: #f0e6d9;
    border: 1px solid #d4af37;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.board-detail summary {
    padding: 1rem;
    color: #8B4513;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: center;
    transition: background 0.3s;
}

.board-detail summary:hover {
    background: #d4af37;
}

.board-detail summary::after {
    content: "▼";
    margin-right: 0.5rem;
    transition: transform 0.25s;
}

.board-detail[open] summary::after {
    transform: rotate(180deg);
}

.board-detail p {
    padding: 1rem;
    text-align: justify;
    margin: 0;
    border-top: 1px solid #d4af37;
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 768px) {
    .board-section {
        padding: 20px 10px;
        margin: 20px auto;
    }
    .board-detail {
        margin-bottom: 0.8rem;
    }
    .board-detail p {
        padding: 0.8rem;
    }
}

.faq-section {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(139,69,19,0.06);
    margin: 40px auto;
    max-width: 1100px;
    animation: fadeInUp 0.8s;
    direction: rtl;
    text-align: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-section h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.faq-section p {
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1rem;
}

.faq-container {
    margin: 1rem 0;
    text-align: right;
}

.faq-item {
    background: #f0e6d9;
    border: 1px solid #d4af37;
    border-radius: 14px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(139,69,19,0.05);
    border-color: #8B4513;
}

.faq-item summary {
    padding: 1.2rem;
    color: #8B4513;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
    list-style: none;
}

.faq-item summary:hover {
    background: linear-gradient(to right, #d4af37, #f0e6d9);
}

.faq-item summary::before {
    content: "❓";
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

.faq-item summary::after {
    content: "▼";
    margin-right: 0.5rem;
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.2rem 1.2rem;
    text-align: justify;
    max-height: none;
}

.faq-answer p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 20px 10px;
        margin: 20px auto;
    }
    .faq-item {
        margin-bottom: 0.8rem;
    }
    .faq-item summary {
        padding: 1rem;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 1rem 1rem;
    }
    .faq-answer p {
        font-size: 0.9rem;
    }
}

.setup-section {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(139,69,19,0.06);
    margin: 40px auto;
    max-width: 1100px;
    animation: fadeInUp 0.8s;
    direction: rtl;
    text-align: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.setup-section h2 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.setup-section h4 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.setup-section p {
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.7;
}

.setup-flow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: right;
}

.setup-step {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0e6d9 0%, #d4af37 100%);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.setup-step:hover {
    transform: scale(1.02);
}

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #8B4513;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.setup-step p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .setup-section {
        padding: 20px 10px;
        margin: 20px auto;
    }
    .setup-flow {
        gap: 1rem;
    }
    .setup-step {
        padding: 1rem;
    }
    .step-number {
        top: -8px;
        right: 15px;
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    .setup-step p {
        padding-right: 1.5rem;
        font-size: 0.9rem;
    }
}

.light-section {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(139,69,19,0.06);
    margin: 40px auto;
    max-width: 1100px;
    animation: fadeInUp 0.8s;
    direction: rtl;
    text-align: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.light-section h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.light-section h4 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.light-section p {
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.7;
}

.bar-chart-container {
    margin: 2rem 0;
    text-align: right;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.bar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    background: #f0e6d9;
    border-radius: 8px;
    overflow: hidden;
    transition: background 0.3s;
}

.bar-item:hover {
    background: #d4af37;
}

.bar-label {
    flex: 1;
    font-size: 0.95rem;
    color: #666;
    margin-right: 1rem;
}

.bar {
    height: 20px;
    border-radius: 10px;
    transition: width 1s ease;
    min-width: 10px;
    background: linear-gradient(to right, #8B4513, #A0522D);
}

.bar-value {
    font-weight: bold;
    color: #8B4513;
    font-size: 0.95rem;
    margin-right: 1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .light-section {
        padding: 20px 10px;
        margin: 20px auto;
    }
    .bar-chart {
        gap: 0.8rem;
    }
    .bar-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.8rem;
    }
    .bar-label {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    .bar-value {
        margin-right: 0;
        align-self: flex-end;
    }
}
```