/* ============================================
   INDIVIDUAL SERVICE HERO SECTION
   ============================================ */

/* Desktop Individual Service Hero */
.deluxe-construction-individual-service-hero {
    background-image: url('../images/individual-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.deluxe-construction-individual-service-hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.deluxe-construction-individual-service-hero-container {
    max-width: 900px;
    text-align: center;
    color: white;
}

.deluxe-construction-individual-service-hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.deluxe-construction-individual-service-hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}

/* Tablet Individual Service Hero */
@media (max-width: 768px) {
    .deluxe-construction-individual-service-hero {
        min-height: 300px;
    }
    
    .deluxe-construction-individual-service-hero-overlay {
        min-height: 300px;
        padding: 50px 20px;
    }
    
    .deluxe-construction-individual-service-hero-title {
        font-size: 38px;
    }
    
    .deluxe-construction-individual-service-hero-subtitle {
        font-size: 19px;
    }
}

/* Mobile Individual Service Hero */
@media (max-width: 480px) {
    .deluxe-construction-individual-service-hero {
        min-height: 250px;
        background-attachment: scroll;
    }
    
    .deluxe-construction-individual-service-hero-overlay {
        min-height: 250px;
        padding: 40px 20px;
    }
    
    .deluxe-construction-individual-service-hero-title {
        font-size: 30px;
        margin-bottom: 12px;
    }
    
    .deluxe-construction-individual-service-hero-subtitle {
        font-size: 17px;
    }
}