/* Process Section Styles */
.process {
    padding: 80px 0;
    background: white;
    position: relative;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
}

.process h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
    background: white;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff6b35;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.step p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Process Flow Line */
.process-flow {
    position: relative;
    margin: 60px 0;
}

.flow-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.flow-step {
    background: white;
    border: 3px solid #e9ecef;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #999;
    transition: all 0.3s ease;
}

.flow-step.active {
    border-color: #ff6b35;
    background: #ff6b35;
    color: white;
}

.flow-step.completed {
    border-color: #28a745;
    background: #28a745;
    color: white;
}

/* Process Details Modal */
.process-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.process-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    color: #2c3e50;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ff6b35;
}

.modal-step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ff6b35;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.modal-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.modal-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.modal-details h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.modal-details ul {
    list-style: none;
    padding: 0;
}

.modal-details li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    color: #666;
}

.modal-details li:last-child {
    border-bottom: none;
}

.modal-details li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

/* Process CTA */
.process-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.process-cta h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-cta p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.process-cta-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.process-cta-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .process {
        padding: 60px 0;
    }
    
    .process h2 {
        font-size: 2.2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step {
        padding: 30px 25px;
    }
    
    .flow-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .flow-line {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
    
    .process-cta {
        padding: 30px 20px;
    }
    
    .process-modal-content {
        padding: 30px 20px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .process h2 {
        font-size: 1.8rem;
    }
    
    .step {
        padding: 25px 20px;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    .process-cta h3 {
        font-size: 1.5rem;
    }
}

/* Animation Classes */
.fade-in-process {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInProcess 0.6s ease forwards;
}

@keyframes fadeInProcess {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-animate {
    animation: stepPulse 0.6s ease;
}

@keyframes stepPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}