/* ============================================================
   Career Page Styles
   ============================================================ */

/* --- Section Layout --- */
.career-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    z-index: 1;
}

.career-section__intro {
    text-align: center;
    margin: 0 auto 30px;
}

.career-section__intro-text {
    font-size: 17px;
    color: #000;
    line-height: 1.8;
    margin-top: 16px;
}

/* --- Image Column --- */
.career-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    height: 100%;
    min-height: 560px;
}

.career-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.7s ease;
}

.career-image-wrapper:hover .career-image {
    transform: scale(1.05);
}

/* Gradient overlay at bottom */
.career-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 35px 30px;
    background: linear-gradient(to top, rgba(5, 23, 61, 0.92) 0%, rgba(5, 23, 61, 0) 100%);
    z-index: 2;
}

.career-image-overlay h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.career-image-overlay p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.80);
    margin: 0;
    line-height: 1.6;
}

/* Floating feature badges on left-image */
.career-badges {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
    z-index: 3;
}

.career-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: fit-content;
    transition: transform 0.3s ease;
}

.career-badge:hover {
    transform: translateX(6px);
}

.career-badge i {
    color: var(--SAS-base);
    font-size: 15px;
}

/* --- Form Wrapper --- */
.career-form-wrapper {
    background: #ffffff;
    padding: 55px 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.career-form-wrapper .section-title__title {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.career-form-wrapper__subtitle {
    color: #000;
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 0;
}

/* --- Form Inputs --- */
.career-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.career-label {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.3px;
    margin-bottom: 0;
}

.career-label i {
    color: var(--SAS-base);
    margin-right: 4px;
}

.career-label__hint {
    font-weight: 400;
    color: #000;
    font-size: 12px;
    margin-left: 4px;
}

.required {
    color: var(--SAS-base);
}

.career-input {
    border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px !important;
    height: 54px;
    background: #fbfcfd !important;
    font-size: 14px;
    color: #333;
    padding: 0 18px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.career-input:focus {
    border-color: var(--SAS-base) !important;
    box-shadow: 0 0 0 4px rgba(222, 33, 39, 0.08) !important;
    background: #ffffff !important;
    outline: none;
}

.career-textarea {
    height: auto !important;
    padding: 14px 18px !important;
    resize: vertical;
    min-height: 120px;
}

/* --- File Upload Drop Zone --- */
.career-file-upload {
    position: relative;
    border: 2px dashed rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    background: #fbfcfd;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.career-file-upload:hover,
.career-file-upload.drag-over {
    border-color: var(--SAS-base);
    background: rgba(222, 33, 39, 0.03);
}

.career-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.career-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    cursor: pointer;
    text-align: center;
    margin: 0;
}

.career-file-icon {
    font-size: 32px;
    color: var(--SAS-base);
    margin-bottom: 10px;
    opacity: 0.7;
}

.career-file-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.career-file-name {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 6px;
    font-style: italic;
}

/* --- Submit Button --- */
.career-submit-btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
}

.career-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(222, 33, 39, 0.35);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .career-image-wrapper {
        min-height: 400px;
        margin-bottom: 10px;
    }

    .career-badges {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .career-section {
        padding: 70px 0;
    }

    .career-form-wrapper {
        padding: 35px 25px;
    }

    .career-form-wrapper .section-title__title {
        font-size: 26px;
    }

    .career-image-wrapper {
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .career-form-wrapper {
        padding: 28px 18px;
    }

    .career-badge {
        font-size: 12px;
        padding: 8px 14px;
    }
}