/* ==============================================
   TWIN CITIES CONCRETE DEMOLITION
   Book an Estimate — Booking Page Styles
   Design system mirrors index.html exactly
   ============================================== */

/* Time slot loading state */
.slots-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 28px 0;
    color: #888;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* --- Reset & Root --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:    #080808;
    --dark:     #111111;
    --dark2:    #1a1a1a;
    --border:   #2a2a2a;
    --border2:  #333333;
    --white:    #f2ede8;
    --white2:   #c8c2bb;
    --orange:   #e85d26;
    --orange2:  #ff6b35;
    --font-display: 'Bebas Neue', sans-serif;
    --font-cond:    'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 9999;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==============================================
   NAVIGATION (exact copy from index.html)
   ============================================== */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s, padding 0.4s;
}
.site-nav.scrolled {
    background: rgba(8,8,8,0.95);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; display: block; transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 0.85; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-family: var(--font-cond);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white2);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 22px;
    font-size: 12px !important;
    letter-spacing: 0.14em !important;
    transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange2) !important; color: var(--white) !important; }
.nav-phone-link {
    font-family: var(--font-cond);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--white) !important;
}
.has-dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark2);
    border: 1px solid var(--border2);
    min-width: 240px;
    padding: 8px 0;
    z-index: 100;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 12px !important;
    letter-spacing: 0.1em !important;
    color: var(--white2) !important;
    transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--border); color: var(--white) !important; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

/* ==============================================
   PAGE HERO (smaller than homepage)
   ============================================== */
.page-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: grayscale(100%);
}
.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,8,8,0.2), var(--black));
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.section-label {
    font-family: var(--font-cond);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 10vw, 140px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}
.page-hero-title em {
    font-style: normal;
    color: var(--orange);
    display: block;
}
.page-hero-sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--white2);
    max-width: 480px;
    line-height: 1.7;
}

/* ==============================================
   BOOKING WIZARD SECTION
   ============================================== */
.booking-section {
    padding: 80px 0 120px;
}

#bookingWizard {
    max-width: 700px;
    margin: 0 auto;
}

/* --- Progress Indicator --- */
.booking-progress {
    margin-bottom: 60px;
}
.prog-step-label {
    font-family: var(--font-cond);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}
.prog-track {
    display: flex;
    align-items: center;
    gap: 0;
}
.prog-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-cond);
    font-size: 15px;
    font-weight: 700;
    color: var(--white2);
    transition: all 0.3s;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.prog-dot.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}
.prog-dot.done {
    background: var(--border2);
    border-color: var(--border2);
    color: var(--white2);
}
.prog-dot.done::after {
    content: '✓';
    position: absolute;
    font-size: 14px;
}
.prog-dot.done > span { display: none; }
.prog-line {
    flex: 1;
    height: 2px;
    background: var(--border2);
    transition: background 0.3s;
    margin: 0 -1px;
}
.prog-line.done { background: var(--orange); }
.prog-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.prog-label {
    font-family: var(--font-cond);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white2);
    text-align: center;
    width: 44px;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.prog-label.active,
.prog-label.done {
    opacity: 1;
    color: var(--white);
}
.prog-label.active { color: var(--orange); }

/* --- Step Containers --- */
.booking-step { display: none; }
.booking-step.active { display: block; }

.step-header {
    margin-bottom: 40px;
}
.step-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.step-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--white2);
    line-height: 1.6;
}
.selected-date-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 16px;
    background: var(--dark2);
    border: 1px solid var(--orange);
    font-family: var(--font-cond);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
}

/* --- Calendar --- */
.cal-wrapper {
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 28px;
}
.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.cal-month-label {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 0.04em;
    color: var(--white);
    text-transform: uppercase;
}
.cal-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border2);
    background: var(--dark2);
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    font-family: var(--font-body);
}
.cal-nav-btn:hover { background: var(--orange); border-color: var(--orange); }
.cal-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-nav-btn:disabled:hover { background: var(--dark2); border-color: var(--border2); }
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.cal-day-header {
    font-family: var(--font-cond);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white2);
    text-align: center;
    padding: 10px 4px;
    opacity: 0.6;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark2);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.15s;
    min-height: 44px;
    min-width: 44px;
}
.cal-day:hover:not(:disabled):not(.empty) {
    border-color: var(--orange);
    color: var(--orange);
    z-index: 1;
}
.cal-day.selected {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    font-weight: 600;
}
.cal-day:disabled,
.cal-day.past {
    color: #2a2a2a;
    cursor: not-allowed;
    background: var(--black);
    border-color: #1a1a1a;
}
.cal-day.today {
    border-color: var(--white2);
    color: var(--white);
    font-weight: 600;
}
.cal-day.today.selected { border-color: var(--orange); }
.cal-day.empty {
    background: transparent;
    border-color: transparent;
    pointer-events: none;
}

/* --- Time Slots --- */
.time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.time-slot {
    padding: 22px 16px;
    background: var(--dark2);
    border: 2px solid var(--border2);
    color: var(--white);
    font-family: var(--font-cond);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
}
.time-slot:hover:not(.taken):not(:disabled) {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(232, 93, 38, 0.06);
}
.time-slot.selected {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}
.time-slot.taken {
    color: #333;
    cursor: not-allowed;
    border-color: #1e1e1e;
    background: rgba(0,0,0,0.3);
}
.time-slot.taken .slot-status {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #333;
}
.slot-status {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(242, 237, 232, 0.4);
}

/* --- Contact Form --- */
.bk-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.bk-field { display: flex; flex-direction: column; }
.bk-label {
    display: block;
    font-family: var(--font-cond);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white2);
    margin-bottom: 10px;
}
.bk-input {
    width: 100%;
    background: var(--dark2);
    border: 2px solid var(--border2);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    padding: 18px 20px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}
.bk-input::placeholder { color: #777; }
.bk-input:focus { border-color: var(--orange); }
.bk-input.error { border-color: #e03030; }
.field-error {
    display: block;
    color: #e05050;
    font-size: 12px;
    font-family: var(--font-cond);
    letter-spacing: 0.05em;
    margin-top: 6px;
}

/* --- Review Card --- */
.review-card {
    background: var(--dark);
    border: 1px solid var(--border);
}
.review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
}
.review-row:last-child { border-bottom: none; }
.review-row > span {
    font-family: var(--font-cond);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white2);
    flex-shrink: 0;
}
.review-row > strong {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    text-align: right;
}
.review-highlight { color: var(--orange) !important; font-weight: 600 !important; }

/* --- Step Navigation Buttons --- */
.step-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    justify-content: flex-end;
}
.btn-back {
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--white2);
    font-family: var(--font-cond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 15px 24px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-back:hover { border-color: var(--white2); color: var(--white); }
.btn-next {
    background: var(--orange);
    border: none;
    color: var(--white);
    font-family: var(--font-cond);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 36px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-next:hover:not(:disabled) {
    background: var(--orange2);
    transform: translateY(-1px);
}
.btn-next:disabled {
    background: var(--border2);
    color: var(--white2);
    cursor: not-allowed;
    transform: none;
}
.btn-confirm {
    padding: 18px 44px;
    font-size: 15px;
    letter-spacing: 0.18em;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.25);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: bk-spin 0.7s linear infinite;
}
@keyframes bk-spin { to { transform: rotate(360deg); } }

/* --- Success State --- */
#bookingSuccess {
    text-align: center;
    padding: 60px 0;
}
.success-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 36px;
    color: var(--white);
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes successPop {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.success-headline {
    font-family: var(--font-display);
    font-size: clamp(56px, 10vw, 96px);
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}
.success-headline em {
    color: var(--orange);
    font-style: normal;
    display: block;
}
.success-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--white2);
    max-width: 460px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.success-details {
    background: var(--dark);
    border: 1px solid var(--border);
    max-width: 520px;
    margin: 0 auto 32px;
    text-align: left;
}
.success-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
}
.success-row:last-child { border-bottom: none; }
.success-row span {
    font-family: var(--font-cond);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white2);
    flex-shrink: 0;
}
.success-row strong {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    text-align: right;
}
.success-note {
    font-size: 13px;
    color: var(--white2);
    font-weight: 300;
}
.success-note a { color: var(--orange); }
.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Shared button styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-cond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 32px;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-cond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 15px 32px;
    border: 1px solid var(--border2);
    transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--white2); color: var(--white); }

/* ==============================================
   FOOTER (exact copy from index.html)
   ============================================== */
.site-footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand {
    font-family: var(--font-cond);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-brand span {
    color: var(--orange);
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 400;
    margin-bottom: 4px;
}
.footer-about {
    font-size: 13px;
    font-weight: 300;
    color: var(--white2);
    line-height: 1.7;
    margin-bottom: 24px;
}
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-contact-info a {
    font-family: var(--font-cond);
    font-size: 14px;
    color: var(--white2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}
.footer-contact-info a i { color: var(--orange); width: 16px; }
.footer-contact-info a:hover { color: var(--white); }
.footer-col h4 {
    font-family: var(--font-cond);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white2);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; font-weight: 300; color: #999; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white2); }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footer-bottom p { font-size: 12px; font-weight: 300; color: #999; }
.footer-bottom a { color: #999; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white2); }

/* ==============================================
   MOBILE CTA BAR
   ============================================== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: var(--dark);
    border-top: 1px solid var(--border);
}
.cta-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.bar-call, .bar-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-family: var(--font-cond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    transition: background 0.2s;
}
.bar-call { background: var(--dark2); }
.bar-call:hover { background: var(--border); }
.bar-book { background: var(--orange); }
.bar-book:hover { background: var(--orange2); }

/* ==============================================
   BREADCRUMB STRIP
   ============================================== */
.page-breadcrumb {
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    margin-top: 88px;
}
.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-cond);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--white2);
}
.breadcrumb-inner a { color: var(--white2); transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--white); }
.breadcrumb-sep { color: var(--border2); }
.breadcrumb-current { color: var(--orange); }

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .nav-inner { padding: 0 24px; }
    .page-hero-content { padding: 0 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        top: 64px;
        background: var(--black);
        padding: 40px 24px;
        gap: 8px;
        overflow-y: auto;
        z-index: 999;
    }
    .nav-links.open a { font-size: 18px; padding: 12px 0; border-bottom: 1px solid var(--border); display: block; }
    .nav-links.open .nav-cta { margin-top: 16px; padding: 14px 24px; text-align: center; }
    .nav-toggle { display: flex; }
    .dropdown-menu { position: static; transform: none; border: none; padding: 0 0 0 16px; display: none; }
    .has-dropdown.open .dropdown-menu { display: block; }

    .page-hero { padding: 120px 0 60px; }
    .page-hero-content { padding: 0 24px; }

    .booking-section { padding: 48px 0 80px; }
    #bookingWizard { padding: 0 8px; }

    .cal-wrapper { padding: 16px; }
    .cal-day { font-size: 14px; }

    .time-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .time-slot { padding: 18px 12px; font-size: 19px; }

    .bk-input { font-size: 16px; padding: 16px 16px; }

    .step-nav { flex-direction: column-reverse; }
    .btn-back, .btn-next, .btn-confirm { width: 100%; justify-content: center; }

    .review-row { padding: 14px 20px; }
    .review-row > strong { font-size: 14px; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 60px; }

    .success-details { margin: 0 0 24px; }
    .success-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .prog-labels { display: none; }
    .prog-dot { width: 38px; height: 38px; font-size: 14px; }
    .time-grid { grid-template-columns: 1fr; gap: 8px; }
    .time-slot { padding: 20px; font-size: 22px; flex-direction: row; gap: 12px; }
}
