/* =========================================================
   WRIGHT WAY INSTANT QUOTE
   FULL CSS
   ========================================================= */

#wwiq-app,
#wwiq-app * {
  box-sizing: border-box;
}

#wwiq-app {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  color: #26352e;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}

#wwiq-app button,
#wwiq-app input,
#wwiq-app select,
#wwiq-app textarea {
  font: inherit;
}

#wwiq-app button {
  cursor: pointer;
}

/* =========================================================
   MAIN WRAPPER
   ========================================================= */

.wwiq-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
}

.wwiq-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dfe5df;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(23, 63, 49, 0.08);
  overflow: hidden;
}

/* =========================================================
   HEADER
   ========================================================= */

.wwiq-head {
  padding: 28px 30px;
  background: #173f31;
  color: #ffffff;
}

.wwiq-head h1 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.wwiq-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================================
   ADDRESS AREA
   ========================================================= */

.wwiq-address-area {
  padding: 24px 30px 20px;
  background: #ffffff;
}

.wwiq-address-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}

.wwiq-address-input-wrap {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.wwiq-address-input {
  width: 100%;
  min-height: 52px;
  padding: 0 17px;
  border: 1px solid #cfd8d1;
  border-radius: 10px;
  background: #ffffff;
  color: #26352e;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.wwiq-address-input:focus {
  border-color: #44745f;
  box-shadow: 0 0 0 3px rgba(68, 116, 95, 0.12);
}

.wwiq-address-input::placeholder {
  color: #89958e;
}

.wwiq-address-button {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  background: #415140;
  color: #ffffff;
  font-weight: 750;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.wwiq-address-button:hover {
  background: #344334;
  transform: translateY(-1px);
}

.wwiq-address-button:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

/* =========================================================
   ADDRESS SUGGESTIONS
   ========================================================= */

.wwiq-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 10000;
  display: none;
  max-height: 320px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #d9e0db;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(20, 40, 30, 0.16);
}

.wwiq-suggestion {
  padding: 13px 15px;
  border-bottom: 1px solid #edf0ed;
  color: #2d3d35;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.45;
}

.wwiq-suggestion:last-child {
  border-bottom: 0;
}

.wwiq-suggestion:hover {
  background: #f2f6f2;
}

/* =========================================================
   MAP
   ========================================================= */

.wwiq-map-wrap {
  position: relative;
  width: 100%;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid #dce4de;
  border-radius: 14px;
  background: #e9eee9;
}

#wwiq-map {
  width: 100%;
  min-height: 420px;
}

.wwiq-map-overlay {
  position: absolute;
  z-index: 500;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(23, 63, 49, 0.92);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wwiq-map-overlay strong {
  font-weight: 800;
}

.wwiq-map-overlay span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

/* =========================================================
   STATUS / MESSAGES
   ========================================================= */

.wwiq-status {
  margin-top: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f2f5f2;
  color: #415048;
  font-size: 14px;
  line-height: 1.5;
}

.wwiq-status:empty {
  display: none;
}

.wwiq-status.success {
  background: #edf6ed;
  color: #285b39;
}

.wwiq-status.error {
  background: #fff0ee;
  color: #8a3b32;
}

.wwiq-status.warning {
  background: #fff8e8;
  color: #795a16;
}

/* =========================================================
   MANUAL CONTROLS
   ========================================================= */

.wwiq-manual-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
}

.wwiq-control-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #ccd7cf;
  border-radius: 9px;
  background: #ffffff;
  color: #33443b;
  font-weight: 700;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.wwiq-control-button:hover {
  background: #f2f6f2;
  border-color: #aebcb2;
  transform: translateY(-1px);
}

.wwiq-control-button.primary {
  border-color: #415140;
  background: #415140;
  color: #ffffff;
}

.wwiq-control-button.primary:hover {
  background: #344334;
}

.wwiq-control-button.danger {
  border-color: #d8aaa4;
  color: #8b3e35;
}

.wwiq-control-button.danger:hover {
  background: #fff1ef;
}

/* =========================================================
   QUOTE RESULT AREA
   ========================================================= */

.wwiq-result {
  width: 100%;
  padding: 0 30px 30px;
}

.wwiq-result:empty {
  display: none;
}

/* =========================================================
   QUOTE GRAPHIC / FLYER
   ========================================================= */

.wwiq-quote-graphic {
  width: 100%;
  max-width: 1250px;
  margin: 26px auto 0;
  overflow: hidden;
  background: #f4f3ed;
  border: 1px solid #d8ddd7;
  border-radius: 2px;
  box-shadow: 0 15px 45px rgba(22, 48, 38, 0.12);
  color: #26352e;
}

/* =========================================================
   FLYER TOP / BRAND HEADER
   ========================================================= */

.wwiq-flyer-top {
  width: 100%;
  padding: 34px 42px 30px;
  background: #173f31;
  color: #ffffff;
}

.wwiq-flyer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 27px;
}

.wwiq-flyer-brand-left {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
}

.wwiq-flyer-logo {
  display: block;
  width: auto;
  max-width: 155px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.wwiq-flyer-brand-text {
  min-width: 0;
}

.wwiq-flyer-brand-name {
  margin: 0;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wwiq-flyer-brand-sub {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wwiq-flyer-badge {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wwiq-quote-title {
  margin: 0;
  max-width: 880px;
  color: #ffffff;
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.wwiq-quote-subtitle {
  max-width: 820px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.wwiq-property-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.wwiq-property-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wwiq-property-value {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 750;
}

.wwiq-property-size {
  margin-left: auto;
  color: #dce8b9;
  font-size: 16px;
  font-weight: 850;
}

/* =========================================================
   SERVICE GRID
   ========================================================= */

.wwiq-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 25px;
  background: #f4f3ed;
}

.wwiq-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 650px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d9ddd7;
}

.wwiq-service-card + .wwiq-service-card {
  border-left: 0;
}

.wwiq-conventional {
  background: #ffffff;
}

.wwiq-rental {
  background: #fbfcf5;
}

.wwiq-purchase {
  background: #fffaf6;
}

/* =========================================================
   SERVICE CARD HEADERS
   ========================================================= */

.wwiq-service-header {
  padding: 21px 24px 19px;
  color: #ffffff;
}

.wwiq-conventional .wwiq-service-header {
  background: #44745f;
}

.wwiq-rental .wwiq-service-header {
  background: #99b436;
}

.wwiq-purchase .wwiq-service-header {
  background: #bd7136;
}

.wwiq-service-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wwiq-service-header p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 650;
}

/* =========================================================
   SERVICE BODY
   ========================================================= */

.wwiq-service-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 25px 24px 24px;
}

.wwiq-label {
  margin-bottom: 8px;
  color: #77827c;
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wwiq-big-price {
  color: #21382e;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.wwiq-medium-price {
  color: #21382e;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.wwiq-annual-price {
  color: #536158;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
}

.wwiq-divider {
  width: 100%;
  height: 1px;
  margin: 21px 0;
  background: #e0e4df;
}

/* =========================================================
   FREQUENCY BOXES
   ========================================================= */

.wwiq-frequency {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 17px;
}

.wwiq-frequency-box {
  padding: 12px 11px;
  border: 1px solid #dfe4de;
  border-radius: 9px;
  background: #f7f8f5;
}

.wwiq-frequency-box .wwiq-label {
  margin-bottom: 6px;
  font-size: 8px;
}

.wwiq-frequency-box strong {
  display: block;
  color: #263b32;
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
}

.wwiq-frequency-box span {
  display: block;
  margin-top: 5px;
  color: #77827c;
  font-size: 10px;
  line-height: 1.25;
}

/* =========================================================
   FEATURE STRIP
   ========================================================= */

.wwiq-feature-strip {
  margin-top: auto;
  padding: 14px 15px;
  border-radius: 9px;
  background: #edf3ed;
  color: #3e5549;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 650;
}

.wwiq-feature-strip strong {
  color: #263e32;
  font-weight: 850;
}

/* =========================================================
   ROBOT RENTAL
   ========================================================= */

.wwiq-rental-heading {
  color: #425126;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wwiq-service-block-tight {
  margin-top: 12px;
}

.wwiq-small-total {
  color: #5f6c52;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.wwiq-small-total strong {
  color: #344522;
  font-weight: 900;
}

.wwiq-premium-strip {
  margin-top: 16px;
  padding: 12px 13px;
  border-left: 4px solid #99b436;
  background: #eef4d9;
  color: #485631;
  font-size: 10px;
  line-height: 1.45;
  font-weight: 700;
}

.wwiq-premium-strip strong {
  color: #36441f;
  font-weight: 900;
}

/* =========================================================
   ROBOT PURCHASE
   ========================================================= */

.wwiq-purchase-price {
  color: #8b4b24;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.wwiq-small-note {
  margin-top: 6px;
  color: #75665d;
  font-size: 10px;
  line-height: 1.4;
}

.wwiq-purchase-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eadfd7;
}

.wwiq-purchase-line:last-child {
  border-bottom: 0;
}

.wwiq-purchase-line span {
  color: #74675e;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 700;
}

.wwiq-purchase-line strong {
  color: #62381f;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 900;
  text-align: right;
}

.wwiq-support-note {
  margin-top: 15px;
  padding: 12px 13px;
  border-radius: 8px;
  background: #faeee6;
  color: #744a32;
  font-size: 10px;
  line-height: 1.45;
}

.wwiq-savings-strip {
  margin-top: auto;
  padding: 14px 15px;
  border-radius: 9px;
  background: #f7e2d4;
  color: #714429;
  font-size: 10px;
  line-height: 1.45;
  font-weight: 750;
}

.wwiq-savings-strip strong {
  color: #63391f;
  font-size: 13px;
  font-weight: 900;
}

/* =========================================================
   QUOTE FOOTER
   ========================================================= */

.wwiq-quote-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 36px;
  background: #173f31;
  color: #ffffff;
}

.wwiq-footer-copy {
  min-width: 0;
}

.wwiq-footer-copy strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.wwiq-footer-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.73);
  font-size: 11px;
  line-height: 1.45;
}

.wwiq-footer-mark {
  flex: 0 0 auto;
  color: #dce8b9;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* =========================================================
   ESTIMATE NOTE
   ========================================================= */

.wwiq-quote-estimate-note {
  margin: 12px 25px 0;
  padding: 11px 13px;
  border: 1px solid #dce3dc;
  border-radius: 8px;
  background: #f7f8f5;
  color: #657168;
  font-size: 10px;
  line-height: 1.5;
}

/* =========================================================
   ACTION BUTTONS
   ========================================================= */

.wwiq-quote-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.wwiq-download-button,
.wwiq-share-button {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 9px;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.wwiq-download-button {
  background: #415140;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(65, 81, 64, 0.18);
}

.wwiq-download-button:hover {
  background: #344334;
  transform: translateY(-1px);
  box-shadow: 0 9px 23px rgba(65, 81, 64, 0.22);
}

.wwiq-share-button {
  background: #173f31;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(23, 63, 49, 0.18);
}

.wwiq-share-button:hover {
  background: #102f25;
  transform: translateY(-1px);
  box-shadow: 0 9px 23px rgba(23, 63, 49, 0.22);
}

.wwiq-download-button:disabled,
.wwiq-share-button:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

/* =========================================================
   GENERATED IMAGE
   ========================================================= */

.wwiq-generated-image-wrap {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.wwiq-generated-image {
  display: block;
  width: 100%;
  max-width: 1250px;
  height: auto;
  margin: 0 auto;
  border: 1px solid #d8ddd7;
  box-shadow: 0 10px 30px rgba(20, 40, 30, 0.1);
}

/* =========================================================
   AUTOMATIC ESTIMATE UI
   ========================================================= */

.wwiq-auto-estimate {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #dbe3dc;
  border-radius: 12px;
  background: #f7f9f7;
}

.wwiq-auto-estimate h3 {
  margin: 0 0 7px;
  color: #294136;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
}

.wwiq-auto-estimate p {
  margin: 0;
  color: #68756d;
  font-size: 13px;
  line-height: 1.5;
}

.wwiq-auto-estimate button {
  margin-top: 12px;
}

/* =========================================================
   AUTO ESTIMATE FAILURE / FALLBACK
   ========================================================= */

.wwiq-auto-failure {
  padding: 15px;
  border: 1px solid #ead2cd;
  border-radius: 10px;
  background: #fff5f3;
  color: #76453e;
  font-size: 13px;
  line-height: 1.5;
}

.wwiq-auto-failure strong {
  color: #67372f;
}

/* Hide fallback controls until JS explicitly enables them */
.wwiq-manual-only,
.wwiq-manual-controls[hidden],
.wwiq-auto-failure[hidden] {
  display: none !important;
}

/* =========================================================
   LEAFLET OVERRIDES
   ========================================================= */

#wwiq-app .leaflet-container {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  z-index: 1;
}

#wwiq-app .leaflet-control {
  font-family: inherit;
}

#wwiq-app .leaflet-control-zoom a {
  color: #26352e;
}

#wwiq-app .leaflet-popup-content-wrapper,
#wwiq-app .leaflet-popup-tip {
  background: #ffffff;
}

#wwiq-app .leaflet-popup-content {
  color: #26352e;
  font-size: 13px;
  line-height: 1.45;
}

/* =========================================================
   CANVAS / SCREENSHOT SAFETY
   ========================================================= */

.wwiq-quote-graphic img {
  max-width: 100%;
}

.wwiq-quote-graphic,
.wwiq-quote-graphic * {
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

/*
   Keep screenshot content visually self-contained.
   Prevent WordPress/theme styles from unexpectedly
   changing flyer typography.
*/

.wwiq-quote-graphic h1,
.wwiq-quote-graphic h2,
.wwiq-quote-graphic h3,
.wwiq-quote-graphic h4,
.wwiq-quote-graphic h5,
.wwiq-quote-graphic h6,
.wwiq-quote-graphic p,
.wwiq-quote-graphic span,
.wwiq-quote-graphic strong {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
  .wwiq-wrap {
    padding: 18px;
  }

  .wwiq-head {
    padding: 25px 24px;
  }

  .wwiq-address-area {
    padding: 21px 24px 18px;
  }

  .wwiq-result {
    padding: 0 24px 24px;
  }

  .wwiq-service-grid {
    padding: 18px;
  }

  .wwiq-service-card {
    min-height: 610px;
  }

  .wwiq-service-body {
    padding: 21px 19px 20px;
  }

  .wwiq-service-header {
    padding: 18px 19px;
  }

  .wwiq-flyer-top {
    padding: 30px 32px 27px;
  }

  .wwiq-quote-footer {
    padding: 22px 30px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 780px) {
  .wwiq-wrap {
    padding: 10px;
  }

  .wwiq-card {
    border-radius: 13px;
  }

  .wwiq-head {
    padding: 22px 19px;
  }

  .wwiq-head h1 {
    font-size: 28px;
  }

  .wwiq-head p {
    font-size: 13px;
  }

  .wwiq-address-area {
    padding: 18px 16px 16px;
  }

  .wwiq-address-row {
    flex-direction: column;
  }

  .wwiq-address-button {
    width: 100%;
  }

  #wwiq-map {
    min-height: 340px;
  }

  .wwiq-map-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 11px;
  }

  .wwiq-result {
    padding: 0 10px 18px;
  }

  .wwiq-quote-graphic {
    margin-top: 18px;
    border-radius: 0;
  }

  .wwiq-flyer-top {
    padding: 24px 20px 22px;
  }

  .wwiq-flyer-brand {
    align-items: flex-start;
    margin-bottom: 21px;
  }

  .wwiq-flyer-brand-left {
    gap: 11px;
  }

  .wwiq-flyer-logo {
    max-width: 105px;
    max-height: 55px;
  }

  .wwiq-flyer-brand-name {
    font-size: 17px;
  }

  .wwiq-flyer-brand-sub {
    font-size: 8px;
    letter-spacing: 0.09em;
  }

  .wwiq-flyer-badge {
    padding: 7px 9px;
    font-size: 8px;
  }

  .wwiq-quote-title {
    font-size: clamp(31px, 10vw, 48px);
  }

  .wwiq-quote-subtitle {
    font-size: 12px;
    line-height: 1.45;
  }

  .wwiq-property-line {
    gap: 5px 9px;
    margin-top: 17px;
    padding-top: 14px;
  }

  .wwiq-property-value {
    width: 100%;
    font-size: 13px;
  }

  .wwiq-property-size {
    margin-left: 0;
    font-size: 14px;
  }

  /*
     Keep the three pricing columns side-by-side
     in the generated flyer. The flyer is designed
     as a landscape graphic and should remain
     horizontally structured for html2canvas.
  */

  .wwiq-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 10px;
    overflow: hidden;
  }

  .wwiq-service-card {
    min-height: 550px;
  }

  .wwiq-service-card + .wwiq-service-card {
    border-left: 0;
  }

  .wwiq-service-header {
    padding: 13px 11px;
  }

  .wwiq-service-header h3 {
    font-size: 11px;
  }

  .wwiq-service-header p {
    margin-top: 5px;
    font-size: 7px;
    line-height: 1.3;
  }

  .wwiq-service-body {
    padding: 15px 11px 13px;
  }

  .wwiq-label {
    margin-bottom: 6px;
    font-size: 6px;
  }

  .wwiq-big-price {
    font-size: clamp(23px, 6vw, 38px);
  }

  .wwiq-medium-price {
    font-size: 18px;
  }

  .wwiq-annual-price {
    font-size: 12px;
  }

  .wwiq-divider {
    margin: 13px 0;
  }

  .wwiq-frequency {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 11px;
  }

  .wwiq-frequency-box {
    padding: 8px 7px;
    border-radius: 6px;
  }

  .wwiq-frequency-box .wwiq-label {
    margin-bottom: 4px;
    font-size: 5px;
  }

  .wwiq-frequency-box strong {
    font-size: 14px;
  }

  .wwiq-frequency-box span {
    margin-top: 3px;
    font-size: 7px;
  }

  .wwiq-feature-strip,
  .wwiq-premium-strip,
  .wwiq-support-note,
  .wwiq-savings-strip {
    padding: 8px 8px;
    font-size: 7px;
    line-height: 1.35;
  }

  .wwiq-rental-heading {
    font-size: 8px;
  }

  .wwiq-small-total {
    font-size: 8px;
  }

  .wwiq-purchase-price {
    font-size: 22px;
  }

  .wwiq-small-note {
    font-size: 7px;
  }

  .wwiq-purchase-line {
    padding: 7px 0;
    gap: 5px;
  }

  .wwiq-purchase-line span {
    font-size: 6px;
  }

  .wwiq-purchase-line strong {
    font-size: 9px;
  }

  .wwiq-quote-footer {
    padding: 17px 19px;
    gap: 14px;
  }

  .wwiq-footer-copy strong {
    font-size: 11px;
  }

  .wwiq-footer-copy span {
    font-size: 7px;
  }

  .wwiq-footer-mark {
    font-size: 10px;
  }

  .wwiq-quote-estimate-note {
    margin: 8px 10px 0;
    padding: 8px 9px;
    font-size: 7px;
  }

  .wwiq-quote-actions {
    margin-top: 14px;
  }

  .wwiq-download-button,
  .wwiq-share-button {
    min-height: 43px;
    padding: 0 16px;
    font-size: 13px;
  }
}

/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {
  .wwiq-wrap {
    padding: 6px;
  }

  .wwiq-head {
    padding: 19px 15px;
  }

  .wwiq-head h1 {
    font-size: 24px;
  }

  .wwiq-address-area {
    padding: 15px 12px;
  }

  #wwiq-map {
    min-height: 300px;
  }

  .wwiq-result {
    padding: 0 5px 15px;
  }

  .wwiq-flyer-top {
    padding: 19px 14px 18px;
  }

  .wwiq-flyer-brand {
    gap: 8px;
  }

  .wwiq-flyer-logo {
    max-width: 82px;
    max-height: 44px;
  }

  .wwiq-flyer-brand-name {
    font-size: 13px;
  }

  .wwiq-flyer-brand-sub {
    margin-top: 3px;
    font-size: 6px;
  }

  .wwiq-flyer-badge {
    padding: 5px 6px;
    font-size: 6px;
  }

  .wwiq-quote-title {
    font-size: 28px;
  }

  .wwiq-quote-subtitle {
    margin-top: 9px;
    font-size: 9px;
  }

  .wwiq-property-line {
    margin-top: 13px;
    padding-top: 11px;
  }

  .wwiq-property-label {
    font-size: 6px;
  }

  .wwiq-property-value {
    font-size: 10px;
  }

  .wwiq-property-size {
    font-size: 10px;
  }

  .wwiq-service-grid {
    padding: 7px;
  }

  .wwiq-service-card {
    min-height: 490px;
  }

  .wwiq-service-header {
    padding: 10px 7px;
  }

  .wwiq-service-header h3 {
    font-size: 8px;
  }

  .wwiq-service-header p {
    font-size: 5px;
  }

  .wwiq-service-body {
    padding: 11px 7px 9px;
  }

  .wwiq-big-price {
    font-size: 20px;
  }

  .wwiq-medium-price {
    font-size: 15px;
  }

  .wwiq-annual-price {
    font-size: 10px;
  }

  .wwiq-divider {
    margin: 9px 0;
  }

  .wwiq-frequency {
    gap: 4px;
    margin-top: 8px;
  }

  .wwiq-frequency-box {
    padding: 6px 5px;
  }

  .wwiq-frequency-box strong {
    font-size: 11px;
  }

  .wwiq-frequency-box span {
    font-size: 5px;
  }

  .wwiq-feature-strip,
  .wwiq-premium-strip,
  .wwiq-support-note,
  .wwiq-savings-strip {
    padding: 6px;
    font-size: 5.5px;
  }

  .wwiq-rental-heading {
    font-size: 6.5px;
  }

  .wwiq-small-total {
    font-size: 6px;
  }

  .wwiq-purchase-price {
    font-size: 17px;
  }

  .wwiq-small-note {
    font-size: 5px;
  }

  .wwiq-purchase-line {
    padding: 5px 0;
  }

  .wwiq-purchase-line span {
    font-size: 5px;
  }

  .wwiq-purchase-line strong {
    font-size: 7px;
  }

  .wwiq-quote-footer {
    padding: 12px 13px;
  }

  .wwiq-footer-copy strong {
    font-size: 8px;
  }

  .wwiq-footer-copy span {
    font-size: 5px;
  }

  .wwiq-footer-mark {
    font-size: 7px;
  }

  .wwiq-quote-estimate-note {
    font-size: 5.5px;
  }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

#wwiq-app button:focus-visible,
#wwiq-app input:focus-visible {
  outline: 3px solid rgba(153, 180, 54, 0.5);
  outline-offset: 2px;
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  #wwiq-app *,
  #wwiq-app *::before,
  #wwiq-app *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   WRIGHT WAY INSTANT QUOTE
   FINAL UI OVERRIDES
   ========================================================= */

/* ---------------------------------------------------------
   CENTER THE ADDRESS / INTRO AREA
   --------------------------------------------------------- */

#wwiq-app #wwiq-form {
    text-align: center !important;
}

#wwiq-app #wwiq-form label,
#wwiq-app #wwiq-form .wwiq-label,
#wwiq-app #wwiq-form p,
#wwiq-app #wwiq-form .wwiq-help,
#wwiq-app #wwiq-form .wwiq-description,
#wwiq-app #wwiq-form .wwiq-subtitle {
    text-align: center !important;
}

#wwiq-app #wwiq-address {
    display: block !important;
    width: min(100%, 650px) !important;
    margin: 0 auto !important;
    text-align: center !important;
}

#wwiq-app #wwiq-form button[type="submit"],
#wwiq-app #wwiq-form #wwiq-submit,
#wwiq-app #wwiq-form .wwiq-submit,
#wwiq-app #wwiq-form .wwiq-button {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* ---------------------------------------------------------
   CENTER THE MAIN HEADING / INTRO TEXT
   --------------------------------------------------------- */

#wwiq-app > h1,
#wwiq-app > h2,
#wwiq-app > p,
#wwiq-app .wwiq-intro,
#wwiq-app .wwiq-intro h1,
#wwiq-app .wwiq-intro h2,
#wwiq-app .wwiq-intro p {
    text-align: center !important;
}


/* ---------------------------------------------------------
   GENERATED QUOTE IMAGE
   ONLY THE IMAGE SHOULD BE VISIBLE AFTER GENERATION
   --------------------------------------------------------- */

#wwiq-app .wwiq-generated-image-wrap {
    width: 100% !important;
    max-width: 1250px !important;
    margin: 25px auto 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

#wwiq-app .wwiq-generated-image {
    display: block !important;
    width: 100% !important;
    max-width: 1250px !important;
    height: auto !important;
    margin: 0 auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}


/* ---------------------------------------------------------
   DOWNLOAD / SHARE BUTTONS
   --------------------------------------------------------- */

#wwiq-app .wwiq-image-actions {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    margin: 20px auto 30px !important;
    text-align: center !important;
}

#wwiq-app .wwiq-image-button {
    margin: 0 !important;
}


/* ---------------------------------------------------------
   MAKE SURE THE TEMPORARY HTML FLYER NEVER SURVIVES
   --------------------------------------------------------- */

#wwiq-app #wwiq-result #wwiq-visible-quote {
    display: none !important;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 700px) {

    #wwiq-app #wwiq-address {
        width: calc(100% - 30px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #wwiq-app #wwiq-form button[type="submit"],
    #wwiq-app #wwiq-form #wwiq-submit,
    #wwiq-app #wwiq-form .wwiq-submit,
    #wwiq-app #wwiq-form .wwiq-button {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #wwiq-app .wwiq-image-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }

    #wwiq-app .wwiq-image-button {
        width: min(100%, 300px) !important;
    }

}