/* Work Process Styles */
.work-process {
    background: linear-gradient(135deg, #faf5f3 0%, #fefefe 100%);
    position: relative;
}

.work-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="workGrad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23EB7B60;stop-opacity:0.05"/><stop offset="100%" style="stop-color:%23EB7B60;stop-opacity:0"/></radialGradient></defs><circle cx="150" cy="150" r="200" fill="url(%23workGrad)"/><circle cx="850" cy="350" r="150" fill="url(%23workGrad)"/><circle cx="300" cy="700" r="180" fill="url(%23workGrad)"/><circle cx="750" cy="850" r="120" fill="url(%23workGrad)"/></svg>');
    z-index: 0;
}

.work-process .container {
    position: relative;
    z-index: 1;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.work-item {
    background-color: var(--background-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.work-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.work-item:hover::before {
    transform: translateX(0);
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}


.work-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.work-item:hover .work-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: var(--shadow-lg);
}

.work-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.work-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stagger animation for work items */
.work-item:nth-child(1) {
    animation-delay: 0.1s;
}

.work-item:nth-child(2) {
    animation-delay: 0.2s;
}

.work-item:nth-child(3) {
    animation-delay: 0.3s;
}

.work-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
    .work-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .work-item {
        padding: 2rem;
    }

    .work-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .work-item h3 {
        font-size: 1.2rem;
    }
}
