/* /Components/Layout/MainLayout.razor.rz.scp.css */
main[b-u7lv4e6rte] {
    min-height: calc(100vh - 72px);
}

#blazor-error-ui[b-u7lv4e6rte] {
    color-scheme: light only;
    background: #b32121;
    color: white;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-u7lv4e6rte] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.ace-navbar[b-btp3cxbs3w] {
    background-color: rgba(18, 19, 19, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ace-border);
    box-shadow: 0 1px 0 var(--ace-chrome-dim);
    padding: 0.35rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ace-navbar .navbar-brand img[b-btp3cxbs3w] {
    height: 58px;
    width: auto;
    transition: filter 0.2s ease;
}

.ace-navbar .navbar-brand:hover img[b-btp3cxbs3w] {
    filter: drop-shadow(0 0 14px rgba(89, 205, 195, 0.45));
}

.ace-navbar[b-btp3cxbs3w]  .nav-link {
    color: var(--ace-muted) !important;
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem;
    border-radius: var(--r-sm);
    transition: color 0.2s, background-color 0.2s;
}

.ace-navbar[b-btp3cxbs3w]  .nav-link:hover {
    color: var(--ace-teal-bright) !important;
    background-color: var(--ace-teal-dim);
}

.ace-navbar[b-btp3cxbs3w]  .nav-link.active {
    color: var(--ace-teal-bright) !important;
}

.nav-emergency-btn[b-btp3cxbs3w] {
    padding: 0.55rem 1.1rem !important;
    font-size: 0.78rem;
}

.ace-navbar .navbar-toggler[b-btp3cxbs3w] {
    border-color: var(--ace-border-2);
}

.ace-navbar .navbar-collapse[b-btp3cxbs3w] {
    background-color: transparent;
}

@media (max-width: 991.98px) {
    .ace-navbar[b-btp3cxbs3w] {
        background-color: var(--ace-bg);
    }

    .ace-navbar .navbar-collapse[b-btp3cxbs3w] {
        padding: 1rem 0;
        border-top: 1px solid var(--ace-border);
        margin-top: 0.5rem;
    }

    .ace-navbar .navbar-nav[b-btp3cxbs3w] {
        gap: 0.25rem !important;
        align-items: flex-start !important;
    }

    .ace-navbar .ms-2[b-btp3cxbs3w] {
        margin-left: 0 !important;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-vh6epbcwg8],
.components-reconnect-repeated-attempt-visible[b-vh6epbcwg8],
.components-reconnect-failed-visible[b-vh6epbcwg8],
.components-pause-visible[b-vh6epbcwg8],
.components-resume-failed-visible[b-vh6epbcwg8],
.components-rejoining-animation[b-vh6epbcwg8] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-vh6epbcwg8],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-vh6epbcwg8],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-vh6epbcwg8],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-vh6epbcwg8],
#components-reconnect-modal.components-reconnect-retrying[b-vh6epbcwg8],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-vh6epbcwg8],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-vh6epbcwg8],
#components-reconnect-modal.components-reconnect-failed[b-vh6epbcwg8],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-vh6epbcwg8] {
    display: block;
}


#components-reconnect-modal[b-vh6epbcwg8] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-vh6epbcwg8 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-vh6epbcwg8 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-vh6epbcwg8 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-vh6epbcwg8]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-vh6epbcwg8 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-vh6epbcwg8 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-vh6epbcwg8 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-vh6epbcwg8 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-vh6epbcwg8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-vh6epbcwg8] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-vh6epbcwg8] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-vh6epbcwg8] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-vh6epbcwg8] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-vh6epbcwg8] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-vh6epbcwg8] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-vh6epbcwg8 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-vh6epbcwg8] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-vh6epbcwg8 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ============================================================
   HERO — cinematic dark stage + composited truck
   ============================================================ */
.hero[b-i0cqcmvcsl] {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--ace-bg);
    border-bottom: 1px solid var(--ace-border);
}

.hero-stage[b-i0cqcmvcsl] {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("/images/AceTruckFull.jpg");
    background-size: cover;
    background-position: 62% center;
}

/* cinematic scrim — keep left copy readable, let the truck breathe on the right.
   warm-dark base + teal lift bottom-left (cool recedes → depth) */
.hero-scrim[b-i0cqcmvcsl] {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 16, 16, 0.95) 0%, rgba(15, 16, 16, 0.82) 34%, rgba(15, 16, 16, 0.42) 64%, rgba(15, 16, 16, 0.62) 100%),
        linear-gradient(0deg, rgba(15, 16, 16, 0.92) 0%, rgba(15, 16, 16, 0.15) 40%, transparent 70%),
        radial-gradient(60% 60% at 18% 80%, rgba(89, 205, 195, 0.16) 0%, transparent 60%);
}

/* faint angular facets echoing the logo geometry */
.hero-shards[b-i0cqcmvcsl] {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(115deg, transparent 48%, rgba(89, 205, 195, 0.06) 49%, transparent 50%),
        linear-gradient(115deg, transparent 64%, rgba(255, 255, 255, 0.03) 65%, transparent 66%),
        linear-gradient(115deg, transparent 30%, rgba(89, 205, 195, 0.04) 31%, transparent 32%);
}

.hero-watermark[b-i0cqcmvcsl] {
    position: absolute;
    bottom: -8%;
    left: -4%;
    width: 46vmin;
    height: 46vmin;
    color: rgba(89, 205, 195, 0.045);
    transform: rotate(-12deg);
}

.hero-grid[b-i0cqcmvcsl] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 73px - 64px);
    padding-top: clamp(2.5rem, 5vw, 4.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.hero-copy[b-i0cqcmvcsl] {
    max-width: 38rem;
}

.hero-eyebrow[b-i0cqcmvcsl] {
    margin-bottom: 1.4rem;
}

.hero-title[b-i0cqcmvcsl] {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: var(--fs-hero);
    line-height: 0.92;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.5rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.hero-title-line[b-i0cqcmvcsl] {
    display: block;
}

.hero-title-accent[b-i0cqcmvcsl] {
    background: linear-gradient(180deg, var(--ace-teal-bright) 0%, var(--ace-teal) 58%, var(--ace-teal-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub[b-i0cqcmvcsl] {
    font-family: var(--font-body);
    font-size: var(--fs-lead);
    color: var(--ace-muted);
    max-width: 30rem;
    line-height: 1.6;
    margin: 0 0 2.25rem;
}

.hero-ctas[b-i0cqcmvcsl] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn[b-i0cqcmvcsl] {
    font-size: 1rem;
    padding: 1rem 2.1rem;
}

.hero-phone[b-i0cqcmvcsl] {
    margin: 1.75rem 0 0;
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--ace-faint);
}

.hero-phone a[b-i0cqcmvcsl] {
    color: var(--ace-text);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-phone a:hover[b-i0cqcmvcsl] {
    color: var(--ace-teal-bright);
}

/* trust strip */
.trust-strip[b-i0cqcmvcsl] {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--ace-border);
    background: linear-gradient(180deg, rgba(89, 205, 195, 0.04), transparent);
    backdrop-filter: blur(2px);
}

.trust-inner[b-i0cqcmvcsl] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}

.trust-item[b-i0cqcmvcsl] {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.trust-item strong[b-i0cqcmvcsl] {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--ace-teal-bright);
    text-transform: uppercase;
}

.trust-item span[b-i0cqcmvcsl] {
    font-family: var(--font-label);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ace-faint);
}

.trust-divider[b-i0cqcmvcsl] {
    width: 1px;
    align-self: stretch;
    background: var(--ace-border-2);
}

/* hero entrance stagger */
.hero-eyebrow[b-i0cqcmvcsl], .hero-title[b-i0cqcmvcsl], .hero-sub[b-i0cqcmvcsl], .hero-ctas[b-i0cqcmvcsl], .hero-phone[b-i0cqcmvcsl] {
    opacity: 0;
    animation: fade-up-b-i0cqcmvcsl 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-eyebrow[b-i0cqcmvcsl] { animation-delay: 0.05s; }
.hero-title[b-i0cqcmvcsl] { animation-delay: 0.15s; }
.hero-sub[b-i0cqcmvcsl] { animation-delay: 0.28s; }
.hero-ctas[b-i0cqcmvcsl] { animation-delay: 0.4s; }
.hero-phone[b-i0cqcmvcsl] { animation-delay: 0.5s; }

@keyframes fade-up-b-i0cqcmvcsl {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Section primitives
   ============================================================ */
.section-head[b-i0cqcmvcsl] {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-head .eyebrow[b-i0cqcmvcsl] {
    margin-bottom: 1rem;
}

.section-title[b-i0cqcmvcsl] {
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--ace-text);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin: 0 0 0.85rem;
}

.section-sub[b-i0cqcmvcsl] {
    font-family: var(--font-body);
    color: var(--ace-muted);
    font-size: var(--fs-lead);
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services[b-i0cqcmvcsl] {
    padding: clamp(4rem, 7vw, 6.5rem) 0;
    background: linear-gradient(180deg, var(--ace-bg-2), var(--ace-bg));
}

.services-grid[b-i0cqcmvcsl] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card[b-i0cqcmvcsl] {
    position: relative;
    overflow: hidden;
    background: var(--ace-bg-3);
    border: 1px solid var(--ace-border);
    border-radius: var(--r-md);
    padding: 2.25rem 1.85rem 2rem;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* teal top edge */
.service-card[b-i0cqcmvcsl]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ace-teal-deep), var(--ace-teal-bright), var(--ace-teal-deep));
    opacity: 0.55;
    transition: opacity 0.2s ease;
}

.service-card:hover[b-i0cqcmvcsl] {
    border-color: rgba(89, 205, 195, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.service-card:hover[b-i0cqcmvcsl]::before {
    opacity: 1;
}

.service-index[b-i0cqcmvcsl] {
    position: absolute;
    top: 1.1rem;
    right: 1.3rem;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--ace-chrome-dim);
}

.service-card--featured[b-i0cqcmvcsl] {
    border-color: rgba(249, 115, 22, 0.4);
    background: linear-gradient(155deg, #261c14, var(--ace-bg-3) 60%);
}

.service-card--featured[b-i0cqcmvcsl]::before {
    background: linear-gradient(90deg, var(--ace-orange-dark), #ff9a4d, var(--ace-orange-dark));
    opacity: 1;
}

.featured-badge[b-i0cqcmvcsl] {
    position: absolute;
    top: 0;
    left: 1.85rem;
    background: var(--ace-orange);
    color: #fff;
    font-family: var(--font-label);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
}

.service-icon[b-i0cqcmvcsl] {
    font-size: 2.1rem;
    margin-bottom: 1.1rem;
}

.service-card h3[b-i0cqcmvcsl] {
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--ace-text);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin: 0 0 0.7rem;
}

.service-card p[b-i0cqcmvcsl] {
    font-family: var(--font-body);
    color: var(--ace-muted);
    font-size: 0.97rem;
    line-height: 1.6;
    margin: 0 0 1.4rem;
}

.service-cta[b-i0cqcmvcsl] {
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ace-teal-text);
    font-weight: 600;
    font-size: 0.85rem;
}

.service-cta:hover[b-i0cqcmvcsl] { color: var(--ace-teal-bright); }
.service-cta--emergency[b-i0cqcmvcsl] { color: var(--ace-orange); }
.service-cta--emergency:hover[b-i0cqcmvcsl] { color: #ff9a4d; }

/* ============================================================
   WHY US — forest proof shot + spade bullets
   ============================================================ */
.why-us[b-i0cqcmvcsl] {
    padding: clamp(4rem, 7vw, 6.5rem) 0;
    background: var(--ace-bg);
}

.why-inner[b-i0cqcmvcsl] {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.why-panel[b-i0cqcmvcsl] {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(160deg, var(--ace-teal-deeper) 0%, var(--ace-bg-2) 72%);
    border: 1px solid var(--ace-border-2);
    border-radius: var(--r-md);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    padding: 2.6rem 2.1rem;
    box-shadow: var(--shadow-card);
}

.why-panel-spade[b-i0cqcmvcsl] {
    position: absolute;
    z-index: -1;
    right: -14%;
    top: -14%;
    width: 17rem;
    height: 17rem;
    color: rgba(89, 205, 195, 0.07);
    transform: rotate(8deg);
}

.why-panel-quote[b-i0cqcmvcsl] {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1.02;
    text-transform: uppercase;
    color: var(--ace-text);
    margin: 0 0 1rem;
}

.why-panel-sub[b-i0cqcmvcsl] {
    font-family: var(--font-body);
    color: var(--ace-muted);
    margin: 0 0 1.75rem;
    line-height: 1.55;
}

.why-content .section-title[b-i0cqcmvcsl] { text-align: left; }
.why-lead[b-i0cqcmvcsl] { text-align: left; margin-bottom: 2rem; max-width: 32rem; }

.why-grid[b-i0cqcmvcsl] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.5rem;
}

.why-item[b-i0cqcmvcsl] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: var(--ace-text);
    padding: 0.4rem 0;
}

.why-item .spade[b-i0cqcmvcsl] {
    flex-shrink: 0;
    width: 0.95rem;
    height: 0.95rem;
    color: var(--ace-teal);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band[b-i0cqcmvcsl] {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
    background: linear-gradient(135deg, var(--ace-teal-deeper) 0%, var(--ace-bg) 55%);
    border-top: 1px solid rgba(89, 205, 195, 0.18);
    border-bottom: 1px solid rgba(89, 205, 195, 0.18);
}

.cta-watermark[b-i0cqcmvcsl] {
    position: absolute;
    z-index: -1;
    right: -3%;
    top: 50%;
    transform: translateY(-50%) rotate(-10deg);
    width: 38vmin;
    height: 38vmin;
    color: rgba(89, 205, 195, 0.06);
}

.cta-band-inner[b-i0cqcmvcsl] {
    text-align: center;
    max-width: 680px;
}

.cta-band h2[b-i0cqcmvcsl] {
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--ace-text);
    text-transform: uppercase;
    margin: 0 0 0.85rem;
}

.cta-band p[b-i0cqcmvcsl] {
    font-family: var(--font-body);
    color: var(--ace-muted);
    margin: 0 auto 2rem;
    font-size: var(--fs-lead);
    max-width: 36rem;
}

.cta-band-btns[b-i0cqcmvcsl] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.ace-footer[b-i0cqcmvcsl] {
    background-color: var(--ace-bg-2);
    border-top: 1px solid var(--ace-border);
    padding: 3.5rem 0 0;
}

.footer-inner[b-i0cqcmvcsl] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo[b-i0cqcmvcsl] {
    height: 64px;
    width: auto;
    margin-bottom: 0.85rem;
}

.footer-tagline[b-i0cqcmvcsl] {
    color: var(--ace-faint);
    font-size: 0.92rem;
    margin: 0;
    max-width: 22rem;
}

.footer-contact h4[b-i0cqcmvcsl],
.footer-links h4[b-i0cqcmvcsl] {
    font-family: var(--font-label);
    color: var(--ace-text);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.footer-contact p[b-i0cqcmvcsl] {
    color: var(--ace-muted);
    font-size: 0.92rem;
    margin: 0 0 0.5rem;
}

.footer-contact a[b-i0cqcmvcsl] { color: var(--ace-muted); }
.footer-contact a:hover[b-i0cqcmvcsl] { color: var(--ace-teal-bright); }

.footer-links[b-i0cqcmvcsl] {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-links a[b-i0cqcmvcsl] {
    color: var(--ace-muted);
    font-size: 0.92rem;
}

.footer-links a:hover[b-i0cqcmvcsl] { color: var(--ace-teal-bright); }

.footer-bottom[b-i0cqcmvcsl] {
    border-top: 1px solid var(--ace-border);
    padding: 1.3rem 1.5rem;
    text-align: center;
}

.footer-bottom p[b-i0cqcmvcsl] {
    color: var(--ace-faint);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .hero-stage[b-i0cqcmvcsl] { background-position: 68% center; }
    .hero-grid[b-i0cqcmvcsl] { min-height: 74vh; }
    .why-inner[b-i0cqcmvcsl] { grid-template-columns: 1fr; }
    .why-content .section-title[b-i0cqcmvcsl], .why-lead[b-i0cqcmvcsl] { text-align: center; margin-left: auto; margin-right: auto; }
    .why-content .eyebrow[b-i0cqcmvcsl] { display: flex; justify-content: center; }
    .why-grid[b-i0cqcmvcsl] { max-width: 28rem; margin-left: auto; margin-right: auto; }
    .footer-inner[b-i0cqcmvcsl] { grid-template-columns: 1fr 1fr; }
    .footer-brand[b-i0cqcmvcsl] { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    .trust-inner[b-i0cqcmvcsl] { flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.25rem; }
    .trust-divider[b-i0cqcmvcsl] { display: none; }
    .trust-item[b-i0cqcmvcsl] { align-items: center; text-align: center; }
    .why-grid[b-i0cqcmvcsl] { grid-template-columns: 1fr; }
    .footer-inner[b-i0cqcmvcsl] { grid-template-columns: 1fr; }
    .hero-ctas .hero-btn[b-i0cqcmvcsl] { flex: 1 1 100%; }
}
/* /Components/Pages/Quote.razor.rz.scp.css */
.quote-layout[b-n4hwupiz6r] {
    display: flex;
    height: calc(100vh - 72px);
    overflow: hidden;
}

.quote-sidebar[b-n4hwupiz6r] {
    width: 420px;
    flex-shrink: 0;
    background-color: #1a1a1a;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    overflow-y: auto;
    overflow-x: hidden;
}

.quote-sidebar-inner[b-n4hwupiz6r] {
    padding: 1.75rem 1.5rem;
}

.emergency-banner[b-n4hwupiz6r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #f97316;
    border-radius: 6px;
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.maintenance-banner[b-n4hwupiz6r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.35);
    color: #fbbf24;
    border-radius: 6px;
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.quote-title[b-n4hwupiz6r] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 0.35rem;
}

.quote-sub[b-n4hwupiz6r] {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0 0 1.5rem;
}

/* Stops */
.stops-section[b-n4hwupiz6r] {
    margin-bottom: 1rem;
}

.winch-option[b-n4hwupiz6r] {
    margin-bottom: 1.25rem;
}

.winch-label[b-n4hwupiz6r] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #f1f5f9;
    cursor: pointer;
}

.winch-label input[type="checkbox"][b-n4hwupiz6r] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 2px solid rgba(26, 191, 180, 0.4);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    position: relative;
}

.winch-label input[type="checkbox"]:checked[b-n4hwupiz6r] {
    background: #1abfb4;
    border-color: #1abfb4;
}

.winch-label input[type="checkbox"]:checked[b-n4hwupiz6r]::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 0px;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Details sections */
.details-section[b-n4hwupiz6r] {
    margin-bottom: 1.25rem;
}

.job-date-section .winch-label[b-n4hwupiz6r] {
    margin-top: 0.6rem;
}

input[type="date"].stop-input[b-n4hwupiz6r] {
    color-scheme: dark;
}

input[type="date"].stop-input[b-n4hwupiz6r]::-webkit-calendar-picker-indicator {
    filter: invert(71%) sepia(46%) saturate(684%) hue-rotate(127deg) brightness(91%) contrast(89%);
    cursor: pointer;
    opacity: 0.75;
}

input[type="date"].stop-input[b-n4hwupiz6r]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.vehicle-make-model[b-n4hwupiz6r] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.vehicle-make-model .stop-input[b-n4hwupiz6r] {
    flex: 1;
    min-width: 0;
}

.reg-input[b-n4hwupiz6r] {
    flex: 0 0 90px !important;
    text-transform: uppercase;
}

.issues-input[b-n4hwupiz6r] {
    width: 100%;
    resize: vertical;
    min-height: 64px;
    margin-bottom: 0.75rem;
}

.condition-checks[b-n4hwupiz6r] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.condition-row[b-n4hwupiz6r] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.condition-row--disabled[b-n4hwupiz6r] {
    opacity: 0.35;
    pointer-events: none;
}

.condition-label[b-n4hwupiz6r] {
    font-size: 0.875rem;
    color: #94a3b8;
}

.yn-toggle[b-n4hwupiz6r] {
    display: flex;
    gap: 0.35rem;
}

.yn-btn[b-n4hwupiz6r] {
    padding: 0.25rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.15s;
}

.yn-btn--yes[b-n4hwupiz6r] {
    background: rgba(26, 191, 180, 0.15);
    border-color: #1abfb4;
    color: #1abfb4;
}

.yn-btn--no[b-n4hwupiz6r] {
    background: rgba(249, 115, 22, 0.15);
    border-color: #f97316;
    color: #f97316;
}

.optional-tag[b-n4hwupiz6r] {
    font-size: 0.7rem;
    font-weight: 400;
    color: #475569;
    letter-spacing: 0;
    text-transform: none;
    margin-left: 0.4rem;
}

.upload-area[b-n4hwupiz6r] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px dashed rgba(26, 191, 180, 0.35);
    border-radius: 6px;
    color: #1abfb4;
    font-size: 0.875rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 0.5rem;
    background: rgba(26, 191, 180, 0.04);
}

.upload-area:hover[b-n4hwupiz6r] {
    border-color: rgba(26, 191, 180, 0.6);
    background: rgba(26, 191, 180, 0.09);
}

.upload-file-input[b-n4hwupiz6r] {
    display: none;
}

.photo-list[b-n4hwupiz6r] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.photo-item[b-n4hwupiz6r] {
    font-size: 0.8rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stops-label[b-n4hwupiz6r] {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.stop-row[b-n4hwupiz6r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stop-locked[b-n4hwupiz6r] {
    flex: 1;
    font-size: 0.9rem;
    color: #64748b;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
}

.stop-badge[b-n4hwupiz6r] {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: #1abfb4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.stop-input[b-n4hwupiz6r] {
    flex: 1;
    background-color: #222 !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: #f1f5f9 !important;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.stop-input:focus[b-n4hwupiz6r] {
    border-color: #1abfb4 !important;
    box-shadow: 0 0 0 0.2rem rgba(26, 191, 180, 0.15) !important;
    background-color: #2a2a2a !important;
    outline: none;
}

.stop-input[b-n4hwupiz6r]::placeholder {
    color: #475569;
}

.location-btn[b-n4hwupiz6r] {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 0;
    transition: background-color 0.2s, border-color 0.2s;
}

.location-btn:hover:not(:disabled)[b-n4hwupiz6r] {
    background: rgba(26, 191, 180, 0.15);
    border-color: rgba(26, 191, 180, 0.4);
}

.location-btn--loading[b-n4hwupiz6r] {
    opacity: 0.6;
    cursor: not-allowed;
}

.loc-spin[b-n4hwupiz6r] {
    display: block;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(26, 191, 180, 0.3);
    border-top-color: #1abfb4;
    border-radius: 50%;
    animation: spin-b-n4hwupiz6r 0.8s linear infinite;
}

.w3w-badge[b-n4hwupiz6r] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #e03131;
    margin: 0.2rem 0 0 36px;
}

.w3w-slashes[b-n4hwupiz6r] {
    font-weight: 800;
    letter-spacing: -0.05em;
}

.location-badge[b-n4hwupiz6r] {
    font-size: 0.72rem;
    color: #1abfb4;
    margin: 0.2rem 0 0 36px;
}

.error-msg[b-n4hwupiz6r] {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: #f97316;
    border-radius: 6px;
    padding: 0.6rem 0.75rem;
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

.stop-remove[b-n4hwupiz6r] {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    transition: background-color 0.2s, color 0.2s;
    padding: 0;
}

.stop-remove:hover[b-n4hwupiz6r] {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
    border-color: rgba(249, 115, 22, 0.3);
}

/* Suggestion dropdown */
.stop-item[b-n4hwupiz6r] {
    position: relative;
    margin-bottom: 0.5rem;
}

.stop-item .stop-row[b-n4hwupiz6r] {
    margin-bottom: 0;
}

.suggestions-list[b-n4hwupiz6r] {
    position: absolute;
    left: 36px; /* align under input, past the badge */
    right: 0;
    z-index: 200;
    background: #1e1e1e;
    border: 1px solid rgba(26, 191, 180, 0.3);
    border-radius: 0 0 8px 8px;
    border-top: none;
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    max-height: 220px;
    overflow-y: auto;
}

.suggestion-item[b-n4hwupiz6r] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 0.8rem;
    padding: 0.55rem 0.75rem;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s;
    line-height: 1.4;
}

.suggestion-item:hover[b-n4hwupiz6r] {
    background-color: rgba(26, 191, 180, 0.1);
    color: #f1f5f9;
}

.suggestion-pin[b-n4hwupiz6r] {
    flex-shrink: 0;
    font-size: 0.75rem;
    margin-top: 0.05rem;
}

.suggestion-text[b-n4hwupiz6r] {
    flex: 1;
    word-break: break-word;
}

/* focus ring on input when suggestions open */
.stop-input:focus ~ .suggestions-list[b-n4hwupiz6r],
.stop-input:focus[b-n4hwupiz6r] {
    border-color: #1abfb4 !important;
}

.add-stop-btn[b-n4hwupiz6r] {
    background: transparent;
    border: 1px dashed rgba(26, 191, 180, 0.3);
    color: #1abfb4;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 0.25rem;
    transition: background-color 0.2s, border-color 0.2s;
}

.add-stop-btn:hover:not(:disabled)[b-n4hwupiz6r] {
    background: rgba(26, 191, 180, 0.08);
    border-color: rgba(26, 191, 180, 0.5);
}

.add-stop-btn:disabled[b-n4hwupiz6r] {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Receipt */
.quote-receipt[b-n4hwupiz6r] {
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.receipt-title[b-n4hwupiz6r] {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 0.75rem;
}

.receipt-distance-badge[b-n4hwupiz6r] {
    display: inline-block;
    background: rgba(26, 191, 180, 0.12);
    color: #1abfb4;
    border: 1px solid rgba(26, 191, 180, 0.25);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.75rem;
    margin-bottom: 1rem;
}

.receipt-lines[b-n4hwupiz6r] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.receipt-line[b-n4hwupiz6r] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.receipt-desc[b-n4hwupiz6r] {
    color: #94a3b8;
}

.receipt-amount[b-n4hwupiz6r] {
    font-weight: 600;
    color: #f1f5f9;
    font-variant-numeric: tabular-nums;
}

.receipt-amount--orange[b-n4hwupiz6r] {
    color: #f97316;
}

.receipt-amount--green[b-n4hwupiz6r] {
    color: #22c55e;
}

.receipt-line--discount .receipt-desc[b-n4hwupiz6r] {
    color: #22c55e;
    font-size: 0.8rem;
}

.receipt-divider[b-n4hwupiz6r] {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0.25rem 0;
}

.receipt-line--total[b-n4hwupiz6r] {
    padding-top: 0.25rem;
}

.receipt-line--total .receipt-desc[b-n4hwupiz6r] {
    color: #f1f5f9;
    font-weight: 700;
    font-size: 1rem;
}

.receipt-line--total .receipt-amount[b-n4hwupiz6r] {
    font-size: 1.25rem;
    color: #1abfb4;
}

.receipt-note[b-n4hwupiz6r] {
    color: #475569;
    font-size: 0.75rem;
    margin: 0.75rem 0 0;
    font-style: italic;
}

/* Waiting */
.waiting-msg[b-n4hwupiz6r] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.875rem;
    padding: 1rem;
    background: #1e1e1e;
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.waiting-spinner[b-n4hwupiz6r] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(26, 191, 180, 0.2);
    border-top-color: #1abfb4;
    border-radius: 50%;
    animation: spin-b-n4hwupiz6r 0.8s linear infinite;
    flex-shrink: 0;
}

@keyframes spin-b-n4hwupiz6r {
    to { transform: rotate(360deg); }
}

.enquiry-phone-row[b-n4hwupiz6r] {
    width: 100%;
}

.enquiry-phone-row .stop-input[b-n4hwupiz6r] {
    width: 100%;
}

.enquiry-spin[b-n4hwupiz6r] {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.submit-success[b-n4hwupiz6r] {
    background: rgba(26, 191, 180, 0.1);
    border: 1px solid rgba(26, 191, 180, 0.3);
    color: #1abfb4;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

/* Actions */
.quote-actions[b-n4hwupiz6r] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quote-action-btn[b-n4hwupiz6r] {
    width: 100%;
    text-align: center;
}

/* Map */
.quote-map-wrapper[b-n4hwupiz6r] {
    flex: 1;
    position: relative;
    overflow: hidden;
}

#ace-map[b-n4hwupiz6r] {
    width: 100%;
    height: 100%;
    background: #111;
}

/* Responsive */
@media (max-width: 768px) {
    .quote-layout[b-n4hwupiz6r] {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }

    .quote-sidebar[b-n4hwupiz6r] {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .quote-map-wrapper[b-n4hwupiz6r] {
        height: 380px;
        flex-shrink: 0;
    }
}
