/*
 * A'Rocha Cleaning — pages.css
 * Loads AFTER style.css, theme.css, and Bootstrap 5.
 * Owns: breadcrumb styling, section rhythm, accordion, dark forms,
 *       service hub, service detail, service areas, hauling, location pages.
 * No !important wars — source conflicts resolved in theme.css and style.css.
 * ─────────────────────────────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════════════════════ */
.breadcrumb-section {
    padding: 52px 0 44px;
}
.breadcrumb-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 80%, rgba(200,150,62,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(139,26,26,0.25) 0%, transparent 55%);
    pointer-events: none;
}
.breadcrumb-section .breadcrumb {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    border-radius: 100px;
    padding: 7px 18px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}
.breadcrumb-section .breadcrumb-item {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
}
.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255,255,255,0.35);
    padding: 0 8px;
    font-weight: 400;
}
.breadcrumb-section .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-section .breadcrumb-item a:hover { color: var(--brand-gold); }
.breadcrumb-section .breadcrumb-item.active { color: var(--brand-gold); }
.breadcrumb-section h1 {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}
.breadcrumb-section .text-white-70 {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION RHYTHM
   ═══════════════════════════════════════════════════════════════════════════ */
.section-heading {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #111;
    line-height: 1.25;
    margin-bottom: 14px;
}
.section-subheading {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}
.bg-light-custom { background: #f8f6f4 !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   CTA BAND  — overrides theme.css .cta-band (which shares rule with .need-con)
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-band {
    padding: 80px 0;
    text-align: center;
}
.cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(200,150,62,0.14), transparent 60%);
    pointer-events: none;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: #fff;
    margin-bottom: 12px;
    font-weight: 800;
}
.cta-band p {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACCORDION  — .accordion-card-style
   Works with Bootstrap 5. No dependency on .faq-section from theme.css.
   Bootstrap's ::after uses background-image. We kill it and use FA icons.
   ═══════════════════════════════════════════════════════════════════════════ */
.accordion-card-style .accordion-item {
    background: #ffffff;
    border-radius: 12px !important;
    border: 1.5px solid #f0eded !important;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15,5,5,0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.accordion-card-style .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(139,26,26,0.3) !important;
    box-shadow: 0 4px 20px rgba(139,26,26,0.08);
}
.accordion-card-style .accordion-button {
    background: #ffffff !important;
    color: #111111;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-body);
    padding: 20px 24px;
    box-shadow: none !important;
    transition: color 0.2s, background 0.2s;
}
.accordion-card-style .accordion-button:not(.collapsed) {
    background: #fff8f8 !important;
    color: var(--brand-accent);
    border-bottom: 1px solid #f5ecec;
    box-shadow: none !important;
}
.accordion-card-style .accordion-button::after {
    background-image: none !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    content: '\f067' !important;
    font-size: 11px;
    color: var(--brand-accent);
    width: 30px;
    height: 30px;
    min-width: 30px;
    background-color: #f8f0f0 !important;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: none !important;
    transition: background-color 0.2s, color 0.2s;
    line-height: 1;
    text-align: center;
}
.accordion-card-style .accordion-button:not(.collapsed)::after {
    background-image: none !important;
    content: '\f068' !important;
    background-color: var(--brand-accent) !important;
    color: #ffffff;
    transform: none !important;
}
.accordion-card-style .accordion-body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 16px 24px 22px;
    background: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DARK FORM CARD  — .quote-form-dark and .loc-quote-card
   theme.css now sets .quote-form-wrap to solid dark too — consistent.
   These classes are used on sidebar and inline forms on inner pages.
   ═══════════════════════════════════════════════════════════════════════════ */
.quote-form-dark,
.loc-quote-card {
    background: linear-gradient(160deg, #1a0808 0%, #300f0f 100%);
    border: 1px solid rgba(200,150,62,0.2);
    border-radius: 16px;
}
.quote-form-dark .form-control,
.quote-form-dark .form-select,
.loc-quote-card .form-control,
.loc-quote-card .form-select {
    background-color: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    padding: 12px 16px;
    font-family: var(--font-body);
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
    -webkit-text-fill-color: #ffffff;
}
.quote-form-dark .form-control:focus,
.quote-form-dark .form-select:focus,
.loc-quote-card .form-control:focus,
.loc-quote-card .form-select:focus {
    background-color: rgba(255,255,255,0.16);
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(200,150,62,0.22);
    color: #ffffff;
    outline: none;
}
.quote-form-dark .form-control::placeholder,
.loc-quote-card .form-control::placeholder {
    color: rgba(255,255,255,0.40);
    opacity: 1;
}
.quote-form-dark .form-select option,
.loc-quote-card .form-select option {
    background: #2a0e0e;
    color: #ffffff;
}
.quote-form-dark .form-control:-webkit-autofill,
.loc-quote-card .form-control:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #2a0a0a inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff;
}
.quote-form-dark .form-label,
.loc-quote-card .form-label {
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES HUB  — .page-services
   ═══════════════════════════════════════════════════════════════════════════ */
.page-services .row.g-4 { row-gap: 28px; }
.page-services .service-card {
    padding: 32px 28px;
    border: 1.5px solid #f0eded;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}
.page-services .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15,5,5,0.13);
    border-color: rgba(139,26,26,0.18);
}
.page-services .service-icon {
    width: 56px; height: 56px; font-size: 22px;
    border-radius: 14px; margin-bottom: 18px; flex-shrink: 0;
}
.page-services .service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: #111; }
.page-services .service-card p  { font-size: 14px; color: #6b6b6b; line-height: 1.65; flex: 1; margin-bottom: 18px; }
.page-services .service-card-link { text-decoration: none; color: inherit; }
.page-services .service-card-link-text { margin-top: auto; display: block; }
.page-services .service-card-link:hover .service-card-link-text { color: var(--brand-accent-lt); }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE DETAIL  — .page-service-detail
   ═══════════════════════════════════════════════════════════════════════════ */
.page-service-detail .section-pad { padding-top: 72px; }
.service-body p { margin-bottom: 1.4em; font-size: 15px; line-height: 1.85; color: #444; }
.service-body p:last-child { margin-bottom: 0; }
.page-service-detail .bg-light-custom { border: 1.5px solid #ede9e5; }
.page-service-detail .card {
    border-radius: 12px !important;
    overflow: hidden;
    border: 1.5px solid #f0eded !important;
    box-shadow: 0 2px 10px rgba(15,5,5,0.05) !important;
}
.page-service-detail .card .card-body a {
    padding: 7px 10px;
    border-radius: 6px;
    display: flex; align-items: center; gap: 9px;
    text-decoration: none; color: #555;
    font-size: 13px; font-weight: 500;
    transition: background 0.15s, color 0.15s;
}
.page-service-detail .card .card-body a:hover { background: #f8f0f0; color: var(--brand-accent); }
.page-service-detail .quote-form-dark { padding: 24px 28px; }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE AREAS HUB  — .page-service-areas
   ═══════════════════════════════════════════════════════════════════════════ */
.page-service-areas .row.g-3 { row-gap: 16px; }

/* theme.css .location-card is removed — we own it fully here */
.location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 16px 20px;
    background: #fff;
    border: 1.5px solid #f0eded;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 2px 10px rgba(15,5,5,0.05);
    position: relative;
    overflow: hidden;
}
.location-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
}
.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(15,5,5,0.12);
    border-color: rgba(139,26,26,0.2);
    color: inherit;
}
.location-card:hover::after { transform: scaleX(1); }
.location-card-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #1a0808, #3d1010);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--brand-gold);
    margin-bottom: 12px; flex-shrink: 0;
}
.location-card h3 { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 5px; line-height: 1.3; }
.location-card p  { font-size: 11.5px; color: #888; line-height: 1.5; margin: 0; }
.location-card:hover h3 { color: var(--brand-accent); }

.page-service-areas .bg-light-custom { border: 1.5px solid #ede9e5; padding: 28px 32px; }
.page-service-areas .border-top { border-color: #ede9e5 !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   HAULING PAGE  — .page-hauling
   ═══════════════════════════════════════════════════════════════════════════ */
.hauling-brand-card {
    background: linear-gradient(145deg, #0d0303 0%, #200909 50%, #0d0303 100%);
    border: 1px solid rgba(200,150,62,0.2);
    border-radius: 24px; padding: 52px 44px; text-align: center;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
}
.hauling-brand-card::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(200,150,62,0.14) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(139,26,26,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.hauling-brand-card .inner { position: relative; z-index: 1; }
.hauling-logo-area {
    margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center; overflow: visible;
}
.hauling-logo-area img { max-width: 100%; height: 200px; object-fit: contain; }
.hauling-logo-area .logo-placeholder {
    font-size: 12px; color: rgba(200,150,62,0.5); font-weight: 600;
    letter-spacing: 1px; text-align: center; line-height: 1.4; padding: 8px;
}
.hauling-brand-card h3    { color: var(--brand-gold); font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.hauling-brand-card .tagline { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 28px; }
.hauling-service-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.hauling-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px;
    background: rgba(200,150,62,0.12); border: 1px solid rgba(200,150,62,0.25);
    border-radius: 100px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8);
}
.hauling-pill i { font-size: 10px; color: var(--brand-gold); }

.page-hauling .service-card {
    padding: 32px 28px; border: 1.5px solid #f0eded;
    display: flex; flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.page-hauling .service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(15,5,5,0.12); border-color: rgba(139,26,26,0.2); }
.page-hauling .service-icon { width: 54px; height: 54px; font-size: 22px; border-radius: 13px; margin-bottom: 18px; }
.page-hauling .service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: #111; }
.page-hauling .service-card p  { font-size: 14px; color: #6b6b6b; line-height: 1.65; flex: 1; margin: 0; }
.page-hauling .row.g-4 { row-gap: 24px; }

.scenario-card {
    background: #fff; border: 1.5px solid #f0eded; border-radius: 16px; padding: 28px;
    height: 100%; position: relative; overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.scenario-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.scenario-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(15,5,5,0.1); border-color: rgba(139,26,26,0.18); }
.scenario-card:hover::before { transform: scaleX(1); }
.scenario-card h3 { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.scenario-card h3 i {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, #1a0808, #3d1010);
    border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--brand-gold); flex-shrink: 0;
}
.scenario-card p { font-size: 14px; color: #6b6b6b; line-height: 1.7; margin: 0; }
.page-hauling .row.g-4.scenarios { row-gap: 20px; }

/* ═══════════════════════════════════════════════════════════════════════════
   LOCATION PAGE  — .page-location
   ═══════════════════════════════════════════════════════════════════════════ */
.page-location .loc-section-heading { font-size: clamp(1.35rem, 2.5vw, 1.75rem); font-weight: 800; color: #111; margin-bottom: 10px; line-height: 1.25; }
.page-location .location-content { font-size: 15px; line-height: 1.85; color: #444; }
.page-location .location-content p { margin-bottom: 1.3em; font-size: 15px; }
.page-location .location-content p:last-child { margin-bottom: 0; }
.page-location .row.g-3 { row-gap: 12px; }

/* Service items */
.loc-service-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 14px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1.5px solid #f0eded;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.loc-service-item:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(15,5,5,0.09); border-color: rgba(139,26,26,0.2); color: inherit; }
.loc-service-icon { width: 44px; height: 44px; min-width: 44px; background: linear-gradient(135deg, #1a0808, #3d1010); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--brand-gold); flex-shrink: 0; }
.loc-service-text { flex: 1; min-width: 0; }
.loc-service-name { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 3px; line-height: 1.3; }
.loc-service-desc  { font-size: 12.5px; color: #888; margin: 0; line-height: 1.5; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.loc-service-arrow { font-size: 10px; color: #ccc; flex-shrink: 0; transition: color 0.2s, transform 0.2s; }
.loc-service-item:hover .loc-service-arrow { color: var(--brand-accent); transform: translateX(3px); }

/* Explicitly override style.css global p { font-size: 20px } for ALL p tags on location pages */
.page-location p,
.page-location .loc-nearby-wrap p,
.page-location .loc-hauling-promo p,
.page-location .location-content p,
.page-location .loc-service-desc {
    font-size: 14px !important;
    line-height: 1.65 !important;
    font-weight: 400 !important;
}
.page-location .location-content p {
    font-size: 15px !important;
    line-height: 1.85 !important;
    margin-bottom: 1.3em !important;
}
.page-location .loc-nearby-wrap p { font-size: 14px !important; line-height: 1.6 !important; margin: 0 !important; }
.page-location .loc-hauling-promo p { font-size: 13px !important; line-height: 1.65 !important; }

/* Same fix for other inner pages */
.page-services p,
.page-service-detail p,
.page-service-areas p,
.page-hauling p {
    font-size: 14px !important;
    line-height: 1.65 !important;
}

/* Nearby areas */
.loc-nearby-wrap { background: #f8f6f4; border: 1.5px solid #ede9e5; border-radius: 14px; padding: 24px 28px; }
.loc-nearby-inner { display: flex; align-items: flex-start; gap: 18px; }
.loc-nearby-icon { width: 46px; height: 46px; min-width: 46px; background: linear-gradient(135deg, #1a0808, #3d1010); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--brand-gold); flex-shrink: 0; margin-top: 2px; }
.loc-nearby-wrap h3 { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 6px; }
.loc-nearby-wrap p  { font-size: 14px; color: #666; margin: 0; line-height: 1.6; }
.loc-nearby-wrap a  { color: var(--brand-accent); font-weight: 600; text-decoration: none; }
.loc-nearby-wrap a:hover { color: var(--brand-accent-lt); }

/* Sidebar quote card */
.loc-quote-card { padding: 32px 28px; }
.loc-form-title { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.loc-form-sub { color: rgba(255,255,255,0.58); font-size: 13px; margin-bottom: 22px; line-height: 1.55; }
.loc-required { color: var(--brand-gold); font-size: 12px; }
.loc-form-msg { padding: 10px 14px; border-radius: 8px; font-size: 13px; line-height: 1.5; }
.loc-form-msg--error   { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.loc-form-msg--success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25); color: #86efac; }

/* Contact card */
.loc-contact-card { background: #fff; border: 1.5px solid #f0eded; border-radius: 16px; padding: 24px; box-shadow: 0 2px 12px rgba(15,5,5,0.05); }
.loc-contact-row { display: flex; align-items: center; gap: 14px; }
.loc-contact-icon { width: 42px; height: 42px; min-width: 42px; background: linear-gradient(135deg, #1a0808, #3d1010); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--brand-gold); flex-shrink: 0; }
.loc-contact-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #aaa; margin-bottom: 2px; }
.loc-contact-value { font-size: 15px; font-weight: 700; color: #111; text-decoration: none; display: block; transition: color 0.2s; }
a.loc-contact-value:hover { color: var(--brand-accent); }

/* Hauling sidebar promo */
.loc-hauling-promo { background: linear-gradient(145deg, #0d0303, #200909); border: 1px solid rgba(200,150,62,0.18); border-radius: 16px; padding: 28px 24px; position: relative; overflow: hidden; }
.loc-hauling-promo::before { content: ''; position: absolute; top: -30px; right: -30px; width: 140px; height: 140px; background: radial-gradient(circle, rgba(200,150,62,0.12), transparent 70%); pointer-events: none; }
.loc-hauling-icon { width: 48px; height: 48px; background: rgba(200,150,62,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--brand-gold); margin-bottom: 14px; }
.loc-hauling-promo h4 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.loc-hauling-promo p  { color: rgba(255,255,255,0.62); font-size: 13px; line-height: 1.65; margin-bottom: 16px; }
.loc-hauling-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--brand-gold); text-decoration: none; transition: gap 0.2s; }
.loc-hauling-link:hover { gap: 10px; color: var(--brand-gold-lt); }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .hauling-brand-card { padding: 40px 28px; }
    .page-service-detail .sticky-top,
    .page-location .sticky-top { position: static !important; }
}
@media (max-width: 767px) {
    .section-pad { padding: 64px 0; }
    .breadcrumb-section { padding: 40px 0 34px; }
    .breadcrumb-section h1 { font-size: 1.6rem; }
    .hauling-brand-card { padding: 32px 20px; }
    .cta-band { padding: 60px 0; }
    .scenario-card { padding: 24px 20px; }
    .loc-quote-card { padding: 24px 20px; }
    .loc-nearby-inner { flex-direction: column; gap: 12px; }
}
@media (max-width: 480px) {
    .page-service-areas .row.g-3 > .col-6 { flex: 0 0 50%; max-width: 50%; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HP-FAQ — copied from home.css so inner pages match homepage exactly.
   home.css only loads on homepage via extra_css. These rules make the
   same classes available on all inner pages via pages.css.
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-faq-item {
    background: #fafafa;
    border: 1.5px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.hp-faq-item.open {
    border-color: #8B1A1A;
    background: #fff;
}
.hp-faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}
.hp-faq-trigger:hover { background: #fff8f8; }
.hp-faq-trigger h5 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    font-family: inherit !important;
    flex: 1;
}
.hp-faq-trigger .faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
    transition: all 0.3s;
    flex-shrink: 0;
}
.hp-faq-item.open .hp-faq-trigger h5 { color: #8B1A1A !important; }
.hp-faq-item.open .faq-icon {
    background: #8B1A1A;
    color: #fff;
    transform: rotate(45deg);
}
.hp-faq-body {
    display: none;
    padding: 0 24px 22px;
    font-size: 14px !important;
    color: #6b6b6b;
    line-height: 1.75;
}
.hp-faq-item.open .hp-faq-body { display: block; }

/* ═══════════════════════════════════════════════════════════════════════════
   DARK BACKGROUND TEXT FIX
   Never use gray text on burgundy/dark sections
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-band p,
.cta-band li,
.need-con p,
.need-con li,
.quote-form-dark p,
.quote-form-dark li,
.loc-quote-card p,
.loc-hauling-promo p,
.hauling-brand-card p,
.loc-hauling-promo li {
    color: rgba(255, 255, 255, 0.82) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE  — .page-contact
   ═══════════════════════════════════════════════════════════════════════════ */
.contact-form-card {
    background: #ffffff;
    border: 1.5px solid #f0eded;
    border-radius: 20px;
    padding: 44px 48px;
    box-shadow: 0 4px 32px rgba(15,5,5,0.07);
}
.contact-form-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 6px;
}
.contact-form-sub {
    font-size: 14px !important;
    color: #888;
    margin-bottom: 28px;
}
.contact-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #444;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}
.contact-required { color: var(--brand-accent); }
.contact-field {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e8e4e1;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body);
    color: #111;
    background: #faf9f8;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    appearance: none;
    -webkit-appearance: none;
    display: block;
}
.contact-field:focus {
    border-color: var(--brand-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139,26,26,0.08);
}
.contact-field::placeholder { color: #bbb; }
textarea.contact-field { resize: vertical; }

/* Contact info sidebar card */
.contact-info-card {
    background: #fff;
    border: 1.5px solid #f0eded;
    border-radius: 16px;
    padding: 28px 28px 20px;
    box-shadow: 0 2px 12px rgba(15,5,5,0.05);
}
.contact-info-heading {
    font-size: 1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
}
.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.contact-info-row:last-child { margin-bottom: 0; }
.contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, #1a0808, #3d1010);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--brand-gold);
    flex-shrink: 0;
}
.contact-info-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 3px;
}
.contact-info-value {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}
a.contact-info-value:hover { color: var(--brand-accent); }

@media (max-width: 767px) {
    .contact-form-card { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE  — .page-about
   ═══════════════════════════════════════════════════════════════════════════ */

/* Team photo */
.about-team-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8f6f4;
}
.about-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Owner photo */
.owner-photo-wrap {
    display: inline-block;
    position: relative;
}
.owner-photo {
    width: 260px;
    height: 260px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 8px 40px rgba(15,5,5,0.15);
    display: block;
    margin: 0 auto;
}
.owner-photo-wrap::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(139,26,26,0.2);
    pointer-events: none;
}

/* Value cards */
.about-value-card {
    background: #fff;
    border: 1.5px solid #f0eded;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(15,5,5,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(15,5,5,0.1);
}
.about-value-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1a0808, #3d1010);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--brand-gold);
    margin-bottom: 18px;
}
.about-value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}
.about-value-card p {
    font-size: 14px !important;
    line-height: 1.65 !important;
}

@media (max-width: 767px) {
    .owner-photo { width: 200px; height: 200px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE DETAIL — .page-service-detail  additional styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* Body copy */
.service-body p {
    font-size: 15px !important;
    line-height: 1.85 !important;
    color: #444 !important;
    margin-bottom: 1.3em;
}
.service-body p:last-child { margin-bottom: 0; }

/* What's included box */
.svc-included-box {
    background: #f8f6f4;
    border: 1.5px solid #ede9e5;
    border-radius: 16px;
    padding: 32px;
}
.svc-included-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.svc-included-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-brand);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    flex-shrink: 0;
}
.svc-check-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 0;
    font-size: 14px !important;
    color: #333;
    font-weight: 500;
}
.svc-check-item i {
    color: #16a34a;
    font-size: 14px;
    flex-shrink: 0;
}
.svc-included-note {
    font-size: 13px !important;
    color: #888;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e8e3de;
    line-height: 1.5;
}

/* Other services sidebar card */
.svc-other-card {
    background: #fff;
    border: 1.5px solid #f0eded;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(15,5,5,0.05);
}
.svc-other-heading {
    font-size: 11px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.svc-other-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #444;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    margin-bottom: 2px;
}
.svc-other-link:hover {
    background: #f8f0f0;
    color: var(--brand-accent);
}
.svc-other-link > i:first-child {
    color: var(--brand-accent);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
.svc-other-link span { flex: 1; }
.svc-other-arrow {
    font-size: 9px;
    color: #ccc;
    transition: color 0.15s, transform 0.15s;
}
.svc-other-link:hover .svc-other-arrow {
    color: var(--brand-accent);
    transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE — additional styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* Body copy — explicit size so style.css global p never bleeds in */
.page-about .about-body p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #555 !important;
    margin-bottom: 1.2em;
}
.page-about .about-body p.mb-0 { margin-bottom: 0 !important; }

/* Trust badges grid — replaces fake stats */
.about-badges-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1.5px solid #f0eded;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(15,5,5,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-badge-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(15,5,5,0.09);
}
.about-badge-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #1a0808, #3d1010);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--brand-gold);
    flex-shrink: 0;
}
.about-badge-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}
.about-badge-text {
    font-size: 13px !important;
    color: #888;
    line-height: 1.5;
}

/* Value cards — fix p font size */
.about-value-card p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: #6b6b6b !important;
    margin-bottom: 0 !important;
}

/* Service area pills */
.about-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.about-area-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    background: #fff;
    border: 1.5px solid #ede9e5;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}
.about-area-pill i {
    font-size: 11px;
    color: var(--brand-accent);
    transition: color 0.2s;
}
.about-area-pill:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
}
.about-area-pill:hover i { color: #fff; }
.about-area-pill--more {
    background: linear-gradient(135deg, #1a0808, #3d1010);
    border-color: transparent;
    color: var(--brand-gold);
}
.about-area-pill--more i { color: var(--brand-gold); }
.about-area-pill--more:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
}
.about-area-pill--more:hover i { color: #fff; }

/* section-subheading on about page */
.page-about .section-subheading {
    font-size: 15px !important;
    color: #666 !important;
}
.page-about .section-subheading strong { color: #111; }

@media (max-width: 767px) {
    .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .about-stat-number { font-size: 2.2rem; }
}

/* About value cards — force row gap */
.page-about .row.g-4 {
    row-gap: 24px !important;
}

/* Footer Gyde credit link */
.footer-gyde-link {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-gyde-link:hover {
    color: var(--brand-gold);
    text-decoration: none;
}

/* Email obfuscation — renders address via CSS, invisible to bots */
.email-mask::after {
    content: attr(data-user) "\0040" attr(data-domain);
}

/* ── Mobile nav — proper vertical slide ──────────────────────────────────── */
/* @media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 2px solid #f0eded;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        padding: 16px 24px 24px;
        z-index: 999;
    }
    .navbar-collapse .navbar-nav {
        gap: 0;
        width: 100%;
    }
    .navbar-collapse .nav-item {
        width: 100%;
        border-bottom: 1px solid #f5f0f0;
        margin: 0 !important;
    }
    .navbar-collapse .nav-item:last-child { border-bottom: none; }
    .navbar-collapse .nav-link {
        padding: 14px 0 !important;
        font-size: 15px !important;
        font-weight: 600;
        color: #111 !important;
        display: block;
        width: 100%;
    }
    .navbar-collapse .nav-link:hover { color: #8B1A1A !important; }
    .navbar-collapse .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 8px 16px !important;
        background: transparent !important;
        border-radius: 0 !important;
        min-width: 0 !important;
    }
    .navbar-collapse .dropdown-item {
        font-size: 14px;
        padding: 8px 0;
        color: #555 !important;
        background: transparent !important;
    }
    .navbar-collapse .dropdown-item:hover { color: #8B1A1A !important; }
    .nav-cta {
        padding-top: 16px;
        border-top: 1px solid #f0eded;
        width: 100%;
        margin-top: 8px;
    }
    .nav-cta .nav-quote-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .site-header { position: relative !important; }
} */