/* Process Section Styles */
.process-section {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.process-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-timeline {
    position: relative;
    margin-top: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    transform: translateX(-50%);
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step-content {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step:nth-child(odd) .process-step-content {
    margin-right: 2rem;
}

.process-step:nth-child(even) .process-step-content {
    margin-left: 2rem;
}

.process-step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.process-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .process-step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.process-step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.process-step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.process-step-description {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-section {
        padding: 4rem 0;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 4rem;
    }

    .process-step:nth-child(odd) .process-step-content,
    .process-step:nth-child(even) .process-step-content {
        margin: 0;
        width: 100%;
    }

    .process-step-number {
        position: absolute;
        left: -25px;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .process-step-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .process-container {
        padding: 0 1rem;
    }

    .process-step {
        padding-left: 3rem;
    }

    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        left: -20px;
    }

    .process-step-content {
        padding: 1rem;
    }

    .process-step-title {
        font-size: 1.2rem;
    }
}
