body {
  background: #eaf6fb;
}
.form-card {
  max-width: 740px;
  padding: 40px 70px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Jost', sans-serif;
  flex: 0 0 auto;
  margin: 0 !important;
}
.timer-container{
  background: #FFEFD5;
}

#not-eligible p {
  font-size: 1.3rem;
  color: #232323;
}

.eligibility-error {
  color: #d32622;
  font-size: 1.8rem;
  font-weight: bold;
}

.question {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom:32px;
  color: #333;
  line-height:1.5;
}

.btn {
  min-width: 180px;
  padding: 10px 30px;
  font-size: 1.4em;
  border: none;
  border-radius: 40px;
  margin: 0 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.18s;
  box-shadow: 0 2px 7px #19be5a1e;
  line-height:1.4;
}
.btn-yes {
  background: #28a745;
  color: #fff;
}

.btn-no {
  background: #f64c22;
  color: #fff;
}
.btn-yes:hover, .btn-no:hover {
  opacity: 0.93;
}
.step-desc {
  margin-bottom: 10px;
  font-size: 1.13rem;
  color: #1a237e;
  line-height:1.6;
}
.question {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom:32px;
  color: #333;
  line-height:1.5;
}


.hidden {
  display: none;
}

.congrats-header {
  color: #FA8C16;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 20px;
}
img.home-icon {
    height: 20px;
}
.eligible-box {
  font-size: 1.2rem;
  color: #232323;
  margin-bottom: 20px;
  color: #1a237e;
}
.call-desc {
  font-size: 1.2rem;
  color: black;
  margin-bottom: 20px;
  text-align: start;
}
.final-phone {
  display: inline-flex;
  margin: 0px 0px 20px 0px;
  font-size: 2.0rem;
  background: #1c49ed;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  padding: 16px 32px;
  text-decoration: none;
  letter-spacing: 2px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  align-items: center;
  gap: 0.5rem;
}
.call-now{
  font-weight: 500;
  color:#1a237e;

}
.btn-group {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.zipcode-entry {
  display: block;
  width: 80%;
  margin: 0 auto 16px auto;
  padding: 14px 12px;
  border: 2px solid #bbb;
  border-radius: 8px;
  font-size: 1.2em;
  font-family: 'Jost', sans-serif;
  text-align: center;
}

@keyframes pulse {
  0% {
      transform: scale(0.9);
  }

  50% {
      transform: scale(1);
  }

  100% {
      transform: scale(0.9);
  }
}

@-webkit-keyframes pulse {
  0% {
      -webkit-transform: scale(0.95);
  }

  50% {
      -webkit-transform: scale(1);
  }

  100% {
      -webkit-transform: scale(0.95);
  }
}

.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
.timer{
  display: inline;
  color: red;
}
.urgency{
  display: inline;
}


@media (max-width: 600px){
  .form-card {
      padding: 16px 2vw 12px 2vw;
  }
  .final-phone { 
    font-size:1.5rem;
    padding:16px 15px;
  }
  .btn-group{
    flex-direction: column;
  }
  .congrats-header {
    font-size: 28px;
  }
  img.home-icon {
    height: 28px;
}
}

@media (max-width: 1200px){
  .btn-group{
    flex-direction: column;
  }
}
.loader-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-box {
  text-align: center;
  font-family: 'Jost', sans-serif;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.progress-container {
  width: 100%;
  height: 6px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

#progress-bar {
  width: 0%;
  height: 100%;
  background: #28a745;
  transition: width 0.4s ease;
  margin: 0 !important;
}
