/* Process Section - Modern Grid Design */
.process {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a1a24 50%, #0f0f15 100%);
    color: var(--text-light);
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 77, 109, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 10, 15, 0.7) 0%,
            rgba(26, 26, 36, 0.5) 50%,
            rgba(15, 15, 21, 0.7) 100%);
    z-index: 1;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process .section-header {
    text-align: center;
    margin-bottom: 5rem;
    margin-top: 2rem;
}

.process .section-title {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.9);
    font-weight: 700;
}

.process .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.7;
}

.process-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Modern Grid Layout */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

/* Process Step Cards */
.process-step {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 180, 216, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 180, 216, 0.2);
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.04);
}

/* Icon Container */
.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(0, 180, 216, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 2rem;
    box-shadow: 0 8px 32px rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.process-step:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 48px rgba(0, 180, 216, 0.3);
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.3), rgba(0, 180, 216, 0.1));
}

.process-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-right: 100px;
}

.process-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: block;
    text-transform: uppercase;
}

.process-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

.process-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: left;
}

.process-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.process-details li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.25rem 0;
}

.process-details li:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.process-details li i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .process .section-title {
        font-size: 2.3rem;
    }
    
    .process .section-subtitle {
        font-size: 1.05rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .process-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .process {
        padding: 4rem 0;
    }
    
    .process .section-header {
        margin-bottom: 3rem;
    }
    
    .process .section-title {
        font-size: 2rem;
    }
    
    .process .section-subtitle {
        font-size: 1rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .process-title {
        font-size: 1.25rem;
    }
    
    .process-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .process {
        padding: 3rem 0;
    }
    
    .process .section-header {
        margin-bottom: 2.5rem;
    }
    
    .process .section-title {
        font-size: 1.8rem;
    }
    
    .process .section-subtitle {
        font-size: 0.95rem;
    }
    
    .process-step {
        padding: 1.75rem 1.25rem;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 16px;
    }
    
    .process-number {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .process-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .process-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .process-details li {
        font-size: 0.8rem;
    }
}
    
    .process-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
.process-details li {
    font-size: 0.85rem;
}
