/* ============================================
   SERVICE OVERVIEW SECTION
   ============================================ */

/* Desktop Service Overview */
.deluxe-construction-individual-service-overview {
    padding: 100px 0;
    background-color: #ffffff;
}

.deluxe-construction-individual-service-overview-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.deluxe-construction-individual-service-overview-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.deluxe-construction-individual-service-overview-title {
    font-size: 46px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.deluxe-construction-individual-service-overview-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #d2b08b;
    border-radius: 2px;
}

.deluxe-construction-individual-service-overview-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.deluxe-construction-individual-service-overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.deluxe-construction-individual-service-overview-stat {
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.deluxe-construction-individual-service-overview-stat:hover {
    border-color: #d2b08b;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.deluxe-construction-individual-service-overview-stat i {
    font-size: 36px;
    color: #d2b08b;
}

.deluxe-construction-individual-service-overview-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #333;
}

.deluxe-construction-individual-service-overview-stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deluxe-construction-individual-service-overview-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deluxe-construction-individual-service-overview-image img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Tablet Service Overview */
@media (max-width: 768px) {
    .deluxe-construction-individual-service-overview {
        padding: 80px 0;
    }
    
    .deluxe-construction-individual-service-overview-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }
    
    .deluxe-construction-individual-service-overview-title {
        font-size: 36px;
    }
    
    .deluxe-construction-individual-service-overview-text {
        font-size: 17px;
    }
    
    .deluxe-construction-individual-service-overview-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .deluxe-construction-individual-service-overview-stat {
        padding: 25px 15px;
    }
    
    .deluxe-construction-individual-service-overview-stat i {
        font-size: 30px;
    }
    
    .deluxe-construction-individual-service-overview-stat-number {
        font-size: 28px;
    }
    
    .deluxe-construction-individual-service-overview-stat-label {
        font-size: 12px;
    }
    
    /* Image at bottom */
    .deluxe-construction-individual-service-overview-content {
        order: 1;
    }
    
    .deluxe-construction-individual-service-overview-image {
        order: 2;
    }
}

/* Mobile Service Overview */
@media (max-width: 480px) {
    .deluxe-construction-individual-service-overview {
        padding: 60px 0;
    }
    
    .deluxe-construction-individual-service-overview-container {
        gap: 40px;
        padding: 0 20px;
    }
    
    .deluxe-construction-individual-service-overview-title {
        font-size: 28px;
    }
    
    .deluxe-construction-individual-service-overview-text {
        font-size: 16px;
    }
    
    .deluxe-construction-individual-service-overview-stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .deluxe-construction-individual-service-overview-stat {
        padding: 25px 20px;
    }
    
    .deluxe-construction-individual-service-overview-image img {
        max-height: 350px;
    }
}