/* Contact page */
.contact-page-hero { padding-block: 64px 8px; }
.contact-page-hero h1 { max-width: 720px; }
.contact-page-hero p { max-width: 560px; margin-inline: auto; color: var(--muted); }

.contact-main-section { padding-block: 56px 76px; }
.contact-main-grid { display: grid; grid-template-columns: minmax(0, 1.47fr) minmax(0, 1fr); gap: 32px; align-items: start; }

.contact-panel {
    padding: 40px;
    border-radius: var(--radius);
    background: #e4e6eb;
    color: #10131c;
    box-shadow: var(--shadow);
}
.contact-panel h2 { margin: 0 0 26px; color: #10131c; font-size: clamp(1.35rem, 1.15rem + .7vw, 1.75rem); font-weight: 780; letter-spacing: -.02em; }
.contact-panel .contact-field label { color: #10131c; }
.contact-panel .contact-field input,
.contact-panel .contact-field select,
.contact-panel .contact-field textarea { background: #fff; color: #1c1f2b; }
.contact-panel .contact-field input::placeholder,
.contact-panel .contact-field textarea::placeholder { color: #8a90a0; }
.contact-panel .contact-form-grid { margin-top: 0; }
.contact-submit { margin-top: 30px; cursor: pointer;}
.contact-submit:disabled { cursor: wait; opacity: .72; transform: none; }
.contact-submit svg { width: 16px; height: 16px; margin-left: 10px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.contact-form-note { margin: 14px 0 0; color: #10131c; font-size: .8125rem; font-weight: 600; }
.contact-form-status { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 14px; margin: 0 0 22px; padding: 14px 14px 14px 16px; border: 1px solid; border-radius: 10px; font-size: .875rem; font-weight: 700; line-height: 1.5; }
.contact-form-status-success { border-color: #8bc7a2; background: #edf9f1; color: #176335; }
.contact-form-status-error { border-color: #e5a3a3; background: #fff0f0; color: #8c2020; }
.contact-status-dismiss {
    display: grid;
    width: 30px;
    height: 30px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: currentColor;
    cursor: pointer;
    opacity: .7;
    transition: background .18s ease, opacity .18s ease;
}
.contact-status-dismiss:hover { background: rgba(0, 0, 0, .07); opacity: 1; }
.contact-status-dismiss:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; opacity: 1; }
.contact-status-dismiss svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.contact-field-error { color: #a51f1f; font-size: .75rem; font-weight: 700; line-height: 1.4; }
.contact-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.contact-info-stack { display: grid; gap: 20px; }
.info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 28px;
    border-radius: 18px;
    background: #fff;
    color: #10131c;
    box-shadow: var(--shadow);
}
.info-card .icon-badge { background: rgba(255, 59, 10, .1); }
.info-card h3 { margin: 0; font-size: 1.0625rem; font-weight: 780; letter-spacing: -.015em; }
.info-card p { margin: 4px 0 0; color: #000000; font-size: .9375rem; font-weight: 600; }
.info-card-link {
    display: inline-block;
    margin-top: 4px;
    color: #000;
    font-size: .9375rem;
    font-weight: 600;
    transition: color .2s ease;
}
.info-card-link:hover { color: var(--orange); }
.info-card-link:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 2px; }

.call-direct-card {
    position: relative;
    z-index: 5;
    align-items: flex-start;
    border: 1px solid rgba(255, 59, 10, .13);
    background: linear-gradient(145deg, #fff 0%, #fff8f5 100%);
}
.whatsapp-direct-card { z-index: 7; }
.call-direct-content { flex: 1; min-width: 0; }
.call-direct-helper {
    display: block;
    margin-top: 3px;
    color: #72798a;
    font-size: .75rem;
    font-weight: 600;
}
.call-direct-control {
    display: grid;
    grid-template-columns: 225px 160px;
    justify-content: start;
    gap: 10px;
    margin-top: 12px;
}
.call-store-dropdown {
    position: relative;
    z-index: 20;
    min-width: 0;
}
.call-store-toggle {
    display: grid;
    grid-template-columns: 17px minmax(0, 1fr) 14px;
    align-items: center;
    gap: 9px;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 6px 12px;
    border: 1px solid #d8dce5;
    border-radius: 13px;
    background: #fff;
    color: #10131c;
    font: inherit;
    text-align: left;
    box-shadow: 0 5px 14px rgba(16, 19, 28, .07), inset 0 1px 0 rgba(255, 255, 255, .8);
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.call-store-toggle:hover {
    border-color: rgba(255, 59, 10, .42);
    background: #fffaf8;
}
.call-store-toggle:focus-visible {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 59, 10, .11);
}
.call-store-dropdown.is-open .call-store-toggle {
    border-color: var(--orange);
    background: #fffaf8;
    box-shadow: 0 0 0 4px rgba(255, 59, 10, .11);
}
.call-store-toggle > svg {
    width: 100%;
    height: auto;
    fill: none;
    stroke: var(--orange);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}
.call-store-toggle .call-store-chevron { stroke: #535a6b; transition: transform .2s ease; }
.call-store-dropdown.is-open .call-store-chevron { transform: rotate(180deg); }
.call-store-toggle-copy { display: grid; min-width: 0; line-height: 1.1; }
.call-store-toggle-copy small {
    color: #878e9d;
    font-size: .5625rem;
    font-weight: 750;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.call-store-toggle-copy strong {
    margin-top: 3px;
    overflow: hidden;
    color: #10131c;
    font-size: .8375rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.call-store-toggle.is-placeholder .call-store-toggle-copy strong { color: #8a90a0; font-weight: 600; }
.call-store-toggle[aria-invalid="true"] {
    border-color: #c62828 !important;
    box-shadow: 0 0 0 4px rgba(198, 40, 40, .12) !important;
    background: #fff5f5 !important;
}
.call-store-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 60;
    width: 100%;
    min-width: 100%;
    max-width: calc(100vw - 44px);
    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;
}
.call-store-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);
}
.call-store-dropdown.is-open .call-store-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.call-store-option {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 11px;
    width: 100%;
    padding: 10px;
    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;
}
.call-store-option + .call-store-option { margin-top: 4px; }
.call-store-option:hover,
.call-store-option:focus-visible {
    outline: none;
    border-color: rgba(255, 59, 10, .35);
    background: linear-gradient(100deg, #ffd7c4, #ffe9dc);
    transform: translateX(2px);
}
.call-store-option[aria-selected="true"] {
    border-color: rgba(255, 59, 10, .24);
    background: #fff;
}
.call-store-option[aria-selected="true"]:hover,
.call-store-option[aria-selected="true"]:focus-visible {
    border-color: rgba(255, 59, 10, .35);
    background: linear-gradient(100deg, #ffd7c4, #ffe9dc);
}
.call-store-option-pin {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 59, 10, .13);
}
.call-store-option-pin svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #ff6842;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.call-store-option > strong { color: #10131c; font-size: .8375rem; font-weight: 800; }
.call-store-check {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #ff6842;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
}
.call-store-option[aria-selected="true"] .call-store-check { opacity: 1; }
.call-direct-control a {
    display: inline-flex;
    width: 160px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    border: 1px solid rgba(199, 36, 0, .12);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange-bright), #ff5a2e);
    color: #fff;
    font-size: .8125rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 9px 20px rgba(255, 59, 10, .2), inset 0 1px 0 rgba(255, 255, 255, .22);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.call-direct-control a:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 12px 24px rgba(255, 59, 10, .25); }
.call-direct-control a:focus-visible { outline: 3px solid rgba(255, 59, 10, .22); outline-offset: 2px; }

.hours-card { flex-direction: column; align-items: stretch; gap: 0; }
.hours-card-head { display: flex; align-items: center; gap: 18px; }
.hours-list { display: grid; gap: 12px; margin: 22px 0 0; padding-top: 20px; border-top: 1px solid #e6e8ee; }
.hours-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.hours-row dt { color: #10131c; font-size: .9375rem; font-weight: 750; }
.hours-row dd { margin: 0; color: #4b5165; font-size: .9375rem; font-weight: 600; }
.hours-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--orange-bright);
    color: #fff !important;
    font-size: .8125rem;
    font-weight: 650;
    line-height: 1.45;
}
.info-card .hours-note { color: #fff; }
.hours-note svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.store-section { padding-block: 12px 76px; }
.store-location-switcher {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 38px;
    padding: 14px 16px 14px 22px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    background: linear-gradient(135deg, #101b32, #0a152b);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .035);
}
.store-location-switcher-copy { display: grid; min-width: 190px; line-height: 1.2; }
.store-location-switcher-copy span {
    color: var(--orange);
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.store-location-switcher-copy strong { margin-top: 5px; color: #fff; font-size: .9375rem; font-weight: 750; }
.store-location-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 9px;
    width: min(100%, 570px);
}
.store-location-tab {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    background: rgba(255, 255, 255, .045);
    color: #bec6d4;
    font: inherit;
    font-size: .8125rem;
    font-weight: 750;
    cursor: pointer;
    transition: transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.store-location-tab svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.store-location-tab:hover {
    color: #fff;
    border-color: rgba(255, 104, 66, .42);
    background: rgba(255, 59, 10, .1);
    transform: translateY(-1px);
}
.store-location-tab:focus-visible { outline: 3px solid rgba(255, 59, 10, .3); outline-offset: 2px; }
.store-location-tab.is-active {
    border-color: var(--orange);
    background: linear-gradient(135deg, var(--orange-bright), #ff6339);
    color: #fff;
    box-shadow: 0 9px 22px rgba(255, 59, 10, .24), inset 0 1px 0 rgba(255, 255, 255, .24);
}
.store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.store-eyebrow { display: block; margin-bottom: 10px; color: var(--orange); font-size: var(--text-eyebrow); font-weight: 750; }
.store-copy h2 { margin: 0; font-size: var(--heading-section); font-weight: 780; letter-spacing: -.03em; }
.store-copy > p { margin: 16px 0 0; max-width: 460px; color: var(--muted); font-size: var(--text-body); line-height: 1.6; }
.store-details { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 30px; }
.store-details h3 { margin: 0; font-size: .9375rem; font-weight: 780; letter-spacing: -.01em; }
.store-details p { margin: 8px 0 0; color: var(--muted); font-size: .9375rem; line-height: 1.5; }
#store-address,
#store-hours { white-space: pre-line; }
.store-details a { color: inherit; transition: color .18s ease; }
.store-details a:hover,
.store-details a:focus-visible { color: var(--orange); }
.store-direction { margin-top: 30px; }
.store-direction svg { width: 16px; height: 16px; margin-left: 10px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.store-map-frame {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #d9dce3;
    box-shadow: 0 18px 42px rgba(0, 10, 28, .18);
}
.store-map-frame iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.contact-urgent-panel { background: var(--panel-blue); }

@media (max-width: 1180px) {
    .contact-main-grid { grid-template-columns: 1fr; }
    .store-grid { grid-template-columns: 1fr; }
    .store-map-frame { min-height: 340px; }
    .store-map-frame iframe { height: 340px; }
}

@media (max-width: 620px) {
    .contact-panel { padding: 26px; }
    .contact-phone-controls { grid-template-columns: 1fr; }
    .info-card { flex-direction: column; align-items: flex-start; text-align: left; padding: 22px; }
    .call-direct-content { width: 100%; }
    .call-direct-control { grid-template-columns: minmax(0, 1fr) auto; }
    .store-location-switcher { align-items: stretch; flex-direction: column; gap: 16px; padding: 18px; }
    .store-location-tabs { display: flex; width: 100%; overflow-x: auto; padding-bottom: 3px; scrollbar-width: thin; }
    .store-location-tab { flex: 1 0 130px; padding-inline: 14px; }
    .store-details { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .call-direct-control { grid-template-columns: 1fr; }
    .call-store-menu { min-width: 100%; }
    .call-direct-control a { width: 100%; }
}

@media (max-width: 1180px) {
    .flow-card-grid { grid-template-columns: repeat(2, 1fr); }
    .flow-info-grid { grid-template-columns: 1fr; }
    .flow-feature-grid { grid-template-columns: repeat(3, 1fr); }
    .service-select-grid { grid-template-columns: repeat(2, 1fr); }
    .delivery-grid { grid-template-columns: 1fr; }
    .pricing-mode-panel { grid-template-columns: 1fr; }
    .pricing-mode-options { grid-template-columns: 1fr; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .time-slot-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .flow-panel { padding: 32px 24px; }
    .flow-stepper { grid-template-columns: repeat(2, 1fr); }
    .flow-info-copy, .flow-how-panel { padding: 32px 24px; }
    .flow-feature-grid { grid-template-columns: 1fr; }
    .flow-urgent-panel { padding: 44px 24px; }
    .review-approval { align-items: flex-start; flex-direction: column; }
    .review-summary-item { grid-template-columns: minmax(110px, .6fr) minmax(0, 2fr) auto; }
}

@media (max-width: 620px) {
    .flow-titlebar { padding: 22px; }
    .flow-stepper { grid-template-columns: 1fr; gap: 12px; }
    .flow-panel h2 { font-size: 28px; }
    .flow-card-grid { grid-template-columns: 1fr; }
    .service-select-grid { grid-template-columns: 1fr; }
    .flow-type-row { padding: 14px 18px; }
    .appointment-calendar { padding: 18px 12px; }
    .appointment-calendar-head { flex-direction: column; align-items: stretch; }
    .calendar-weekdays,
    .calendar-grid { gap: 4px; }
    .calendar-weekdays span { font-size: .6rem; }
    .calendar-day {
        min-width: 0;
        min-height: 44px;
        padding: 6px 1px;
        border-radius: 8px;
        font-size: .6875rem;
    }
    .calendar-day .calendar-day-tag {
        width: 5px;
        height: 5px;
        overflow: hidden;
        border-radius: 50%;
        background: currentColor;
        font-size: 0;
    }
    .calendar-footer { align-items: flex-start; flex-direction: column; }
    .time-slot-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .flow-panel-footer { flex-direction: column; align-items: stretch; gap: 18px; }
    .flow-panel-footer .flow-back { order: 2; justify-content: center; }
    .flow-dots { order: 3; justify-content: center; }
    .flow-continue { order: 1; width: 100%; }
    .flow-stat-row { gap: 10px; }
    .flow-urgent-actions { flex-direction: column; align-items: stretch; gap: 14px; }
    .flow-urgent-actions .button { min-width: 0; width: 100%; }
    .review-heading { margin-bottom: 26px; }
    .review-heading p { font-size: .9375rem; }
    .review-approval,
    .review-card { padding: 22px 18px; }
    .review-approval-checks { width: 100%; justify-content: space-between; }
    .review-edit-nav { display: grid; grid-template-columns: 1fr 1fr; }
    .review-edit-nav button { width: 100%; padding-inline: 12px; }
    .review-card-head { align-items: flex-start; }
    .review-summary-item { grid-template-columns: 1fr auto; gap: 4px 12px; padding: 16px; }
    .review-summary-item dt { grid-column: 1; }
    .review-summary-item dd { grid-column: 1; }
    .review-summary-item button { grid-column: 2; grid-row: 1 / 3; align-self: center; }
    .review-price-row { align-items: flex-start; }
    .review-estimate-note { text-align: left; }
    .review-terms { padding: 18px; }
    .review-privacy-copy { margin-left: 0 !important; }
}

@media (max-width: 420px) {
    .review-edit-nav { grid-template-columns: 1fr; }
    .review-approval-checks { align-items: flex-start; flex-direction: column; gap: 12px; }
    .review-card-head { flex-direction: column; gap: 8px; }
}

