/* =========================================
   APIE CAREERS SECTION
========================================= */

.apie-careers-section {
    position: relative;
    padding: 100px 20px;
    background: #fffaf5;
    overflow: hidden;
}

.apie-careers-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;

    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.apie-careers-content {
    padding-right: 20px;
}

.apie-careers-label {
    display: inline-block;

    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: #08747f;

    margin-bottom: 18px;
}

.apie-careers-content h2 {
    margin: 0 0 20px;

    font-family: "Nunito", sans-serif;

    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.05;

    font-weight: 800;

    color: #222;
}

.apie-careers-content h2 strong {
    display: block;
    color: #08747f;
}

.apie-careers-content > p {
    max-width: 550px;

    margin: 0 0 35px;

    font-family: "Nunito", sans-serif;

    font-size: 16px;
    line-height: 1.8;

    color: #666;
}


/* =========================================
   CAREER POINTS
========================================= */

.apie-career-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.apie-career-point {
    display: flex;
    align-items: center;
    gap: 16px;
}

.apie-career-point > span {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #08747f;
    color: #fff;

    font-size: 18px;

    box-shadow: 0 10px 25px rgba(8, 116, 127, 0.18);
}

.apie-career-point h4 {
    margin: 0 0 3px;

    font-family: "Nunito", sans-serif;

    font-size: 17px;
    font-weight: 800;

    color: #222;
}

.apie-career-point p {
    margin: 0;

    font-family: "Nunito", sans-serif;

    font-size: 14px;
    line-height: 1.5;

    color: #777;
}


/* =========================================
   FORM BOX
========================================= */

.apie-careers-form-box {
    position: relative;

    padding: 45px;

    background: #ffffff;

    border-radius: 30px;

    border: 1px solid rgba(8, 116, 127, 0.08);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.08);
}

.apie-form-heading {
    margin-bottom: 28px;
}

.apie-form-heading span {
    display: block;

    margin-bottom: 7px;

    font-family: "Nunito", sans-serif;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2.5px;

    color: #08747f;
}

.apie-form-heading h3 {
    margin: 0 0 6px;

    font-family: "Nunito", sans-serif;

    font-size: 32px;
    font-weight: 900;

    color: #222;
}

.apie-form-heading p {
    margin: 0;

    font-family: "Nunito", sans-serif;

    font-size: 14px;

    color: #777;
}


/* =========================================
   FORM GROUP
========================================= */

.apie-form-group {
    margin-bottom: 19px;
}

.apie-form-group label {
    display: block;

    margin-bottom: 8px;

    font-family: "Nunito", sans-serif;

    font-size: 14px;
    font-weight: 800;

    color: #333;
}

.apie-form-group label span {
    color: #e53935;
}

.apie-form-group input,
.apie-form-group select {
    width: 100%;
    height: 52px;

    padding: 0 16px;

    border: 1px solid #e5e5e5;
    border-radius: 13px;

    outline: none;

    background: #fff;

    font-family: "Nunito", sans-serif;

    font-size: 14px;

    color: #333;

    transition: all 0.3s ease;

    box-sizing: border-box;
}

.apie-form-group input:focus,
.apie-form-group select:focus {
    border-color: #08747f;

    box-shadow:
        0 0 0 4px rgba(8, 116, 127, 0.08);
}

.apie-form-group input::placeholder {
    color: #aaa;
}


/* =========================================
   PHONE ERROR
========================================= */

.apie-form-error {
    display: none;

    margin-top: 6px;

    font-family: "Nunito", sans-serif;

    font-size: 12px;

    color: #e53935;
}


/* =========================================
   RESUME UPLOAD
========================================= */

.apie-resume-upload {
    position: relative;
}

.apie-resume-upload input[type="file"] {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}

.apie-upload-label {
    min-height: 115px;

    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    border: 2px dashed #b9dfe2;

    border-radius: 16px;

    background: #f8fdfd;

    cursor: pointer;

    transition: all 0.3s ease;
}

.apie-upload-label:hover {
    border-color: #08747f;

    background: #f2fbfb;

    transform: translateY(-2px);
}

.apie-upload-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #08747f;

    color: #fff;

    font-size: 22px;
}

.apie-upload-text {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.apie-upload-text strong {
    font-family: "Nunito", sans-serif;

    font-size: 15px;
    font-weight: 900;

    color: #222;
}

.apie-upload-text span {
    font-family: "Nunito", sans-serif;

    font-size: 12px;

    color: #888;
}

.apie-selected-file {
    margin-top: 8px;

    font-family: "Nunito", sans-serif;

    font-size: 12px;

    color: #08747f;

    word-break: break-word;
}


/* =========================================
   FORM MESSAGE
========================================= */

.apie-career-message {
    display: none;

    padding: 12px 15px;

    margin-bottom: 15px;

    border-radius: 10px;

    font-family: "Nunito", sans-serif;

    font-size: 13px;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.apie-career-submit {
    width: 100%;
    min-height: 56px;

    padding: 12px 20px;

    border: 0;
    border-radius: 14px;

    background: #08747f;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    font-family: "Nunito", sans-serif;

    font-size: 15px;
    font-weight: 800;

    transition: all 0.3s ease;
}

.apie-career-submit span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.apie-career-submit span i {
    font-size: 19px;
}

.apie-career-submit > i {
    transition: transform 0.3s ease;
}

.apie-career-submit:hover {
    background: #065e67;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(8, 116, 127, 0.22);
}

.apie-career-submit:hover > i {
    transform: translateX(5px);
}

.apie-career-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}


/* =========================================
   FORM NOTE
========================================= */

.apie-form-note {
    margin: 12px 0 0;

    text-align: center;

    font-family: "Nunito", sans-serif;

    font-size: 11px;

    line-height: 1.5;

    color: #999;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .apie-careers-container {
        grid-template-columns: 1fr;

        gap: 50px;

        max-width: 750px;
    }

    .apie-careers-content {
        padding-right: 0;

        text-align: center;
    }

    .apie-careers-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .apie-career-point {
        text-align: left;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .apie-careers-section {
        padding: 65px 15px;
    }

    .apie-careers-container {
        gap: 35px;
    }

    .apie-careers-content h2 {
        font-size: 40px;
    }

    .apie-careers-form-box {
        padding: 25px 18px;

        border-radius: 22px;
    }

    .apie-form-heading h3 {
        font-size: 27px;
    }

    .apie-upload-label {
        flex-direction: column;

        text-align: center;

        min-height: 145px;
    }

    .apie-career-point > span {
        width: 45px;
        height: 45px;

        border-radius: 13px;
    }

}