.application-section {
    padding: 4rem 0;
    background: white;
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.125rem;
    color: #64748B;
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #E2E8F0;
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s;
    border: 3px solid #E2E8F0;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, var(--silver) 0%, var(--platinum) 100%);
    color: var(--navy-blue);
    border-color: var(--silver);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}

.progress-step.completed .step-circle {
    background: #10B981;
    color: white;
    border-color: #10B981;
}

.step-label {
    font-size: 0.875rem;
    color: #64748B;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    white-space: nowrap;
}

.progress-step.active .step-label {
    color: var(--navy-blue);
}

.progress-line {
    width: 80px;
    height: 3px;
    background: #E2E8F0;
    margin: 0 1rem;
    margin-bottom: 1.5rem;
}

.progress-step.completed ~ .progress-line {
    background: #10B981;
}

.application-form {
    background: #F8FAFC;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease-in;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-title {
    font-size: 1.75rem;
    color: var(--navy-blue);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy-blue);
    font-family: 'Lato', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--silver);
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94A3B8;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.form-actions .btn {
    min-width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .application-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-intro h2 {
        font-size: 2rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
        min-width: auto;
    }

    .progress-bar {
        padding: 1.5rem 0;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .progress-line {
        width: 40px;
        margin: 0 0.5rem;
    }
}
