/* COLOR VARIABLE */
/* FONT VARIABLE */
/*OTHER VARIABLE */
.text-accent {
  color: #e51a6a;
}

.text-blue {
  color: #1565C0 !important;
}

.text-purple {
  color: #6A1B9A !important;
}

.text-pink {
  color: #FF6090;
}

.bg-accent {
  background-color: #e51a6a;
}

.bg-blue {
  background-color: #1565C0;
}

.bg-blue-light {
  background-color: #E3F2FD;
}

.bg-red-light {
  background-color: #FFEBEE;
}

.bg-warning-light {
  background-color: #FFF8E1;
}

.bg-purple-light {
  background-color: #F3E5F5;
}

.bg-success-light {
  background-color: #E8F5E9;
}

.tracking-wider {
  letter-spacing: 1.5px;
}

.fw-500 {
  font-weight: 500;
}

.page-wrap {
  max-width: 860px;
  margin: auto;
  padding: 3rem 0 4rem;
}

@media screen and (max-width: 767px) {
  .page-wrap {
    padding: 2rem 0 3rem;
  }
}

.section-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #e51a6a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .section-icon {
    width: 34px;
    height: 34px;
  }
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .section-title {
    font-size: 18px;
    line-height: 1.5;
  }
}

.section-line {
  height: 0.5px;
  background: rgba(0, 0, 0, 0.09);
}

.info-type-card {
  border: 0.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 12px;
  padding: 16px 14px;
  transition: border-color 0.15s, transform 0.15s;
}

.info-type-card:hover {
  border-color: #1565C0;
  transform: translateY(-2px);
}

.info-type-card .info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.border-blue-light {
  border: 0.5px solid #BBDEFB;
}

.border-start-blue {
  border-left: 3px solid #1565C0 !important;
}

.emergency-card {
  background: linear-gradient(135deg, #0D1B2A 0%, #1B3A5C 100%);
}

.emergency-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .emergency-card::before {
    display: none;
  }
}

.emergency-card h3 {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .emergency-card h3 {
    font-size: 18px;
    line-height: 1.5;
  }
}

.bg-danger span {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .bg-danger span {
    font-size: 18px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .bg-light {
    line-height: 1.5;
  }
}

.flow-step .flow-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.plan-card {
  transition: border-color 0.15s, transform 0.15s;
}

.plan-card:hover {
  border-color: #1565C0;
  transform: translateY(-2px);
}

.plan-card.plan-featured {
  border: 2px solid #e51a6a;
  background: linear-gradient(160deg, #fff 0%, #FFF5F7 100%);
}

.btn-accent {
  background-color: #e51a6a;
  color: #fff;
}

.btn-accent:hover {
  background-color: #b71555;
  color: #fff;
}

.badge-req {
  font-size: 10px;
  font-weight: 700;
  color: #e51a6a;
  background: #FBEAF0;
  padding: 2px 6px;
  border-radius: 99px;
}

.badge-opt {
  font-size: 10px;
  font-weight: 600;
  color: #6B6B67;
  background: #F0F0EE;
  padding: 2px 6px;
  border-radius: 99px;
}

.custom-input {
  background-color: #F9F9F7;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.custom-input::placeholder {
  color: #B0B0AC;
}

.custom-input:focus {
  background-color: #fff;
  border-color: #1565C0;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.plan-radio {
  cursor: pointer;
}

.plan-radio .plan-radio-box {
  background-color: #F9F9F7;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  transition: all 0.15s ease;
}

.plan-radio:hover .plan-radio-box {
  border-color: #1565C0;
  background-color: #E3F2FD;
}

.plan-radio input:checked + .plan-radio-box {
  border-color: #1565C0;
  background-color: #E3F2FD;
}

.btn-blue {
  background: #1565C0;
  color: #fff;
  width: 100%;
  max-width: 380px;
  border: none;
  transition: all 0.2s ease;
}

.btn-blue:hover, .btn-blue:focus {
  background: #104d92;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(21, 101, 192, 0.35) !important;
}

.arrow-right {
  top: 50%;
  right: -12px;
  z-index: 1;
  transform: translate(0, -50%);
}

.congrats {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  padding: 3rem 0;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .congrats {
    font-size: 1.25rem;
    text-align: center;
    padding: 2rem 0;
  }
}

/*# sourceMappingURL=disaster.css.map */