:root {
    --navy: #10233f;
    --navy-dark: #0a1729;
    --blue: #1769e0;
    --blue-dark: #0d4fb7;
    --green: #16845b;
    --green-light: #e9f7f1;
    --text: #172033;
    --muted: #647086;
    --light: #f6f8fb;
    --border: #e3e8ef;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(16, 35, 63, 0.10);
    --radius: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}


/* HEADER */

.site-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--white);
    border-radius: 11px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-text small {
    color: var(--blue);
    font-size: 13px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.main-nav a {
    color: #445168;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--blue);
}

.header-button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: var(--white);
    padding: 12px 19px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-button:hover,
.primary-button:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    border: 0;
    background: transparent;
    font-size: 25px;
    cursor: pointer;
}


/* HERO */

.hero {
    background:
        radial-gradient(circle at 85% 25%, rgba(23, 105, 224, 0.14), transparent 30%),
        linear-gradient(135deg, #f7faff 0%, #eef5ff 100%);
    padding: 82px 0 86px;
    border-bottom: 1px solid #e5ebf4;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 70px;
}

.eyebrow,
.section-label {
    display: inline-block;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    margin-bottom: 14px;
}

.hero h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.08;
    letter-spacing: -2.8px;
    color: var(--navy-dark);
    margin-bottom: 22px;
}

.hero h1 span {
    color: var(--blue);
}

.hero-text > p {
    max-width: 690px;
    color: #59677c;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.search-box {
    background: var(--white);
    border: 1px solid #dce4ef;
    border-radius: 13px;
    padding: 7px;
    display: flex;
    align-items: center;
    max-width: 820px;
    box-shadow: 0 14px 40px rgba(20, 50, 90, 0.10);
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    border-right: 1px solid var(--border);
}

.search-field span {
    font-size: 17px;
}

.search-field input,
.search-field select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 14px;
}

.search-field input::placeholder {
    color: #8a95a6;
}

.search-box button {
    border: 0;
    background: var(--blue);
    color: var(--white);
    border-radius: 9px;
    padding: 14px 23px;
    font-weight: 700;
    cursor: pointer;
}

.search-box button:hover {
    background: var(--blue-dark);
}

.trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
    color: #6d788a;
    font-size: 12px;
    font-weight: 600;
}

.trust-line span {
    color: var(--green);
}

.hero-card {
    background: var(--white);
    border: 1px solid #e0e6ef;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.hero-card-top {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 22px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

.hero-card h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 23px;
    line-height: 1.3;
    letter-spacing: -0.6px;
    margin-bottom: 22px;
}

.mini-opportunity {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 0;
    border-top: 1px solid var(--border);
}

.mini-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--light);
    border-radius: 10px;
    font-size: 21px;
}

.mini-opportunity strong {
    display: block;
    font-size: 13px;
}

.mini-opportunity small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    margin-top: 2px;
}

.card-link {
    display: block;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    padding-top: 18px;
}


/* SECTIONS */

.section {
    padding: 82px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.section-heading h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--navy-dark);
}

.section-heading p {
    color: var(--muted);
    max-width: 650px;
    margin-top: 10px;
}

.section-heading.centered {
    display: block;
    text-align: center;
}

.section-heading.centered p {
    margin: 10px auto 0;
}

.view-all {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}


/* COUNTRIES */

.countries-section {
    background: var(--white);
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.country-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.country-card:hover {
    transform: translateY(-3px);
    border-color: #c6d8f2;
    box-shadow: 0 12px 30px rgba(20, 50, 90, 0.08);
}

.flag {
    font-size: 30px;
    line-height: 1;
}

.country-card h3 {
    font-size: 14px;
    margin-bottom: 2px;
}

.country-card p {
    color: var(--muted);
    font-size: 11px;
}

.arrow {
    margin-left: auto;
    color: #8792a3;
    font-size: 17px;
}


/* CATEGORIES */

.categories-section {
    background: var(--light);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.category-card {
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(20, 50, 90, 0.08);
}

.category-icon {
    display: block;
    font-size: 30px;
    margin-bottom: 17px;
}

.category-card h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
}

.category-card p {
    color: var(--muted);
    font-size: 12px;
}


/* JOB PLACEHOLDERS */

.featured-section {
    background: var(--white);
}

.job-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.job-placeholder {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.placeholder-country {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.job-placeholder h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    line-height: 1.35;
    margin: 14px 0 8px;
}

.job-placeholder p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.placeholder-note {
    display: inline-block;
    margin-top: 17px;
    background: var(--light);
    color: #697588;
    border-radius: 7px;
    padding: 5px 9px;
    font-size: 10px;
    font-weight: 700;
}


/* GUIDES */

.guides-section {
    background: var(--light);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.guide-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.guide-card:hover {
    border-color: #c7d9f1;
}

.guide-number {
    color: var(--blue);
    font-weight: 800;
    font-size: 12px;
}

.guide-card h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.guide-card p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
    margin-top: 5px;
}


/* BANNER */

.opportunity-banner {
    background: var(--navy);
    color: var(--white);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.banner-content .section-label {
    color: #7fb0ff;
}

.banner-content h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 30px;
    line-height: 1.25;
    max-width: 700px;
    letter-spacing: -0.8px;
}

.banner-content p {
    color: #bdc8d8;
    margin-top: 10px;
    max-width: 650px;
}

.banner-content .primary-button {
    flex-shrink: 0;
}


/* SAFETY */

.safety-section {
    background: var(--white);
}

.safety-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;
    padding: 30px;
    border: 1px solid #cfe9de;
    background: var(--green-light);
    border-radius: 18px;
}

.safety-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: var(--white);
    border-radius: 15px;
    font-size: 27px;
}

.safety-content h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    line-height: 1.3;
}

.safety-content p {
    color: #5c6f67;
    font-size: 13px;
    margin-top: 6px;
}

.secondary-button {
    border: 1px solid #a9d9c5;
    background: var(--white);
    color: var(--green);
    padding: 11px 16px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}


/* FOOTER */

.site-footer {
    background: var(--navy-dark);
    color: #dce4ee;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 55px;
    padding: 65px 0 50px;
}

.footer-brand p {
    max-width: 390px;
    color: #96a5b8;
    font-size: 13px;
    margin-top: 18px;
}

.footer-brand-link .brand-text {
    color: var(--white);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 7px;
}

.footer-column a {
    color: #96a5b8;
    font-size: 12px;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    color: #7f8ea2;
    font-size: 10px;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .main-nav {
        gap: 17px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-card {
        max-width: 650px;
    }

    .country-grid,
    .category-grid,
    .job-placeholder-grid,
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {

    .container {
        width: min(100% - 28px, 1160px);
    }

    .header-inner {
        min-height: 68px;
    }

    .main-nav,
    .header-button {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .menu-open .main-nav {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

    .menu-open .main-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border);
    }

    .hero {
        padding: 58px 0 60px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .hero-text > p {
        font-size: 15px;
    }

    .search-box {
        display: block;
        padding: 8px;
    }

    .search-field {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        padding: 13px 10px;
    }

    .search-box button {
        width: 100%;
        margin-top: 8px;
    }

    .trust-line {
        gap: 9px 14px;
    }

    .section {
        padding: 60px 0;
    }

    .section-heading {
        display: block;
    }

    .view-all {
        display: inline-block;
        margin-top: 13px;
    }

    .country-grid,
    .category-grid,
    .job-placeholder-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .banner-content {
        display: block;
    }

    .banner-content h2 {
        font-size: 25px;
    }

    .banner-content .primary-button {
        margin-top: 25px;
    }

    .safety-content {
        grid-template-columns: 1fr;
    }

    .secondary-button {
        width: 100%;
        text-align: center;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom p + p {
        margin-top: 10px;
    }
}

@media (max-width: 430px) {

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .hero h1 {
        font-size: 37px;
    }

    .hero-card {
        padding: 22px;
    }
}

/* =========================================================
   ADMIN AREA
   ========================================================= */

.admin-body {
    margin: 0;
    background: #f5f7fb;
    color: #172033;
    font-family: Arial, Helvetica, sans-serif;
}


/* Admin Header */

.admin-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}


.admin-header-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.admin-header-inner > div:first-child {
    display: flex;
    align-items: center;
    gap: 14px;
}


.admin-header-inner strong {
    font-size: 20px;
    color: #123b72;
}


.admin-header-inner span {
    color: #6b7280;
    font-size: 14px;
}


.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}


.admin-header-actions a {
    color: #344054;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}


.admin-header-actions a:hover {
    color: #1769aa;
}


/* Dashboard */

.admin-dashboard {
    padding: 45px 0 70px;
}


.admin-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


.admin-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 35px;
}


.admin-welcome h1 {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1.2;
    color: #101828;
}


.admin-welcome p {
    margin: 0;
    color: #667085;
}


/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}


.btn-primary {
    background: #1769aa;
    color: #ffffff;
}


.btn-primary:hover {
    background: #125589;
    color: #ffffff;
    transform: translateY(-1px);
}


/* Statistics */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}


.admin-stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 12px rgba(16, 24, 40, 0.05);
}


.admin-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #1769aa;
    margin-bottom: 7px;
}


.admin-stat-label {
    display: block;
    color: #667085;
    font-size: 14px;
    font-weight: 600;
}


/* Admin Sections */

.admin-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 25px;
    box-shadow: 0 3px 12px rgba(16, 24, 40, 0.04);
}


.admin-section h2 {
    margin: 0 0 22px;
    font-size: 21px;
    color: #101828;
}


/* Quick Actions */

.admin-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


.admin-action-card {
    display: block;
    padding: 22px;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    text-decoration: none;
    background: #ffffff;
    transition: 0.2s ease;
}


.admin-action-card:hover {
    border-color: #1769aa;
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(16, 24, 40, 0.08);
}


.admin-action-card strong {
    display: block;
    margin-bottom: 8px;
    color: #1769aa;
    font-size: 16px;
}


.admin-action-card span {
    display: block;
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
}


/* Status */

.admin-status-box {
    background: #f8fafc;
    border: 1px solid #e4e7ec;
    border-radius: 9px;
    padding: 20px;
}


.admin-status-box p {
    margin: 0;
    padding: 11px 0;
    border-bottom: 1px solid #e4e7ec;
    color: #475467;
}


.admin-status-box p:last-child {
    border-bottom: none;
}


/* =========================================================
   ADMIN LOGIN
   ========================================================= */

.admin-login-page {
    min-height: 100vh;
    background: #f5f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}


.admin-login-box {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 38px;
    box-shadow: 0 10px 35px rgba(16, 24, 40, 0.08);
}


.admin-logo {
    text-align: center;
    margin-bottom: 30px;
}


.admin-logo h1 {
    margin: 0 0 6px;
    font-size: 25px;
    color: #123b72;
}


.admin-logo p {
    margin: 0;
    color: #667085;
    font-size: 14px;
}


.admin-login-box h2 {
    margin: 0 0 24px;
    text-align: center;
    font-size: 22px;
}


.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    padding: 12px 14px;
    background: #ffffff;
    color: #101828;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1769aa;
    box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.12);
}


.form-group textarea {
    min-height: 130px;
    resize: vertical;
}


.admin-login-button {
    width: 100%;
    margin-top: 5px;
}


.admin-back-link {
    display: block;
    margin-top: 22px;
    text-align: center;
    color: #1769aa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}


.admin-error {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #be123c;
    border-radius: 8px;
    padding: 13px 15px;
    margin-bottom: 20px;
    font-size: 14px;
}


.admin-success {
    background: #ecfdf3;
    border: 1px solid #a7f3d0;
    color: #047857;
    border-radius: 8px;
    padding: 13px 15px;
    margin-bottom: 25px;
    font-size: 14px;
}


/* =========================================================
   ADMIN FORMS
   ========================================================= */

.admin-form {
    width: 100%;
}


.admin-form-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 3px 12px rgba(16, 24, 40, 0.04);
}


.admin-form-section h2 {
    margin: 0 0 25px;
    font-size: 21px;
    color: #101828;
}


.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


.form-group small {
    display: block;
    margin-top: 7px;
    color: #667085;
    font-size: 12px;
    line-height: 1.5;
}


.admin-form-notice {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 9px;
    padding: 18px;
    margin: 10px 0 25px;
}


.admin-form-notice strong {
    display: block;
    margin-bottom: 7px;
    color: #92400e;
}


.admin-form-notice p {
    margin: 0;
    color: #78350f;
    line-height: 1.6;
    font-size: 14px;
}


.admin-submit-button {
    min-width: 140px;
}


/* =========================================================
   MOBILE RESPONSIVENESS
   ========================================================= */

@media (max-width: 900px) {

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }


    .admin-actions-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .admin-header-inner {
        width: min(100% - 30px, 1180px);
        min-height: auto;
        padding: 16px 0;
        align-items: flex-start;
    }


    .admin-header-inner > div:first-child {
        display: block;
    }


    .admin-header-inner strong {
        display: block;
        margin-bottom: 5px;
    }


    .admin-header-actions {
        gap: 12px;
        flex-direction: column;
        align-items: flex-end;
    }


    .admin-container {
        width: min(100% - 30px, 1180px);
    }


    .admin-dashboard {
        padding: 30px 0 50px;
    }


    .admin-welcome {
        display: block;
    }


    .admin-welcome .btn {
        margin-top: 20px;
        width: 100%;
    }


    .admin-welcome h1 {
        font-size: 27px;
    }


    .admin-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }


    .admin-stat-card {
        padding: 18px;
    }


    .admin-stat-number {
        font-size: 27px;
    }


    .admin-section,
    .admin-form-section {
        padding: 20px;
    }


    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}


@media (max-width: 480px) {

    .admin-header-inner {
        width: calc(100% - 24px);
    }


    .admin-header-inner strong {
        font-size: 17px;
    }


    .admin-header-inner span {
        font-size: 12px;
    }


    .admin-header-actions {
        font-size: 12px;
    }


    .admin-container {
        width: calc(100% - 24px);
    }


    .admin-stats {
        grid-template-columns: 1fr;
    }


    .admin-welcome h1 {
        font-size: 25px;
    }


    .admin-login-box {
        padding: 26px 20px;
    }


    .admin-form-section {
        padding: 18px;
    }

}

/* =========================================================
   ADMIN JOB MANAGEMENT
   ========================================================= */

.admin-job-table-wrapper {
    width: 100%;
    overflow-x: auto;
}


.admin-job-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 950px;
}


.admin-job-table th {
    text-align: left;
    padding: 14px 12px;
    background: #f8fafc;
    border-bottom: 1px solid #e4e7ec;
    color: #475467;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}


.admin-job-table td {
    padding: 17px 12px;
    border-bottom: 1px solid #eaecf0;
    vertical-align: middle;
    color: #475467;
    font-size: 14px;
}


.admin-job-table tbody tr:hover {
    background: #f9fafb;
}


.admin-job-table td strong {
    display: block;
    color: #101828;
    margin-bottom: 5px;
}


.admin-job-table td small {
    display: block;
    color: #667085;
}


.admin-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}


.admin-badge.verified,
.admin-badge.published {
    background: #ecfdf3;
    color: #047857;
}


.admin-badge.pending,
.admin-badge.draft {
    background: #fffbeb;
    color: #92400e;
}


.admin-badge.expired,
.admin-badge.closed {
    background: #fef2f2;
    color: #b42318;
}


.admin-job-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}


.admin-edit-button,
.admin-delete-button {
    border: 0;
    border-radius: 6px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}


.admin-edit-button {
    background: #eff6ff;
    color: #1769aa;
}


.admin-delete-button {
    background: #fef2f2;
    color: #b42318;
}


.admin-edit-button:hover {
    background: #dbeafe;
}


.admin-delete-button:hover {
    background: #fee2e2;
}


.no-admin-jobs {
    text-align: center;
    padding: 45px 20px;
}


.no-admin-jobs h2 {
    margin: 0 0 10px;
}


.no-admin-jobs p {
    color: #667085;
    margin-bottom: 20px;
}