.is-hidden {
  display: none !important;
}

.page-hero {
  padding: 32px 0 24px;
  background: #f8fbfd;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 24px;
  color: #5f6f82;
}

.breadcrumbs a {
  color: #004A7F;
  text-decoration: none;
}

.page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.page-hero__content h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #14213d;
}

.page-hero__content p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5f6f82;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.page-hero-card {
  background: #fff;
  border: 1px solid #e2ebf2;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(15, 35, 55, 0.08);
}

.page-hero-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 74, 127, 0.08);
  color: #004A7F;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.page-hero-card h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: #14213d;
}

.page-hero-card p {
  margin: 0 0 18px;
  color: #5f6f82;
  line-height: 1.7;
}

.page-hero-card__list {
  display: grid;
  gap: 12px;
}

.page-hero-card__list div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #29465b;
}

.estimate-builder-section {
  padding: 32px 0 64px;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #14213d;
}

.section-text {
  margin: 0 0 28px;
  color: #5f6f82;
  line-height: 1.7;
  max-width: 920px;
}

.instant-estimate-page #estimate-builder .section-text {
  max-width: 920px;
  margin-left: 0;
  font-size: 17px;
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.card {
  background: #fff;
  border: 1px solid #e2ebf2;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(15, 35, 55, 0.06);
}

.estimate-form {
  display: grid;
  gap: 24px;
}

.estimate-group {
  padding-bottom: 24px;
  border-bottom: 1px solid #edf3f7;
}

.estimate-group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.estimate-group__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.estimate-group__header h3 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  color: #14213d;
}

.estimate-group__header p {
  margin: 0;
  color: #5f6f82;
  line-height: 1.6;
}

.icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.icon-blue {
  background: rgba(0, 74, 127, 0.08);
  color: #004A7F;
}

.icon-green {
  background: rgba(35, 162, 95, 0.12);
  color: #23a25f;
}

.icon-red {
  background: rgba(220, 74, 74, 0.1);
  color: #d14b4b;
}

.estimate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
}

.estimate-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.estimate-field--full {
  grid-column: 1 / -1;
}

.estimate-field > span {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: #24364d;
}

/* OLD STEPPER LEFT FOR SAFETY */
.estimate-stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.step-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #cdd9e3;
  border-radius: 12px;
  background: #fff;
  color: #14213d;
  font-size: 1.2rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.step-btn:hover {
  border-color: #004A7F;
}

.step-btn:focus-visible {
  outline: none;
  border-color: #0b5c91;
  box-shadow: 0 0 0 4px rgba(11, 92, 145, 0.12);
}

.estimate-stepper input[type="number"] {
  width: 84px;
  height: 42px;
  text-align: center;
  border: 1px solid #cdd9e3;
  border-radius: 12px;
  font-size: 1rem;
  color: #14213d;
}

/* NEW QUANTITY CONTROL */

.qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.qty-btn {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #cfdbe7;
  border-radius: 16px;
  background: #fff;
  color: #16233b;
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.qty-btn:hover {
  border-color: #aac1d5;
  background: #f8fbfd;
}

.qty-btn:focus-visible {
  outline: none;
  border-color: #0b5c91;
  box-shadow: 0 0 0 4px rgba(11, 92, 145, 0.12);
}

.qty-btn:active {
  transform: scale(0.98);
}

.qty-btn i {
  pointer-events: none;
  font-size: 16px;
  line-height: 1;
}

.qty-control input[type="number"] {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  height: 56px;
  padding: 0 16px;
  text-align: center;
  border: 1.5px solid #cfdbe7;
  border-radius: 16px;
  background: #fff;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: #16233b;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.qty-control input[type="number"]:hover {
  border-color: #aac1d5;
}

.qty-control input[type="number"]:focus {
  border-color: #0b5c91;
  box-shadow: 0 0 0 4px rgba(11, 92, 145, 0.12);
  outline: none;
  background: #fff;
}

.qty-control input[type="number"]::-webkit-outer-spin-button,
.qty-control input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.estimate-field input[type="text"],
.estimate-field input[type="number"],
.estimate-field input[type="email"],
.estimate-field select,
.estimate-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1.5px solid #cfdbe7;
  border-radius: 14px;
  background: #fff;
  font-size: 1rem;
  line-height: 1.4;
  color: #16233b;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.estimate-field textarea {
  min-height: 120px;
  resize: vertical;
}

.estimate-field input[type="email"] {
  padding-right: 16px;
  letter-spacing: 0.01em;
}

.estimate-field input::placeholder,
.estimate-field textarea::placeholder {
  color: #8a97a8;
}

.estimate-field input:hover,
.estimate-field select:hover,
.estimate-field textarea:hover {
  border-color: #aac1d5;
}

.estimate-field input:focus,
.estimate-field select:focus,
.estimate-field textarea:focus {
  border-color: #0b5c91;
  box-shadow: 0 0 0 4px rgba(11, 92, 145, 0.12);
  outline: none;
  background: #fff;
}

.estimate-field input[type="email"]:hover {
  border-color: #aac1d5;
}

.estimate-field input[type="email"]:focus {
  border-color: #0b5c91;
  box-shadow: 0 0 0 4px rgba(11, 92, 145, 0.12);
  outline: none;
  background: #fff;
}

.estimate-field input[type="email"]::placeholder {
  color: #8a97a8;
}

.estimate-field select {
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, #5d6b7a 50%),
    linear-gradient(135deg, #5d6b7a 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.estimate-options {
  display: grid;
  gap: 12px;
}

.estimate-check {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #e2ebf2;
  border-radius: 14px;
  background: #fbfdff;
}

.estimate-summary {
  position: sticky;
  top: 110px;
}

.estimate-summary__header h2 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  color: #14213d;
}

.estimate-summary__header p {
  margin: 0 0 20px;
  color: #5f6f82;
  line-height: 1.6;
}

.estimate-summary__empty {
  padding: 18px 20px;
  border: 1px dashed rgba(0, 74, 127, 0.18);
  background: #f7fbff;
  border-radius: 16px;
  color: #35556b;
  font-weight: 500;
}

.estimate-summary__content {
  display: none;
}

.estimate-summary__rows {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.estimate-row,
.estimate-total,
.estimate-range {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.estimate-row span,
.estimate-total span,
.estimate-range span {
  color: #5f6f82;
}

.estimate-row strong,
.estimate-total strong,
.estimate-range strong {
  color: #14213d;
}

.estimate-row--muted span,
.estimate-row--muted strong {
  color: #6b7b88;
}

.estimate-total {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid #edf3f7;
}

.estimate-total strong,
.estimate-range strong {
  font-size: 1.35rem;
}

.estimate-range {
  margin-top: 14px;
}

.estimate-selection {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f8fafc;
  color: #29465b;
  line-height: 1.6;
  font-size: 0.97rem;
}

.estimate-note {
  margin-top: 18px;
  color: #5f6f82;
  line-height: 1.7;
  font-size: 0.95rem;
}

.estimate-summary__actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.estimate-summary__actions .btn {
  width: 100%;
  justify-content: center;
}

.instant-estimate-explainer,
.pricing,
.instant-estimate-faq,
#contact {
  padding: 64px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.center {
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item h3 {
  margin: 0 0 8px;
  color: #14213d;
}

.faq-item p {
  margin: 0;
  color: #5f6f82;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.contact-note {
  margin-top: 18px;
  color: #5f6f82;
}

.service-picker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  border: 1px solid #d8e1ea;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: #004A7F;
  box-shadow: 0 8px 24px rgba(0, 74, 127, 0.08);
  transform: translateY(-1px);
}

.service-card:focus-visible {
  outline: none;
  border-color: #0b5c91;
  box-shadow: 0 0 0 4px rgba(11, 92, 145, 0.12);
}

.service-card__icon {
  font-size: 22px;
  color: #004A7F;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #142230;
}

.service-card__text {
  font-size: 14px;
  color: #5d6b79;
  line-height: 1.45;
}

.service-card__count {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: #0b6b43;
}

.service-card.is-active {
  border-color: #0b5c91;
  background: #f7fbff;
  box-shadow: 0 12px 28px rgba(0, 74, 127, 0.12);
}

.service-card.is-active .service-card__title {
  color: #0b5c91;
}

.item-builder-wrap {
  display: block;
}

.item-builder {
  position: relative;
  margin: 20px 0 28px;
  padding: 28px;
  border: 1px solid #d9e4ee;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(16, 42, 67, 0.06);
  scroll-margin-top: 120px;
  overflow: hidden;
}

.item-builder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0b5c91 0%, #0e7a52 100%);
}

.item-builder__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.item-builder__header h3 {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
  color: #16233b;
}

.item-builder__header p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #5b6b7f;
}

.builder-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid #d9e4ee;
  border-radius: 999px;
  background: #f7fafc;
  color: #617086;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.builder-close:hover {
  background: #eef4f8;
  color: #16233b;
  border-color: #bfd0df;
}

.builder-close:focus-visible {
  outline: 3px solid rgba(0, 74, 127, 0.18);
  outline-offset: 2px;
}

.item-builder input[type="number"] {
  max-width: 180px;
}

.builder-actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.builder-actions .btn {
  min-width: 220px;
  min-height: 56px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  padding: 0 28px;
}

.estimate-step-intro,
.estimate-step-meta {
  margin-bottom: 24px;
}

.estimate-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  background: #eaf3fb;
  color: #004A7F;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.estimate-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.estimate-item-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #e3e8ee;
  border-radius: 12px;
  padding: 12px 14px;
}

.estimate-item-row__main {
  min-width: 0;
}

.estimate-item-row__meta {
  margin-top: 4px;
  font-size: 13px;
  color: #5d6b79;
  line-height: 1.45;
}

.estimate-item-row__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  white-space: nowrap;
}

.estimate-item-remove {
  border: 0;
  background: transparent;
  color: #b42318;
  cursor: pointer;
  font-size: 13px;
  padding: 0;
}

.booking-step-section.is-hidden {
  display: none !important;
}

.booking-status-message.is-hidden,
.booking-zone-summary.is-hidden,
#availabilityLoading.is-hidden,
#availabilityEmpty.is-hidden {
  display: none !important;
}

.booking-status-message {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #d8e1ea;
  background: #f8fbfd;
  color: #264257;
}

.booking-status-message:empty {
  display: none !important;
}

.booking-status-message.is-error {
  background: #fff4f4;
  border-color: #efc7c7;
  color: #9f1f1f;
}

.booking-status-message.is-success {
  background: #f3fbf6;
  border-color: #cfe8d6;
  color: #166534;
}

.booking-zone-summary {
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid #e2ebf2;
  border-radius: 18px;
  background: #fbfdff;
}

.booking-slots-list {
  display: grid;
  gap: 14px;
}

.booking-slot-card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid #d8e1ea;
  border-radius: 18px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.booking-slot-card:hover {
  border-color: #004A7F;
  box-shadow: 0 10px 28px rgba(0, 74, 127, 0.08);
}

.booking-slot-card.is-active {
  border-color: #0b5c91;
  background: #f7fbff;
  box-shadow: 0 12px 28px rgba(0, 74, 127, 0.12);
}

.booking-slot-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #16233b;
  margin-bottom: 4px;
}

.booking-slot-card__time {
  font-size: 1rem;
  font-weight: 700;
  color: #0b5c91;
  margin-bottom: 6px;
}

.booking-slot-card__meta {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #5b6b7f;
}

.slot-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf8ef;
  color: #146c43;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.thank-you-card {
  max-width: 860px;
  margin: 0 auto;
}

.thank-you-intro {
  margin-bottom: 18px;
}

.thank-you-title {
  margin-bottom: 10px;
}

.thank-you-text {
  margin-bottom: 0;
}

.thank-you-status {
  display: block;
  margin-bottom: 22px;
}

.thank-you-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
}

.thank-you-details-card {
  padding: 22px;
}

.thank-you-card-title {
  margin: 0 0 16px;
  font-size: 1.45rem;
  color: #14213d;
}

.thank-you-summary-rows {
  margin-bottom: 0;
}

.thank-you-next-card {
  position: static;
  padding: 22px;
}

.thank-you-next-title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: #14213d;
}

.thank-you-next-text {
  margin-bottom: 0;
}

.thank-you-note {
  font-size: 0.95rem;
}

.thank-you-note-first {
  margin-top: 0;
}

.thank-you-actions {
  margin-top: 28px;
  gap: 12px;
  flex-wrap: wrap;
}

/* HOUSE CARDS */

.house-picker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.house-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  padding: 26px;
  border: 1px solid #d8e1ea;
  border-radius: 24px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}

.house-card:hover {
  border-color: #004A7F;
  box-shadow: 0 14px 30px rgba(0, 74, 127, 0.12);
  transform: translateY(-4px);
}

.house-card:focus-visible {
  outline: none;
  border-color: #0b5c91;
  box-shadow: 0 0 0 4px rgba(11, 92, 145, 0.12);
}

.house-card.is-active {
  border-color: #0b5c91;
  background: #f3f9ff;
  box-shadow: 0 18px 36px rgba(0, 74, 127, 0.16);
}

.house-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 20px;
  border: 1px solid #e6edf3;
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfdff 0%, #f2f7fb 100%);
}

.house-card__image img {
  display: block;
  width: 100%;
  max-width: 250px;
  height: 160px;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.02);
}

.house-card__title {
  display: block;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 800;
  color: #142230;
}

.house-card__text {
  display: block;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5d6b79;
  min-height: 48px;
}

.house-card__price {
  display: inline-block;
  margin-top: auto;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 800;
  color: #004A7F;
}

.house-card.is-active .house-card__title {
  color: #0b5c91;
}

.house-card.is-active .house-card__price {
  color: #0b5c91;
}

.house-card.is-active .house-card__image {
  border-color: #cfe2f1;
  background: linear-gradient(180deg, #f8fbff 0%, #edf5fb 100%);
}

.estimate-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid #e3e8ee;
  border-radius: 16px;
  background: #fbfdff;
}

.estimate-item__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.estimate-item__main strong {
  font-size: 1rem;
  line-height: 1.3;
  color: #14213d;
}

.estimate-item__main span {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #5d6b79;
}

.estimate-item__price {
  white-space: nowrap;
  font-size: 1.15rem;
  font-weight: 800;
  color: #14213d;
}

@media (max-width: 991px) {
  .page-hero__layout,
  .estimate-layout,
  .grid-3,
  .thank-you-layout {
    grid-template-columns: 1fr;
  }

  .estimate-summary {
    position: static;
    top: auto;
  }

  .house-picker-grid {
    grid-template-columns: 1fr;
  }

  .house-card__image {
    min-height: 180px;
  }

  .house-card__image img {
    max-width: 220px;
    height: 140px;
  }
}

@media (max-width: 900px) {
  .service-picker-grid {
    grid-template-columns: 1fr;
  }

  .item-builder {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .item-builder__header {
    margin-bottom: 20px;
  }

  .item-builder__header h3 {
    font-size: 1.75rem;
  }

  .item-builder input[type="number"] {
    max-width: none;
  }

  .estimate-item-row {
    flex-direction: column;
  }

  .estimate-item-row__side {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .page-hero,
  .estimate-builder-section,
  .instant-estimate-explainer,
  .pricing,
  .instant-estimate-faq,
  #contact {
    padding: 24px 0 40px;
  }

  .card {
    padding: 20px;
    border-radius: 20px;
  }

  .estimate-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .estimate-field--full {
    grid-column: auto;
  }

  .estimate-group__header {
    align-items: flex-start;
  }

  .hero-actions,
  .contact-actions,
  .thank-you-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .builder-actions .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .booking-slot-card {
    flex-direction: column;
  }

  .qty-control {
    gap: 10px;
  }

  .qty-btn {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    border-radius: 14px;
  }

  .qty-control input[type="number"] {
    min-height: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.1rem;
  }

  .house-card {
    padding: 20px;
    border-radius: 20px;
  }

  .house-card__image {
    min-height: 160px;
    padding: 16px;
    border-radius: 16px;
  }

  .house-card__image img {
    max-width: 200px;
    height: 120px;
  }

  .house-card__title {
    font-size: 1.08rem;
  }

  .house-card__text {
    min-height: auto;
    font-size: 0.92rem;
  }

  .estimate-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .estimate-item__price {
    white-space: normal;
  }

  .thank-you-card-title,
  .thank-you-next-title {
    font-size: 1.25rem;
  }

  .thank-you-actions {
    align-items: stretch;
  }

  .section-text {
    font-size: 16px;
  }
}