/* ===================================
   MODERN PROCESS SECTION - Elegant Step-by-Step Design
   =================================== */

.process-section-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.process-section-modern::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(214, 0, 156, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.process-section-modern::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 151, 192, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Process Header */
.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.section-label-process {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d6009c;
    margin-bottom: 1rem;
    padding: 0.5rem 1.25rem;
    background: rgba(214, 0, 156, 0.08);
    border-radius: 50px;
}

.process-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 1.125rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* Process Steps Wrapper */
.process-steps-wrapper {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

/* Process Step Card */
.process-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    grid-column: span 1;
}

.process-step:nth-child(1) {
    grid-column: 1 / 2;
}

.process-step:nth-child(3) {
    grid-column: 3 / 4;
}

.process-step:nth-child(5) {
    grid-column: 5 / 6;
}

.process-step:nth-child(7) {
    grid-column: 7 / 8;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(214, 0, 156, 0.15);
    border-color: rgba(214, 0, 156, 0.2);
}

/* Step Icon Wrapper */
.step-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d6009c 0%, #b8007d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(214, 0, 156, 0.25);
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.step-icon svg {
    stroke: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(214, 0, 156, 0.35);
}

.step-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: #d6009c;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

/* Step Content */
.step-content {
    text-align: center;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.step-description {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Process Connector Line */
.process-connector {
    grid-column: span 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(214, 0, 156, 0.3) 0%, rgba(214, 0, 156, 0.6) 50%, rgba(214, 0, 156, 0.3) 100%);
    position: relative;
    margin: 0 -0.5rem;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid rgba(214, 0, 156, 0.6);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.process-connector:nth-child(2) {
    grid-column: 2 / 3;
}

.process-connector:nth-child(4) {
    grid-column: 4 / 5;
}

.process-connector:nth-child(6) {
    grid-column: 6 / 7;
}

/* Process CTA */
.process-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.process-cta-btn {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(214, 0, 156, 0.25);
    transition: all 0.3s ease;
}

.process-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(214, 0, 156, 0.35);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-steps-wrapper {
        max-width: 100%;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .step-title {
        font-size: 1.125rem;
    }
    
    .step-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 1024px) {
    .process-section-modern {
        padding: 5rem 0;
    }
    
    .process-title {
        font-size: 2.25rem;
    }
    
    .process-subtitle {
        font-size: 1rem;
    }
    
    .process-steps-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-step {
        grid-column: span 1 !important;
    }
    
    .process-step:nth-child(1),
    .process-step:nth-child(3),
    .process-step:nth-child(5),
    .process-step:nth-child(7) {
        grid-column: span 1 !important;
    }
    
    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-section-modern {
        padding: 4rem 0;
    }
    
    .process-header {
        margin-bottom: 3rem;
    }
    
    .process-title {
        font-size: 2rem;
    }
    
    .process-subtitle {
        font-size: 0.9375rem;
    }
    
    .process-steps-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .step-icon {
        width: 65px;
        height: 65px;
    }
    
    .step-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .process-cta {
        margin-top: 3rem;
    }
    
    .process-cta-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .process-section-modern {
        padding: 3rem 0;
    }
    
    .section-label-process {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1.2px;
    }
    
    .process-title {
        font-size: 1.75rem;
    }
    
    .process-subtitle {
        font-size: 0.875rem;
    }
    
    .process-step {
        padding: 1.75rem 1.25rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .step-number {
        font-size: 0.8125rem;
    }
    
    .step-title {
        font-size: 1.125rem;
    }
    
    .step-description {
        font-size: 0.875rem;
    }
    
    .process-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 320px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .process-step,
    .step-icon,
    .process-cta-btn {
        animation: none;
        transition: none;
    }
    
    .process-step:hover {
        transform: none;
    }
    
    .process-step:hover .step-icon {
        transform: none;
    }
}
