/* =============================================
   blog-article.css — UAE Investor Visa Blog UI
   MakeMyBusiness | 2026
============================================= */

/* ---- Article Block ---- */
.article-block {
  line-height: 1.8;
  color: #2d3748;
  font-size: 16px;
}

.article-block p {
  margin-bottom: 18px;
}

/* ---- Section Headings ---- */
.article-block h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0f2f36;
  margin-top: 38px;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 5px solid #68d59d;
  line-height: 1.3;
}

.article-block h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a4a55;
  margin-top: 24px;
  margin-bottom: 10px;
}

/* ---- Divider ---- */
.divider {
  border: none;
  border-top: 2px solid #e2e8f0;
  margin: 30px 0;
}

/* ---- Fact Box (green) ---- */
.fact-box {
  background: linear-gradient(135deg, #e6fbf2, #d1f7e7);
  border-left: 5px solid #22c55e;
  border-radius: 10px;
  padding: 18px 22px;
  margin: 22px 0;
  font-size: 15px;
  color: #14532d;
  line-height: 1.7;
}

/* ---- Warning Box (amber) ---- */
.warn-box {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border-left: 5px solid #f59e0b;
  border-radius: 10px;
  padding: 18px 22px;
  margin: 22px 0;
  font-size: 15px;
  color: #78350f;
  line-height: 1.7;
}

/* ---- Pull Quote ---- */
.pull-quote {
  background: #f0f9ff;
  border-left: 5px solid #3b82f6;
  border-radius: 10px;
  padding: 20px 28px;
  margin: 28px 0;
  position: relative;
}

.pull-quote::before {
  content: "\201C";
  font-size: 64px;
  color: #bfdbfe;
  position: absolute;
  top: -12px;
  left: 16px;
  line-height: 1;
  font-family: Georgia, serif;
}

.pull-quote p {
  font-size: 16px;
  font-style: italic;
  color: #1e3a5f;
  margin: 0 0 10px;
  padding-top: 18px;
}

.pull-quote cite {
  font-size: 14px;
  color: #64748b;
  font-style: normal;
  font-weight: 600;
}

/* ---- Ordered & Unordered Lists ---- */
.article-block ol,
.article-block ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.article-block ol li,
.article-block ul li {
  margin-bottom: 8px;
  font-size: 15.5px;
}

/* ---- Steps / Stat Grid ---- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 22px 0 18px;
}

.stat-card {
  background: linear-gradient(135deg, #0f2f36, #1a5568);
  border-radius: 12px;
  padding: 22px 18px;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 47, 54, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(15, 47, 54, 0.28);
}

.stat-card .sn {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #68d59d;
  margin-bottom: 8px;
}

.stat-card .sl {
  font-size: 15px;
  line-height: 1.5;
  color: #e2e8f0;
}

/* ---- FAQ Accordion ---- */
.faq {
  margin: 10px 0 28px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  padding: 18px 50px 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #0f2f36;
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-q::after {
  content: "\002B"; /* + sign */
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #68d59d;
  font-weight: 700;
  transition: transform 0.3s ease, content 0.1s;
}

.faq-item.active .faq-q {
  background: linear-gradient(135deg, #0f2f36, #1a5568);
  color: #fff;
}

.faq-item.active .faq-q::after {
  content: "\2212"; /* − sign */
  color: #68d59d;
  transform: translateY(-50%);
}

.faq-a {
  display: none;
  padding: 16px 22px 20px;
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  animation: faqSlide 0.3s ease;
}

@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Sidebar Updates ---- */
.about-card {
  border-top: 4px solid #68d59d;
}

.cost-card {
  border-top: 4px solid #3163ab;
}

.cta-card {
  background: linear-gradient(135deg, #0f2f36, #1a5568);
}

.cta-card h4 {
  color: #fff;
  font-size: 17px;
}

.cta-card p {
  color: #a7c9d6;
  font-size: 14px;
}

.btn-theme-sidebar {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 22px;
  background: #68d59d;
  color: #0f2f36;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-theme-sidebar:hover {
  background: #fff;
  transform: translateY(-2px);
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
}

.service-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #68d59d;
  font-weight: 700;
}

.service-list li a {
  color: #0f2f36;
  text-decoration: none;
  transition: color 0.2s;
}

.service-list li a:hover {
  color: #1a5568;
}

/* ---- Blog Featured Image ---- */
.blog-featured-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 28px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .article-block h2 {
    font-size: 21px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .pull-quote {
    padding: 18px 20px;
  }

  .pull-quote::before {
    font-size: 44px;
  }
}
