/* ===== PROCESS SECTION ===== */
.process {
    background-color: var(--bg-dark);
    padding: 100px 0;
    position: relative;
}

.process__header {
    text-align: center;
    margin-bottom: 80px;
}

.process__header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.process__subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline Styles */
.process__timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.process__timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-green), var(--secondary-green));
    transform: translateX(-50%);
    z-index: 1;
}

.process__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.process__item.animate {
    opacity: 1;
    transform: translateY(0);
}

.process__item:nth-child(odd) {
    flex-direction: row;
}

.process__item:nth-child(even) {
    flex-direction: row-reverse;
}

.process__dot {
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 4px solid var(--bg-dark);
    box-shadow: 0 0 0 4px var(--primary-green);
    transition: all 0.3s ease;
}

.process__dot:hover {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 0 6px var(--primary-green), 0 0 20px rgba(76, 175, 80, 0.5);
}

.process__content {
    width: calc(50% - 60px);
    background: var(--bg-gray);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.process__content:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--primary-green);
}

.process__number {
    display: inline-block;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.process__content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.process__content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.process__features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.process__feature {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-green);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.process__icon {
    width: 60px;
    height: 60px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.process__content:hover .process__icon {
    background: rgba(76, 175, 80, 0.2);
    transform: scale(1.1);
    border-color: var(--primary-green);
}

/* Benefits Grid */
.process__benefits {
    margin-top: 60px;
}

.process__benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.process__benefit-card {
    background: var(--bg-gray);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process__benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process__benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.process__benefit-card:hover::before {
    transform: scaleX(1);
}

.process__benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.process__benefit-card:hover .process__benefit-icon {
    background: rgba(76, 175, 80, 0.2);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-green);
}

.process__benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.process__benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.process__cta {
    text-align: center;
    background: var(--bg-gray);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
}

.process__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(56, 142, 60, 0.1) 100%);
    z-index: 1;
}

.process__cta-content {
    position: relative;
    z-index: 2;
}

.process__cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.process__cta p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .process__item:nth-child(odd),
    .process__item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    
    .process__content {
        width: 80%;
        margin-bottom: 40px;
    }
    
    .process__timeline::before {
        left: 40px;
    }
    
    .process__dot {
        left: 40px;
    }
    
    .process__benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process {
        padding: 60px 0;
    }
    
    .process__header h2 {
        font-size: 2rem;
    }
    
    .process__content {
        width: 90%;
        padding: 30px 20px;
    }
    
    .process__timeline::before {
        left: 20px;
    }
    
    .process__dot {
        left: 20px;
        width: 20px;
        height: 20px;
    }
    
    .process__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process__cta {
        padding: 40px 20px;
    }
    
    .process__cta h3 {
        font-size: 1.5rem;
    }
    
    .process__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .process__cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .process__content {
        width: 95%;
        margin-left: 40px;
    }
    
    .process__timeline::before {
        left: 15px;
    }
    
    .process__dot {
        left: 15px;
    }
    
    .process__features {
        justify-content: center;
    }
}

/* Animation keyframes */
@keyframes processFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes processDotPulse {
    0%, 100% {
        box-shadow: 0 0 0 4px var(--primary-green);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(76, 175, 80, 0.3);
    }
}

.process__dot.pulse {
    animation: processDotPulse 2s infinite;
}

/* Print styles */
@media print {
    .process__timeline::before {
        background: #000 !important;
    }
    
    .process__dot {
        background: #000 !important;
        border-color: #fff !important;
    }
    
    .process__content {
        border: 1px solid #000 !important;
        box-shadow: none !important;
    }
}