/* =========================================================
   CREACIONES NERYS — BILINGUAL QUOTE EXPERIENCE V2
   ========================================================= */

:root {
  --quote-teal: #1f7f87;
  --quote-teal-dark: #165c63;
  --quote-aqua: #39d1e1;
  --quote-aqua-soft: #ddf9fb;
  --quote-pink: #ff9caf;
  --quote-pink-soft: #fff0f4;
  --quote-ink: #1f2d31;
  --quote-muted: #657277;
  --quote-line: rgba(31, 127, 135, 0.13);
  --quote-white: #ffffff;
  --quote-bg: #f7fdfe;
  --quote-shadow: 0 24px 70px rgba(31, 111, 120, 0.11);
  --quote-radius-xl: 34px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.quote-page {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 6% 12%, rgba(57, 209, 225, 0.15), transparent 24%),
    radial-gradient(circle at 93% 30%, rgba(255, 156, 175, 0.13), transparent 23%),
    #f7fdfe;
  color: var(--quote-ink);
}

button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
img { max-width: 100%; }
[hidden] { display: none !important; }

.quote-shell {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* HEADER */
.quote-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.91);
  border-bottom: 1px solid rgba(31,127,135,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.quote-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.quote-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--quote-teal);
  text-decoration: none;
}

.quote-brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.quote-brand span {
  display: flex;
  flex-direction: column;
}

.quote-brand strong {
  font-size: 15px;
  font-weight: 900;
}

.quote-brand small {
  margin-top: 1px;
  color: var(--quote-muted);
  font-size: 10px;
}

.quote-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switcher {
  display: flex;
  padding: 4px;
  border: 1px solid var(--quote-line);
  border-radius: 999px;
  background: #f8ffff;
}

.language-button {
  min-width: 45px;
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--quote-muted);
  font-size: 12px;
  font-weight: 900;
}

.language-button.is-active {
  background: var(--quote-aqua);
  color: #103f44;
  box-shadow: 0 5px 16px rgba(57,209,225,0.25);
}

.quote-home-link {
  color: var(--quote-teal);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

/* INTRO */
.quote-main { padding: 58px 0 110px; }

.quote-intro {
  display: grid;
  grid-template-columns: minmax(0,1.18fr) minmax(260px,0.55fr);
  align-items: center;
  min-height: 370px;
  margin-bottom: 44px;
  padding: 50px 56px;
  overflow: hidden;
  border: 1px solid var(--quote-line);
  border-radius: var(--quote-radius-xl);
  background: linear-gradient(135deg, rgba(221,249,251,0.92), #fff 54%, rgba(255,240,244,0.86));
  box-shadow: var(--quote-shadow);
}

.quote-eyebrow,
.quote-section-kicker {
  display: inline-flex;
  color: var(--quote-teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quote-intro h1 {
  max-width: 730px;
  margin: 11px 0 18px;
  color: var(--quote-teal-dark);
  font-size: clamp(44px,6vw,76px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.quote-intro h1 span { color: var(--quote-aqua); }

.quote-intro p {
  max-width: 640px;
  margin: 0;
  color: var(--quote-muted);
  font-size: 17px;
  line-height: 1.72;
}

.quote-intro-character {
  position: relative;
  height: 310px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.quote-intro-character img {
  position: relative;
  z-index: 2;
  height: 300px;
  object-fit: contain;
  transform: translateX(34px);
  filter: drop-shadow(0 20px 26px rgba(31,111,120,0.09));
}

.quote-character-glow {
  position: absolute;
  border-radius: 50%;
}

.quote-character-glow-one {
  width: 180px;
  height: 180px;
  top: -35px;
  right: -55px;
  background: rgba(57,209,225,0.17);
}

.quote-character-glow-two {
  width: 100px;
  height: 100px;
  bottom: 16px;
  left: 8px;
  background: rgba(255,156,175,0.18);
}

/* EXPERIENCE */
.quote-experience {
  max-width: 980px;
  margin-inline: auto;
  padding: 46px;
  border: 1px solid var(--quote-line);
  border-radius: var(--quote-radius-xl);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--quote-shadow);
}

/* PROGRESS */
.quote-progress { margin-bottom: 46px; }

.quote-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9f4f5;
}

.quote-progress-fill {
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,var(--quote-teal),var(--quote-aqua));
  transition: width 0.35s ease;
}

.quote-progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  color: var(--quote-muted);
  font-size: 11px;
  font-weight: 800;
}

/* STEPS */
.quote-step {
  display: none;
  animation: quoteFadeIn 0.28s ease;
}

.quote-step.is-active { display: block; }

@keyframes quoteFadeIn {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-step-heading {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 34px;
}

.step-number {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: linear-gradient(145deg,var(--quote-aqua-soft),var(--quote-pink-soft));
  color: var(--quote-teal);
  font-size: 13px;
  font-weight: 950;
}

.quote-step-heading h2 {
  margin: 5px 0 7px;
  color: var(--quote-teal-dark);
  font-size: clamp(30px,4vw,44px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.quote-step-heading p {
  margin: 0;
  color: var(--quote-muted);
  font-size: 15px;
  line-height: 1.62;
}

/* FORM */
.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 20px;
}

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-field-wide { grid-column: 1 / -1; }

.quote-location-grid {
  display: grid;
  grid-template-columns: minmax(0,2fr) minmax(150px,1fr) minmax(150px,1fr);
  gap: 20px;
}

.quote-field > span,
.quote-field legend {
  color: var(--quote-teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.quote-field input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),
.quote-field select,
.quote-field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(31,127,135,0.16);
  border-radius: 14px;
  outline: 0;
  background: #fbffff;
  color: var(--quote-ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.quote-field textarea {
  resize: vertical;
  min-height: 125px;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-color: var(--quote-aqua);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(57,209,225,0.13);
}

.quote-field input.has-error,
.quote-field select.has-error,
.quote-field textarea.has-error {
  border-color: #e6687c !important;
  box-shadow: 0 0 0 4px rgba(230,104,124,0.10) !important;
}

.quote-field small {
  color: #829094;
  font-size: 11px;
  line-height: 1.45;
}

.field-error {
  min-height: 18px;
  margin: 12px 0 0;
  color: #c74a60;
  font-size: 12px;
  font-weight: 800;
}

/* SERVICE CARDS */
.service-choice-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-service-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
}

.quote-service-card {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(31,127,135,0.12);
  border-radius: 22px;
  background: linear-gradient(145deg,#fff,#f9ffff);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.quote-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(57,209,225,.55);
  box-shadow: 0 14px 32px rgba(31,111,120,.09);
}

.quote-service-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quote-service-card:has(input:checked) {
  border-color: var(--quote-aqua);
  background: linear-gradient(145deg,#effdfe,#fff 58%,#fff6f8);
  box-shadow: 0 14px 34px rgba(57,209,225,.13);
}

.service-check {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf6f7;
  color: transparent;
  font-size: 14px;
  font-weight: 950;
}

.quote-service-card:has(input:checked) .service-check {
  background: var(--quote-aqua);
  color: #0c454b;
}

.quote-service-icon {
  margin-bottom: 20px;
  font-size: 29px;
}

.quote-service-card strong {
  color: var(--quote-teal);
  font-size: 18px;
  font-weight: 950;
}

.quote-service-card small {
  margin-top: 7px;
  color: var(--quote-muted);
  font-size: 12px;
  line-height: 1.5;
}


/* =========================================================
   SERVICE-BY-SERVICE SUBPROGRESS
   Only one selected service is displayed at a time.
   ========================================================= */

.service-subprogress {
  display: grid;
  gap: 12px;
  margin: -4px 0 24px;
  padding: 17px 19px;
  border: 1px solid rgba(31, 127, 135, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(221, 249, 251, 0.72), rgba(255, 255, 255, 0.96) 58%, rgba(255, 240, 244, 0.55));
}

.service-subprogress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-subprogress-copy span {
  color: var(--quote-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-subprogress-copy strong {
  color: var(--quote-teal);
  font-size: 14px;
  font-weight: 950;
  text-align: right;
}

.service-subprogress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(31, 127, 135, 0.09);
}

.service-subprogress-fill {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--quote-teal), var(--quote-aqua));
  transition: width 0.3s ease;
}

@media (max-width: 620px) {
  .service-subprogress-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .service-subprogress-copy strong {
    text-align: left;
  }
}


/* =========================================================
   V16.8.4.49 — UNIFIED DATE AND 12-HOUR TIME PICKERS
   Keeps a single visible field while preserving native pickers.
   ========================================================= */

.quote-unified-picker {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  grid-template-columns: minmax(0, 1fr) 52px;
  overflow: hidden;
  border: 1px solid rgba(31, 127, 135, 0.16);
  border-radius: 14px;
  background: #fbffff;
  box-sizing: border-box;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.quote-unified-picker:focus-within {
  border-color: var(--quote-aqua);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(57, 209, 225, 0.13);
}

.quote-field.has-error .quote-unified-picker {
  border-color: #e6687c;
  box-shadow: 0 0 0 4px rgba(230, 104, 124, 0.10);
}

.quote-field .quote-unified-picker .quote-picker-display {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 13px 15px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--quote-ink);
  box-shadow: none;
  font: inherit;
  font-weight: 700;
}

.quote-field .quote-unified-picker .quote-picker-display:focus {
  border: 0;
  box-shadow: none;
}

.quote-picker-trigger {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  border-left: 1px solid rgba(31, 127, 135, 0.13);
  background: linear-gradient(180deg, #f8feff, #eefafb);
  color: var(--quote-teal);
}

.quote-picker-trigger svg {
  width: 21px;
  height: 21px;
  pointer-events: none;
}

.quote-field .quote-picker-native {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  opacity: 0;
  cursor: pointer;
}

.quote-field .quote-picker-native:focus {
  border: 0;
  box-shadow: none;
}

.quote-picker-trigger:hover {
  background: #e6f8fa;
  color: var(--quote-teal-dark);
}


/* SERVICE DETAIL PANELS */
.service-details-stack {
  display: grid;
  gap: 24px;
}

.service-detail-panel {
  padding: 28px;
  border: 1px solid rgba(31,127,135,.12);
  border-radius: 24px;
  background: linear-gradient(145deg,rgba(255,255,255,.98),rgba(245,254,255,.97));
  box-shadow: 0 14px 34px rgba(31,111,120,.06);
}

.service-detail-header {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(31,127,135,.09);
}

.detail-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(145deg,var(--quote-aqua-soft),var(--quote-pink-soft));
  font-size: 25px;
}

.service-detail-header h3 {
  margin: 5px 0 0;
  color: var(--quote-teal-dark);
  font-size: 27px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.service-minimum-note {
  display: inline-flex;
  margin: 8px 0 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--quote-pink-soft);
  color: #b95c70;
  font-size: 11px;
  font-weight: 900;
}

.service-details-empty {
  padding: 20px;
  border-radius: 18px;
  background: var(--quote-pink-soft);
  color: #a54c60;
}

.global-notes {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(31,127,135,.09);
}

/* PILL / CHECK OPTIONS */
.contact-preference {
  margin: 0;
  padding: 0;
  border: 0;
}

.pill-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.pill-options label { position: relative; }

.pill-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-options span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 11px 18px;
  border: 1px solid rgba(31,127,135,.15);
  border-radius: 999px;
  background: #fbffff;
  color: var(--quote-teal);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.pill-options input:checked + span {
  border-color: var(--quote-aqua);
  background: var(--quote-aqua-soft);
  box-shadow: 0 5px 16px rgba(57,209,225,.12);
}

.checkbox-options {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  margin-top: 2px;
}

.checkbox-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border: 1px solid rgba(31,127,135,.12);
  border-radius: 14px;
  background: #fbffff;
  color: var(--quote-muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.checkbox-options input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  accent-color: var(--quote-aqua);
}

.requirement-card {
  padding: 18px;
  border: 1px solid rgba(255,156,175,.32);
  border-radius: 18px;
  background: linear-gradient(135deg,#fffafb,#fbffff);
}

/* IMAGE UPLOAD */
.upload-field {
  padding: 20px;
  border: 1px dashed rgba(31,127,135,.20);
  border-radius: 19px;
  background: linear-gradient(135deg,rgba(221,249,251,.42),rgba(255,240,244,.35));
}

.upload-dropzone {
  position: relative;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 6px;
  padding: 18px;
  border: 1px solid rgba(31,127,135,.15);
  border-radius: 17px;
  background: rgba(255,255,255,.88);
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.upload-dropzone:hover {
  transform: translateY(-2px);
  border-color: var(--quote-aqua);
  box-shadow: 0 10px 24px rgba(57,209,225,.10);
}

.upload-dropzone input {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 3px;
  border-radius: 50%;
  background: var(--quote-aqua-soft);
  color: var(--quote-teal);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}

.upload-dropzone strong {
  color: var(--quote-teal);
  font-size: 13px;
}

.upload-dropzone em {
  color: var(--quote-muted);
  font-size: 10px;
  font-style: normal;
}

.upload-preview-grid {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 10px;
  margin-top: 12px;
}

.upload-preview-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 13px;
  background: #eef7f8;
  border: 1px solid rgba(31,127,135,.11);
}

.upload-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(23,56,60,.82);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.upload-error {
  margin-top: 8px;
  color: #c74a60;
  font-size: 11px;
  font-weight: 800;
}

/* REVIEW */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
}

.review-card {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(31,127,135,.11);
  border-radius: 20px;
  background: linear-gradient(145deg,#fff,#f9ffff);
  box-shadow: 0 10px 24px rgba(31,111,120,.05);
}

.review-card-wide { grid-column: 1 / -1; }

.review-card-icon {
  display: block;
  margin-bottom: 13px;
  font-size: 24px;
}

.review-label {
  display: block;
  margin-bottom: 8px;
  color: var(--quote-teal);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.review-card div {
  color: var(--quote-muted);
  font-size: 13px;
  line-height: 1.65;
}

.review-card strong { color: var(--quote-teal-dark); }

.review-service-block + .review-service-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(31,127,135,.09);
}

.review-service-title {
  display: block;
  margin-bottom: 6px;
  color: var(--quote-teal);
  font-size: 14px;
  font-weight: 950;
}

.quote-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  margin-top: 24px;
  color: var(--quote-muted);
  font-size: 12px;
  line-height: 1.55;
  cursor: pointer;
}

.quote-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--quote-aqua);
}

/* NAVIGATION */
.quote-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 38px;
  padding-top: 27px;
  border-top: 1px solid rgba(31,127,135,.09);
}

.quote-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease;
}

.quote-button:hover { transform: translateY(-2px); }

.quote-button-primary {
  background: var(--quote-aqua);
  color: #113f44;
  box-shadow: 0 10px 24px rgba(57,209,225,.22);
}

.quote-button-secondary {
  margin-right: auto;
  border: 1px solid rgba(31,127,135,.15);
  background: #fff;
  color: var(--quote-teal);
}

.quote-form-status {
  min-height: 18px;
  margin: 14px 0 0;
  color: #c74a60;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

/* SUCCESS */
.quote-success {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17,63,68,.36);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.quote-success.is-visible { display: flex; }

.quote-success-card {
  width: min(610px,100%);
  padding: 45px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(145deg,#fff,#effdfe 60%,#fff1f5);
  box-shadow: 0 35px 90px rgba(16,67,72,.24);
  text-align: center;
}

.success-character {
  height: 145px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: -9px;
}

.success-character img {
  height: 155px;
  object-fit: contain;
}

.success-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--quote-aqua);
  color: #10444a;
  font-size: 24px;
  font-weight: 950;
}

.quote-success-card h2 {
  margin: 7px auto 13px;
  color: var(--quote-teal-dark);
  font-size: 36px;
  line-height: 1.08;
  font-weight: 950;
}

.quote-success-card p {
  max-width: 470px;
  margin: 0 auto 25px;
  color: var(--quote-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* TABLET */
@media (max-width: 900px) {
  .quote-intro {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .quote-intro-character {
    height: 255px;
    margin-top: 24px;
  }

  .quote-intro-character img { height: 265px; }

  .quote-service-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

/* MOBILE */
@media (max-width: 620px) {
  .quote-shell { width: min(100% - 28px,1180px); }

  .quote-header-inner { min-height: 68px; }

  .quote-brand-logo {
    width: 42px;
    height: 42px;
  }

  .quote-brand strong { font-size: 13px; }

  .quote-brand small,
  .quote-home-link { display: none; }

  .language-button {
    min-width: 39px;
    padding: 7px 10px;
  }

  .quote-main { padding: 22px 0 72px; }

  .quote-intro {
    min-height: 0;
    margin-bottom: 20px;
    padding: 30px 22px 0;
    border-radius: 27px;
  }

  .quote-intro h1 { font-size: 42px; }
  .quote-intro p { font-size: 15px; }

  .quote-intro-character { height: 220px; }

  .quote-intro-character img {
    height: 225px;
    transform: translateX(18px);
  }

  .quote-experience {
    padding: 25px 19px;
    border-radius: 27px;
  }

  .quote-progress { margin-bottom: 31px; }

  .quote-step-heading {
    grid-template-columns: 45px 1fr;
    gap: 13px;
    margin-bottom: 26px;
  }

  .step-number {
    width: 43px;
    height: 43px;
    border-radius: 14px;
  }

  .quote-step-heading h2 { font-size: 29px; }
  .quote-step-heading p { font-size: 13px; }

  .quote-form-grid,
  .quote-location-grid,
  .review-grid,
  .quote-service-grid {
    grid-template-columns: 1fr;
  }

  .quote-field-wide,
  .review-card-wide { grid-column: auto; }

  .quote-service-card { min-height: 145px; }

  .service-detail-panel {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .service-detail-header {
    grid-template-columns: 47px 1fr;
  }

  .detail-icon {
    width: 45px;
    height: 45px;
    border-radius: 15px;
    font-size: 21px;
  }

  .service-detail-header h3 { font-size: 23px; }

  .checkbox-options { grid-template-columns: 1fr; }

  .upload-preview-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }

  .quote-navigation { flex-wrap: wrap; }
  .quote-navigation .quote-button { flex: 1; }
  #quoteBackButton { flex: 0 0 auto; }

  .quote-form-status { text-align: left; }

  .quote-success-card { padding: 30px 21px; }
  .quote-success-card h2 { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}


/* =========================================================
   NEXT-DAY PICKUP FIELDS
   ========================================================= */

.conditional-pickup-field {
  padding: 18px;
  border: 1px solid rgba(57, 209, 225, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(221, 249, 251, 0.62), rgba(255, 255, 255, 0.96));
  animation: quoteFadeIn 0.22s ease;
}

.conditional-pickup-field > span {
  font-size: 13px;
}

.conditional-pickup-field small {
  max-width: 720px;
}



/* =========================================================
   SNACK CART — SIMPLE ORDER INFO
   ========================================================= */

.snack-cart-info-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(57, 209, 225, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(221, 249, 251, 0.70), rgba(255, 255, 255, 0.96));
}

.snack-cart-info-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #ffffff;
  font-size: 22px;
  box-shadow: 0 7px 18px rgba(31, 111, 120, 0.07);
}

.snack-cart-info-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--quote-teal-dark);
  font-size: 13px;
  font-weight: 950;
}

.snack-cart-info-card p {
  margin: 0;
  color: var(--quote-muted);
  font-size: 12px;
  line-height: 1.6;
}

.snack-cart-availability-note {
  padding: 15px 17px;
  border-radius: 16px;
  background: var(--quote-pink-soft);
}


/* =========================================================
   V12 — QUOTE PAGE LAYOUT RESET
   The homepage also uses .quote-shell as a horizontal CTA flex row.
   On the quote page, the main shell must be a normal block container
   so the intro and form work together instead of competing for width.
   ========================================================= */

.quote-main > .quote-shell {
  display: block;
  align-items: initial;
  justify-content: initial;
  gap: 0;
}

.quote-intro-copy .quote-account-note {
  max-width: 620px;
  margin: 26px 0 0;
  padding: 13px 16px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(31, 111, 120, 0.06);
}

.required-answer-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin: 13px 0 0;
  padding: 10px 13px;
  border: 1px solid rgba(57, 209, 225, 0.22);
  border-radius: 14px;
  background: rgba(221, 249, 251, 0.55);
  color: var(--quote-teal-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.required-answer-note > span:first-child {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--quote-aqua);
  color: #103f44;
  font-size: 11px;
  font-weight: 950;
}

/* Highlight a complete question container, including radio/checkbox groups. */
.quote-field.has-error {
  border-color: rgba(230, 104, 124, 0.62) !important;
  background: rgba(255, 240, 244, 0.58);
  box-shadow: 0 0 0 4px rgba(230, 104, 124, 0.08);
}

fieldset.quote-field.has-error {
  padding: 15px;
  border-style: solid;
  border-width: 1px;
  border-radius: 17px;
}

.quote-field.has-error > span,
.quote-field.has-error > legend {
  color: #b93f55;
}

@media (max-width: 620px) {
  .quote-intro-copy .quote-account-note {
    max-width: none;
    margin-top: 20px;
  }

  .required-answer-note {
    display: flex;
    width: 100%;
  }
}
