@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Nunito:wght@400;500;600;700;800&display=swap');

/* Reset and base styles */* { margin: 0; padding: 0; box-sizing: border-box;}body { font-family: 'Nunito', sans-serif; line-height: 1.6; color: #333;}/* Navigation */header { background: #000; box-shadow: 0 2px 5px rgba(0,0,0,0.2); position: fixed; width: 100%; top: 0; z-index: 1000;}.header-content-wrapper { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 1rem; max-width: 1200px; margin: 0 auto;}.logo { display: flex; align-items: center;}.logo img { height: 50px; margin-right: 0.5rem; display: block;}.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 5px 0;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #d63031;
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 12px;
    object-fit: contain;
    display: block;
    max-width: none;
    transition: transform 0.3s ease;
}/* Hero Section */.hero { background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/optimized/warehouse-after-junk-removal-hero-q60.webp') center/cover; height: auto; min-height: 100dvh; display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding: 1rem; padding-top: 96px; /* account for fixed header */ padding-bottom: max(48px, env(safe-area-inset-bottom, 0px) + 24px); position: relative;}.hero-content { max-width: 900px; margin: 0 auto; color: #f5f0eb; padding: 40px; background: rgba(0, 0, 0, 0.3); border-radius: 15px; backdrop-filter: blur(5px); margin-bottom: 32px;}/* Trust signals spacing below subtitle */.trust-signals { margin: .75rem 0 0.5rem}.hero h1 { font-size: 3rem; margin-bottom: 1rem; font-weight: 800; font-family: 'Nunito', sans-serif; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);}.hero h2 { font-size: 1.25rem; font-weight: 600; line-height: 1.4; margin-bottom: 1.25rem; font-family: 'Nunito', sans-serif; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);}.hero p { font-size: 1.2rem; margin-bottom: 2rem;}.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d63031;
    color: white;
    padding: 14px 28px;
    min-height: 48px;
    height: auto;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 48, 49, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.cta-button:hover {
    background: #c42b2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 48, 49, 0.4);
}

.cta-button:active {
    transform: translateY(0);
    background: #cc2929;
}/* Mobile adjustments for hero section */@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100svh;
        padding: 1rem;
        padding-top: 72px;
        padding-bottom: max(32px, env(safe-area-inset-bottom, 0px) + 24px)
    }

    .hero h1 { font-size: 2.2rem}
    .hero h2 { font-size: 1.1rem; margin-bottom: 2.5rem}

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 56px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        text-align: center;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}/* Services Section */.services { padding: 5rem 1rem; background: #f9f9f9;}.services h2 { text-align: center; margin-bottom: 3rem; color: #000;}.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto;}.service-card { background: white; padding: 2rem; border-radius: 10px; text-align: center; box-shadow: 0 3px 10px rgba(0,0,0,0.1); transition: transform 0.3s ease;}
.service-card p { font-size: 1.1rem; line-height: 1.6;}.service-card:hover { transform: translateY(-5px);}.service-icon { background-color: #ff0000; /* Red circle */ color: white; border-radius: 50%; /* Make it circular */ width: 60px; /* Fixed width */ height: 60px; /* Fixed height */ margin: 0 auto 1.5rem; /* Center the circle itself and add bottom margin */ display: flex; justify-content: center; align-items: center;}.service-icon i { font-size: 2.5rem; color: white;}/* About Section */.about { padding: 5rem 1rem; width: 100%; background: #f9f9fa;}.about h2 { text-align: center; margin-bottom: 3rem; color: #000;}.about-content { display: grid; grid-template-columns: 1fr; gap: 2rem;}.benefits { list-style: none; margin-top: 2rem;}.benefits li { margin-bottom: 1rem;}.benefits i { color: #ff0000; margin-right: 0.5rem;}/* Contact Section */#contact { padding: 5rem 1rem; background: #f8f9fa;}#contact h2 { text-align: center; font-size: 2.8rem; font-weight: 800; margin-bottom: 3rem; color: #222;}.contact-container { display: flex; flex-wrap: wrap; gap: 2rem; max-width: 1200px; margin: 0 auto;}.contact-info,.contact-form { flex: 1; min-width: 300px;}.contact-card { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); height: 100%; display: flex; flex-direction: column;}.contact-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #eee;}.contact-icon { font-size: 2rem; color: #ff0000;}.contact-header h3 { margin: 0; font-size: 1.5rem; color: #333;}.contact-tagline { margin-bottom: 2rem; color: #555; font-size: 1rem;}.contact-details-container { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem;}.contact-detail { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; transition: background-color 0.3s ease;}.contact-detail-icon { font-size: 1.2rem; color: #ff0000; width: 20px; text-align: center;}.contact-detail-text { display: flex; flex-direction: column;}.contact-label { font-size: 0.85rem; color: #7d7872; margin-bottom: 0.2rem;}.contact-value { font-size: 1.1rem; color: #333; font-weight: 500;}a.contact-link { text-decoration: none;}a.contact-link .contact-value { color: #ff0000; text-decoration: none; transition: color 0.3s ease;}a.contact-link:hover { background-color: #f9f9f9; border-radius: 4px;}a.contact-link:hover .contact-value { color: #b02525; text-decoration: none;}.hours { margin-bottom: 2rem; border-top: 1px solid #eee; padding-top: 1.5rem;}.hours h4, .contact-social h4 { font-size: 1.1rem; margin-bottom: 1rem; color: #333;}.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1rem; font-size: 0.95rem; color: #555;}.hours-day { font-weight: 500;}.contact-social { margin-top: auto; border-top: 1px solid #eee; padding-top: 1.5rem;}.social-links-contact { display: flex; gap: 1rem;}.social-links-contact a { color: #ff0000; font-size: 1.5rem; transition: color 0.3s ease;}.social-links-contact a:hover { color: #b02525;}.contact-form { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);}.form-group { margin-bottom: 1.5rem;}.form-row { display: flex; gap: 1.5rem; margin-bottom: 1.5rem;}.form-row .form-group { flex: 1; margin-bottom: 0;}label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #333;}input[type="text"],input[type="email"],input[type="tel"],select,textarea { width: 100%; padding: 0.8rem 1rem; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; font-family: inherit; box-sizing: border-box; transition: border-color 0.3s ease, box-shadow 0.3s ease;}input[type="text"]:focus,input[type="email"]:focus,input[type="tel"]:focus,select:focus,textarea:focus { border-color: #ff0000; box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1); outline: none;}textarea { min-height: 120px; resize: vertical;}/* Form Header Styles */.form-header { text-align: center; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid #eee;}.form-icon { font-size: 2.5rem; color: #ff0000; margin-bottom: 0.5rem;}.form-header h3 { margin: 0.5rem 0 0.5rem; font-size: 1.5rem; color: #333;}.form-tagline { color: #555; font-size: 1rem; margin: 0;}/* Checkbox Styles */.form-checkbox { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem;}.form-checkbox input[type="checkbox"] { width: auto; height: 1.2em; width: 1.2em; accent-color: #ff0000;}.form-checkbox label { margin-bottom: 0; font-weight: normal; font-size: 0.95rem; color: #555;}/* Submit Button Styles (matching .btn-primary) */.submit-button { display: inline-block; background: #ff0000; color: white; padding: 0.8rem 2rem; border: none; border-radius: 5px; cursor: pointer; transition: background 0.3s ease, transform 0.2s ease; font-size: 1.1rem; font-weight: bold; text-transform: uppercase; width: 100%; margin-top: 1rem;}.submit-button i { margin-right: 0.5rem;}.submit-button:hover { background: #b02525; transform: translateY(-2px);}.submit-button:active { transform: translateY(0);}/* Form Note Styles */.form-note { text-align: center; margin-top: 1.5rem; font-size: 0.9rem; color: #7d7872;}/* Responsive adjustments for contact columns */@media (max-width: 768px) { .contact-container { flex-direction: column}}@media (max-width: 576px) { .form-row { flex-direction: column; gap: 0} .form-row .form-group { margin-bottom: 1.5rem}}/* Footer */footer { background: #000; color: white; padding: 3rem 1rem 1rem;}.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; max-width: 1000px; margin: 0 auto;}.footer-section h4 { margin-bottom: 1rem;}.footer-section ul { list-style: none;}.footer-section ul li { margin-bottom: 0.5rem;}.footer-section a { color: white; text-decoration: none;}.social-links { display: flex; gap: 1rem; margin-top: 1rem;}.social-links a { color: white; font-size: 1.5rem;}.social-links a:hover { color: #ff0000;}.footer-bottom { text-align: center; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);}/* Style first footer section: Red H4, White P */.footer-content > .footer-section:first-child h4 { color: #ff0000; /* Red color for the heading */ font-size: 1.2em; /* Increased font size */}.footer-content > .footer-section:first-child p { color: white; /* Ensure paragraph is white */ font-size: 0.95em; /* Slightly increased font size */ line-height: 1.4; /* Improve readability for wrapped text */}/* Responsive Design */@media (max-width: 768px) { .nav-links { display: none} .hero h1 { font-size: 2rem} .service-grid { grid-template-columns: 1fr} .contact-container { flex-direction: column}}/* Hide mobile nav toggle on larger screens */@media (min-width: 769px) { .mobile-nav-toggle { display: none}}/* Transformations Section */.transformations { padding: 5rem 1rem; background: #f9f9f9;}.transformations h2 { text-align: center; margin-bottom: 3rem; color: #000;}.gallery-container { max-width: 1200px; margin: 0 auto;}.gallery-section { margin-bottom: 4rem;}.gallery-section h3 { text-align: center; margin-bottom: 2rem; color: #000;}.gallery-grid { display: grid; gap: 2rem; margin: 0 auto;}.gallery-grid.before-after { grid-template-columns: repeat(2, 1fr);}.gallery-grid.equipment { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));}.gallery-item { position: relative; border-radius: 10px; overflow: visible; box-shadow: 0 3px 10px rgba(0,0,0,0.1); transition: transform 0.3s ease;}.gallery-item:hover { transform: translateY(-5px);}.gallery-image { width: 100%; height: 250px; object-fit: cover; display: block;}.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.7); color: white; padding: 1rem; text-align: center;}/* Responsive adjustments for gallery */@media (max-width: 768px) { .gallery-grid.before-after, .gallery-grid.equipment { grid-template-columns: 1fr} .gallery-image { height: 200px}}section.testimonials { padding: 0; background: #f8f9fa; width: 100%; text-align: center; height: auto; /* allow content to define height */ display: block;}section.testimonials .testimonials-container { max-width: 1200px; margin: 0 auto; padding: 0; width: 100%; display: flex; flex-direction: column; align-items: center; /* Let height be driven by content to avoid large empty area */ height: auto;}section.testimonials .testimonials-container h2 { text-align: center !important; margin: 0 auto; width: 100%; font-size: 2.5rem; color: #222; display: block; position: relative;}.testimonial-slider { width: 100%; max-width: 1000px; margin: 0 auto; position: relative; overflow: visible; padding-top: 0; height: 400px; display: flex; flex-direction: column; justify-content: center;}.testimonial-track { position: relative; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center;}.testimonial-card { max-height: 500px; overflow-y: auto;} /* === Media Queries === *//* Mobile adjustments for hero section (Existing - adjust if needed) */@media (max-width: 768px) { .hero { height: auto; min-height: 100svh; padding: 1rem; padding-top: 72px; padding-bottom: max(32px, env(safe-area-inset-bottom, 0px) + 24px)} .hero h1 { font-size: 2.2rem} .hero h2 { font-size: 1.1rem; margin-bottom: 2.5rem} .cta-button { padding: 0.8rem 1.5rem; font-size: 1rem}}/* General Mobile Styles */@media (max-width: 768px) { /* Header alignment on mobile */ .header-content-wrapper { justify-content: space-between; /* Space out logo and toggle */ } /* Hide Desktop Nav Links */ nav ul.nav-links { display: none; /* Hide by default on mobile */ position: absolute; top: 60px; /* Adjust based on header height */ right: 0; background-color: #111; /* Dark background for dropdown */ width: 100%; flex-direction: column; padding: 1rem 0; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); z-index: 998; /* Below header, above content */ } /* Style for when mobile nav is active */ nav ul.nav-links.nav-active { display: flex; /* Show when active class is added */ } /* Mobile nav list items */ nav ul.nav-links li { width: 100%; text-align: center} /* Mobile nav links */ nav ul.nav-links li a { display: block; padding: 1rem; color: white; border-bottom: 1px solid #333; /* Separator */ } nav ul.nav-links li:last-child a { border-bottom: none} /* Mobile nav link hover */ nav ul.nav-links li a:hover { background-color: #333} /* Mobile Nav Toggle Button */ .mobile-nav-toggle { display: block; /* Show the button on mobile */ background: none; border: none; color: white; font-size: 1.8rem; /* Make icon larger */ cursor: pointer; padding: 0 1rem; /* Add some padding */ /* margin-left: auto; /* Let flexbox handle alignment */ z-index: 1000; /* Ensure it's clickable */ } /* Service Cards Adjustments */ .service-content h3 { font-size: 1.2rem; /* Slightly larger headline on mobile */ } .service-content p { font-size: 0.95rem; /* Slightly larger paragraph on mobile */ line-height: 1.5; /* Improve paragraph spacing */ } /* Contact Section Stacking */ .contact-container { flex-direction: column; gap: 2rem} /* Form Stacking */ .form-row { flex-direction: column; gap: 0} .form-row .form-group { margin-bottom: 1.5rem} /* Footer Adjustments */ footer { text-align: center} .footer-content { flex-direction: column; align-items: center; gap: 1rem} .footer-right-group { display: flex; flex-direction: column; align-items: center; gap: 1rem; width: 100%} /* Ensure individual sections center text */ .footer-section { text-align: center} .footer-links { justify-content: center}}@media (min-width: 769px) { .mobile-nav-toggle { display: none} /* Ensure nav-links are shown correctly on desktop */ nav ul.nav-links { display: flex; /* Use flex for desktop horizontal layout */ position: static; /* Reset positioning */ width: auto; background-color: transparent; flex-direction: row; padding: 0; box-shadow: none} nav ul.nav-links li { width: auto; margin: 0; /* Reset mobile margin if any */ } nav ul.nav-links li a { display: inline-block; /* Reset mobile block display */ padding: 0 1rem; /* Desktop padding */ color: white; /* Desktop color */ border: none} nav ul.nav-links li a:hover { background-color: transparent; /* Optional: Add desktop hover effect if desired */ text-decoration: underline; /* Example desktop hover */ }}/* Transformations Section (Existing - Placeholder) */.transformations { padding: 5rem 1rem; background: #f9f9fa; text-align: center;}/* Styles for the right-side group */.footer-right-group { display: flex; gap: 2rem; /* Gap between Quick Links and Connect */}.social-links { display: flex; gap: 1rem; margin-top: 1rem;}.social-links a { color: white; font-size: 1.5rem;}.social-links a:hover { color: #ff0000;}@media (max-width: 768px) { .footer-right-group { flex-direction: column; align-items: center; gap: 1rem; width: 100%}}/* ============================== Unified CTA Vertical Spacing ============================== *//* Ensure equal whitespace above and below key CTAs site-wide */:root { --cta-vertical-margin: 1.25rem;}/* Core interactive CTAs */.cta-button,.gallery-cta,.section-cta,.sticky-cta-button,.chat-button,.submit-button { margin-block: var(--cta-vertical-margin) !important; margin-inline: 0;}/* Neutralize wrapper-specific margins so button margins control spacing */.testimonials-cta { margin: 0 !important;}/* Allow Transformations CTA wrapper to center itself */.section-cta-container { margin-block: 0 !important; margin-inline: auto !important;}/* Preserve service card layout: CTA stays pinned to bottom without extra bottom margin */.service-cta { margin-top: auto; margin-bottom: 0;}/* Service CTA hover text swap (Get Quote → Get Free Quote) */.service-cta { position: relative; overflow: visible; display: inline-flex !important; align-items: center; justify-content: center; background: #ff0000 !important; color: #f5f0eb !important; text-decoration: none !important; border: none; border-radius: 8px; height: 44px !important; min-width: 220px !important; padding: 0 20px !important; white-space: normal; margin-top: 0.75rem !important;}.service-cta .cta-text,.service-cta .cta-hover { position: absolute; width: 100%; text-align: center; transition: transform 0.3s ease, opacity 0.3s ease; left: 0;}.service-cta .cta-text { transform: translateY(0); opacity: 1}.service-cta .cta-hover { transform: translateY(100%); opacity: 0}.service-cta:hover .cta-text { transform: translateY(-100%); opacity: 0}.service-cta:hover .cta-hover { transform: translateY(0); opacity: 1}/* Add a little extra breathing room above CTAs inside service cards */.service-card .service-content { gap: 1.5rem;}/* Benefit Cards (Why Choose) */.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto;}.benefit-card { background: #ffffff; padding: 2rem; border-radius: 12px; text-align: center; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(0, 0, 0, 0.05);}.benefit-card i { background: rgba(255, 0, 0, 0.1); color: #ff0000; width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1rem;}.benefit-card h4 { font-size: 1.25rem; color: #222; margin-bottom: 0.5rem;}.benefit-card p { color: #555; line-height: 1.6;}.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);}.benefit-card:hover i { background: #ff0000; color: #f5f0eb;}@media (max-width: 768px) { .benefits-grid { grid-template-columns: 1fr; gap: 1.5rem} .benefit-card { padding: 1.5rem}}/* ============================== FAQ Accordion (details/summary) ============================== */details { background: #ffffff; padding: 1.25rem 1.5rem; border-radius: 12px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); margin-bottom: 1rem; border: 1px solid rgba(0, 0, 0, 0.05);}summary { font-weight: 700; cursor: pointer; font-size: 1.05rem; color: #222; margin-bottom: 0.25rem;}details[open] summary { margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255, 0, 0, 0.15);}details p { margin: 0; color: #555; line-height: 1.6}/* Neighborhoods & ZIPs styling */.about .feature-card .zip-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 0.5rem; justify-content: center;}.about .feature-card .zip-chips .zip-chip { background: rgba(255, 0, 0, 0.06); color: #ff0000; border: 1px solid rgba(255, 0, 0, 0.2); border-radius: 999px; padding: 8px 14px; font-weight: 700; font-size: 0.95rem; box-shadow: 0 2px 6px rgba(255, 0, 0, 0.08); transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;}.about .feature-card .zip-chips .zip-chip:hover { transform: translateY(-1px); background: rgba(255, 0, 0, 0.1); box-shadow: 0 4px 10px rgba(255, 0, 0, 0.12);}.about .feature-card .nearby-links { margin-top: 0.75rem; text-align: center;}.about .feature-card .nearby-links a { color: #ff0000; font-weight: 700; text-decoration: none; border-bottom: 2px solid transparent; transition: color 0.2s ease, border-color 0.2s ease;}.about .feature-card .nearby-links a:hover { color: #b02525; border-color: #b02525;}/* Elevate Neighborhoods & ZIPs cards */.about .feature-card:has(.zip-chips),.about .feature-card:has(.nearby-links) { border: 1px solid rgba(255, 0, 0, 0.18); box-shadow: 0 10px 24px rgba(0,0,0,0.06); padding: 1.75rem; position: relative;}.about .feature-card:has(.zip-chips)::before,.about .feature-card:has(.nearby-links)::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: #ff0000; border-radius: 12px 12px 0 0;}.about .feature-card:has(.zip-chips) h3,.about .feature-card:has(.nearby-links) h3 { text-align: center; color: #222; font-weight: 800; margin-bottom: 0.75rem;}/* Nearby cities as chips */.about .feature-card .nearby-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;}.about .feature-card .nearby-links a { display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 0, 0, 0.06); border: 1px solid rgba(255,0,0,0.2); border-radius: 999px; padding: 8px 14px; font-weight: 700;}.about .feature-card .nearby-links a:hover { background: rgba(255, 0, 0, 0.1);}/* Service Areas specific styling */#service-areas .feature-card { display: flex; align-items: center; justify-content: center; padding: 1.5rem;}#service-areas .feature-icon { margin-bottom: 0;}.service-area-item { display: flex; align-items: center; gap: 1rem;}.service-area-item h3 { margin: 0; line-height: 1;}/* Utility */.text-center { text-align: center !important}/* How It Works / Process section */.process-section { padding: 5rem 1rem; background: #fff}.process-container { max-width: 1200px; margin: 0 auto; text-align: center}.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem}.process-step { padding: 2rem; border-radius: 10px; background: #f9f9f9; box-shadow: 0 4px 10px rgba(0,0,0,.05)}.process-icon { font-size: 2rem; color: #d63031; margin-bottom: 1rem}@media (max-width: 768px) { .process-steps { grid-template-columns: 1fr} }/* Location-specific hero background images */
/* Keep background consistent; sizing/padding inherit from base .hero rules */
.page-location .hero {
    background-size: cover;
    background-position: center;
}

/* Specific location overrides removed to allow individual page backgrounds to show */
/* ============================== Google Rating Badge (stable sizing) Ensures no layout shift when icon/font loads ============================== */.google-rating-badge { display: inline-flex; align-items: center; gap: 10px; line-height: 1; min-height: 42px; min-width: 220px; white-space: normal; background: #fff; color: #222; padding: 10px 16px; border-radius: 999px; border: 1px solid #d63031; box-shadow: 0 4px 15px rgba(214, 48, 49, 0.12); text-decoration: none;}.google-rating-badge .google-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; flex: 0 0 20px; color: #d63031; font-size: 1.25rem;}.google-rating-badge .stars { display: inline-flex}.google-rating-badge .stars i { width: 1em; text-align: center; margin-right: 2px; color: #FFD700; font-size: 1rem;}.google-rating-badge .rating-score { width: 2.5ch; text-align: right; font-weight: 800; font-size: 1rem;}.google-rating-badge .badge-text { font-weight: 600; color: #444; font-size: 0.95rem;}
/* Service Areas - Clean Chip/Pill Design */
.service-areas-chips {
    margin: 2.5rem 0;
    text-align: center;
}

.city-chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.city-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(214, 48, 49, 0.1);
    border: 2px solid rgba(214, 48, 49, 0.2);
    border-radius: 32px;
    text-decoration: none;
    color: #d63031;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: normal;
    min-width: 170px;
    height: 60px;
    box-shadow: 0 4px 8px rgba(214, 48, 49, 0.1);
}

.city-chip:hover {
    background: rgba(214, 48, 49, 0.2);
    border-color: rgba(214, 48, 49, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(214, 48, 49, 0.2);
}

.city-chip i {
    color: #d63031;
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .city-chips-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .city-chip {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
        min-width: 0;
        height: auto;
        min-height: 48px;
        flex-direction: column;
        gap: 0.35rem;
        text-align: center;
    }

    .city-chip i {
        font-size: 0.9rem;
    }
}

/* Very small mobile */
@media (max-width: 380px) {
    .city-chip {
        font-size: 0.8rem;
        padding: 0.6rem 0.4rem;
        gap: 0.25rem;
    }
}
/* --- Universal Header & Logo Styles (Synced with Index) --- */
.nav-links {
    list-style: none !important;
    display: flex;
    padding: 0 !important;
    margin: 0 !important;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px !important;
    width: auto !important;
    margin-right: 12px !important;
    object-fit: contain !important;
    display: block !important;
    max-width: none !important;
    transition: transform 0.3s ease !important;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo a {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    color: white !important;
    font-size: 1.4rem !important;
    font-weight: bold !important;
    padding: 5px 0 !important;
    white-space: nowrap !important;
    transition: color 0.3s ease !important;
    text-transform: uppercase !important; /* Matches Index Look */
    letter-spacing: normal !important;
}

.logo a:hover {
    color: #d63031 !important;
}

.nav-links a {
    color: white !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

.nav-links a:hover { 
    color: #ff0000 !important; 
}

@media (max-width: 768px) {
    .logo img {
        height: 40px !important;
    }
    
    .logo a {
        font-size: 1.2rem !important;
    }
}

/* --- Mobile Navigation Styles (Synced with Index) --- */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0 1rem;
}

.mobile-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block !important;
        z-index: 1000;
    }
    
    .header-content-wrapper { 
        justify-content: space-between !important; 
    }
    
    nav ul.nav-links {
        display: none !important; /* Hide by default on mobile */
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #111;
        width: 100%;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 998;
    }
    
    nav ul.nav-links.nav-active { 
        display: flex !important; 
    }
    
    nav ul.nav-links li { 
        width: 100%;
        margin: 0;
    }
    
    nav ul.nav-links li a {
        display: block !important;
        padding: 1rem 1.5rem !important;
        color: white !important;
        text-align: left !important;
        border-bottom: 1px solid #333 !important;
        transition: background 0.2s ease !important;
        font-weight: 500 !important;
        letter-spacing: 0.5px !important;
    }
    
    nav ul.nav-links li a:hover {
        background: rgba(214, 48, 49, 0.15) !important;
        padding-left: 2rem !important;
    }
}

@media (min-width: 769px) {
    .mobile-nav-toggle { 
        display: none !important; 
    }
    
    nav ul.nav-links {
        display: flex !important;
        position: static !important;
        width: auto !important;
        background-color: transparent !important;
        flex-direction: row !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
    
    nav ul.nav-links li {
        margin-left: 1rem !important;
    }
    
    nav ul.nav-links li a {
        display: inline-block !important;
        padding: 5px 10px !important;
        color: white !important;
        border: none !important;
    }
}

/* Standard Google Rating Badge - Clean Style */
.google-rating-badge-standard {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.google-rating-badge-standard:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.google-rating-badge-standard .google-icon {
    color: #4285f4;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}
.google-rating-badge-standard .rating-score {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}
.google-rating-badge-standard .stars {
    color: #ffc107;
    display: flex;
    gap: 2px;
}
.google-rating-badge-standard .badge-text {
    color: #6b665f;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ─────────────────────────────────────────
   Site Header — Dark Industrial
───────────────────────────────────────── */
header {
    background: #0d0d0d !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    z-index: 1000 !important;
}
.header-content-wrapper {
    padding: 0 var(--page-gutter, clamp(1.5rem, 3vw, 4rem)) !important;
    max-width: none !important;
    margin: 0 !important;
    height: 64px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}
.logo a {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: #f5f0eb !important;
    text-decoration: none !important;
    transition: color 0.15s !important;
    gap: 0.6rem !important;
}
.logo a:hover { color: #d63031 !important; }
.logo img { height: 36px !important; width: auto !important; }

nav { display: flex; align-items: center; gap: 0.25rem; }

nav ul.nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    position: static !important;
    box-shadow: none !important;
}
nav ul.nav-links li { width: auto !important; }
nav ul.nav-links li a {
    display: inline-block !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #7d7872 !important;
    text-decoration: none !important;
    padding: 0.4em 0.85em !important;
    border: none !important;
    border-bottom: none !important;
    transition: color 0.15s !important;
    background: transparent !important;
}
nav ul.nav-links li a:hover { color: #f5f0eb !important; background: transparent !important; text-decoration: none !important; }

/* "Get a Quote" CTA button in nav */
.nav-cta {
    display: inline-flex !important;
    align-items: center !important;
    background: #d63031 !important;
    color: #f5f0eb !important;
    text-decoration: none !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 0.45em 1em !important;
    border-radius: 3px !important;
    margin-left: 0.5rem !important;
    transition: background 0.15s !important;
    white-space: nowrap !important;
}
.nav-cta:hover { background: #b02525 !important; color: #f5f0eb !important; }

/* Hamburger */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none !important;
    border: none !important;
    cursor: pointer;
    padding: 0.25rem !important;
    z-index: 1001;
}
.mobile-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #aaa;
    border-radius: 2px;
    transition: background 0.15s;
}
.mobile-nav-toggle:hover span { background: #fff; }

/* Mobile nav */
@media (max-width: 768px) {
    .mobile-nav-toggle { display: flex !important; }
    .header-content-wrapper { padding: 0 var(--page-gutter, 1.1rem) !important; }

    nav ul.nav-links {
        display: none !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #0d0d0d !important;
        border-bottom: 1px solid rgba(255,255,255,0.07) !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.4) !important;
        padding: 0.5rem 0 1rem !important;
        z-index: 999 !important;
    }
    nav ul.nav-links.nav-active { display: flex !important; }
    nav ul.nav-links li { width: 100% !important; text-align: left !important; }
    nav ul.nav-links li a {
        display: block !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        color: #8f8a85 !important;
        border-bottom: 1px solid rgba(255,255,255,0.04) !important;
    }
    nav ul.nav-links li:last-child a { border-bottom: none !important; }
    nav ul.nav-links li a:hover { color: #f5f0eb !important; background: rgba(255,255,255,0.03) !important; }
    .nav-cta { margin: 0.75rem 1.5rem 0 !important; align-self: flex-start !important; }
}
@media (min-width: 769px) {
    .mobile-nav-toggle { display: none !important; }
}

/* ─────────────────────────────────────────
   Site Footer — Dark Industrial
───────────────────────────────────────── */
.site-footer {
    background: #0d0d0d;
    border-top: 3px solid #d63031;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.018) 39px, rgba(255,255,255,0.018) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.018) 39px, rgba(255,255,255,0.018) 40px);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
}
.footer-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f5f0eb;
    margin-bottom: 0.75rem;
}
.footer-tagline {
    font-size: 0.83rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 280px;
}
.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}
.footer-contact-row i {
    color: #d63031;
    font-size: 0.75rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}
.footer-contact-row span,
.footer-contact-row a {
    color: #6b665f;
    text-decoration: none;
    transition: color 0.15s;
}
.footer-contact-row a:hover { color: #d63031; }
.footer-quick-ctas {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.footer-cta-primary {
    display: inline-block;
    background: #d63031;
    color: #f5f0eb;
    text-decoration: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5em 1em;
    border-radius: 3px;
    transition: background 0.15s;
}
.footer-cta-primary:hover { background: #b02525; color: #f5f0eb; }
.footer-cta-ghost {
    display: inline-block;
    background: transparent;
    color: #555;
    text-decoration: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5em 1em;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: color 0.15s, border-color 0.15s;
}
.footer-cta-ghost:hover { color: #c5bfb7; border-color: rgba(255,255,255,0.18); }
.footer-col-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 1rem;
}
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav ul li { margin-bottom: 0.5rem; }
.footer-nav ul li a {
    color: #555;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.15s;
}
.footer-nav ul li a:hover { color: #ddd8d0; }
.footer-social-icons {
    display: flex;
    gap: 0.5rem;
}
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #1c1c22;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 3px;
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.footer-social-link:hover {
    background: #d63031;
    color: #f5f0eb;
    border-color: #d63031;
}
.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.25rem 1.5rem;
    text-align: center;
}
.footer-legal p {
    color: #333;
    font-size: 0.78rem;
    margin: 0;
}
.footer-legal a {
    color: #444;
    text-decoration: none;
    transition: color 0.15s;
}
.footer-legal a:hover { color: #aaa; }
.footer-sep { margin: 0 0.5rem; color: #2a2a2a; }

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.25rem 2rem;
    }
}

/* ===================================================
   BLOG BREADCRUMB — GLOBAL INDUSTRIAL STYLE
   Applies to .wiki-breadcrumb, .breadcrumbs, .breadcrumb
   =================================================== */

.wiki-breadcrumb,
.breadcrumbs,
.breadcrumb {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.3) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.4 !important;
}
.wiki-breadcrumb a,
.breadcrumbs a,
.breadcrumb a {
    color: #d63031 !important;
    text-decoration: none !important;
    transition: color 0.15s !important;
}
.wiki-breadcrumb a:hover,
.breadcrumbs a:hover,
.breadcrumb a:hover { color: #f5f0eb !important; }

.wiki-breadcrumb span,
.breadcrumbs span,
.breadcrumb span {
    margin: 0 0.4rem !important;
    color: rgba(255,255,255,0.2) !important;
}
/* Handle separator spans specifically */
.breadcrumbs .separator,
.breadcrumb .separator {
    color: rgba(255,255,255,0.2) !important;
}

/* ===================================================
   BLOG ARTICLE DARK THEME
   Scoped to all blog article container types
   =================================================== */

body:has(.wiki-post),
body:has(.blog-container),
body:has(.blog-post),
body:has(.directory-container),
body:has(.donation-hub) {
    background: #141418 !important;
    color: rgba(255,255,255,0.72) !important;
}

/* --- Core article containers --- */
body:has(.wiki-post) .wiki-post { color: rgba(255,255,255,0.72); }
body:has(.wiki-post) .wiki-post a { color: #d63031 !important; }
body:has(.wiki-post) .wiki-post a:hover { color: #ff4444 !important; }
body:has(.blog-container) .blog-container { color: rgba(255,255,255,0.72); }

/* --- .blog-content inside .blog-container (junk-vs-dumpster, etc.) --- */
body:has(.blog-container) .blog-content {
    background: #18181d !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    color: rgba(255,255,255,0.72) !important;
}
body:has(.blog-container) .blog-hero h1 { color: #f5f0eb !important; font-family: 'Playfair Display', Georgia, serif !important; }
body:has(.blog-container) .blog-hero .post-meta { color: rgba(255,255,255,0.4) !important; }
body:has(.blog-container) .blog-content h2 { color: #f5f0eb !important; font-family: 'Playfair Display', Georgia, serif !important; }
body:has(.blog-container) .blog-content h3 { color: rgba(255,255,255,0.88) !important; font-family: 'Playfair Display', Georgia, serif !important; }
body:has(.blog-container) .blog-content p { color: rgba(255,255,255,0.72) !important; }
body:has(.blog-container) .blog-content li { color: rgba(255,255,255,0.72) !important; }
body:has(.blog-container) .blog-content strong { color: #f5f0eb !important; }
body:has(.blog-container) .blog-content table { border: 1px solid rgba(255,255,255,0.07) !important; }
body:has(.blog-container) .blog-content th {
    background: #1c1c22 !important;
    color: #f5f0eb !important;
    border-bottom: 2px solid rgba(214,48,49,0.3) !important;
}
body:has(.blog-container) .blog-content td {
    color: rgba(255,255,255,0.75) !important;
    border-bottom-color: rgba(255,255,255,0.06) !important;
}
body:has(.blog-container) .blog-content tr:hover { background: rgba(255,255,255,0.03) !important; }
body:has(.blog-container) .cta-box {
    background: linear-gradient(135deg, #d63031 0%, #b52828 100%) !important;
}
body:has(.blog-container) .blog-content a { color: #d63031 !important; }
body:has(.blog-container) .blog-content a:hover { color: #ff4444 !important; }

/* --- .blog-post container (winter-org, upcycling, end-of-summer, etc.) --- */
body:has(.blog-post) .blog-post {
    background: #18181d !important;
    color: rgba(255,255,255,0.72) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
body:has(.blog-post) .blog-post h1,
body:has(.blog-post) .blog-post h2,
body:has(.blog-post) .blog-post h3 { color: #f5f0eb !important; font-family: 'Playfair Display', Georgia, serif !important; }
body:has(.blog-post) .blog-post h2 { border-bottom-color: #d63031 !important; }
body:has(.blog-post) .blog-post p { color: rgba(255,255,255,0.72) !important; }
body:has(.blog-post) .blog-post li { color: rgba(255,255,255,0.72) !important; }
body:has(.blog-post) .post-header h1 { color: #f5f0eb !important; font-family: 'Playfair Display', Georgia, serif !important; }
body:has(.blog-post) .post-header .post-meta,
body:has(.blog-post) .post-meta { color: #555 !important; }
body:has(.blog-post) .post-content { color: rgba(255,255,255,0.72) !important; }
body:has(.blog-post) .post-content h2 { color: #f5f0eb !important; font-family: 'Playfair Display', Georgia, serif !important; }
body:has(.blog-post) .post-content h3 { color: rgba(255,255,255,0.88) !important; font-family: 'Playfair Display', Georgia, serif !important; }
body:has(.blog-post) .post-content p { color: rgba(255,255,255,0.72) !important; }
body:has(.blog-post) .post-content li { color: rgba(255,255,255,0.72) !important; }
body:has(.blog-post) .blog-post table { border: 1px solid rgba(255,255,255,0.07) !important; }
body:has(.blog-post) .blog-post th {
    background: #1c1c22 !important;
    color: #f5f0eb !important;
    border-bottom: 2px solid rgba(214,48,49,0.3) !important;
}
body:has(.blog-post) .blog-post td {
    color: rgba(255,255,255,0.75) !important;
    border-bottom-color: rgba(255,255,255,0.06) !important;
}
body:has(.blog-post) .blog-post tr:hover { background: rgba(255,255,255,0.03) !important; }
body:has(.blog-post) .blog-post strong { color: #f5f0eb !important; }
body:has(.blog-post) .post-content strong { color: #f5f0eb !important; }
body:has(.blog-post) .blog-post a,
body:has(.blog-post) .post-content a { color: #d63031 !important; }
body:has(.blog-post) .blog-post a:hover,
body:has(.blog-post) .post-content a:hover { color: #ff4444 !important; }
body:has(.blog-post) .cta-section {
    background: #18181d !important;
    border: 1px solid rgba(214, 48, 49,0.2) !important;
    border-top: 3px solid #d63031 !important;
    border-radius: 0 !important;
}
body:has(.blog-post) .cta-section h2,
body:has(.blog-post) .cta-section h3 { color: #f5f0eb !important; }
body:has(.blog-post) .cta-section p { color: rgba(255,255,255,0.65) !important; }

/* --- Disposal Directory (.directory-container) --- */
body:has(.directory-container) .directory-header h1 { color: #f5f0eb !important; }
body:has(.directory-container) .directory-header p { color: rgba(255,255,255,0.55) !important; }
body:has(.directory-container) .search-input {
    background: #1c1c22 !important;
    border-color: rgba(255,255,255,0.1) !important;
    color: #d0d0d0 !important;
    box-shadow: none !important;
    border-radius: 4px !important;
}
body:has(.directory-container) .search-input::placeholder { color: #555 !important; }
body:has(.directory-container) .search-input:focus {
    border-color: rgba(214, 48, 49,0.5) !important;
    box-shadow: 0 0 0 3px rgba(214, 48, 49,0.08) !important;
}
body:has(.directory-container) .item-card {
    background: #18181d !important;
    border-color: rgba(255,255,255,0.07) !important;
    border-radius: 0 !important;
    color: rgba(255,255,255,0.72) !important;
    box-shadow: none !important;
}
body:has(.directory-container) .item-card:hover {
    border-color: rgba(214, 48, 49,0.4) !important;
    transform: none !important;
    box-shadow: none !important;
    background: #1c1c1c !important;
}
body:has(.directory-container) .item-icon {
    background: rgba(214, 48, 49,0.08) !important;
    border-radius: 4px !important;
}
body:has(.directory-container) .item-info h3 { color: #f5f0eb !important; }
body:has(.directory-container) .item-info p { color: #555 !important; }
body:has(.directory-container) .section-title { color: #f5f0eb !important; }
body:has(.directory-container) .directory-section { color: rgba(255,255,255,0.72) !important; }

/* --- Donation Map (.donation-hub) --- */
body:has(.donation-hub) .donation-hub { color: rgba(255,255,255,0.72) !important; }
body:has(.donation-hub) .donation-hero h1 { color: #f5f0eb !important; }
body:has(.donation-hub) .donation-hero p { color: rgba(255,255,255,0.55) !important; }
body:has(.donation-hub) .finder-title { color: #f5f0eb !important; }
body:has(.donation-hub) .finder-subtitle { color: rgba(255,255,255,0.55) !important; }
body:has(.donation-hub) .charity-card,
body:has(.donation-hub) .location-card {
    background: #18181d !important;
    border-color: rgba(255,255,255,0.07) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    color: rgba(255,255,255,0.72) !important;
}
body:has(.donation-hub) .charity-card h3,
body:has(.donation-hub) .location-card h3 { color: #f5f0eb !important; }
body:has(.donation-hub) .search-input,
body:has(.donation-hub) .search-wrapper input {
    background: #1c1c22 !important;
    border-color: rgba(255,255,255,0.1) !important;
    color: #d0d0d0 !important;
    box-shadow: none !important;
}
body:has(.donation-hub) .search-input::placeholder { color: #555 !important; }
body:has(.donation-hub) .map-toggle {
    background: #18181d !important;
    border-color: rgba(255,255,255,0.07) !important;
    color: rgba(255,255,255,0.72) !important;
}
body:has(.donation-hub) .map-toggle:hover { background: #1c1c1c !important; }
body:has(.donation-hub) .accepts-list li,
body:has(.donation-hub) .accepts-list { color: rgba(255,255,255,0.65) !important; }
body:has(.donation-hub) h2,
body:has(.donation-hub) h3 { color: #f5f0eb !important; }
body:has(.donation-hub) p { color: rgba(255,255,255,0.72) !important; }

body:has(.blog-container) .blog-content {
    background: #18181d !important;
    color: rgba(255,255,255,0.72) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
}

/* --- Headings --- */
body:has(.wiki-post) .wiki-post h1,
body:has(.blog-container) .blog-hero h1,
body:has(.blog-container) .blog-content h2,
body:has(.blog-container) .blog-content h3 { color: #f5f0eb !important; }

body:has(.wiki-post) .wiki-post h2 {
    color: #f5f0eb !important;
    border-left-color: #d63031 !important;
}
body:has(.wiki-post) .wiki-post h3 { color: rgba(255,255,255,0.88) !important; }

body:has(.blog-container) .blog-content h2 {
    border-bottom-color: #d63031 !important;
}

/* --- Breadcrumbs --- */
.wiki-breadcrumb,
.breadcrumb,
.breadcrumbs { color: #555 !important; }
.wiki-breadcrumb a,
.breadcrumb a,
.breadcrumbs a { color: #d63031 !important; }

/* --- Subtitles & meta --- */
body:has(.wiki-post) .wiki-post .subtitle,
body:has(.blog-container) .blog-hero .post-meta,
body:has(.wiki-post) .wiki-post .post-meta { color: #555 !important; }

/* --- Paragraphs & lists --- */
body:has(.wiki-post) .wiki-post p,
body:has(.blog-container) .blog-content p { color: rgba(255,255,255,0.72) !important; }
body:has(.blog-container) .blog-content li { color: rgba(255,255,255,0.72) !important; }

/* --- Quick nav sidebar --- */
.quick-nav {
    background: #0d0d0d !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: none !important;
    border-radius: 4px !important;
}
.quick-nav h4 { color: #444 !important; }
.quick-nav a { color: rgba(255,255,255,0.45) !important; }
.quick-nav a:hover,
.quick-nav a.active { color: #d63031 !important; }

/* --- FAQ --- */
.faq-item {
    background: #18181d !important;
    border-color: rgba(255,255,255,0.07) !important;
    border-radius: 0 !important;
}
.faq-question,
.faq-item summary { color: rgba(255,255,255,0.85) !important; }
.faq-answer,
.faq-content,
.faq-item p { color: rgba(255,255,255,0.62) !important; }

/* --- Free / highlight boxes --- */
.free-box {
    background: #18181d !important;
    border-color: rgba(5,150,105,0.25) !important;
    border-radius: 0 !important;
}
.free-box h3 { color: #10b981 !important; }
.free-item {
    background: #1c1c22 !important;
    border-color: rgba(255,255,255,0.07) !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}
.free-item:hover {
    border-color: rgba(5,150,105,0.4) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* --- Pro tips & info boxes --- */
.pro-tip {
    background: rgba(76,175,80,0.07) !important;
    border-left-color: rgba(76,175,80,0.5) !important;
    border-radius: 0 0 4px 4px !important;
}
.pro-tip strong { color: #4caf50 !important; }
.pro-tip p,
.pro-tip { color: rgba(255,255,255,0.72) !important; }

.tip-box,
.info-box {
    background: #18181d !important;
    border-color: rgba(255,255,255,0.08) !important;
    border-radius: 0 !important;
    color: rgba(255,255,255,0.72) !important;
}
.tip-box h3,
.info-box h3 { color: #f5f0eb !important; }

.warning-box {
    background: rgba(245,158,11,0.07) !important;
    border-color: rgba(245,158,11,0.3) !important;
    color: rgba(255,255,255,0.72) !important;
}

/* --- CTA box — industrial dark --- */
.cta-box {
    background: #18181d !important;
    border: 1px solid rgba(214, 48, 49,0.2) !important;
    border-top: 3px solid #d63031 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.cta-box h3 { color: #f5f0eb !important; }
.cta-box p { color: rgba(255,255,255,0.65) !important; opacity: 1 !important; }
.cta-btn,
.cta-button {
    background: #d63031 !important;
    color: #f5f0eb !important;
    border-radius: 8px !important;
}
.cta-btn:hover,
.cta-button:hover { background: #b02525 !important; transform: none !important; }

/* --- Inline CTA --- */
.inline-cta {
    background: #18181d !important;
    border-color: rgba(255,255,255,0.07) !important;
    border-radius: 0 !important;
}

/* --- Tables --- */
body:has(.wiki-post) table,
body:has(.blog-container) table { color: rgba(255,255,255,0.72) !important; }

.comparison-table th { background: #0d0d0d !important; color: #f5f0eb !important; }
.comparison-table td { border-color: rgba(255,255,255,0.07) !important; color: rgba(255,255,255,0.72) !important; }
.comparison-table tr:nth-child(even) { background: #1c1c22 !important; }
.comparison-table tr:hover { background: rgba(214, 48, 49,0.05) !important; }

.fees-table th { background: #0d0d0d !important; color: #f5f0eb !important; }
.fees-table td { border-color: rgba(255,255,255,0.07) !important; color: rgba(255,255,255,0.72) !important; }
.fees-table tr:nth-child(even) { background: #1c1c22 !important; }

/* --- Status / calc boxes (recycling guide) --- */
.landfill-header {
    background: #18181d !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    border-radius: 0 !important;
}
.calc-box {
    background: #18181d !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    border-radius: 0 !important;
    color: rgba(255,255,255,0.72) !important;
}

/* --- Checklist --- */
.checklist-box {
    background: #18181d !important;
    border-color: rgba(255,255,255,0.07) !important;
    border-radius: 0 !important;
}
.checklist-item { color: rgba(255,255,255,0.72) !important; }

/* --- Stat cards --- */
.stat-card {
    background: #18181d !important;
    border-color: rgba(255,255,255,0.07) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.stat-card .number,
.stat-card .label { color: #f5f0eb !important; }

/* --- Related posts --- */
.related-posts,
.related-articles { background: transparent !important; }
.related-card,
.related-post {
    background: #18181d !important;
    border-color: rgba(255,255,255,0.07) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.related-post-title,
.related-card h3 { color: #f5f0eb !important; }

/* --- Share section --- */
.share-article > p { color: #444 !important; }

/* --- Source note --- */
.source-note {
    color: #444 !important;
    border-color: rgba(255,255,255,0.07) !important;
}
.source-note a { color: #d63031 !important; }

/* --- Directory / disposal cards --- */
.facility-card,
.disposal-card,
.charity-card,
.item-card,
.location-card,
.tip-card {
    background: #18181d !important;
    border-color: rgba(255,255,255,0.07) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: rgba(255,255,255,0.72) !important;
}
.facility-card h3,
.disposal-card h3,
.charity-card h3,
.tip-card h3 { color: #f5f0eb !important; }

/* --- Quote / highlight boxes --- */
.quote-box,
.highlight {
    background: #18181d !important;
    border-color: rgba(214, 48, 49,0.25) !important;
    color: rgba(255,255,255,0.72) !important;
}

/* --- Blog hero image area --- */
body:has(.blog-container) .hero-image-container {
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* --- Section headers inside articles --- */
.section-title { color: #f5f0eb !important; }

/* --- Generic white bg / light override --- */
body:has(.wiki-post) .wiki-post *[style*="background: white"],
body:has(.wiki-post) .wiki-post *[style*="background:#fff"],
body:has(.wiki-post) .wiki-post *[style*="background: #fff"],
body:has(.blog-container) .blog-content *[style*="background: white"] {
    background: #18181d !important;
}

/* --- Community pulse div (inline-style, howardcounty article) --- */
body:has(.wiki-post) div[style*="border: 2px dashed"] {
    border-color: rgba(255,255,255,0.1) !important;
    background: #18181d !important;
    border-radius: 0 !important;
}
body:has(.wiki-post) div[style*="border: 2px dashed"] h4 { color: #f5f0eb !important; }
body:has(.wiki-post) div[style*="border: 2px dashed"] p { color: rgba(255,255,255,0.55) !important; }
