/* ================================
   VMware to AWS – Custom Sections
================================ */

.section-padding {
  padding: 100px 0;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  color: #6b7280;
  font-size: 16px;
}

/* Grid layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Cards */
.service-card,
.step-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.service-card:hover,
.step-card:hover {
  transform: translateY(-6px);
}

.service-card h4,
.step-card h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p,
.step-card p {
  font-size: 14px;
  color: #555;
}

/* Steps */
.step-number {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 10px;
}

/* CTA */
.service-cta {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #fff;
}

.cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  color: #fff;
  margin-bottom: 15px;
}

.cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 991px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section-padding {
    padding: 70px 0;
  }
}
