@charset "UTF-8";
/* ============================
   FONTS
============================ */
@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Montserrat:wght@400;500;600;700&display=swap");
/* ============================
   URGENCY METER WRAPPER
============================ */
.urgency-meter {
  background: #f6fbfa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 0 auto 32px auto;
  max-width: 700px;
  font-family: "Montserrat", sans-serif;
  color: #09333f;
}

/* Urgency title */
.urgency-meter h2 {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.1;
  color: #09333f;
}

.urgency-meter h2 span {
  color: #26f7b2; /* neon green highlight */
}

/* Subheading */
.urgency-meter p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  color: #09333f;
}

/* Progress bar container */
.urgency-bar {
  margin: 12px 0;
}

.urgency-bar label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 600;
}

.urgency-bar .bar {
  width: 100%;
  height: 14px;
  border-radius: 10px;
  background: #d3edea;
  overflow: hidden;
  position: relative;
}

.urgency-bar .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #009d9a, #26f7b2);
  border-radius: 10px;
  width: 0%;
  transition: width 2s ease;
}

/* ============================
   CLIENT ONBOARDING BLOCK
   (MATCHES URGENCY METER)
============================ */
.sng-top-callout {
  background: #f6fbfa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 0px 20px;
  box-shadow: 0 10px 100px rgba(0, 0, 0, 0.08);
  margin-bottom: 28px;
  font-family: "Montserrat", sans-serif;
  color: #09333f;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Onboarding title */
.sng-top-callout h2,
.sng-top-callout h3 {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  text-align: center;
  color: #09333f;
  margin-bottom: 16px;
  line-height: 1.1;
}

/* Paragraphs */
.sng-top-callout p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #09333f;
}

/* Bullet list */
.sng-top-callout ul {
  padding-left: 22px;
  margin: 12px 0;
}

.sng-top-callout ul li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #09333f;
  position: relative;
}

.sng-top-callout ul li:before {
  content: "✔";
  color: #009d9a;
  position: absolute;
  left: -22px;
  font-size: 16px;
  line-height: 1;
}

/* Highlighted text */
.sng-top-callout strong,
.sng-top-callout b {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-size: 18px;
  color: #009d9a;
}

/* CTA line */
.sng-top-callout .cta-line {
  font-size: 16px;
  font-weight: 700;
  color: #26f7b2;
  text-align: center;
  margin-top: 20px;
}

/* Form fields */
#client_onboarding_form {
  max-width: 700px;
  margin: 0 auto;
}

#client_onboarding_form input,
#client_onboarding_form select,
#client_onboarding_form textarea {
  border-radius: 12px;
  border: 1px solid #E5E5E5;
  padding: 12px 0px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #09333f;
}

/* POPUP CONTAINER */
.sng-sac-popup {
  position: fixed !important;
  left: 50% !important;
  top: 25% !important;
  background: #FFF;
  transform: translate(-50%, 0) !important;
  min-width: 280px;
  max-width: 350px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 99999 !important;
}

/* TITLE STYLING */
.sng-sac-popup .title {
  font-family: "Luckiest Guy", cursive !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  text-align: center !important;
  color: #333 !important;
  padding: 10px !important;
}

/* ZIP + BUTTON CONTAINER (DESKTOP: side-by-side) */
.sng-zip-code {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

/* ZIP INPUT STYLING */
.sng-zip-code input {
  width: 100%;
  max-width: 280px;
  text-align: center;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* BUTTON STYLING */
.sng-button-submit {
  background-color: #FFEA00 !important; /* Neon yellow */
  color: #333 !important;
  font-size: 16px;
  font-weight: bold;
  border: none;
  padding: 12px 15px;
  border-radius: 12px !important;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 100%;
  max-width: 200px;
  text-transform: uppercase;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

/* BUTTON HOVER EFFECT */
.sng-button-submit:hover {
  background-color: #FFD700 !important;
  transform: scale(1.05);
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .sng-sac-popup {
    min-width: 90% !important;
    max-width: 90% !important;
    top: 20% !important;
    padding: 15px !important;
  }
  .sng-zip-code {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
  }
  .sng-zip-code input {
    max-width: 100% !important;
  }
  .sng-button-submit {
    max-width: 100% !important;
  }
}
.free-cleanup-box {
  background-color: rgba(73, 210, 226, 0.1882352941);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 20px;
  font-family: "Luckiest Guy", cursive;
  font-weight: bold;
}

/* Hide header on this specific onboarding/funnel page */
body[class*=sng] header,
body[class*=sng] .site-header,
body[data-url*="/sng/doggy-scoop-tym5x-client-onboarding"] header,
body[data-url*="/sng/doggy-scoop-tym5x-client-onboarding"] .site-header {
  display: none !important;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.elementor-section, .elementor-container, .elementor-widget-wrap {
  max-width: 100%;
}