/* ================================
   MM SERVICES SECTION — Modern, Condensed
   ================================ */

/* ---------- Section Wrapper ---------- */
.mm-services-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.mm-services-section__intro {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.mm-services-section__header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #111;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.mm-services-section__subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: #555;
  max-width: 850px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* ---------- Services Grid ---------- */
.mm-services-section__content.upgraded-services {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

/* ---------- Individual Service Card ---------- */
.service-card {
  flex: 1 1 calc(50% - 1rem);
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* ---------- Service Icon ---------- */
.service-icon {
  font-size: 2.5rem;
  color: #00a86b;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ---------- Service Card Text ---------- */
.service-card h4 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #111;
  margin: 0 0 0.5rem 0;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .service-card {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .mm-services-section__header h2 {
    font-size: 2rem;
  }
  .mm-services-section__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .service-card {
    flex: 1 1 100%;
    padding: 1.75rem;
  }
}
