/* ================= PROMOTION PAGE ================= */
.promo-main h3{
  color: white !important;
}
.promo-section {
  padding: 90px 0;
  background: #fff;
}

.promo-head {
  margin-bottom: 50px;
}

.promo-badge {
  display: inline-block;
  background: rgba(159,45,47,.1);
  color: #9f2d2f;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 12px;
}

.promo-head h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0f1c2d;
  margin-bottom: 10px;
}

.promo-head p {
  color: rgba(15,28,45,.65);
  font-size: 16px;
  line-height: 1.6;
}

/* MAIN PROMO */
.promo-main {
  background: linear-gradient(135deg, #9f2d2f, #7f1f22);
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.promo-price .from {
  font-size: 14px;
  opacity: .85;
}

.promo-price h3 {
  font-size: 46px;
  font-weight: 800;
  margin: 5px 0;
}

.promo-price .note {
  font-size: 13px;
  opacity: .85;
}

.promo-cta {
  display: flex;
  gap: 12px;
}

.promo-cta .btn {
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
}

/* PROMO GRID */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.promo-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
  transition: .25s ease;
}

.promo-card i {
  font-size: 34px;
  color: #9f2d2f;
  margin-bottom: 15px;
}

.promo-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-card p {
  font-size: 14px;
  color: rgba(15,28,45,.65);
  line-height: 1.5;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

/* WARNING */
.promo-warning {
  text-align: center;
  font-size: 15px;
  color: #9f2d2f;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-main {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .promo-head h2 {
    font-size: 30px;
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
}
