/* =============================
   HERO SECTION (hero-split)
   ============================= */
.hero.hero-split {
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
    box-sizing: border-box;
}

.hero-split-content {
    flex: 1 1 0;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #a32b20;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.hero-badge i {
    color: #ffd700;
}

.hero-title {
    margin-bottom: 1rem;
    line-height: 1.1;
}
.hero-title-main {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fffbe7;
    letter-spacing: -1px;
}
.hero-title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffd700;
    margin-top: 0.2rem;
}
.hero-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 90%;
}
.btn-hero {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    border-radius: 2rem;
    font-weight: 700;
    margin-top: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.hero-split-image {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.truck-image-small {
    width: 98%;
    margin: 0px auto;
    max-width: 90vw;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.25));   
    background: rgba(255,255,255,0.03);
    border-radius: 1.5rem;
    padding: 0.5rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero.hero-split {
        flex-direction: column;
        padding: 2.5rem 1rem 1.5rem 1rem;
        min-height: 60vh;
        text-align: center;
    }
    .hero-split-content, .hero-split-image {
        max-width: 100%;
        align-items: center;
        justify-content: center;
    }
    .hero-split-content {
        align-items: center;
    }
    .hero-title-main {
        font-size: 2.2rem;
    }
    .hero-title-sub {
        font-size: 1.1rem;
    }
    .truck-image-small {
        margin-top: 1.5rem;
    }
}
@media (max-width: 600px) {
    .hero.hero-split {
        min-height: 50vh;
        padding: 1.5rem 0.5rem;
    }
    .hero-title-main {
        font-size: 1.5rem;
    }
    .hero-title-sub {
        font-size: 1rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .truck-image-small {
        padding: 0.2rem;
    }
    .btn-hero {
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
    }
} 

.hero-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-home {
    background: linear-gradient(135deg, rgba(163, 43, 32, 0.9) 0%, rgba(110, 25, 17, 0.50) 100%), url(../img/home.jpg) no-repeat center center;
    
}

.hero-about {
    background: linear-gradient(135deg, rgba(163, 43, 32, 0.9) 0%, rgba(110, 25, 17, 0.50) 100%), url(../img/about.jpg) no-repeat center center;
    
}

.hero-services {
    background: linear-gradient(135deg, rgba(163, 43, 32, 0.9) 0%, rgba(110, 25, 17, 0.50) 100%), url(../img/services.jpg) no-repeat center center;
    
}

.hero-blog {
    background: linear-gradient(135deg, rgba(163, 43, 32, 0.9) 0%, rgba(110, 25, 17, 0.50) 100%), url(../img/blog.jpg) no-repeat center center;
    
}

.hero-contact { 
    background: linear-gradient(135deg, rgba(163, 43, 32, 0.9) 0%, rgba(110, 25, 17, 0.50) 100%), url(../img/contact.jpg) no-repeat center center;
    
}

.hero-features {
    background: linear-gradient(135deg, rgba(163, 43, 32, 0.9) 0%, rgba(110, 25, 17, 0.50) 100%), url(../img/features.jpg) no-repeat center center;
}