.page-baldwin-park {
    --grey: #a0aab4;
    /* fallback: not in global :root */
    --radius: 10px;
}

@keyframes bp-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bp-soft-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Lead hero (full bleed image band) */
.page-baldwin-park .bp-hero-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    margin-bottom: 0;
}

.page-baldwin-park .bp-hero-banner img {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 480px;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    display: block;
}

.page-baldwin-park .bp-intro-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 1.5rem;
}

.page-baldwin-park .bp-intro-meta .blog-badge {
    background: var(--red);
    color: #fff;
    padding: 5px 14px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.page-baldwin-park .bp-intro-meta a {
    color: var(--red);
    font-size: 0.95rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.page-baldwin-park .bp-intro-meta a:hover {
    color: var(--white);
}

/* Section headline helper (inside expertise / inventory — not global h2) */
.page-baldwin-park .bp-section-kicker {
    font-size: 1rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Truck CTA repurposed lists */
.page-baldwin-park .bp-cta-col ul.bp-plain-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    color: var(--grey);
    font-size: 1rem;
}

.page-baldwin-park .bp-cta-col ul.bp-plain-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.65rem;
}

.page-baldwin-park .bp-cta-col ul.bp-plain-list li::before {
    content: "■";
    color: var(--red);
    position: absolute;
    left: 0;
    font-size: 0.65rem;
    top: 0.35rem;
}

/* ══════════════════════════════════════════
   SECTION 1 — Smarter Buying Checklist
   Premium glassmorphism card layout
══════════════════════════════════════════ */

.page-baldwin-park .bp-about-section {
    overflow: hidden;
    position: relative;
    margin-block: 0;
    /* Subtle ambient glow from left */
}

.page-baldwin-park .bp-about-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(254, 1, 0, 0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.page-baldwin-park .bp-about-section .container {
    position: relative;
    z-index: 1;
}

/* Glass card wraps all the content */
.page-baldwin-park .bp-checklist-col {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 52px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: hidden;
}

/* Red accent bar top-left of card */
.page-baldwin-park .bp-checklist-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--red) 0%, transparent 100%);
    border-radius: 24px 0 0 24px;
}

/* Numbered checklist items */
.page-baldwin-park .bp-checklist-col ul.bp-checklist-ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
}

.page-baldwin-park .bp-checklist-col ul.bp-checklist-ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px 18px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    counter-increment: chk;
}

.page-baldwin-park .bp-checklist-col ul.bp-checklist-ul li:hover {
    background: rgba(254, 1, 0, 0.06);
    border-color: rgba(254, 1, 0, 0.25);
    transform: translateY(-2px);
}

/* Auto-numbered red badge */
.page-baldwin-park .bp-checklist-col ul.bp-checklist-ul li::before {
    content: counter(chk, decimal-leading-zero);
    font-family: var(--secondary-font);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--red);
    background: rgba(254, 1, 0, 0.12);
    border: 1px solid rgba(254, 1, 0, 0.3);
    border-radius: 6px;
    padding: 3px 7px;
    flex-shrink: 0;
    margin-top: 2px;
    letter-spacing: 0.05em;
    position: static;
    top: auto;
    left: auto;
}

.page-baldwin-park .bp-checklist-col ul.bp-checklist-ul {
    counter-reset: chk;
}

/* bp-mission-vision-section */
.page-baldwin-park .bp-mission-vision-section .msn_img {
    border-radius: 12px;
    object-fit: cover;
}

/* Fallback: other ul inside bp-checklist-col */
.page-baldwin-park .bp-checklist-col ul:not(.faq-list):not(.bp-checklist-ul) {
    list-style: none;
    padding-left: 0;
    margin: 1.25rem 0 0;
}

.page-baldwin-park .bp-checklist-col ul:not(.faq-list):not(.bp-checklist-ul) li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.85rem;
    color: var(--grey);
    line-height: 1.55;
}

.page-baldwin-park .bp-checklist-col ul:not(.faq-list):not(.bp-checklist-ul) li::before {
    content: "■";
    color: var(--red);
    position: absolute;
    left: 0;
    font-size: 0.72rem;
    top: 0.42rem;
}

.page-baldwin-park .bp-organized-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.25rem;
}

.page-baldwin-park .bp-organized-tags span {
    background: rgba(254, 1, 0, 0.12);
    color: var(--white);
    border: 1px solid rgba(254, 1, 0, 0.35);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 600;
}

/* ── Typography utilities used throughout the page ── */
.page-baldwin-park .about-title {
    font-family: var(--primary-font);
    color: var(--white);
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.page-baldwin-park .about-text {
    color: var(--grey);
    line-height: 1.65;
    font-size: 1rem;
}

.page-baldwin-park .cta-title {
    font-family: var(--primary-font);
    color: var(--white);
    font-size: clamp(20px, 2.6vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.page-baldwin-park .cta-text {
    color: var(--grey);
    line-height: 1.65;
    font-size: 1rem;
}

/* CTA image wrapper: subtle glow frame */
.page-baldwin-park .cta-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* ══════════════════════════════════════════
   SECTION 2 — Why Choose Us
   Premium isolated dark-surface layout
══════════════════════════════════════════ */

/* Section: dump-truck-inventory intro strip */
.page-baldwin-park .dump-truck-inventory {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-baldwin-park .dump-truck-inventory h3 {
    font-size: clamp(22px, 3vw, 38px);
}

/* ── Why Choose Us specific sub-section ── */
/* Target the last dump-truck-inventory which has the image + list */
.page-baldwin-park .dump-truck-inventory:has(.bp-cta-col) {
    background: linear-gradient(135deg, rgba(22, 26, 31, 0.95) 0%, rgba(10, 14, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    margin-inline: auto;
    position: relative;
    overflow: hidden;
}

/* Ambient glow top-right */
.page-baldwin-park .dump-truck-inventory:has(.bp-cta-col)::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(254, 1, 0, 0.09) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.page-baldwin-park .dump-truck-inventory:has(.bp-cta-col) .col-xl-10 {
    position: relative;
    z-index: 1;
}

/* Image: glowing border + red bottom-left accent */
.page-baldwin-park .dump-truck-inventory .bp-why-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(254, 1, 0, 0.18),
        0 20px 56px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(254, 1, 0, 0.08);
}

.page-baldwin-park .dump-truck-inventory .bp-why-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.page-baldwin-park .dump-truck-inventory .bp-why-img-wrap:hover img {
    transform: scale(1.03);
}

/* Red corner accent on image */
.page-baldwin-park .dump-truck-inventory .bp-why-img-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--red);
    border-radius: 0 4px 0 20px;
}

/* Styled numbered list for bp-cta-col inside this section */
.page-baldwin-park .dump-truck-inventory .bp-cta-col ul.bp-plain-list {
    counter-reset: why;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.page-baldwin-park .dump-truck-inventory .bp-cta-col ul.bp-plain-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: var(--grey);
    transition: background 0.2s ease, border-color 0.2s ease;
    counter-increment: why;
    margin-bottom: 0;
}

.page-baldwin-park .dump-truck-inventory .bp-cta-col ul.bp-plain-list li:hover {
    background: rgba(254, 1, 0, 0.05);
    border-color: rgba(254, 1, 0, 0.22);
}

.page-baldwin-park .dump-truck-inventory .bp-cta-col ul.bp-plain-list li::before {
    content: counter(why);
    font-family: var(--secondary-font);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--red);
    background: rgba(254, 1, 0, 0.10);
    border: 1px solid rgba(254, 1, 0, 0.28);
    border-radius: 50%;
    min-width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    position: static;
    top: auto;
    left: auto;
}

/* Section: truck CTA two-column */
.page-baldwin-park .truck-cta-section .cta-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-50%);
    z-index: 0;
}

.page-baldwin-park .truck-cta-wrp {
    position: relative;
    z-index: 1;
}

/* misson_cntnt border accent (override the global padding that may be misaligned) */
.page-baldwin-park .bp-mission-vision-section .misson_cntnt {
    padding: 0 24px;
    margin-top: 24px;
    border-left: 3px solid var(--red);
}

/* Final CTA band */
.page-baldwin-park .bp-final-cta {
    padding: 56px 0 72px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, transparent 0%, rgba(254, 1, 0, 0.04) 100%);
}

.page-baldwin-park .bp-final-cta p {
    color: var(--grey);
    max-width: 540px;
    margin: 0 auto 1.5rem;
}

/* Motion — stagger by section */
.page-baldwin-park .bp-hero-banner {
    animation: bp-rise 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-baldwin-park main.page-baldwin-main>section {
    animation: bp-rise 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(1) {
    animation-delay: 0.02s;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(2) {
    animation-delay: 0.06s;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(3) {
    animation-delay: 0.1s;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(4) {
    animation-delay: 0.12s;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(5) {
    animation-delay: 0.14s;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(6) {
    animation-delay: 0.16s;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(7) {
    animation-delay: 0.18s;
}

.page-baldwin-park main.page-baldwin-main>section:nth-child(8) {
    animation-delay: 0.2s;
}

.page-baldwin-park .faq-section .faq-card {
    animation: bp-soft-in 0.55s ease-out 0.12s both;
}

.page-baldwin-park .inner_bnr .banner_content h1 {
    animation: bp-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (max-width: 767.98px) {
    .page-baldwin-park .bp-hero-banner img {
        aspect-ratio: 4 / 3;
        max-height: 320px;
    }

    /* Checklist glass card: tighten padding on mobile */
    .page-baldwin-park .bp-checklist-col {
        padding: 28px 24px;
        border-radius: 16px;
    }

    /* Collapse 2-col checklist to 1 col */
    .page-baldwin-park .bp-checklist-col ul.bp-checklist-ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Why Choose Us dark card: no border-radius on mobile edge-to-edge */
    .page-baldwin-park .dump-truck-inventory:has(.bp-cta-col) {
        border-radius: 16px;
    }

    .page-baldwin-park .bp-mission-vision-section .msn_img,
    .page-baldwin-park .mission-vision-section .msn_img {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .page-baldwin-park .bp-checklist-col {
        padding: 22px 18px;
        border-radius: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .page-baldwin-park .bp-hero-banner,
    .page-baldwin-park main.page-baldwin-main>section,
    .page-baldwin-park .faq-section .faq-card,
    .page-baldwin-park .inner_bnr .banner_content h1 {
        animation: none !important;
    }
}