
/* ================= HOW TO ORDER ================= */

.how-to-order {
  padding: 100px 80px;
  background: #8b0000;
}

.how-to-order .section-title h2 {
  color: #fff;
}

.how-to-order .section-title p {
  color: #f2f2f2;
}

/* ================= STEPS ================= */

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

.step-card {
  background: #fff;
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  position: relative;
}

.step-card:hover {
  transform: translateY(-12px) scale(1.02);
}

.step-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #c1121f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.step-card i {
  font-size: 50px;
  color: #f4a100;
  margin: 20px 0;
}

.step-card h3 {
  margin-bottom: 15px;
  color: #222;
}

.step-card p {
  color: #666;
  line-height: 1.7;
}

/* ================= RESPONSIVE FIX ================= */

@media (max-width: 992px) {

  .how-to-order {
    padding: 80px 40px;
  }

  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {

  .how-to-order {
    padding: 70px 20px;
  }

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

  .step-card {
    padding: 35px 25px;
  }
}