.ehcaq-quote-form-shell {
    max-width: 980px;
    margin: 30px auto;
    padding: 28px;
    border: 1px solid #dcdcde;
    background: #ffffff;
    border-radius: 12px;
    box-sizing: border-box;
}

.ehcaq-form-header {
    margin-bottom: 24px;
}

.ehcaq-form-header h2 {
    margin: 0 0 8px;
}

.ehcaq-form-intro {
    margin: 0;
    color: #50575e;
}

.ehcaq-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.ehcaq-progress-step {
    border: 1px solid #dcdcde;
    border-radius: 10px;
    background: #f6f7f7;
    padding: 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.ehcaq-progress-step.is-active {
    border-color: rgb(149, 188, 126);
    background: #eef6e9;
}

.ehcaq-progress-step.is-complete {
    border-color: rgb(149, 188, 126);
    background: #f3f8ef;
}

.ehcaq-progress-number {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #1d2327;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.ehcaq-progress-step.is-active .ehcaq-progress-number {
    background: rgb(149, 188, 126);
}

.ehcaq-progress-step.is-complete .ehcaq-progress-number {
    background: rgb(149, 188, 126);
}

.ehcaq-progress-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.ehcaq-form-alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 8px;
    display: none;
}

.ehcaq-form-alert.is-success {
    background: #eef6e9;
    border: 1px solid rgb(149, 188, 126);
    color: #47653a;
}

.ehcaq-form-alert.is-error {
    background: #fcf0f1;
    border: 1px solid #d63638;
    color: #8a2424;
}

.ehcaq-form-step {
    display: none;
}

.ehcaq-form-step.is-active {
    display: block;
}

.ehcaq-form-step h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.ehcaq-step-copy {
    margin-top: 0;
    margin-bottom: 18px;
    color: #50575e;
}

.ehcaq-module-note {
    margin-bottom: 20px;
    padding: 12px 14px;
    border-left: 4px solid rgb(149, 188, 126);
    background: #f7faf5;
    border-radius: 6px;
}

.ehcaq-module-note-warning {
    border-left-color: #dba617;
    background: #fff8e5;
}

.ehcaq-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ehcaq-field {
    min-width: 0;
}

.ehcaq-field-full {
    grid-column: 1 / -1;
}

.ehcaq-field label,
.ehcaq-group-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.ehcaq-field input,
.ehcaq-field select,
.ehcaq-field textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid #8c8f94;
    border-radius: 8px;
    box-sizing: border-box;
    background: #fff;
}
.ehcaq-combobox-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: stretch;
    border: 1px solid #8c8f94;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.ehcaq-combobox-shell.is-open {
    border-color: rgb(149, 188, 126);
    box-shadow: 0 0 0 1px rgb(149, 188, 126);
}

.ehcaq-combobox-input {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-height: 42px;
}

.ehcaq-combobox-input:focus {
    border: 0 !important;
    box-shadow: none !important;
    outline: none;
}

.ehcaq-combobox-toggle {
    border: 0;
    border-left: 1px solid #dcdcde;
    background: #f6f7f7;
    cursor: pointer;
    font-size: 16px;
    color: #1d2327;
}

.ehcaq-combobox-toggle:hover {
    background: #eef2f7;
}
.ehcaq-field input:focus,
.ehcaq-field select:focus,
.ehcaq-field textarea:focus {
    outline: none;
    border-color: rgb(149, 188, 126);
    box-shadow: 0 0 0 1px rgb(149, 188, 126);
}

.ehcaq-field-error {
    min-height: 18px;
    margin-top: 6px;
    font-size: 13px;
    color: #d63638;
}

.ehcaq-required {
    color: #d63638;
}

.ehcaq-field.has-error input,
.ehcaq-field.has-error select,
.ehcaq-field.has-error textarea,
.ehcaq-card-group-wrap.has-error .ehcaq-select-card {
    border-color: #d63638;
}

.ehcaq-readonly-box {
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    background: #f6f7f7;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.ehcaq-address-field-wrap {
    position: relative;
}

.ehcaq-address-field-wrap {
    position: relative;
    z-index: 200;
}

.ehcaq-address-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    z-index: 9999;
    max-height: 260px;
    overflow-y: auto;
    padding: 6px 0;
}

.ehcaq-address-suggestion {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.45;
    color: #0f172a;
    background: #ffffff;
    border: 0;
    border-bottom: 1px solid #eef2f7;
    transition: background 0.15s ease, color 0.15s ease;
}

.ehcaq-address-suggestion:last-child {
    border-bottom: 0;
}

.ehcaq-address-suggestion:hover,
.ehcaq-address-suggestion.is-active {
    background: #e7f3ff;
    color: #0f172a;
}

.ehcaq-card-group-wrap {
    margin-top: 22px;
}

.ehcaq-card-grid {
    display: grid;
    gap: 14px;
}

.ehcaq-three-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ehcaq-four-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ehcaq-five-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ehcaq-addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ehcaq-select-card {
    width: 100%;
    border: 1px solid #d0d5dd;
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.18s ease;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
}

.ehcaq-select-card:hover {
    border-color: rgb(149, 188, 126);
    box-shadow: 0 0 0 1px rgb(149, 188, 126);
}

.ehcaq-select-card.is-selected {
    border-color: rgb(149, 188, 126);
    background: #eef6e9;
    box-shadow: 0 0 0 1px rgb(149, 188, 126);
}

.ehcaq-card-title {
    font-weight: 700;
    color: #111827;
}

.ehcaq-card-desc {
    font-size: 13px;
    color: #4b5563;
}

.ehcaq-card-icon {
    font-size: 28px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ehcaq-quote-result-card {
    border: 1px solid #dcdcde;
    border-radius: 14px;
    padding: 20px;
    background: #f9fafb;
    margin-bottom: 20px;
}

.ehcaq-quote-primary {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #0f172a;
}

.ehcaq-quote-secondary {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.ehcaq-quote-meta {
    color: #4b5563;
    margin-bottom: 8px;
}

.ehcaq-quote-list {
    margin: 14px 0 0;
    padding-left: 18px;
}

.ehcaq-quote-list li {
    margin-bottom: 6px;
}

.ehcaq-form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.ehcaq-btn {
    border: 0;
    border-radius: 8px;
    padding: 11px 18px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.ehcaq-btn:hover {
    opacity: 0.92;
}

.ehcaq-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.ehcaq-btn-primary {
    background: rgb(149, 188, 126);
    color: #ffffff;
}

.ehcaq-btn-secondary {
    background: #f0f0f1;
    color: #1d2327;
}

.ehcaq-honeypot-wrap {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
#ehcaq-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 46px;
    background: rgb(149, 188, 126) !important;
    color: #ffffff !important;
    border: 1px solid rgb(149, 188, 126) !important;
    border-radius: 8px;
    font-weight: 600;
    padding: 11px 18px;
    text-decoration: none;
}

#ehcaq-book-btn:hover {
    background: #7fa666 !important;
    border-color: #7fa666 !important;
    color: #ffffff !important;
}

.ehcaq-booking-confirm-box {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #edfaef;
    border: 1px solid #00a32a;
    color: #0a4b1a;
}
.ehcaq-section-divider {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 28px 0 24px;
}

.ehcaq-inline-section-title {
    margin: 0 0 8px;
}

.ehcaq-complete-shell {
    max-width: 760px;
    margin: 10px auto 0;
    text-align: center;
    padding: 24px 10px 10px;
}

.ehcaq-complete-emoji {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 16px;
}

.ehcaq-complete-title {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
}

.ehcaq-complete-lead {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.ehcaq-complete-copy {
    max-width: 620px;
    margin: 0 auto 20px;
    color: #50575e;
    line-height: 1.7;
}

.ehcaq-complete-card {
    max-width: 560px;
    margin: 0 auto 18px;
    padding: 20px;
    border: 1px solid #dcdcde;
    border-radius: 16px;
    background: #f8fafc;
    text-align: left;
}

.ehcaq-complete-card h4 {
    margin-top: 0;
    margin-bottom: 12px;
}

.ehcaq-complete-list {
    margin: 0;
    padding-left: 18px;
}

.ehcaq-complete-list li {
    margin-bottom: 10px;
}

.ehcaq-complete-small {
    color: #646970;
    font-size: 14px;
}
.ehcaq-addon-grid .ehcaq-select-card {
    position: relative;
    min-height: 128px;
    padding: 18px 84px 18px 18px;
    justify-content: center;
}

.ehcaq-addon-grid .ehcaq-select-card .ehcaq-card-title {
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.ehcaq-addon-grid .ehcaq-select-card .ehcaq-card-desc {
    font-size: 16px;
    line-height: 1.4;
    color: #374151;
}

.ehcaq-addon-grid .ehcaq-select-card .ehcaq-card-icon {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    color: #1f2937;
    box-shadow: inset 0 0 0 1px #d1d5db;
    font-size: 26px;
    line-height: 52px;
    text-align: center;
}

.ehcaq-addon-grid .ehcaq-select-card:hover .ehcaq-card-icon,
.ehcaq-addon-grid .ehcaq-select-card.is-selected .ehcaq-card-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
    box-shadow: inset 0 0 0 1px #93c5fd;
}

.ehcaq-addon-grid .ehcaq-select-card[data-value="washing_dishes"] .ehcaq-card-icon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    box-shadow: inset 0 0 0 1px #fcd34d;
}

.ehcaq-addon-grid .ehcaq-select-card[data-value="inside_oven"] .ehcaq-card-icon {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #b91c1c;
    box-shadow: inset 0 0 0 1px #fca5a5;
}

.ehcaq-addon-grid .ehcaq-select-card[data-value="inside_fridge"] .ehcaq-card-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
    box-shadow: inset 0 0 0 1px #93c5fd;
}

.ehcaq-addon-grid .ehcaq-select-card[data-value="baseboards"] .ehcaq-card-icon {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #6d28d9;
    box-shadow: inset 0 0 0 1px #c4b5fd;
}

.ehcaq-addon-grid .ehcaq-select-card[data-value="laundry_fold"] .ehcaq-card-icon {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #15803d;
    box-shadow: inset 0 0 0 1px #86efac;
}

.ehcaq-addon-grid .ehcaq-select-card[data-value="general_pickup"] .ehcaq-card-icon {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #be185d;
    box-shadow: inset 0 0 0 1px #f9a8d4;
}

.ehcaq-addon-grid .ehcaq-select-card[data-value="hand_wipe_blinds"] .ehcaq-card-icon {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: #0369a1;
    box-shadow: inset 0 0 0 1px #7dd3fc;
}

.ehcaq-addon-grid .ehcaq-select-card[data-value="interior_windows"] .ehcaq-card-icon {
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
    color: #0f766e;
    box-shadow: inset 0 0 0 1px #5eead4;
}
.ehcaq-section-divider {
    border: 0;
    border-top: 1px solid #dbe7d3;
    margin: 28px 0 24px;
}

.ehcaq-inline-section-title {
    margin: 0 0 8px;
}

.ehcaq-complete-shell {
    max-width: 760px;
    margin: 10px auto 0;
    text-align: center;
    padding: 28px 10px 14px;
}

.ehcaq-complete-emoji {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    line-height: 1;
    background: radial-gradient(circle at top, #f8fbf5 0%, #e7f1df 55%, #d6e7c9 100%);
    box-shadow: 0 10px 24px rgba(86, 112, 70, 0.14);
}

.ehcaq-complete-title {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.2;
    color: #334b2b;
}

.ehcaq-complete-lead {
    margin: 0 0 12px;
    font-size: 19px;
    font-weight: 700;
    color: #5d7a4f;
}

.ehcaq-complete-copy {
    max-width: 640px;
    margin: 0 auto 22px;
    color: #566352;
    line-height: 1.75;
    font-size: 16px;
}

.ehcaq-complete-card {
    max-width: 580px;
    margin: 0 auto 20px;
    padding: 24px;
    border: 1px solid #d8e5cf;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdf9 0%, #f1f7ec 100%);
    text-align: left;
    box-shadow: 0 10px 28px rgba(112, 138, 93, 0.08);
}

.ehcaq-complete-card h4 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #47653a;
    font-size: 18px;
}

.ehcaq-complete-list {
    margin: 0;
    padding-left: 20px;
}

.ehcaq-complete-list li {
    margin-bottom: 10px;
    color: #41503d;
    line-height: 1.55;
}

.ehcaq-complete-small {
    color: #6b7766;
    font-size: 14px;
}

.ehcaq-btn-primary,
#ehcaq-book-btn {
    box-shadow: 0 8px 18px rgba(104, 138, 86, 0.18);
}

.ehcaq-btn-primary:hover {
    background: #7fa666;
}

.ehcaq-progress-step,
.ehcaq-select-card,
.ehcaq-quote-result-card,
.ehcaq-complete-card,
.ehcaq-btn,
.ehcaq-form-alert,
.ehcaq-module-note {
    transition: all 0.18s ease;
}
.ehcaq-debug-box {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px dashed #94a3b8;
    border-radius: 12px;
    background: #f8fafc;
}

.ehcaq-debug-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    color: #334155;
}

.ehcaq-debug-line {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #475569;
}
.ehcaq-debug-subtitle {
    font-weight: 700;
    font-size: 14px;
    margin: 10px 0 8px;
    color: #1e293b;
}

.ehcaq-debug-divider {
    border: 0;
    border-top: 1px solid #dbe3ec;
    margin: 12px 0;
}
@media (max-width: 782px) {
    .ehcaq-addon-grid {
        grid-template-columns: 1fr;
    }

    .ehcaq-addon-grid .ehcaq-select-card {
        min-height: 116px;
    }
}
@media screen and (max-width: 900px) {
    .ehcaq-three-grid,
    .ehcaq-four-grid,
    .ehcaq-five-grid,
    .ehcaq-addon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 782px) {
    .ehcaq-form-grid,
    .ehcaq-progress,
    .ehcaq-three-grid,
    .ehcaq-four-grid,
    .ehcaq-five-grid,
    .ehcaq-addon-grid {
        grid-template-columns: 1fr;
    }

    .ehcaq-form-actions {
        flex-direction: column;
    }

    .ehcaq-btn {
        width: 100%;
    }
}