/* 
  PROCESS/TIMELINE SECTION STYLES
  Display 4-step process with icons and descriptions
*/

/* Process Section */
.process-section {
    padding: 4rem 1rem;
    background: var(--white, #FFFFFF);
}

.process-section h2 {
    text-align: center;
    color: var(--primary-color, #2D3047);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-section > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light, #575760);
    line-height: 1.8;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Process Item */
.process-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--background-alt, #f7f8f9);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Process Number */
.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-color, #FF9F1C);
    color: var(--primary-color, #2D3047);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-display, 'Playfair Display', serif);
}

/* Process Title */
.process-item h3 {
    color: var(--primary-color, #2D3047);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Process Description */
.process-item p {
    color: var(--text-light, #575760);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-section {
        padding: 3rem 1rem;
    }
    
    .process-section h2 {
        font-size: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-item {
        padding: 1.5rem 1rem;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .process-item h3 {
        font-size: 1.25rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .process-item {
        transition: none;
    }
    
    .process-item:hover {
        transform: none;
    }
}

