/* ===================== CAREER PAGE LAYOUT ===================== */

.career-page {
    max-width: 1200px;
    margin: 120px auto 80px;
    padding: 0 20px;
}

/* ===================== HERO ===================== */

.career-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('/assets/worldoverview.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.career-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.career-hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.career-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #00c8ff;
    text-shadow: 0 0 18px rgba(0, 200, 255, 0.6);
    margin-bottom: 10px;
}

.career-hero p {
    font-size: 1.2rem;
    color: #e6e6e6;
}

/* ===================== SECTION ===================== */

.career-section {
    margin: 70px 0;
}

.career-section h2 {
    font-size: 2.2rem;
    color: #00c8ff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.4);
}

/* NEW: intro text */
.benefit-intro {
    max-width: 750px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 20px;
}

/* NEW: highlighted lines */
.benefit-highlight {
    color: #e6e6e6;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ===================== BENEFITS ===================== */

.career-benefits {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.benefit-item.reverse {
    flex-direction: row-reverse;
}

.benefit-text {
    flex: 1 1 55%;
}

.benefit-text h3 {
    font-size: 1.6rem;
    color: #00e1ff;
    margin-bottom: 10px;
}

.benefit-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #cccccc;
}

.benefit-img {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-img img {
    max-width: 380px;
    width: 100%;
    height: auto;
}

/* ===================== VACANCIES ===================== */

.career-vacancies p {
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.career-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #00c8ff;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
}



/* ===================== CTA ===================== */

.career-cta {
    text-align: center;
    margin-top: 80px;
}

.career-cta h2 {
    font-size: 2.4rem;
    color: #00c8ff;
    margin-bottom: 10px;
}

.career-cta p {
    color: #cccccc;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .career-btn {
        display: block;
        width: fit-content;

        margin: 0 auto;

        padding: 14px 32px;
        background: #00c8ff;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        border-radius: 8px;
    }
}

/* =========================
   CONTACT / SOCIALS
========================= */

.contact-section {
    margin-top: 80px;
    padding: 50px 20px;
    text-align: center;

    border-top: 1px solid rgba(0, 200, 255, 0.15);
}

.contact-section h2 {
    color: #00c8ff;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.4);
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
}

.contact-section h2::after {
    content: "";
    display: block;

    width: 60px;
    height: 3px;

    margin: 12px auto 0;

    background: #00c8ff;
    border-radius: 10px;

    box-shadow: 0 0 12px rgba(0, 200, 255, 0.5);
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.social-links a {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 1.3rem;

    text-decoration: none;

    border: 1px solid rgba(0, 200, 255, 0.25);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.02);

    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #00c8ff;

    border-color: #00c8ff;

    transform: translateY(-4px);

    box-shadow:
        0 0 15px rgba(0, 200, 255, 0.2),
        0 0 30px rgba(0, 200, 255, 0.1);
}

/* ===================== MOBILE ===================== */

@media (max-width: 900px) {

    .career-hero {
        height: 40vh;
        margin-bottom: 60px;
    }

    .career-hero h1 {
        font-size: 2.2rem;
    }

    .career-hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .benefit-item,
    .benefit-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .benefit-text {
        flex: 1 1 100%;
    }

    .benefit-img img {
        max-width: 280px;
    }

    .career-section h2 {
        font-size: 1.8rem;
    }

    .career-cta h2 {
        font-size: 2rem;
    }

    .career-social {
        justify-content: center;
    }
}