/* ==========================================================================
   A BETTER HAULING CO. - MASTER STYLESHEET
   ========================================================================== */

/* --- 1. CSS VARIABLES (UPDATED COLOR SCHEME) --- */
:root {
    --color-dark: #183331;       /* Deepest navy/slate (mapped from #183331) */
    --color-slate: #396767;      /* Deep industrial teal (mapped from #396767) */
    --color-yellow: #FFCC00;     /* High-vis yellow (mapped from #FFCC00) */
    --color-white: #FFFFFF;      /* Pure white for max readability (mapped from #FFFFFF) */

    --font-header: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

/* --- 2. GLOBAL RESET & BASE STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-color: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 3. TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: normal;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--color-yellow);
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: var(--color-white);
}

/* --- 4. BUTTONS --- */
.btn-metal {
    display: inline-block;
    background: linear-gradient(to bottom, #444, #222);
    color: var(--color-yellow) !important;
    font-family: var(--font-header);
    font-size: 1.5rem;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #000;
    border-top: 2px solid #666; /* Fake bevel highlight */
    border-radius: 4px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.1s ease;
}

.btn-metal:hover {
    background: linear-gradient(to bottom, #555, #333);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.btn-metal:active {
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    border-top: 2px solid #000;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-yellow) !important;
    font-family: var(--font-header);
    font-size: 1.5rem;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--color-yellow);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: var(--color-yellow);
    color: var(--color-dark) !important;
}

/* --- 5. HEADER & NAVIGATION --- */
.site-header {
    background-color: #0f2321;
    border-bottom: none;
    padding: 15px 0;
    position: relative;
    z-index: 100;
}
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(
        -45deg,
        var(--color-yellow) 0px,
        var(--color-yellow) 6px,
        #1a1a1a 6px,
        #1a1a1a 12px
    );
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding .custom-logo {
    max-width: 250px;
}

/* Header Book Now button */
.btn-header {
    font-size: 1.1rem;
    padding: 8px 22px;
    letter-spacing: 1.5px;
    margin-left: 20px;
    flex-shrink: 0;
}

.header-phone {
    color: var(--color-yellow);
    font-family: var(--font-header);
    font-size: 1.3rem;
    text-decoration: none;
    letter-spacing: 1px;
    margin-right: 30px;
}

.header-phone:hover {
    color: var(--color-white);
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-list a {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-header);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.nav-list a:hover {
    color: var(--color-yellow);
}

/* --- 6. PREMIUM MOBILE MENU (HAMBURGER) --- */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 110;
    position: relative;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px auto;
    background-color: var(--color-yellow);
    transition: transform 0.35s ease, opacity 0.25s ease;
}

/* Hamburger → X animation */
.mobile-menu-toggle.open .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile-only items hidden on desktop */
.mobile-only-book {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .btn-header-desktop {
        display: none;
    }

    .site-header {
        height: auto;
        padding: 14px 0;
    }

    .site-branding .custom-logo {
        max-width: 180px;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(24, 51, 49, 0.88);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-bottom: 4px solid var(--color-yellow);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    .main-navigation.is-open {
        max-height: 500px;
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        text-align: left;
        padding: 10px 0;
    }

    .nav-list li {
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .main-navigation.is-open .nav-list li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered link fade-in (50ms delay per link) */
    .main-navigation.is-open .nav-list li:nth-child(1) { transition-delay: 0.05s; }
    .main-navigation.is-open .nav-list li:nth-child(2) { transition-delay: 0.10s; }
    .main-navigation.is-open .nav-list li:nth-child(3) { transition-delay: 0.15s; }
    .main-navigation.is-open .nav-list li:nth-child(4) { transition-delay: 0.20s; }
    .main-navigation.is-open .nav-list li:nth-child(5) { transition-delay: 0.25s; }
    .main-navigation.is-open .nav-list li:nth-child(6) { transition-delay: 0.30s; }

    .nav-list a {
        display: block;
        padding: 12px 24px;
        border-left: 3px solid transparent;
        transition: border-color 0.2s ease, color 0.2s ease;
    }

    .nav-list a:hover,
    .nav-list a:focus {
        border-left-color: var(--color-yellow);
        color: var(--color-yellow);
    }

    .mobile-only-book {
        display: list-item;
        text-align: center;
        padding: 8px 24px 16px;
    }

    .btn-flyout {
        display: inline-block;
        margin: 0 auto;
        font-size: 1.1rem;
        padding: 12px 28px;
        text-align: center;
        width: auto;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(24, 51, 49, 0.35) 0%, rgba(24, 51, 49, 0.65) 55%, rgba(24, 51, 49, 0.35) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 60px 20px 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 204, 0, 0.15);
    border: 1px solid var(--color-yellow);
    color: var(--color-yellow);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 5rem;
    color: var(--color-yellow);
    text-shadow: 2px 3px 0px #000;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-content h1 span {
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-ctas .btn-metal {
    font-size: 1.5rem;
    padding: 14px 36px;
}

.hero-ctas .btn-outline {
    font-size: 1.5rem;
    padding: 14px 36px;
}

/* Hero stats bar */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.hero-stat {
    padding: 16px 28px;
    border-left: 3px solid var(--color-yellow);
    text-align: left;
}

.hero-stat:first-child {
    border-left: none;
}

.hero-stat .stat-number {
    font-family: var(--font-header);
    font-size: 1.8rem;
    color: var(--color-yellow);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hazard stripe */
.hazard-stripe {
    height: 12px;
    background: repeating-linear-gradient(
        -45deg,
        var(--color-yellow),
        var(--color-yellow) 10px,
        #111 10px,
        #111 20px
    );
}

/* ==========================================================================
   SECTION DEFAULTS
   ========================================================================== */
.section-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-yellow);
    margin-bottom: 10px;
}

.section-heading {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 650px;
    margin: 0 auto 40px;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-it-works {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--color-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}

.step-card {
    background: var(--color-slate);
    border-radius: 8px;
    padding: 40px 24px 30px;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-yellow);
    color: var(--color-dark);
    font-family: var(--font-header);
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-card h3 {
    color: var(--color-white);
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.step-card p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ==========================================================================
   SERVICES SECTION (HOMEPAGE CARDS)
   ========================================================================== */
.services-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--color-slate);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-dark);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border-top: 4px solid var(--color-yellow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--color-yellow);
    transition: height 0.3s ease;
    z-index: 0;
}

.service-card:hover::after {
    height: 4px;
}

.service-card .service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.service-card h3 {
    color: var(--color-yellow);
    font-size: 1.8rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.service-card .btn-metal {
    font-size: 1.1rem;
    padding: 8px 24px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--color-dark);
}

.pricing-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}
.pricing-row-3 {
    grid-template-columns: repeat(3, 1fr);
}
.pricing-row-4 {
    grid-template-columns: repeat(4, 1fr);
}

.price-card {
    background: var(--color-slate);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.price-card .btn-metal {
    margin-top: auto;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.price-card.featured {
    border-color: var(--color-yellow);
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 204, 0, 0.15);
}

.price-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.price-badge {
    display: inline-block;
    background: var(--color-yellow);
    color: var(--color-dark);
    font-family: var(--font-header);
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.price-card .size-number {
    font-family: var(--font-header);
    font-size: 3.5rem;
    color: var(--color-yellow);
    line-height: 1;
    margin-bottom: 4px;
}

.price-card .size-label {
    font-family: var(--font-header);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.price-card .price {
    font-family: var(--font-header);
    font-size: 2.8rem;
    color: var(--color-white);
    margin-bottom: 6px;
    line-height: 1;
}

.price-card .price-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.price-card .dimensions {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.price-card .features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.price-card .features-list li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    padding-left: 20px;
    position: relative;
}

.price-card .features-list li::before {
    content: '✓';
    color: var(--color-yellow);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.price-card .btn-metal {
    font-size: 1rem;
    padding: 8px 22px;
    width: 100%;
}

.pricing-notes {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.pricing-notes span {
    margin: 0 12px;
}

/* ==========================================================================
   ACCEPTED ITEMS
   ========================================================================== */
.accepted-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--color-slate);
}

.accepted-grid {
    display: grid;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto 20px;
}
.accepted-row-4 {
    grid-template-columns: repeat(4, 1fr);
}
.accepted-row-5 {
    grid-template-columns: repeat(5, 1fr);
}

.accepted-item {
    background: var(--color-dark);
    border-radius: 8px;
    padding: 20px 16px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
}

.accepted-item .item-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.accepted-callout {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 6px 8px;
}

.accepted-callout.warning {
    background: rgba(192, 57, 43, 0.2);
    border: 1px solid #c0392b;
    color: #e74c3c;
}

.accepted-callout.info {
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid var(--color-yellow);
    color: var(--color-yellow);
}

/* ==========================================================================
   ABOUT / WHY CHOOSE US
   ========================================================================== */
.about-section {
    padding: 80px 20px;
    background-color: var(--color-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text .section-label {
    text-align: left;
}

.about-text .section-heading {
    text-align: left;
}

.about-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}

.award-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.award-badges img {
    width: 100px;
    height: auto;
    border-radius: 8px;
}

.about-checklist {
    list-style: none;
    margin-bottom: 0;
}

.about-checklist li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

.about-checklist li::before {
    content: '✓';
    color: var(--color-yellow);
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   SERVICE AREA BANNER
   ========================================================================== */
.area-section {
    padding: 60px 20px;
    text-align: center;
    background: var(--color-yellow);
    color: var(--color-dark);
}

.area-section .section-label {
    color: var(--color-dark);
    opacity: 0.7;
}

.area-section .section-heading {
    color: var(--color-dark);
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.area-tag {
    display: inline-block;
    background: var(--color-dark);
    color: var(--color-yellow);
    font-family: var(--font-header);
    font-size: 1.1rem;
    padding: 8px 20px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

a.area-tag:hover {
    transform: translateY(-2px);
    border-color: var(--color-yellow);
    background: #1e3f3b;
    color: var(--color-yellow);
}

.area-tag.active {
    background: var(--color-yellow);
    color: var(--color-dark);
    border-color: var(--color-yellow);
    font-weight: 700;
}

.area-tag.hq {
    background: var(--color-white);
    color: var(--color-dark);
    font-weight: 700;
}

a.area-tag.hq:hover {
    background: var(--color-yellow);
    color: var(--color-dark);
    border-color: var(--color-yellow);
}

.area-note {
    font-size: 0.9rem;
    color: rgba(24, 51, 49, 0.7);
    margin-bottom: 0;
}

/* ==========================================================================
   TESTIMONIAL SECTION
   ========================================================================== */
.testimonial-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--color-slate);
}

.testimonial-block {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-block .quote-mark {
    font-size: 4rem;
    color: var(--color-yellow);
    line-height: 1;
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

.testimonial-block blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-block .quote-author {
    font-family: var(--font-header);
    font-size: 1.2rem;
    color: var(--color-yellow);
    letter-spacing: 1px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 80px 20px;
    background-color: var(--color-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info .section-label {
    text-align: left;
}

.contact-info .section-heading {
    text-align: left;
}

.contact-phone {
    display: block;
    font-family: var(--font-header);
    font-size: 2.5rem;
    color: var(--color-yellow);
    text-decoration: none;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-phone:hover {
    color: var(--color-white);
}

.contact-details {
    list-style: none;
    margin-bottom: 0;
}

.contact-details li {
    padding: 8px 0;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
}

.contact-details a {
    color: var(--color-yellow);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--color-white);
}

/* Contact form */
.contact-form {
    background: var(--color-slate);
    border-radius: 8px;
    padding: 36px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-family: var(--font-header);
    font-size: 1rem;
    color: var(--color-yellow);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--color-dark);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-yellow);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-submit {
    display: inline-block;
    background: var(--color-yellow);
    color: var(--color-dark);
    font-family: var(--font-header);
    font-size: 1.4rem;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background 0.2s ease, transform 0.1s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
    padding: 60px 20px;
    text-align: center;
    background: var(--color-dark);
    border-top: none;
    border-bottom: none;
    position: relative;
}
.cta-band::before,
.cta-band::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(
        -45deg,
        var(--color-yellow) 0px,
        var(--color-yellow) 6px,
        #1a1a1a 6px,
        #1a1a1a 12px
    );
}
.cta-band::before { top: 0; }
.cta-band::after { bottom: 0; }

.cta-band h2 {
    font-size: 2.8rem;
    color: var(--color-yellow);
    margin-bottom: 10px;
}

.cta-band p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.cta-band .hero-ctas {
    margin-bottom: 0;
}

/* ==========================================================================
   SERVICES PAGE - PAGE HERO
   ========================================================================== */
.page-hero {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background: var(--color-dark);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}
.page-hero > *:not(.page-hero-bg) {
    position: relative;
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(
        -45deg,
        var(--color-yellow),
        var(--color-yellow) 10px,
        #111 10px,
        #111 20px
    );
}

.page-hero h1 {
    color: var(--color-yellow);
    font-size: 4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   SERVICES PAGE - SERVICE ROWS (ALTERNATING)
   ========================================================================== */
.service-rows {
    padding: 60px 0;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px 20px;
}

.service-row:nth-child(even) {
    background: var(--color-slate);
}

.service-row.reversed .service-row-image {
    order: 2;
}

.service-row.reversed .service-row-text {
    order: 1;
}

.service-row-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: 100%;
}

.service-row-text h2 {
    font-size: 2.4rem;
    color: var(--color-yellow);
    margin-bottom: 16px;
}

.service-row-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-row-text .btn-metal {
    font-size: 1.1rem;
    padding: 10px 28px;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list {
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 16px 0;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    gap: 16px;
    transition: color 0.2s ease;
}

.faq-trigger:hover {
    color: var(--color-yellow);
}

.faq-icon {
    flex-shrink: 0;
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--color-yellow);
    transition: transform 0.3s ease;
    font-style: normal;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-body {
    max-height: 500px;
}

.faq-body p {
    padding-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--color-dark);
    padding: 60px 0 20px 0;
    border-top: none;
}

.footer-widgets {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-widget {
    color: var(--color-white);
    width: 100%;
    max-width: 300px;
}

.footer-widget h4 {
    color: var(--color-yellow);
    margin-bottom: 15px;
}

.footer-widget p {
    color: var(--color-white);
}

.footer-widget a {
    color: var(--color-yellow);
    text-decoration: none;
}

.footer-widget a:hover {
    color: var(--color-white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-header);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--color-yellow);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--color-white);
    padding-top: 20px;
}

.footer-bottom p {
    color: var(--color-white);
    margin: 0;
    font-size: 0.9rem;
}

/* ==========================================================================
   FADE-IN ANIMATIONS
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --- Tablet (900px) --- */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-ctas .btn-metal,
    .hero-ctas .btn-outline {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .hero-stat {
        padding: 12px 18px;
    }

    .hero-stat .stat-number {
        font-size: 1.4rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-grid,
    .pricing-row-3,
    .pricing-row-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
        margin: 0 auto;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .about-text p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-row.reversed .service-row-image {
        order: 0;
    }

    .service-row.reversed .service-row-text {
        order: 0;
    }
}

/* --- Small tablet / large phone (660px) --- */
@media (max-width: 660px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-content {
        padding: 40px 16px 30px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .hero-stat {
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
        padding: 12px 20px;
        width: 100%;
    }

    .hero-stat:last-child {
        border-bottom: none;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .pricing-grid,
    .pricing-row-3,
    .pricing-row-4 {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-4px);
    }

    .accepted-grid,
    .accepted-row-4,
    .accepted-row-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-phone {
        font-size: 2rem;
    }

    .contact-form {
        padding: 24px 16px;
    }

    .cta-band h2 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2.8rem;
    }

    .service-row-text h2 {
        font-size: 1.8rem;
    }
}

/* --- Small phone (420px) --- */
@media (max-width: 420px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .hero-ctas .btn-metal,
    .hero-ctas .btn-outline {
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 1.9rem;
    }

    .step-card {
        padding: 30px 16px 24px;
    }

    .service-card {
        padding: 24px 16px;
    }

    .area-tag {
        font-size: 0.95rem;
        padding: 6px 14px;
    }

    .testimonial-block blockquote {
        font-size: 1.1rem;
    }

    .contact-phone {
        font-size: 1.6rem;
    }

    .cta-band h2 {
        font-size: 1.7rem;
    }

    .cta-band .hero-ctas {
        flex-direction: column;
    }

    .cta-band .hero-ctas .btn-metal,
    .cta-band .hero-ctas .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   BLOG HERO
   ========================================================================== */
.blog-hero {
    background: var(--color-dark);
    padding: 64px 20px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.blog-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255,204,0,0.03) 0px, rgba(255,204,0,0.03) 1px,
        transparent 1px, transparent 12px
    );
}
.blog-hero-inner { position: relative; z-index: 1; }
.blog-hero-sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.7);
    max-width: 600px; margin: 0 auto; line-height: 1.75;
}
.hazard-bar {
    width: 60px; height: 4px; margin: 16px auto 20px;
    background: var(--color-yellow);
}

/* ==========================================================================
   BLOG FILTER BAR
   ========================================================================== */
.blog-filter-bar {
    background: #0f2321;
    border-bottom: 1px solid #1e3f3b;
    padding: 16px 0;
}
.blog-filter-inner {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.blog-filter-count {
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.blog-filter-count span { color: var(--color-yellow); font-weight: 700; }
.blog-filter-count em { font-style: italic; color: #fff; }
.blog-search {
    background: var(--color-dark); border: 1px solid #1e3f3b;
    border-radius: 4px; color: #fff;
    font-family: var(--font-body); font-size: 0.9rem;
    padding: 10px 16px; width: 260px; outline: none;
    transition: border-color 0.2s;
}
.blog-search::placeholder { color: rgba(255,255,255,0.3); }
.blog-search:focus { border-color: var(--color-yellow); }

/* ==========================================================================
   BLOG POST CARDS
   ========================================================================== */
.blog-posts-section {
    background: var(--color-dark);
    padding: 56px 20px 80px;
}
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-post-card {
    background: #0f2321;
    border: 1px solid #1e3f3b;
    border-top: 4px solid var(--color-yellow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.blog-card-img-wrap {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.blog-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-post-card:hover .blog-card-img {
    transform: scale(1.04);
}
.blog-card-body { padding: 24px 24px 20px; }
.blog-card-meta {
    display: flex; align-items: center;
    gap: 10px; margin-bottom: 10px;
}
.blog-card-cat {
    display: inline-block;
    background: rgba(255,204,0,0.15);
    border: 1px solid rgba(255,204,0,0.35);
    color: var(--color-yellow);
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 3px 10px;
}
.blog-card-date {
    font-size: 0.78rem; color: rgba(255,255,255,0.45);
}
.blog-card-title {
    font-family: var(--font-header);
    font-size: 1.15rem; font-weight: 600;
    text-transform: uppercase;
    color: #fff; line-height: 1.3;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.blog-post-card:hover .blog-card-title { color: var(--color-yellow); }
.blog-card-excerpt {
    font-size: 0.875rem; color: rgba(255,255,255,0.6);
    line-height: 1.65; margin-bottom: 16px;
}
.blog-card-footer {
    display: flex; align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #1e3f3b;
}
.blog-card-author {
    font-size: 0.75rem; color: rgba(255,255,255,0.4);
    font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase;
}
.blog-card-read-more {
    font-family: var(--font-header);
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--color-yellow);
    transition: opacity 0.2s;
}
.blog-card-read-more:hover { opacity: 0.8; }
.blog-empty { text-align: center; padding: 80px 0; }
.blog-empty h3 {
    font-family: var(--font-header);
    font-size: 1.5rem; color: #fff;
    text-transform: uppercase; margin-bottom: 12px;
}
.blog-empty p { color: rgba(255,255,255,0.5); }

/* ==========================================================================
   ARTICLE / BLOG POST PAGE
   ========================================================================== */
.article-hero { background: #0a1a18; }
.article-hero-img-wrap {
    position: relative;
    max-width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
}
.article-hero-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.article-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(10,26,24,0.7) 100%);
    pointer-events: none;
}
.article-body {
    background: #f4f2ed;
    padding: 48px 20px 32px;
}
.article-container { max-width: 760px; margin: 0 auto; }
.article-meta {
    display: flex; align-items: center;
    gap: 12px; flex-wrap: wrap; margin-bottom: 12px;
}
.article-cat {
    display: inline-block;
    background: rgba(255,204,0,0.2);
    border: 1px solid rgba(255,204,0,0.5);
    color: #8a7020;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 3px 10px;
}
.article-date, .article-author {
    font-size: 0.82rem; color: #666;
}
.article-title {
    font-family: var(--font-header);
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 700; text-transform: uppercase;
    line-height: 1.1; color: var(--color-dark);
    margin-bottom: 8px;
}
.article-accent-bar {
    width: 50px; height: 4px;
    background: var(--color-yellow);
    margin-bottom: 32px;
}
.article-content {
    font-size: 1.05rem; line-height: 1.85;
    color: #2a2a2a;
}
.article-content h2 {
    font-family: var(--font-header);
    font-size: 1.35rem; font-weight: 700;
    text-transform: uppercase;
    color: var(--color-dark);
    margin: 2.5rem 0 0.75rem;
}
.article-content p { margin-bottom: 1.2rem; }
.article-content ul, .article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}
.article-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.article-content a { color: #396767; font-weight: 600; text-decoration: underline; }
.article-content a:hover { color: var(--color-dark); }
.article-content blockquote {
    border-left: 4px solid var(--color-yellow);
    padding: 1rem 1.5rem; margin: 1.5rem 0;
    background: #fff; font-style: italic; color: #555;
}
.article-content img { max-width: 100%; border-radius: 4px; margin: 1.5rem 0; }

/* Prev / Next */
.article-nav {
    display: flex; justify-content: space-between;
    gap: 1.5rem; margin-top: 3rem;
    padding-top: 2rem; border-top: 1px solid #ddd;
}
.article-nav-link {
    display: flex; flex-direction: column;
    gap: 4px; padding: 12px 16px;
    border-radius: 4px; text-decoration: none;
    transition: background 0.2s; flex: 1; min-width: 0;
}
.article-nav-link:hover { background: #fff; }
.article-nav-next { text-align: right; }
.article-nav-label {
    font-size: 0.75rem; font-weight: 700;
    color: #396767; text-transform: uppercase; letter-spacing: 2px;
}
.article-nav-title {
    font-family: var(--font-header);
    font-size: 0.9rem; font-weight: 600;
    color: var(--color-dark); text-transform: uppercase;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.article-nav-placeholder { flex: 1; }
.article-back {
    text-align: center; margin-top: 2.5rem; padding-bottom: 1rem;
}

/* ==========================================================================
   BLOG & ARTICLE RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
    .blog-posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 660px) {
    .blog-posts-grid { grid-template-columns: 1fr; }
    .blog-search { width: 100%; }
    .article-hero-img-wrap { aspect-ratio: 16/9; }
    .article-nav { flex-direction: column; gap: 1rem; }
    .article-nav-next { text-align: left; }
    .article-nav-title {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
}

/* ==========================================================================
   AREA PAGES
   ========================================================================== */

/* Highlight span (yellow text) */
.highlight {
    color: var(--color-yellow);
}

/* Area Hero */
.area-hero {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background: var(--color-dark);
    overflow: hidden;
}

.area-hero .page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.area-hero .container {
    position: relative;
    z-index: 1;
}

.area-hero .section-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.area-hero .section-heading {
    color: var(--color-white);
    font-size: 3.4rem;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.area-hero-sub {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Area Intro */
.area-intro {
    padding: 60px 20px;
    background: var(--color-slate);
}

.area-intro-inner {
    max-width: 760px;
    margin: 0 auto;
}

.area-intro-text h2 {
    font-family: var(--font-header);
    color: var(--color-yellow);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.area-intro-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Area Services / What We Offer */
.area-services {
    padding: 60px 20px;
    background: var(--color-dark);
    text-align: center;
}

.area-services .section-heading {
    color: var(--color-yellow);
}

.area-offer-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: left;
}

.area-offer-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.area-offer-list li:last-child {
    border-bottom: none;
}

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

/* Area Tags Section (on area pages) */
.area-tags-section {
    padding: 60px 20px;
    text-align: center;
    background: var(--color-yellow);
}

.area-tags-section .section-heading {
    color: var(--color-dark);
}

.area-tags-section .area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* Area Page Responsive */
@media (max-width: 660px) {
    .area-hero .section-heading {
        font-size: 2.4rem;
    }

    .area-hero-sub {
        font-size: 1rem;
    }

    .area-intro-text h2 {
        font-size: 1.6rem;
    }

    .area-offer-list li {
        font-size: 1rem;
    }

    .area-cta-wrap {
        flex-direction: column;
        align-items: center;
    }

    .area-cta-wrap .btn-metal,
    .area-cta-wrap .btn-outline {
        width: 100%;
        text-align: center;
    }
}
