/* ===============================
   BASE WRAPPER
================================ */
#instant-quote-tool {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  font-family: system-ui, Arial, sans-serif;
  color: #222;
  box-sizing: border-box;
}

#instant-quote-tool * {
  box-sizing: border-box;
}

/* ===============================
   STEP CONTAINER
================================ */
.iqt-step {
  padding: 16px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.iqt-step h3 {
  margin-top: 0;
}

/* ===============================
   FORM ELEMENTS
================================ */
.iqt-step label {
  display: block;
  margin: 12px 0;
}

.iqt-step input,
.iqt-step select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

/* ===============================
   ACTION BUTTONS
================================ */
.iqt-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.iqt-actions button,
.iqt-select {
  background: #FFD700;
  color: #000;
  border: 1px solid #FFD700;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* ===============================
   PACKAGE CARDS – DEFAULT (MOBILE)
================================ */
.iqt-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.iqt-summary p {
    font-weight: 700 !important;
}

.iqt-card {
  border: 1px solid #eee;
  padding: 16px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.iqt-card h4 {
  margin: 0 0 8px;
}

.price-per {
  font-weight: 700;
}

.total {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Features list */
.iqt-features {
  padding-left: 18px;
  margin: 10px 0 0;
}

.iqt-features li {
  margin-bottom: 6px;
}

/* Push CTA to bottom */
.iqt-card .iqt-select {
  margin-top: auto;
  align-self: flex-start;
}

/* ===============================
   DESKTOP VIEW (HORIZONTAL CARDS)
================================ */
@media (min-width: 768px) {

  .iqt-cards {
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
  }

  .iqt-card {
    flex: 1 1 0;
    min-width: 0;
  }
	input.iqt-existing {
    width: 20px !important;
}
	.iqt-summary p {
    font-weight: 700 !important;
}
}

/* ===============================
   LARGE DESKTOP SPACING
================================ */
@media (min-width: 1200px) {
  .iqt-cards {
    gap: 28px;
  }
  .iqt-card {
    padding: 20px;
  }
	.iqt-summary p {
    font-weight: 700 !important;
}
}

/* ===============================
   MOBILE INPUT FIX (IMPORTANT)
================================ */
@media (max-width: 600px) {
/* Push CTA to bottom */
.iqt-card .iqt-select {
  margin-top: auto;
  align-self: center;
}
	
  #instant-quote-tool input,
  #instant-quote-tool select {
    
    margin: 8px 0 !important;
    
  }

  .iqt-actions {
    flex-direction: column;
  }

  .iqt-actions button {
    width: 100%;
  }
}

input.iqt-existing {
    width: 20px;
}
input#iqt-consent {
    width: 20px;
}
.iqt-step label {
    display: block;
    margin: 12px 0;
    font-size: 18px !important;
    font-weight: 700;
}
.iqt-summary p {
    font-weight: 700 !important;
}
 /* FIX: Ensure input text is visible while typing */ */
#instant-quote-tool input,
#instant-quote-tool select,
#instant-quote-tool textarea {
  color: #222;
  background-color: #fff;
  caret-color: #222;
  -webkit-text-fill-color: #222; /* critical for mobile */
}
