/* Project Process Section Styles */
.project-process-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 60px 0;
    margin-top: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary-color) 10%,
        var(--primary-color) 90%,
        transparent
    );
}

/* Process Step */
.process-step {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.process-step.animated {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(odd) {
    flex-direction: row-reverse;
}

/* Step Number */
.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 0 8px var(--white);
}

/* Step Content */
.step-content {
    width: calc(50% - 50px);
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:nth-child(odd) .step-content {
    margin-right: 50px;
}

.process-step:nth-child(even) .step-content {
    margin-left: 50px;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Step Icon */
.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.step-content:hover .step-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
    transition: all 0.6s ease;
}

/* Step Title */
.step-title {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Step Description */
.step-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Step Features */
.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6B00'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Process CTA */
.process-cta {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border-radius: 10px;
    color: var(--white);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Background Elements */
.process-bg-element-1,
.process-bg-element-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
}

.process-bg-element-1 {
    top: -150px;
    left: -150px;
}

.process-bg-element-2 {
    bottom: -150px;
    right: -150px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .project-process-section {
        padding: 80px 0;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        flex-direction: row !important;
        margin-left: 30px;
    }

    .step-number {
        left: 0;
        transform: translateX(-50%);
    }

    .step-content {
        width: calc(100% - 60px);
        margin: 0 !important;
        margin-left: 60px !important;
    }
}

@media (max-width: 767.98px) {
    .project-process-section {
        padding: 60px 0;
    }

    .step-content {
        padding: 20px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .process-cta {
        padding: 30px 20px;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .process-step {
        margin-bottom: 50px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .process-timeline::before {
        left: 22px;
    }

    .process-step {
        margin-left: 22px;
    }

    .step-content {
        margin-left: 45px !important;
    }

    .process-bg-element-1,
    .process-bg-element-2 {
        display: none;
    }
}

/* Animation Delay Classes */
.process-step[data-delay="100"] { transition-delay: 0.1s; }
.process-step[data-delay="200"] { transition-delay: 0.2s; }
.process-step[data-delay="300"] { transition-delay: 0.3s; }
.process-step[data-delay="400"] { transition-delay: 0.4s; }
.process-step[data-delay="500"] { transition-delay: 0.5s; }