/* --- INDUSTRIAL SERVICES OVERHAUL --- */
.lfpnd-services-section {
    padding: 120px 0; /* Match Hero/Contact padding */
    background: #001C41; /* Brand Navy */
    color: #ffffff;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.services-title {
    text-align: center;
    margin-bottom: 80px;
    font-size: 60px; /* Heavy Industrial Weight */
    font-weight: 950;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 0.9;
}

.services-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 40px; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-block {
    background: rgba(255, 255, 255, 0.04); /* Subtle transparent texture */
    padding: 50px;
    border-radius: 0; /* Sharp edges only */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-block:hover {
    border-color: #fdf2b0;
    background: rgba(255, 255, 255, 0.06);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 3px solid #fdf2b0; /* Thicker accent line */
    padding-bottom: 15px;
}

.service-header i {
    font-size: 32px;
    color: #fdf2b0; /* Icons match accent color */
}

.service-block h3 {
    margin: 0;
    font-size: 28px;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
}

.lfpnd-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lfpnd-list li {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #ffffff;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 15px;
}

.lfpnd-list li i {
    color: #fdf2b0; /* Unified yellow accent for checks */
    font-size: 14px;
}

/* Mobile Tweak */
@media (max-width: 992px) {
    .lfpnd-services-section { padding: 80px 0; }
    .services-title { font-size: 45px; }
    .service-block { padding: 30px; }
}