.vision-mission-section {
  background: linear-gradient(180deg, #f9fbf9 0%, #ffffff 100%);
  min-height: 100vh;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.vision-mission-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 30% 20%, rgba(25, 135, 84, 0.08), transparent 70%);
  z-index: 0;
}

.vmv-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* === CARD === */
.vmv-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 35px;
  box-shadow: 0 10px 30px rgba(0, 50, 20, 0.07);
  border: 1px solid #e8f1e8;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.vmv-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === CARD HEADER === */
.vmv-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.vmv-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #146A0E;
  margin: 0;
}

.vmv-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #22c55e, #146A0E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 6px 12px rgba(20, 106, 14, 0.2);
}

/* === CARD BODY === */
.vmv-body p {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  white-space: pre-line;
  text-align: justify;
}

/* === Hover Effect === */
.vmv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(20, 106, 14, 0.1);
}

/* === FULL WIDTH CARD (untuk slogan terakhir) === */
.vmv-card-full {
  grid-column: 1 / -1;
  text-align: center;
  background: linear-gradient(135deg, #f3faf3 0%, #ffffff 100%);
}

.vmv-card-full .vmv-header {
  justify-content: center;
}

.vmv-card-full .vmv-body p {
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
  color: #146A0E;
}

/* === Animation base === */
[data-animate] {
  opacity: 0;
  transform: translateY(60px);
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === Responsive === */
@media (max-width: 768px) {
  .vision-mission-section {
    padding: 70px 15px;
  }

  .vmv-container {
    grid-template-columns: 1fr;
  }

  .vmv-card {
    padding: 30px 25px;
  }

  .vmv-header h2 {
    font-size: 1.3rem;
  }

  .vmv-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}
