/* ==========================================================================
   Book a Repair — booking flow page
   Reuses global tokens (--orange, --orange-bright, --peach, --panel,
   --panel-blue, --navy, --muted, --line, --shadow, --radius, --text-body,
   --heading-section) and existing components (.button, .hero-actions,
   .icon-badge) established on the Home / Repair Services pages. Only new,
   page-specific classes are introduced below.
   ========================================================================== */

.booking-flow { padding-block: 44px 90px; }

.flow-titlebar {
    padding: 26px 34px;
    margin-bottom: 22px;
    border-radius: var(--radius);
    background: var(--navy);
    box-shadow: var(--shadow);
}
.flow-titlebar h1 { margin: 0; color: var(--orange); font-size: clamp(1.375rem, 1.2rem + .6vw, 1.625rem); font-weight: 780; letter-spacing: -.02em; }
.flow-titlebar p { margin: 8px 0 0; color: var(--soft); font-size: 1rem; font-weight: 600; }

.flow-stepper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}
.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    border-radius: 14px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, .025);
}
.flow-step-number {
    display: grid;
    flex-shrink: 0;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    font-size: .9375rem;
}
.flow-step.is-active .flow-step-number { background: var(--orange-bright); color: #fff; box-shadow: 0 0 0 4px rgba(255, 64, 13, .18); }
.flow-step-copy strong { display: block; color: #fff; font-size: .9375rem; font-weight: 750; letter-spacing: -.01em; }
.flow-step-copy small { display: block; margin-top: 3px; color: var(--muted); font-size: .8125rem; font-weight: 600; }

.flow-panel {
    padding: 44px;
    border-radius: var(--radius);
    background: var(--panel-blue);
    box-shadow: var(--shadow);
}
.flow-panel h2 { margin: 0; max-width: 720px; color: #fff; font-size: var(--heading-section); font-weight: 780; line-height: 1.14; letter-spacing: -.03em; }
.flow-panel > p { max-width: 660px; margin: 16px 0 0; color: var(--muted); font-size: var(--text-body); line-height: 1.55; }

.flow-search { position: relative; max-width: 660px; margin-top: 28px; }
.flow-search svg { position: absolute; top: 50%; left: 18px; width: 18px; height: 18px; fill: none; stroke: #8b93a4; stroke-width: 2; transform: translateY(-50%); }
.flow-search input {
    width: 100%;
    min-height: 54px;
    padding: 0 20px 0 50px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    color: #1a2338;
    font-family: inherit;
    font-size: .9375rem;
    font-weight: 600;
}
.flow-search input::placeholder { color: #8b93a4; font-weight: 500; }
.flow-search input:focus { outline: 2px solid var(--orange); outline-offset: 2px; }

.flow-group-label { margin: 34px 0 16px; color: var(--muted); font-size: .8125rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.flow-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 16px; }
.flow-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1.5px solid rgba(255, 59, 10, .55);
    border-radius: 16px;
    background: #fff;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.flow-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .18); }
.flow-card.is-selected { border-color: var(--orange-bright); box-shadow: 0 0 0 3px rgba(255, 64, 13, .2); }
.flow-card-icon { display: grid; flex-shrink: 0; place-items: center; width: 38px; height: 38px; }
.flow-card-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--orange); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.flow-card-copy { flex: 1; min-width: 0; }
.flow-card-copy strong { display: block; color: var(--orange); font-size: .9375rem; font-weight: 750; letter-spacing: -.01em; }
.flow-card-copy p { margin: 4px 0 0; color: #6b7280; font-size: .75rem; font-weight: 600; line-height: 1.4; }
.flow-card-copy .flow-book-now { display: inline-block; margin-top: 6px; color: var(--orange); font-size: .6875rem; font-weight: 800; letter-spacing: .02em; }
.flow-card-arrow { flex-shrink: 0; width: 18px; height: 18px; fill: none; stroke: var(--orange); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.flow-card[hidden] { display: none; }
.flow-no-results { margin: 24px 0 0; color: var(--muted); font-size: .875rem; font-weight: 600; }

.flow-panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.flow-back { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: .9375rem; font-weight: 700; }
.flow-back svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.flow-dots { display: flex; min-height: 12px; align-items: center; gap: 7px; }
.flow-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    transition: width .2s ease, height .2s ease, background .2s ease, box-shadow .2s ease;
}
.flow-dots span.is-complete { background: rgba(255, 64, 13, .52); }
.flow-dots span.is-active {
    width: 9px;
    height: 9px;
    background: var(--orange-bright);
    box-shadow: 0 0 0 3px rgba(255, 64, 13, .14);
}
.flow-continue { min-width: 152px; }

/* Book a Repair — step 2 (category drill-down, no page reload) */
.flow-type-row {
    margin: 0 0 22px;
    padding: 16px 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: var(--navy);
}
.flow-type-row[hidden] { display: none; }
.flow-type-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 8px;
    background: var(--orange-bright);
    color: #fff;
    font-size: .8125rem;
    font-weight: 800;
    letter-spacing: -.01em;
}
.flow-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.flow-breadcrumb-chevron { width: 14px; height: 14px; flex-shrink: 0; fill: none; stroke: var(--muted); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.flow-step-view[hidden] { display: none; }
.flow-step-view.is-entering { animation: flow-step-enter .34s cubic-bezier(.22, 1, .36, 1) both; }

@keyframes flow-step-enter {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.flow-card-icon-mono {
    display: grid;
    flex-shrink: 0;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 59, 10, .3);
    border-radius: 10px;
    background: rgba(255, 59, 10, .08);
    color: var(--orange);
    font-weight: 800;
    font-size: .75rem;
    letter-spacing: -.01em;
}

.service-select-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-select-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
    border: 1.5px solid rgba(255, 59, 10, .55);
    border-radius: 16px;
    background: #fff;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    margin-top: 16px;
}
.service-select-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .18); }
.service-select-card.is-selected { border-color: var(--orange-bright); box-shadow: 0 0 0 3px rgba(255, 64, 13, .2); }
.service-select-card[hidden] { display: none; }
.service-select-head { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 10px; }
.service-select-head-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.service-select-icon {
    display: grid;
    flex-shrink: 0;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 59, 10, .3);
    border-radius: 9px;
    background: rgba(255, 59, 10, .08);
}
.service-select-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-select-card h4 { margin: 0; color: var(--orange); font-size: .9375rem; font-weight: 750; letter-spacing: -.01em; }
.service-select-arrow { flex-shrink: 0; width: 16px; height: 16px; fill: none; stroke: var(--orange); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.service-select-card p { margin: 0; color: #6b7280; font-size: .75rem; font-weight: 600; line-height: 1.45; }
.service-select-price { color: var(--orange); font-weight: 800; font-size: .8125rem; }

.flow-step2-note {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: var(--muted);
    font-size: .875rem;
    font-weight: 600;
    text-align: center;
}

/* Info section: repair-fast copy + How Booking Works */
.flow-info-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 28px; margin-top: 60px; align-items: stretch; }
.flow-info-grid[hidden] { display: none; }

.flow-info-copy { padding: 48px; border-radius: var(--radius); background: var(--panel-blue); box-shadow: var(--shadow); }
.flow-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 99px;
    background: var(--peach);
    color: var(--orange);
    font-size: .8125rem;
    font-weight: 800;
}
.flow-chip svg { width: 16px; height: 16px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.flow-info-copy h2 { max-width: 480px; margin: 22px 0 0; color: #fff; font-size: var(--heading-section); font-weight: 780; line-height: 1.14; letter-spacing: -.03em; }
.flow-info-copy > p { max-width: 460px; margin: 16px 0 0; color: var(--muted); font-size: var(--text-body); line-height: 1.55; }

.flow-stat-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.flow-stat-row li { padding: 9px 18px; border: 1px solid rgba(255, 196, 181, .4); border-radius: 99px; background: rgba(255, 196, 181, .06); color: var(--peach); font-size: .8125rem; font-weight: 700; }

.flow-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.flow-feature-card { padding: 24px; border-radius: 16px; background: var(--peach); }
.flow-feature-card svg { width: 26px; height: 26px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.flow-feature-card strong { display: block; margin-top: 16px; color: var(--orange); font-size: 1rem; font-weight: 780; line-height: 1.28; }
.flow-feature-card p { margin: 12px 0 0; color: #1c1030; font-size: .8125rem; font-weight: 700; line-height: 1.5; }

.flow-how-panel { padding: 36px; border-radius: var(--radius); background: linear-gradient(165deg, #ff8a63, #ff6a3d); box-shadow: var(--shadow); }
.flow-how-eyebrow { display: block; color: #5a1400; font-size: .8125rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.flow-how-panel h3 { margin: 12px 0 0; color: #fff; font-size: 1.5rem; font-weight: 780; letter-spacing: -.02em; }
.flow-how-panel > p { margin: 10px 0 0; color: rgba(255, 255, 255, .75); font-size: .875rem; font-weight: 600; line-height: 1.5; }

.flow-how-steps { display: grid; gap: 16px; margin: 26px 0 0; padding: 0; list-style: none; }
.flow-how-steps li { display: flex; align-items: flex-start; gap: 14px; padding: 20px; border-radius: 16px; background: var(--orange-bright); }
.flow-how-number { display: grid; flex-shrink: 0; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #fff; color: var(--orange-bright); font-weight: 800; font-size: .9375rem; }
.flow-how-steps strong { display: block; color: #fff; font-size: 1rem; font-weight: 780; }
.flow-how-steps p { margin: 5px 0 0; color: #2b0d02; font-size: .8125rem; font-weight: 700; line-height: 1.45; }

.flow-how-note { display: flex; gap: 12px; margin-top: 20px; padding: 20px; border: 1px solid #34a06a; border-radius: 16px; background: #fff; }
.flow-how-note svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; fill: none; stroke: #1f8a4d; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.flow-how-note strong { display: block; color: #1f8a4d; font-size: .9375rem; font-weight: 780; }
.flow-how-note p { margin: 6px 0 0; color: #1f8a4d; font-size: .8125rem; font-weight: 700; line-height: 1.5; }

.flow-how-selection { display: flex; align-items: flex-start; gap: 12px; margin-top: 14px; padding: 18px 20px; border-radius: 16px; background: var(--orange-bright); transition: background .2s ease; }
.flow-how-selection svg { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.flow-how-selection strong { display: block; color: #fff; font-size: .9375rem; font-weight: 780; }
.flow-how-selection span { display: block; margin-top: 4px; color: rgba(255, 255, 255, .85); font-size: .8125rem; font-weight: 700; line-height: 1.45; }

/* Need Urgent Assistance CTA */
/* Book a Repair — step 4: choose repair service (fault chips + repair grid) */
.fault-chip-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 18px; }
.fault-chip-label { color: var(--muted); font-size: .75rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; margin-right: 4px; }
.fault-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 0;
    border-radius: 99px;
    background: var(--orange-bright);
    color: #fff;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: -.01em;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.fault-chip:hover { background: #ff521f; transform: translateY(-1px); }
.fault-chip.is-active { background: #fff; color: var(--orange-bright); }

.savings-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #34c77a;
    font-size: .875rem;
    font-weight: 750;
}
.savings-note svg { width: 17px; height: 17px; fill: none; stroke: #34c77a; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.repair-select-badge {
    display: inline-flex;
    margin-left: 8px;
    padding: 3px 9px;
    border-radius: 99px;
    background: rgba(255, 59, 10, .14);
    color: var(--orange);
    font-size: .625rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    vertical-align: middle;
}

/* Book a Repair — step 5: delivery method */
.delivery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 30px; }
.delivery-card {
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    background: var(--panel-blue);
    text-align: left;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.delivery-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .18); }
.delivery-card.is-selected { border-color: var(--orange-bright); box-shadow: 0 0 0 3px rgba(255, 64, 13, .2); }
.delivery-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 14px;
    background: rgba(255, 59, 10, .12);
}
.delivery-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.delivery-card h3 { margin: 0; color: #fff; font-size: 1.375rem; font-weight: 780; letter-spacing: -.02em; }
.delivery-card > p { margin: 14px 0 0; color: var(--muted); font-size: .9375rem; line-height: 1.55; }
.delivery-list { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.delivery-list li { display: flex; align-items: center; gap: 10px; color: var(--soft); font-size: .875rem; font-weight: 600; }
.delivery-list svg { flex-shrink: 0; width: 16px; height: 16px; fill: none; stroke: var(--orange); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* Book a Repair — step 6: contact details */
.pricing-mode-panel {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
    align-items: start;
    margin-top: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    background: var(--panel-blue);
}
.pricing-mode-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 99px;
    background: var(--orange-bright);
    color: #fff;
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.pricing-mode-badge svg { width: 13px; height: 13px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pricing-mode-copy h3 { margin: 16px 0 0; color: #fff; font-size: 1.5rem; font-weight: 780; letter-spacing: -.02em; }
.pricing-mode-copy > p { margin: 12px 0 0; max-width: 480px; color: var(--muted); font-size: .9375rem; line-height: 1.55; }
.pricing-mode-note {
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    color: var(--soft);
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.5;
}
.pricing-mode-options { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 8px; }
.pricing-mode-option {
    padding: 22px 24px;
    border: 2px solid transparent;
    border-radius: 14px;
    background: var(--orange-bright);
    text-align: left;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pricing-mode-option:hover { transform: translateY(-2px); }
.pricing-mode-option.is-selected { border-color: #fff; box-shadow: 0 0 0 3px rgba(255, 255, 255, .25); }
.pricing-mode-option strong { display: block; color: #fff; font-size: 1rem; font-weight: 780; }
.pricing-mode-option p { margin: 8px 0 0; color: rgba(255, 255, 255, .82); font-size: .8125rem; font-weight: 600; line-height: 1.45; }

.student-university-field {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 20px;
    align-items: center;
    margin-top: 4px;
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
}
.student-university-field[hidden] { display: none; }
.student-university-field .contact-field { gap: 8px; }
.student-university-field label { color: #fff; font-size: .875rem; font-weight: 750; }
.student-university-note {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: .8125rem;
    font-weight: 600;
    line-height: 1.5;
}

/* Student discount price badge — review & confirmation steps */
.review-price-row, .confirm-price-row { flex-wrap: wrap; row-gap: 6px; }
.student-price-badge {
    padding: 4px 10px;
    border-radius: 99px;
    background: var(--orange-bright);
    color: #fff;
    font-size: .625rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-right: 8px;
}
.review-price-row strong.student-price-value,
.confirm-price-row strong.student-price-value { color: #29c46a; }
.review-price-row span.student-price-original,
.confirm-price-row span.student-price-original {
    margin-left: 8px;
    color: var(--muted);
    font-size: .8125rem;
    font-weight: 600;
    text-decoration: line-through;
}

.contact-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 24px; margin-top: 40px; }
.contact-field { display: flex; flex-direction: column; gap: 10px; }
.contact-field-full { grid-column: 1 / -1; }
.contact-field label { color: #fff; font-size: .9375rem; font-weight: 750; letter-spacing: -.01em; }
.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #d9dce3;
    color: #1c1f2b;
    font-family: inherit;
    font-size: .9375rem;
    font-weight: 500;
}
.contact-field textarea { min-height: 130px; resize: vertical; }
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #6b7280; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { outline: 2px solid var(--orange); outline-offset: 2px; }
.contact-field input[aria-invalid="true"],
.contact-field select[aria-invalid="true"],
.contact-field textarea[aria-invalid="true"] { border-color: #c62828; outline: 2px solid rgba(198, 40, 40, .2); outline-offset: 1px; }
.contact-phone-controls { display: grid; grid-template-columns: minmax(150px, .9fr) minmax(0, 1.1fr); gap: 10px; }
.contact-phone-controls select { min-width: 0; }
.contact-service-control { position: relative; z-index: 12; min-width: 0; }
.contact-service-dropdown { position: relative; }
.contact-service-dropdown[hidden] { display: none; }
.contact-service-toggle {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 0;
    padding: 15px 18px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #fff;
    color: #10131c;
    font: inherit;
    font-size: .9375rem;
    font-weight: 500;
    text-align: left;
    box-shadow: none;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-service-toggle:hover { border-color: rgba(255, 59, 10, .42); background: #fffaf8; }
.contact-service-toggle:focus-visible,
.contact-service-dropdown.is-open .contact-service-toggle {
    outline: none;
    border-color: var(--orange);
    background: #fffaf8;
    box-shadow: 0 0 0 4px rgba(255, 59, 10, .11);
}
.contact-service-toggle[aria-invalid="true"] { border-color: #c62828; box-shadow: 0 0 0 3px rgba(198, 40, 40, .12); }
.contact-service-toggle > span {
    overflow: hidden;
    color: #10131c;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.contact-service-toggle.is-placeholder > span { color: #8a90a0; }
.contact-service-chevron {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #535a6b;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s ease;
}
.contact-service-dropdown.is-open .contact-service-chevron { transform: rotate(180deg); }
.contact-service-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 80;
    width: 100%;
    padding: 8px;
    border: 1px solid #dfe3ea;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 48px rgba(16, 19, 28, .18), 0 7px 16px rgba(16, 19, 28, .08);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-7px) scale(.98);
    transform-origin: top left;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s cubic-bezier(.2, .8, .2, 1), visibility .18s;
}
.contact-service-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 22px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #dfe3ea;
    border-left: 1px solid #dfe3ea;
    background: #fff;
    transform: rotate(45deg);
}
.contact-service-dropdown.is-open .contact-service-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.contact-service-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 11px;
    background: transparent;
    color: #10131c;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.contact-service-option + .contact-service-option { margin-top: 4px; }
.contact-service-option:hover,
.contact-service-option:focus-visible {
    outline: none;
    border-color: rgba(255, 59, 10, .14);
    background: #fff5f1;
    transform: translateX(2px);
}
.contact-service-option[aria-selected="true"] {
    border-color: rgba(255, 59, 10, .24);
    background: linear-gradient(100deg, #fff0eb, #fff8f5);
}
.contact-service-option > span { overflow: hidden; font-size: .875rem; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.contact-service-check {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #ff6842;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
}
.contact-service-option[aria-selected="true"] .contact-service-check { opacity: 1; }
.contact-service-custom { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.contact-service-custom[hidden] { display: none; }
.contact-service-back {
    padding: 0 13px;
    border: 1px solid #d5d9e2;
    border-radius: 10px;
    background: #f4f5f8;
    color: #303747;
    font: inherit;
    font-size: .75rem;
    font-weight: 750;
    white-space: nowrap;
    cursor: pointer;
}
.contact-service-back:hover { border-color: var(--orange); color: #b52b0b; }
.contact-service-back:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* Book a Repair — final review and confirmation */
.review-heading { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.review-heading .review-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--orange);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.review-heading h2 { max-width: none; margin-inline: auto; }
.review-heading p { margin: 10px 0 0; color: var(--muted); font-size: var(--text-body); line-height: 1.55; }

.review-approval {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: var(--panel-light);
    transition: border-color .2s ease, background .2s ease;
}
.review-approval.is-complete { border-color: rgba(52, 199, 122, .46); background: rgba(52, 199, 122, .08); }
.review-approval h3,
.review-card h3 { margin: 0; color: #fff; font-size: 1.125rem; font-weight: 780; letter-spacing: -.015em; }
.review-approval p { margin: 7px 0 0; color: var(--muted); font-size: .875rem; font-weight: 600; line-height: 1.5; }
.review-approval-checks { display: flex; flex-shrink: 0; align-items: center; gap: 20px; }
.review-approval-checks span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: .875rem; font-weight: 750; }
.review-approval-checks i { width: 9px; height: 9px; border-radius: 50%; background: #647086; box-shadow: 0 0 0 4px rgba(100, 112, 134, .13); }
.review-approval-checks span.is-approved { color: #7ee2aa; }
.review-approval-checks span.is-approved i { background: #34c77a; box-shadow: 0 0 0 4px rgba(52, 199, 122, .14); }

.review-edit-nav { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.review-edit-nav button {
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 99px;
    background: var(--panel-light);
    color: #fff;
    font-family: inherit;
    font-size: .875rem;
    font-weight: 750;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.review-edit-nav button:hover,
.review-edit-nav button:focus-visible { transform: translateY(-1px); border-color: rgba(255, 64, 13, .48); background: #1c2947; }

.review-card {
    margin-top: 24px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .045);
    border-radius: 20px;
    background: var(--panel-light);
}
.review-card-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.review-text-action,
.review-summary-item button {
    border: 0;
    background: transparent;
    color: var(--orange);
    font-family: inherit;
    font-size: .875rem;
    font-weight: 780;
    cursor: pointer;
}
.review-text-action:hover,
.review-summary-item button:hover { color: #ff6842; text-decoration: underline; text-underline-offset: 4px; }

.review-summary-list { display: grid; gap: 10px; margin: 0; }
.review-summary-item {
    display: grid;
    grid-template-columns: minmax(150px, .6fr) minmax(0, 2fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 74px;
    padding: 15px 18px;
    border-radius: 12px;
    background: #fff;
}
.review-summary-item dt { color: var(--orange); font-size: .875rem; font-weight: 800; }
.review-summary-item dd { margin: 0; color: #6b7280; font-size: .9375rem; font-weight: 700; line-height: 1.45; }
.review-summary-item button { padding: 10px 6px; }
.review-contact-item { align-items: start; }
.review-contact-item dt,
.review-contact-item button { margin-top: 4px; }
.review-contact-item dd { display: grid; gap: 3px; overflow-wrap: anywhere; }

.review-price-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; color: var(--orange); font-size: .9375rem; font-weight: 800; }
.review-estimate-note { margin: 10px 0 0; color: var(--muted); font-size: .8125rem; font-weight: 600; line-height: 1.5; text-align: right; }
.review-summary-list-secondary { margin-top: 22px; }

.review-consent-card > p,
.review-before-submit p { margin: 8px 0 0; color: var(--muted); font-size: .875rem; font-weight: 600; line-height: 1.55; }
.review-terms {
    max-height: 190px;
    margin-top: 18px;
    padding: 20px 22px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, .045);
    border-radius: 14px;
    background: var(--panel);
    color: var(--muted);
    scrollbar-color: #69748a transparent;
    scrollbar-width: thin;
}
.review-terms:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.review-terms ol { display: grid; gap: 16px; margin: 0; padding-left: 20px; }
.review-terms li { padding-left: 6px; font-size: .875rem; font-weight: 600; line-height: 1.5; }
.review-terms strong { color: #fff; font-weight: 750; }

.review-checkbox { position: relative; display: flex; align-items: flex-start; gap: 14px; margin-top: 22px; cursor: pointer; }
.review-checkbox input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.review-checkbox > span {
    position: relative;
    display: grid;
    flex: 0 0 24px;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 2px solid #d9dce3;
    border-radius: 6px;
    background: #d9dce3;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.review-checkbox input:checked + span { border-color: var(--orange-bright); background: var(--orange-bright); }
.review-checkbox input:checked + span::after { content: ""; width: 8px; height: 4px; border: solid #fff; border-width: 0 0 2px 2px; transform: translateY(-1px) rotate(-45deg); }
.review-checkbox input:focus-visible + span { box-shadow: 0 0 0 4px rgba(255, 64, 13, .22); }
.review-checkbox strong { padding-top: 1px; color: #fff; font-size: .9375rem; font-weight: 700; line-height: 1.45; }
.review-consent-card.has-error { border-color: rgba(255, 107, 107, .8); box-shadow: 0 0 0 3px rgba(255, 107, 107, .1); }
.review-privacy-copy { margin-left: 38px !important; }
.review-before-submit { padding-block: 24px; }
.flow-continue:disabled { cursor: default; opacity: .72; transform: none; }

/* Book a Repair — step 7: select date */
.appointment-calendar {
    margin-top: 30px;
    padding: 30px 32px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    background: var(--panel-blue);
}
.appointment-calendar-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.appointment-calendar-eyebrow { margin: 0; color: var(--orange); font-size: .75rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.appointment-calendar-head h3 { margin: 6px 0 0; color: #fff; font-size: 1.375rem; font-weight: 780; letter-spacing: -.02em; }
.appointment-calendar-head p { margin: 4px 0 0; color: var(--muted); font-size: .875rem; }
.calendar-nav { display: flex; align-items: center; gap: 10px; }
.calendar-nav-btn {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease;
}
.calendar-nav-btn:hover { border-color: var(--orange-bright); color: var(--orange-bright); }
.calendar-nav-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.calendar-weekdays { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; margin-top: 20px; }
.calendar-weekdays span { display: block; text-align: center; color: var(--muted); font-size: .6875rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; margin-top: 8px; }
.calendar-day {
    min-width: 0;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
    color: #fff;
    font-size: .8125rem;
    font-weight: 750;
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.calendar-day.is-outside { color: var(--muted); opacity: .45; }
.calendar-day.is-available { border-color: rgba(255, 64, 13, .35); background: rgba(255, 64, 13, .06); }
.calendar-day .calendar-day-tag { color: var(--muted); font-size: .625rem; font-weight: 650; letter-spacing: 0; text-transform: none; }
.calendar-day.is-available .calendar-day-tag { color: var(--orange); }
.calendar-day:not(:disabled):hover { transform: translateY(-2px); border-color: var(--orange-bright); }
.calendar-day.is-selected { background: var(--orange-bright); border-color: var(--orange-bright); color: #fff; }
.calendar-day.is-selected .calendar-day-tag { color: #fff; }
.calendar-day:disabled { cursor: not-allowed; opacity: .3; }
.calendar-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--soft);
    font-size: .8125rem;
    font-weight: 600;
}
.calendar-footer strong { color: #fff; }

/* Book a Repair — step 8: select time */
.time-slot-summary { margin-top: 30px; color: var(--soft); font-size: .9375rem; font-weight: 600; }
.time-slot-summary strong { color: var(--orange); }
.time-slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 20px; }
.time-slot {
    padding: 20px 12px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: #eef0f4;
    color: var(--orange);
    font-size: 1.0625rem;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.time-slot:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .18); }
.time-slot.is-selected { background: var(--orange-bright); color: #fff; box-shadow: 0 0 0 3px rgba(255, 64, 13, .25); }
.time-slot-grid.is-transitioning .time-slot { pointer-events: none; }
.time-slot.is-confirming { animation: time-slot-confirm .22s cubic-bezier(.22, 1, .36, 1) both; }

@keyframes time-slot-confirm {
    0% { transform: scale(1); }
    55% { transform: scale(.96); }
    100% { transform: scale(1.02); }
}

.flow-urgent-panel { margin-top: 56px; padding: 56px 40px; border-radius: 20px; background: var(--panel); box-shadow: var(--shadow); text-align: center; }
.flow-urgent-panel h2 { margin: 0; color: var(--orange); font-size: var(--heading-section); font-weight: 780; letter-spacing: -.03em; }
.flow-urgent-panel p { max-width: 560px; margin: 14px auto 0; color: var(--muted); font-size: var(--text-body); line-height: 1.55; }
.flow-urgent-actions { justify-content: center; margin-top: 30px; gap: 20px; }
.flow-urgent-actions .button svg { width: 18px; height: 18px; margin-right: 8px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vertical-align: -4px; }

/* Book a Repair — step 10: booking confirmed */
.confirm-heading { max-width: 620px; margin: 0 auto 40px; text-align: center; }
.confirm-badge-icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(52, 199, 122, .14);
    box-shadow: 0 0 0 8px rgba(52, 199, 122, .06);
}
.confirm-badge-icon svg { width: 30px; height: 30px; fill: none; stroke: #34c77a; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.confirm-heading h2 { margin: 0; color: #fff; font-size: var(--heading-section); font-weight: 780; letter-spacing: -.03em; }
.confirm-heading p { max-width: 520px; margin: 12px auto 0; color: var(--muted); font-size: var(--text-body); line-height: 1.55; }
.confirm-id-pill {
    display: inline-flex;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 99px;
    background: rgba(255, 64, 13, .12);
    color: var(--orange);
    font-size: .875rem;
    font-weight: 800;
    letter-spacing: .01em;
}

.confirm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 8px; }
.confirm-card { margin-top: 0; }
.confirm-card h3 { margin-bottom: 20px; }
.confirm-detail-list { display: grid; gap: 14px; margin: 0; }
.confirm-detail-list > div { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.confirm-detail-list > div:last-child { padding-bottom: 0; border-bottom: 0; }
.confirm-detail-list dt { flex-shrink: 0; color: var(--muted); font-size: .875rem; font-weight: 650; }
.confirm-detail-list dd { margin: 0; color: #fff; font-size: .9375rem; font-weight: 750; text-align: right; }
.confirm-price-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .08); color: #fff; font-size: .9375rem; font-weight: 700; }
.confirm-price-row strong { color: var(--orange); font-size: 1.0625rem; }
.confirm-footnote { margin: 14px 0 0; color: var(--muted); font-size: .8125rem; font-weight: 600; line-height: 1.5; }

.confirm-next-card { margin-top: 24px; }
.confirm-next-list { display: grid; gap: 14px; margin: 20px 0 0; padding: 0; list-style: none; }
.confirm-next-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--soft); font-size: .9375rem; font-weight: 600; line-height: 1.5; }
.confirm-next-list svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; fill: none; stroke: #34c77a; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.confirm-store-card { margin-top: 24px; }
.confirm-store-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.confirm-store-head .icon-badge { background: rgba(255, 59, 10, .1); }
.confirm-store-head h3 { margin: 0; }
.confirm-store-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.confirm-store-grid strong { display: block; margin-bottom: 6px; color: var(--orange); font-size: .8125rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.confirm-store-grid p { margin: 0; color: var(--soft); font-size: .875rem; font-weight: 600; line-height: 1.5; }
.confirm-store-grid a { color: var(--soft); }
.confirm-store-grid a:hover { color: var(--orange); }

.confirm-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 44px; }
.confirm-actions .button { min-width: 220px; }

@media (max-width: 860px) {
    .confirm-grid { grid-template-columns: 1fr; }
    .confirm-store-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .confirm-store-grid { grid-template-columns: 1fr; }
    .confirm-detail-list > div { flex-direction: column; align-items: flex-start; gap: 4px; }
    .confirm-detail-list dd { text-align: left; }
}