/* Service-specific Hero Backgrounds */

/* FTL Service Hero Background */
.hero-ftl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/img_ftl.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: sepia(0.2) contrast(1.1) brightness(0.85);
}

/* LTL Service Hero Background */
.hero-ltl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/img_ltl.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: sepia(0.2) contrast(1.1) brightness(0.85);
}

/* Installation Service Hero Background */
.hero-installation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/img_installation.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: sepia(0.2) contrast(1.1) brightness(0.85);
}

/* Service Hero Overlay (darker for better text readability) */
.hero-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.45));
    z-index: 2;
}

