/* =============================================================
   styles.css - Pacific Summit Contracting
   Consolidated stylesheet
   Sections:
   1.  Reset & Base
   2.  Typography & Utilities
   3.  Container
   4.  Buttons
   5.  Header & Navigation
   6.  Hero
   7.  About
   8.  Featured Services (homepage)
   9.  Service Page (masonry gallery, detail)
   10. Service Areas Grid
   11. Construction Page
   12. Demolition Page
   13. Location Pages
   14. Contact Page
   15. Footer
   16. Junk Removal Page
   17. FAQ Page
   18. Mobile Improvements
============================================================= */


/* =============================================================
   1. Reset & Base
============================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}


/* =============================================================
   2. Typography & Utilities
============================================================= */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}


/* =============================================================
   3. Container
============================================================= */
.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =============================================================
   4. Buttons
============================================================= */
.cta-button {
    display: inline-block;
    background-color: #FF6A00;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e55b00;
    transform: translateY(-2px);
}

.cta-button-outline {
    display: inline-block;
    border: 2px solid #FF6A00;
    color: #FF6A00;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background-color: #FF6A00;
    color: #fff;
}


/* =============================================================
   5. Header & Navigation
============================================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.1);
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
    position: relative;
}

nav ul li a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FF6A00;
}

/* Dropdown */
nav .dropdown {
    position: relative;
}

nav .dropdown .dropdown-content {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    z-index: 1000;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    width: max-content;
    min-width: 200px;
    max-width: 280px;
    scrollbar-width: thin;
    scrollbar-color: #666 #333;
}

nav .dropdown-right .dropdown-content {
    left: auto;
    right: 0;
}

nav .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav .dropdown-content li {
    padding: 6px 14px;
}

nav .dropdown-content li a {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: color 0.2s ease;
}

nav .dropdown-content li:hover {
    background-color: #444;
}

nav .dropdown-content li a:hover {
    color: #ddd;
}

nav .dropdown-content::-webkit-scrollbar { width: 6px; }
nav .dropdown-content::-webkit-scrollbar-track { background: #333; }
nav .dropdown-content::-webkit-scrollbar-thumb { background: #666; border-radius: 4px; }
nav .dropdown-content::-webkit-scrollbar-thumb:hover { background: #888; }

/* Hamburger */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

/* Mobile Nav */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        text-align: center;
        gap: 0;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 1rem 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 15px 0;
    }

    nav .dropdown .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        max-height: 300px;
        overflow-y: auto;
        background-color: #222;
        padding-left: 10px;
        display: none;
    }

    nav .dropdown-content li {
        padding: 8px 12px;
    }

    nav .dropdown.show .dropdown-content {
        display: block;
    }
}


/* Header phone link */
.header-phone a {
    background-color: #FF6A00;
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.header-phone a:hover {
    background-color: #e55b00;
}

@media (max-width: 768px) {
    .header-phone { margin: 10px 0; }
    .header-phone a { border-radius: 4px; }
}

/* Service page CTA */
.service-cta {
    background-color: #222;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.service-cta h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-cta p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.service-cta .cta-phone {
    display: block;
    margin-top: 14px;
    color: #ccc;
    font-size: 1rem;
}

.service-cta .cta-phone a {
    color: #FF6A00;
    text-decoration: none;
}

.service-cta .cta-phone a:hover {
    text-decoration: underline;
}

/* Google Reviews section */
.reviews-section {
    background-color: #f4f4f4;
    padding: 70px 0;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.reviews-section .reviews-stars {
    font-size: 2rem;
    color: #FF6A00;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.reviews-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 28px;
}

.reviews-section .reviews-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.reviews-section .cta-button-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #FF6A00;
    color: #FF6A00;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.reviews-section .cta-button-outline:hover {
    background-color: #FF6A00;
    color: white;
}

/* =============================================================
   6. Hero
============================================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('/images/hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.hero-content p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p  { font-size: 1.2rem; }
}


/* =============================================================
   7. About
============================================================= */
.about {
    padding: 100px 0 4rem;
    background-color: #f9f9f9;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: #333;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
}

.about h3 {
    font-size: 2rem;
    margin-top: 2rem;
    color: #333;
}

.about ul {
    list-style: none;
    margin: 1rem auto;
    padding: 0;
    max-width: 600px;
    text-align: left;
}

.about ul li {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #555;
}

@media (max-width: 768px) {
    .about h2 { font-size: 2rem; }
    .about p,
    .about ul li { font-size: 1.1rem; }
}

.about-contact {
    background: #222;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.about-contact h2 {
    font-size: 2rem;
    margin-bottom: 36px;
}

.about-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.about-contact-item {
    background: #2e2e2e;
    border-radius: 8px;
    padding: 24px 16px;
    border-top: 3px solid #FF6A00;
}

.about-contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FF6A00;
    margin-bottom: 10px;
}

.about-contact-item a,
.about-contact-item span {
    color: #ddd;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    line-height: 1.5;
}

.about-contact-item a:hover {
    color: #FF6A00;
}

.about-social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.about-social-links a {
    display: inline;
}

@media (max-width: 768px) {
    .about-contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .about-contact-grid { grid-template-columns: 1fr; }
}


/* =============================================================
   8. Featured Services (homepage)
============================================================= */
.featured-services {
    padding: 4rem 0;
    background-color: #eaeaea;
}

.featured-services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-item {
    background-color: white;
    padding: 2rem;
    width: 350px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.service-item h3 {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: #333;
}

.service-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.service-item a {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    color: #FF6A00;
    font-weight: bold;
}

.service-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .service-list {
        flex-direction: column;
        align-items: center;
    }
}


/* =============================================================
   9. Service Page (detail + masonry gallery)
============================================================= */
.service-details {
    padding: 100px 0;
    background-color: #fff;
}

.service-details h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.service-details p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-gallery {
    column-count: 3;
    column-gap: 20px;
    padding: 0 15px;
}

.service-gallery .gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-gallery .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.service-gallery .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.service-gallery .gallery-item img:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .service-details h1 { font-size: 2rem; }
    .service-details p  { font-size: 1rem; }
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px auto;
    max-width: 800px;
}

.included-card {
    background: #f4f4f4;
    border-left: 4px solid #FF6A00;
    padding: 18px 20px;
    border-radius: 4px;
    font-weight: bold;
    color: #333;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .included-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .included-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .service-gallery { column-count: 2; }
}

@media (max-width: 600px) {
    .service-gallery { column-count: 1; }
}


/* =============================================================
   10. Service Areas Grid
============================================================= */
.service-areas {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.service-areas h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.areas-subtext {
    margin-bottom: 40px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.areas-grid a {
    display: block;
    padding: 18px;
    background: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.areas-grid a:hover {
    background: #111;
    color: #fff;
    transform: translateY(-4px);
}

@media (max-width: 992px) {
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .areas-grid { grid-template-columns: 1fr; }
}


/* =============================================================
   11. Construction Page
============================================================= */
.construction-services {
    padding: 100px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.construction-services h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.construction-services p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

/* Note: .service-card is also used by location.css — shared styles below */
.service-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 15px;
    margin-top: 1rem;
}


.service-card p {
    flex: 1;
    font-size: 1rem;
    color: #777;
    margin-bottom: 20px;
}

.service-card a {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    color: #FF6A00;
    font-weight: bold;
    transition: 0.2s;
}

.service-card a:hover {
    text-decoration: underline;
}

.service-card .cta-button {
    font-size: 0.95rem;
    padding: 0.6rem 1.4rem;
    color: #ffffff;
    align-self: center;
    margin-top: auto;
}

@media (max-width: 768px) {
    .construction-services h1 { font-size: 2.2rem; }
    .construction-services p  { font-size: 1rem; }
    .services-cards { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}


/* =============================================================
   12. Demolition Page
============================================================= */
.page-title {
    padding: 100px 0 30px;
    background: #ffffff;
}

.page-title h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.service-section {
    padding: 60px 0;
    background: #ffffff;
}

.service-section.alt-bg {
    background: #f9f9f9;
}

/* Note: .service-grid is used here and in location.css */
.service-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.service-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.service-content li {
    margin-bottom: 8px;
}

/* Demolition uses .service-image differently from services.css */
.service-section .service-image {
    flex: 1;
}

.service-section .service-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.gallery-section {
    padding: 60px 0;
    background: #ffffff;
}

.gallery-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 5px;
}

.cta-section {
    padding: 60px 0;
    background: #222;
    color: #fff;
}

.cta-section h2 {
    margin-bottom: 15px;
}


/* =============================================================
   13. Location Pages
============================================================= */
.location-intro {
    background: #ffffff;
    padding: 100px 0;
}

.location-intro h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.location-intro p {
    max-width: 700px;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.location-services {
    background: #f9f9f9;
    padding: 70px 0;
}

/* .service-grid in location context - overrides demolition flex with grid */
.location-services .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: unset;
}

.location-benefits {
    background: #ffffff;
    padding: 70px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

.location-clients {
    background: #f9f9f9;
    padding: 70px 0;
}

.client-list {
    list-style: none;
    margin-top: 25px;
}

.client-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.location-areas {
    background: #ffffff;
    padding: 70px 0;
}

.location-areas p {
    max-width: 800px;
}

.location-cta {
    background: #222;
    color: #ffffff;
    padding: 80px 0;
}

.location-cta h2 { margin-bottom: 20px; }
.location-cta p  { margin-bottom: 30px; }


/* =============================================================
   14. Contact Page
============================================================= */
.contact {
    padding: 100px 0;
    background-color: #f9f9f9;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact .form-group {
    width: 100%;
    margin-bottom: 20px;
}

.contact label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact textarea {
    resize: vertical;
}

.contact button {
    padding: 12px 20px;
    background-color: #FF6A00;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact button:hover {
    background-color: #e55b00;
}

.field-error {
    display: block;
    color: #c0392b;
    font-size: 0.85rem;
    margin-top: 4px;
    text-align: left;
}


/* =============================================================
   15. Footer
============================================================= */
.subfooter {
    background-color: #222;
    color: white;
    padding: 3rem 0;
    border-top: 4px solid #FF6A00;
}

.subfooter .subfooter-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 1fr;
    gap: 2.5rem;
    justify-items: start;
    align-items: start;
}

.subfooter-item {
    font-size: 1rem;
    color: #ddd;
    text-align: left;
    width: 100%;
}

.subfooter-item h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FF6A00;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #444;
}

.logo-column .footer-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 1rem;
}

.logo-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.subfooter-item ul {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 1.5rem;
}

.subfooter-item ul li {
    margin: 0.3rem 0;
    break-inside: avoid;
}

.subfooter-item ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.subfooter-item ul li a:hover {
    color: #FF6A00;
}

.subfooter-item a[href^="tel"] {
    color: #FF6A00;
    text-decoration: none;
}

footer {
    background-color: #1a1a1a;
    color: white;
    padding: 1rem 0;
}

footer p {
    font-size: 0.9rem;
    margin: 0;
    color: #aaa;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.back-to-top {
    color: #FF6A00;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.back-to-top:hover {
    color: #e55b00;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-links a {
    color: #FF6A00;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e55b00;
}

@media (max-width: 1024px) {
    .subfooter .subfooter-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .subfooter .subfooter-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .subfooter-item h4 {
        text-align: center;
    }

    .subfooter-item {
        margin-bottom: 1.5rem;
    }

    .subfooter-item ul {
        columns: 2;
    }

    .subfooter-item ul li {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }
}


/* =============================================================
   16. Junk Removal Page
============================================================= */
.hero.junk-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('/images/junk.jpg') center/cover no-repeat;
    min-height: 520px;
    height: auto;
    padding: 160px 0 80px;
}

/* Intro */
.jr-intro {
    background: #fff;
    padding: 70px 0;
}

.jr-intro .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.jr-intro-text { flex: 1; }

.jr-intro-text h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 1rem;
}

.jr-intro-text p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.jr-intro-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.jr-intro-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* What we take */
.jr-items {
    background: #f4f4f4;
    padding: 70px 0;
}

.jr-items h2 {
    text-align: center;
    font-size: 2rem;
    color: #222;
    margin-bottom: 14px;
}

.jr-items .section-sub {
    text-align: center;
    color: #666;
    margin-bottom: 45px;
    font-size: 1.05rem;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.item-tag {
    background: #fff;
    border-left: 4px solid #FF6A00;
    padding: 14px 18px;
    border-radius: 4px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Steps */
.jr-steps {
    background: #f4f4f4;
    padding: 70px 0;
}

.jr-steps h2 {
    text-align: center;
    font-size: 2rem;
    color: #222;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: #fff;
    border-radius: 8px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #FF6A00;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 12px;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why choose us */
.jr-why {
    background: #fff;
    padding: 70px 0;
}

.jr-why h2 {
    text-align: center;
    font-size: 2rem;
    color: #222;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
    border-top: 4px solid #FF6A00;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.why-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: block;
}

.why-card h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Banner */
.jr-cta-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 70px 0;
    text-align: center;
    color: #fff;
}

.jr-cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.jr-cta-banner p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Junk Removal Responsive */
@media (max-width: 900px) {
    .steps-grid,
    .why-grid { grid-template-columns: 1fr 1fr; }
    .items-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .jr-intro .container { flex-direction: column; }
    .steps-grid,
    .why-grid { grid-template-columns: 1fr; }
    .jr-cta-banner h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .items-grid { grid-template-columns: 1fr; }
}


/* =============================================================
   17. FAQ Page
============================================================= */
.faq-section {
    padding: 120px 0 80px;
    background-color: #f9f9f9;
}

.faq-section h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.faq-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 48px;
}

.faq-intro a {
    color: #FF6A00;
    text-decoration: none;
}

.faq-intro a:hover {
    text-decoration: underline;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 60px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    font-size: 1.1rem;
    font-weight: bold;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #222;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: #FF6A00;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p,
.faq-item ul {
    padding: 0 24px 20px;
    color: #444;
    line-height: 1.7;
}

.faq-item ul {
    padding-left: 40px;
}

.faq-item a {
    color: #FF6A00;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    background: #222;
    color: #fff;
    padding: 48px 32px;
    border-radius: 8px;
}

.faq-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.faq-cta p {
    color: #ccc;
    margin-bottom: 24px;
    font-size: 1.05rem;
}


/* =============================================================
   18. Mobile Improvements
============================================================= */

/* Wider container on very small phones */
@media (max-width: 480px) {
    .container { width: 93%; }
}

/* Fix homepage service card fixed width overflowing on mobile */
@media (max-width: 480px) {
    .service-item {
        width: 100%;
        max-width: 100%;
    }
}

/* Demolition service rows: stack image below text on mobile */
@media (max-width: 768px) {
    .service-section .service-grid {
        flex-direction: column;
    }
    .service-section .service-image {
        width: 100%;
    }
}

/* Keep service areas city grid at 2 columns on small screens */
@media (max-width: 600px) {
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Reduce heavy section padding on mobile */
@media (max-width: 768px) {
    .service-areas     { padding: 50px 0; }
    .location-services,
    .location-benefits,
    .location-clients,
    .location-areas    { padding: 45px 0; }
    .location-cta      { padding: 50px 0; }
    .faq-section       { padding: 100px 0 50px; }
    .service-cta       { padding: 40px 0; }
    .jr-intro,
    .jr-items,
    .jr-steps,
    .jr-why            { padding: 45px 0; }
}

/* Show a chevron on dropdown parent links on mobile so users know they expand */
@media (max-width: 768px) {
    .dropdown > a::after {
        content: ' ▾';
        font-size: 0.75rem;
        opacity: 0.7;
    }
}

/* Center social icons when footer stacks to 1 column on mobile */
@media (max-width: 768px) {
    .social-links { justify-content: center; }
}

/* Bigger touch targets for footer service area links on mobile */
@media (max-width: 768px) {
    .subfooter-item ul li a {
        display: block;
        padding: 5px 0;
    }
}

/* Full-width CTA buttons on very small screens for easy tapping */
@media (max-width: 420px) {
    .cta-button,
    .cta-button-outline {
        display: block;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    .cta-group,
    .reviews-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
