/* --- HAULING SERVICE: INDUSTRIAL THEME --- */

body.hauling-page {
    background: #3b0202; /* Darker, more industrial */
    color: #dfdcdc;
    margin: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: auto;
    max-width: 1200px;
    margin: 0 auto;
}

/* 1. BACK BUTTON */
.back-btn {
    position: fixed;
    top: 100px;
    left: 40px;
    z-index: 990;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border: 1px solid rgba(255, 205, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.back-btn:hover {
    color: #ffcd00;
    border-color: #ffcd00;
    padding-left: 20px;
}

/* 2. HERO SECTION */
.hauling-hero {
    position: relative;
    height: auto;
    width: 100%;
    margin-top: 0;
    overflow: hidden;
    background: #3b0202;
}

.hauling-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: grayscale(20%) contrast(1.1);
}

.hauling-hero .overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #3b0202 5%, rgba(178, 2, 2, 0.4) 50%, transparent 100%);
}

.hero-content {
    position: absolute;
    bottom: 80px;
    left: 5%;
    z-index: 10;
    border-left: 6px solid #ffcd00;
    padding-left: 7px;
}

.hero-content .category-label {
    color: #edece6;
    font-weight: 100;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1px;
}

.hero-content h1 {
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 00;
    margin: 0;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
}

/* 3. CONTENT AREA */
.hauling-content {
    padding: 100px 0;
}

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

.overview-text h2 {
    font-size: 70px;
    color: #fff;
    margin-top: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.overview-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100px;
    height: 2px;
    background: #f0efed;
    line-height: normal;
}

.overview-text p {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: -2px;
    text-align: justify;
}

/* 4. FLEET STATS CARD */
.fleet-stats {
    background: #3f3f3f;
    border: 1px solid #333;
    padding: 40px;
    position: relative;
    box-shadow: 15px 15px 0px rgba(255, 205, 0, 0.1);
}

.fleet-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e9be3d;
}

.fleet-stats h3 {
    color: #e7e5de;
    font-size: 18px;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: justify;
}

.stat-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px dashed #444;
    text-align: justify;
}

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

.stat-item span.label {
    font-weight: 100;
    color: #ddd;
}

.stat-item span.value {
    color: #fff;
    font-weight: bold;
}

/* 5. SPLIT SECTION (TECH) */
.tech-split {
    padding: 100px 0;
    background: #3b0202;
}

.split-wrap {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    filter: contrast(1.1);
    box-shadow: 0 20px 30px rgba(0,0,0,0.5);
    border-bottom: 3px solid #ffcd00;
}

.tech-info .badge {
    display: inline-block;
    background: rgba(255, 205, 0, 0.1);
    color: #e9e7e2;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 205, 0, 0.3);
}

.tech-info h2 {
    font-size: 32px;
    margin-top: 0;
    color: #fff;
}

.tech-info p {
    color: #aaa;
    text-align: justify;
}

/* 6. RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .overview-grid, .split-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tech-split {
        padding: 50px 0 100px 0;
    }
}

@media (max-width: 768px) {
    .hauling-hero {
        height: 50vh;
        min-height: 320px;
        margin-top: 50px;
    }

    .back-btn {
        top: 80px;
        left: 20px;
        padding: 8px 12px;
        font-size: 10px;
    }

    .hero-content {
        bottom: 30px;
        left: 5%;
        border-left-width: 4px;
    }

    .hero-content h1 {
        font-size: 25px;
    }

    .hauling-content, .tech-split {
        padding: 60px 0;
    }

    .fleet-stats {
        padding: 25px;
        box-shadow: 8px 8px 0px rgba(255, 205, 0, 0.1);
    }

    .tech-info h2, .overview-text h2 {
        font-size: 16px;
    }

    .tech-image img {
        height: 300px;
    }
}
