.apply-page {
    padding: calc(var(--header-height) + 48px) 0 90px;
    background: #f2f6fc;
    min-height: 100vh;
}

.apply-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Left: Info ─────────────────────────────────────────── */
.apply-info {
    padding: 24px 0 0 20px;
}

.apply-info-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0b57d0;
    background: rgba(11, 87, 208, 0.08);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.apply-info-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #001d35;
    line-height: 1.1;
    margin: 0 0 18px;
}

.apply-info-desc {
    font-size: 1rem;
    color: #5f6368;
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 440px;
}

.apply-info-branches {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.apply-branch {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 18px 20px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.apply-branch:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border-color: #c5e1f5;
}

.apply-branch-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: #0b57d0;
    border-radius: 999px;
    padding: 3px 10px;
    margin-bottom: 10px;
}

.apply-branch p {
    font-size: 0.92rem;
    color: #3c4043;
    line-height: 1.5;
    margin: 0 0 8px;
}

.apply-branch a {
    font-size: 0.88rem;
    color: #0b57d0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color 0.2s;
}

.apply-branch a:hover {
    color: #174ea6;
}

.apply-branch a i {
    font-size: 0.82rem;
}

.apply-info-hours {
    font-size: 0.88rem;
    color: #5f6368;
    display: flex;
    align-items: center;
    gap: 8px;
}

.apply-info-hours i {
    color: #0b57d0;
}

/* ── Right: Form ────────────────────────────────────────── */
.apply-form {
    background: #ffffff;
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 8px 32px rgba(0, 0, 0, 0.10);
    border: 1px solid #e8eaed;
}

.apply-form-title {
    margin: 0 0 28px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #001d35;
}

.apply-field {
    margin-bottom: 20px;
}

.apply-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #3c4043;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.apply-field input,
.apply-field textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 0.94rem;
    font-family: inherit;
    color: #202124;
    background: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
}

.apply-field input:focus,
.apply-field textarea:focus {
    border-color: #0b57d0;
    box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.15);
    background: #ffffff;
}

.apply-field textarea {
    resize: vertical;
    min-height: 120px;
}

.apply-field input::placeholder,
.apply-field textarea::placeholder {
    color: #9aa0a6;
}

.apply-field-status {
    margin-bottom: 20px;
    min-height: 20px;
}

.apply-field-status span {
    font-size: 0.88rem;
    font-weight: 500;
}

.apply-field-status .is-success { color: #188038; }
.apply-field-status .is-error   { color: #c5221f; }

.apply-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    background: #0b57d0;
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.apply-submit:hover {
    background: #174ea6;
    box-shadow: 0 2px 10px rgba(11, 87, 208, 0.35);
    transform: translateY(-1px);
}

.apply-submit:active {
    transform: translateY(0);
    box-shadow: none;
}

.apply-submit:disabled {
    background: #a8c7fa;
    cursor: wait;
    transform: none;
    box-shadow: none;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .apply-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .apply-info {
        padding: 20px 0 0;
    }

    .apply-info-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .apply-page {
        padding: calc(var(--header-height) + 24px) 0 60px;
    }

    .apply-info {
        padding: 12px 0 0;
    }

    .apply-form {
        padding: 24px 20px;
    }

    .apply-branch {
        padding: 14px 16px;
    }
}