/* ==========================================================================
   SECTION: MISSION & VISION - LIGHT VARIATION (OPPOSITE BG)
   ========================================================================== */
.mv-section {
  background-color: var(--light-grey); /* #f8f9fa - تضاد با بخش قبلی */
  padding: 100px 0;
  color: var(--black);
}

.mv-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 45px 35px;
  border-radius: var(--border-radius-md);
  transition: var(--transition);
  height: 100%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* سایه بسیار نرم */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* هاور کارت‌ها به سمت تم اصلی شما */
.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 77, 46, 0.15);
  border-color: var(--primary-color);
}

.mv-icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--industrial-gradient);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--white);
  font-size: 2rem;
}

.mv-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dark-grey); /* رنگ تیره برای متن روی پس‌زمینه روشن */
}

.mv-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #444; /* خاکستری تیره برای خوانایی متون طولانی */
  margin-bottom: 0;
  text-align: justify;
}

/* جداکننده تزیینی زیر عنوان */
.mv-card::before {
  content: "";
  width: 40px;
  height: 4px;
  background: var(--primary-color);
  margin-bottom: 20px;
  border-radius: 2px;
}
