/* ===== SERVICE PAGE STYLES ===== */

/* Service Header Icon - uses header from project.css */
.service-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.service-icon-large svg {
    width: 45px;
    height: 45px;
}

/* Service Projects Section */
.service-projects {
    padding: 100px 80px;
    background: var(--color-white);
}

.service-projects .section-title {
    margin-bottom: 50px;
}

.service-projects-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-project-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.service-project-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.service-project-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.service-project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-project-item:hover .service-project-overlay {
    opacity: 1;
}

.service-project-overlay h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-projects {
        padding: 80px 30px;
    }

    .service-projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-projects {
        padding: 60px 30px;
    }

    .service-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .service-icon-large svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .service-projects-grid {
        grid-template-columns: 1fr;
    }
}