/* ===== Master Injector Program 2026 — Promotional Modal ===== */
:root {
  --mip-navy: #061d40;
  --mip-cyan: #04a2de;
  --mip-wa: #25d366;
}
.mip-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  padding: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(6, 29, 64, .82);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.mip-overlay.mip-open {
  opacity: 1;
  visibility: visible;
}
.mip-modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  transform: translateY(30px) scale(.96);
  transition: transform .4s cubic-bezier(.2, .8, .25, 1);
}
.mip-overlay.mip-open .mip-modal {
  transform: translateY(0) scale(1);
}
.mip-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .22);
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  transition: background .25s, transform .25s;
}
.mip-close:hover {
  background: rgba(255, 255, 255, .4);
  transform: rotate(90deg);
}
.mip-head {
  background: linear-gradient(135deg, var(--mip-navy) 0%, #0a2e63 55%, var(--mip-cyan) 140%);
  color: #fff;
  padding: 22px 26px 20px;
  text-align: center;
  border-radius: 16px 16px 0 0;
}
.mip-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.mip-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4d4d;
  animation: mip-pulse 1.8s infinite;
}
@keyframes mip-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 77, .7); }
  70% { box-shadow: 0 0 0 9px rgba(255, 77, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}
.mip-pre {
  font-size: 12.5px;
  opacity: .9;
  margin: 0 0 6px;
}
.mip-pre b { color: var(--mip-cyan); }
.mip-title {
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px;
  text-transform: uppercase;
  color: #fff;
}
.mip-title span { color: var(--mip-cyan); }
.mip-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}
.mip-body { padding: 16px 26px 4px; }
.mip-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mip-cyan);
  margin: 0 0 8px;
  text-align: left;
}
.mip-schedule {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.mip-schedule li {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed #e4e9f0;
}
.mip-schedule li:last-child { border-bottom: 0; }
.mip-schedule .ic {
  flex: 0 0 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(4, 162, 222, .1);
  color: var(--mip-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.mip-schedule .txt b {
  display: block;
  color: var(--mip-navy);
  font-size: 14px;
  font-weight: 700;
}
.mip-schedule .txt span {
  font-size: 12px;
  color: #7a8699;
}
.mip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mip-grid li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #3a4658;
  font-weight: 500;
  text-align: left;
}
.mip-grid li i {
  color: var(--mip-cyan);
  font-size: 16px;
  flex: 0 0 auto;
}
.mip-foot {
  padding: 14px 26px 20px;
  text-align: center;
}
.mip-seats {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e23b3b;
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 10px;
}
.mip-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mip-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--mip-wa);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 15.5px;
  padding: 13px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .35);
  transition: transform .2s, box-shadow .2s;
}
.mip-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 211, 102, .45);
  color: #fff;
}
.mip-wa i { font-size: 21px; }
.mip-phone {
  font-size: 12.5px;
  color: #7a8699;
  margin: 10px 0 0;
  text-align: center;
}
.mip-phone b { color: var(--mip-navy); }
@media (max-width: 520px) {
  .mip-head { padding: 20px 18px 18px; }
  .mip-title { font-size: 19px; }
  .mip-body, .mip-foot { padding-left: 18px; padding-right: 18px; }
  .mip-grid { grid-template-columns: 1fr; gap: 7px 0; }
  .mip-schedule .txt b { font-size: 13px; }
}
