/* Materials and Services Section */
.materials-services-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.materials-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.materials-services-title {
    text-align: center;
    margin-bottom: 60px;
}

.materials-services-title h2 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.materials-services-title .highlight {
    color: #DE5700;
}

.materials-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(222, 87, 0, 0.15);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 60px;
    height: auto;
}

.service-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.service-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .materials-services-container {
        padding: 0 30px;
    }

    .materials-services-title h2 {
        font-size: 36px;
    }

    .materials-services-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .materials-services-section {
        padding: 60px 0;
    }

    .materials-services-container {
        padding: 0 20px;
    }

    .materials-services-title h2 {
        font-size: 32px;
    }

    .materials-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .service-item {
        padding: 30px 20px;
    }

    .service-icon svg {
        width: 50px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .materials-services-section {
        padding: 50px 0;
    }

    .materials-services-title {
        margin-bottom: 40px;
    }

    .materials-services-title h2 {
        font-size: 28px;
    }

    .materials-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .materials-services-title h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-content p {
        font-size: 13px;
    }
}
