/* Process Section */
.process {
    padding: 6em 2em;
    background-color: var(--color-white);
}

.process .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5em;
}

.process .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 3em;
}

/* Steps Layout */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: var(--g-gap);
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Step */
.process-step {
    flex: 1 1 180px;
    text-align: center;
    padding: 2em 1em;
    background-color: var(--color-slot-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.process-step:nth-child(1) {
    animation-delay: 0.3s;
}

.process-step:nth-child(2) {
    animation-delay: 0.5s;
}

.process-step:nth-child(3) {
    animation-delay: 0.7s;
}

.process-step:nth-child(4) {
    animation-delay: 0.9s;
}

.process-step:nth-child(5) {
    animation-delay: 1.1s;
}

.process-step:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Step Icon */
.step-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--color-highlight);
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1em;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Step Title */
.process-step h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.5em;
}

/* Step Description */
.process-step p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        flex: 1 1 80%;
        margin-bottom: 1.5em;
    }
}

@media screen and (max-width: 576px) {
    .process .section-title {
        font-size: 2rem;
    }

    .process .section-subtitle {
        font-size: 1rem;
    }

    .process-step h3 {
        font-size: 1.1rem;
    }

    .process-step p {
        font-size: 0.95rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.2rem;
    }
}