/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

:root {
    --navy: #061a36;
    --navy-dark: #031329;
    --yellow: #ffc21a;
    --yellow-hover: #ffd24d;
    --text: #0c1c34;
    --muted: #657184;
    --border: #e4e8ed;
    --light: #f5f7fa;
    --blue: #0957a5;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    color: var(--text);
    background: white;

    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font-family: inherit;
}

.container {
    width: min(
        1110px,
        calc(100% - 48px)
    );

    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    height: 68px;

    position: relative;
    z-index: 100;

    background: var(--navy);
    color: white;
}

.header-container {
    width: min(
        1110px,
        calc(100% - 48px)
    );

    height: 68px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
}

.logo-globe {
    width: 40px;

    color: var(--yellow);

    font-size: 40px;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.5px;
}

.logo-name span {
    color: var(--yellow);
}

.logo-subtitle {
    margin-top: 2px;

    color: white;

    font-size: 8px;
    letter-spacing: 1.2px;
}

.desktop-navigation {
    display: flex;
    align-items: center;
    gap: 30px;

    font-size: 13px;
}

.desktop-navigation a {
    transition: color 0.2s ease;
}

.desktop-navigation a:hover {
    color: var(--yellow);
}

.language-button {
    padding: 9px 14px;

    background: transparent;
    color: white;

    border: 1px solid #5c6d84;
    border-radius: 7px;

    cursor: pointer;
}

.language-button span {
    margin-left: 8px;
}

.mobile-menu-button {
    display: none;

    border: none;
    background: transparent;

    color: white;
    font-size: 25px;

    cursor: pointer;
}

.mobile-navigation {
    display: none;
}


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

.jobs-hero {
    padding: 78px 0 95px;

    background:
        linear-gradient(
            120deg,
            #061a36,
            #0a2d59
        );

    color: white;
}

.jobs-hero-container {
    width: min(
        1110px,
        calc(100% - 48px)
    );

    margin: auto;
}

.hero-label {
    margin-bottom: 13px;

    color: var(--yellow);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.jobs-hero h1 {
    margin: 0;

    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -1.4px;
}

.hero-line {
    width: 42px;
    height: 4px;

    margin: 18px 0;

    background: var(--yellow);
}

.jobs-hero p {
    max-width: 670px;

    margin: 0;

    color: #d2dce7;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   FILTER
========================================================= */

.filter-section {
    position: relative;
    z-index: 5;

    margin-top: -38px;
}

.filter-card {
    padding: 22px;

    display: grid;

    grid-template-columns:
        1.3fr
        1fr
        1fr
        auto;

    gap: 14px;

    align-items: end;

    background: white;

    border-radius: 10px;

    box-shadow:
        0 12px 35px
        rgba(6, 26, 54, 0.13);
}

.filter-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 10px;
    font-weight: 700;
}

.filter-group input,
.filter-group select {
    width: 100%;
    height: 45px;

    padding: 0 13px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 6px;

    color: var(--text);
    font-size: 12px;

    outline: none;
}

.filter-group input:focus,
.filter-group select:focus {
    border-color: var(--blue);
}

.search-button {
    height: 45px;

    padding: 0 20px;

    border: none;
    border-radius: 6px;

    background: var(--yellow);
    color: #111;

    font-size: 11px;
    font-weight: 800;

    cursor: pointer;
}

.search-button:hover {
    background: var(--yellow-hover);
}


/* =========================================================
   JOBS
========================================================= */

.jobs-section {
    padding: 70px 0 80px;

    background: #f7f9fc;
}

.jobs-heading {
    margin-bottom: 30px;

    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.section-label {
    margin-bottom: 7px;

    color: #d79b00;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.jobs-heading h2 {
    margin: 0;

    color: var(--navy);

    font-size: 28px;
    letter-spacing: -0.7px;
}

.jobs-count {
    padding: 8px 13px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 20px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 600;
}

.jobs-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.job-card {
    padding: 25px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 10px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.job-card:hover {
    transform: translateY(-4px);

    border-color: #d2dbe5;

    box-shadow:
        0 15px 35px
        rgba(6, 26, 54, 0.08);
}

.job-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.job-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    background: #f1f5f9;

    border-radius: 9px;

    color: var(--blue);

    font-size: 23px;
}

.job-status {
    padding: 6px 9px;

    background: #fff6d9;

    border-radius: 20px;

    color: #9a7000;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.job-card h3 {
    margin: 20px 0 10px;

    color: var(--navy);

    font-size: 19px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-bottom: 17px;
}

.job-meta span {
    padding: 5px 8px;

    background: #f5f7fa;

    border-radius: 5px;

    color: #637082;

    font-size: 9px;
    font-weight: 600;
}

/* =========================================================
   JOB SALARY
========================================================= */

.job-salary {
    margin-top: 15px;
    margin-bottom: 15px;

    padding: 12px 14px;

    background: #f7f9fc;

    border-left: 3px solid var(--yellow);
    border-radius: 5px;
}


.job-salary-label {
    display: block;

    margin-bottom: 4px;

    color: #6d7785;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.7px;

    text-transform: uppercase;
}


.job-salary-amount {
    display: block;

    color: var(--navy);

    font-size: 14px;
    font-weight: 800;
}


.job-salary-note {
    display: block;

    margin-top: 4px;

    color: #8490a0;

    font-size: 8px;
    line-height: 1.4;
}


.job-card > p {
    margin: 0 0 18px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.7;
}

.job-requirements {
    padding-top: 15px;
    margin-bottom: 20px;

    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    border-top: 1px solid #edf0f3;
}

.job-requirements span {
    color: #4c5a6d;

    font-size: 9px;
}

.job-requirements span::before {
    content: "✓";

    margin-right: 5px;

    color: #c89000;

    font-weight: 800;
}

.apply-button {
    min-height: 42px;

    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    background: var(--navy);
    color: white;

    border-radius: 6px;

    font-size: 10px;
    font-weight: 800;

    transition: 0.2s ease;
}

.apply-button:hover {
    background: #0b2c56;
}

.no-results {
    display: none;

    padding: 60px 20px;

    text-align: center;
}

.no-results-icon {
    color: var(--blue);

    font-size: 45px;
}

.no-results h3 {
    margin: 15px 0 7px;

    color: var(--navy);
}

.no-results p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   INFORMATION
========================================================= */

.information-section {
    padding: 0 0 75px;

    background: #f7f9fc;
}

.information-card {
    padding: 22px 25px;

    display: flex;
    align-items: flex-start;
    gap: 15px;

    background: #fffaf0;

    border: 1px solid #f0dfa4;
    border-radius: 9px;
}

.information-icon {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: var(--yellow);

    border-radius: 50%;

    color: var(--navy);

    font-size: 14px;
    font-weight: 800;
}

.information-card h3 {
    margin: 1px 0 7px;

    color: var(--navy);

    font-size: 13px;
}

.information-card p {
    margin: 0;

    color: #756a50;

    font-size: 10px;
    line-height: 1.7;
}


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

.jobs-cta {
    padding: 48px 0;

    background: var(--yellow);
}

.jobs-cta-container {
    width: min(
        1110px,
        calc(100% - 48px)
    );

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.cta-label {
    margin-bottom: 6px;

    color: #715500;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.jobs-cta h2 {
    margin: 0 0 7px;

    color: var(--navy);

    font-size: 27px;
}

.jobs-cta p {
    margin: 0;

    color: #5e4e24;

    font-size: 11px;
    line-height: 1.7;
}

.cta-button {
    min-height: 46px;

    padding: 0 20px;

    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    background: var(--navy);
    color: white;

    border-radius: 6px;

    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 38px 0 18px;

    background: var(--navy);
    color: white;
}

.footer-container {
    width: min(
        1110px,
        calc(100% - 48px)
    );

    margin: auto;
}

.footer-top {
    padding-bottom: 28px;

    border-bottom: 1px solid #29415e;
}

.footer-message {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-globe {
    color: var(--yellow);

    font-size: 42px;
}

.footer h2 {
    margin: 3px 0 6px;

    font-size: 19px;
}

.footer p {
    margin: 0;

    color: #c7d1dc;

    font-size: 11px;
}

.footer-bottom {
    padding-top: 16px;

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

    color: #aeb9c7;

    font-size: 10px;
}

.footer-links {
    display: flex;
    gap: 25px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .desktop-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-navigation {
        position: absolute;

        top: 68px;
        left: 0;
        right: 0;

        padding: 22px;

        flex-direction: column;
        gap: 18px;

        background: var(--navy);

        box-shadow:
            0 10px 20px
            rgba(0, 0, 0, 0.2);
    }

    .mobile-navigation.open {
        display: flex;
    }

    .filter-card {
        grid-template-columns:
            1fr
            1fr;
    }

    .search-button {
        width: 100%;
    }

}


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

@media (max-width: 600px) {

    .container,
    .header-container,
    .jobs-hero-container,
    .jobs-cta-container,
    .footer-container {
        width: calc(100% - 32px);
    }

    .jobs-hero {
        padding: 60px 0 85px;
    }

    .jobs-hero h1 {
        font-size: 34px;
    }

    .filter-card {
        padding: 18px;

        grid-template-columns: 1fr;
    }

    .jobs-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        padding: 22px;
    }

    .information-card {
        flex-direction: column;
    }

    .jobs-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-button {
        width: 100%;
    }

    .footer-message {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}