/* ==========================================================================
   OTIUM Logistics — Brand stylesheet
   Colors pulled from the brand: deep navy, fuel-orange, road-blue, chrome.
   ========================================================================== */

:root {
    --navy-900: #0a1428;
    --navy-850: #0b1830;
    --navy-800: #0d1d3d;
    --navy-700: #112a52;
    --navy-600: #16356a;

    --orange: #f97316;
    --orange-600: #ea6a0a;
    --orange-300: #fdba74;

    --blue: #1e5bb8;
    --blue-500: #2b6fd6;
    --blue-300: #6ba3e8;

    --ink: #0f1b2d;
    --slate: #475569;
    --muted: #64748b;
    --line: #e2e8f0;

    --gray-50: #f8fafc;
    --gray-100: #f1f4f8;
    --gray-200: #e8edf3;

    --white: #ffffff;

    --shadow-sm: 0 1px 2px rgba(15, 27, 45, .06);
    --shadow: 0 10px 30px rgba(15, 27, 45, .08);
    --shadow-lg: 0 24px 60px rgba(10, 20, 40, .18);

    --radius: 10px;
    --radius-lg: 16px;

    --max: 1200px;
    --header-h: 84px;

    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-head: 'Archivo', 'Inter', system-ui, sans-serif;
    --font-display: 'Anton', 'Archivo', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    color: var(--ink);
    line-height: 1.1;
    margin: 0 0 .5em;
    font-weight: 800;
    letter-spacing: -.01em;
}

p { margin: 0 0 1rem; }

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-orange { color: var(--orange); }
.text-blue { color: var(--blue); }
.text-white { color: #fff; }
.text-center { text-align: center; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 700;
    font-size: .78rem;
    color: var(--orange);
    margin-bottom: .75rem;
    display: inline-block;
}
.eyebrow.blue { color: var(--blue-500); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 1.6rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(249,115,22,.32); }
.btn-orange:hover { background: var(--orange-600); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(30,91,184,.32); }
.btn-blue:hover { background: var(--blue-500); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-300); }
.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { background: var(--navy-700); }
.btn-sm { padding: .6rem 1rem; font-size: .82rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
    background: var(--navy-900);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(255,255,255,.04);
}
.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo-img { height: 60px; width: auto; display: block; }
.site-footer .brand .logo-img { height: 76px; }
.brand .logo-mark { width: 54px; height: 54px; flex: none; }
.brand .logo-word { display: flex; flex-direction: column; line-height: 1; }
.brand .logo-word .name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: .04em;
    background: linear-gradient(180deg,#fff 0%, #cfd8e3 55%, #8a97a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.brand .logo-word .sub {
    font-size: .62rem;
    letter-spacing: .42em;
    color: var(--orange);
    font-weight: 700;
    margin-top: 3px;
    text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .04em;
    color: rgba(255,255,255,.82);
    padding: 6px 0;
    position: relative;
    text-transform: uppercase;
}
.main-nav a:hover { color: #fff; }
.main-nav a.active { color: #fff; }
.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px;
}

.header-phone { display: flex; align-items: center; gap: 12px; }
.header-phone .ph-ic {
    width: 38px; height: 38px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(249,115,22,.16);
    color: var(--orange);
}
.header-phone .ph-num { font-weight: 800; font-size: 1.1rem; font-family: var(--font-head); }
.header-phone .ph-sub { font-size: .72rem; color: rgba(255,255,255,.6); }

.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: var(--navy-900);
    color: #fff;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 400px at 85% 10%, rgba(30,91,184,.25), transparent 60%),
        radial-gradient(700px 500px at 10% 90%, rgba(249,115,22,.16), transparent 60%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 64px 0 72px;
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: clamp(2.6rem, 5.2vw, 4.4rem);
    line-height: .98;
    margin: 0 0 1.2rem;
    color: #fff;
}
.hero h1 .lead-line { display: block; font-size: .42em; letter-spacing: .02em; color: #fff; margin-bottom: .25em; }
.hero h1 .big { display: block; font-family: var(--font-display); font-weight: 400; letter-spacing: .005em; }
.hero p.lede { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 30rem; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 320px;
    background: linear-gradient(135deg, #14213d, #0a1428);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

/* ---------- Audience strip (5 cards) ---------- */
.audience {
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.aud-card {
    text-align: center;
    padding: 44px 22px;
    border-right: 1px solid var(--line);
}
.aud-card:last-child { border-right: 0; }
.aud-card .ic {
    font-size: 2.4rem;
    margin-bottom: 16px;
}
.aud-card h3 { font-size: 1.15rem; letter-spacing: .03em; text-transform: uppercase; }
.aud-card p { color: var(--muted); font-size: .92rem; min-height: 3.5em; }
.aud-card .more {
    font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
    display: inline-flex; gap: 6px; align-items: center;
}

/* ---------- Section base ---------- */
.section { padding: 80px 0; }
.section-head { margin-bottom: 48px; }
.section-title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.section.gray { background: var(--gray-100); }
.section.navy { background: var(--navy-900); color: #fff; }
.section.navy .section-title { color: #fff; }
.lede-muted { color: var(--muted); font-size: 1.05rem; max-width: 38rem; }

/* ---------- Jobs split ---------- */
.jobs-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.pos-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pos-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.pos-card h4 { text-transform: uppercase; letter-spacing: .06em; font-size: .95rem; margin-bottom: 1rem; }
.pos-card.driving h4 { color: var(--orange); }
.pos-card.office h4 { color: var(--blue); }
.pos-list { list-style: none; margin: 0; padding: 0; }
.pos-list li { display: flex; gap: 10px; align-items: center; padding: 9px 0; border-bottom: 1px dashed var(--line); font-weight: 500; }
.pos-list li:last-child { border-bottom: 0; }
.pos-list li i { font-size: .8rem; }
.pos-card.driving .pos-list li i { color: var(--orange); }
.pos-card.office .pos-list li i { color: var(--blue); }

/* ---------- Network flow ---------- */
.net-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 40px 0 28px;
}
.net-node { text-align: center; width: 110px; }
.net-node .ring {
    width: 70px; height: 70px; margin: 0 auto 12px;
    border-radius: 50%;
    display: grid; place-items: center;
    border: 2px solid;
    font-size: 1.5rem;
}
.net-node.blue .ring { border-color: var(--blue-500); color: var(--blue-300); background: rgba(43,111,214,.1); }
.net-node.orange .ring { border-color: var(--orange); color: var(--orange-300); background: rgba(249,115,22,.1); }
.net-node .lbl { text-transform: uppercase; font-size: .72rem; letter-spacing: .08em; font-weight: 700; color: rgba(255,255,255,.85); }
.net-arrow { color: rgba(255,255,255,.3); align-self: center; padding-top: 18px; font-size: 1rem; letter-spacing: 2px; }
.net-foot { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.net-foot span { color: rgba(255,255,255,.75); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-card .ic {
    width: 58px; height: 58px; border-radius: 12px; display: grid; place-items: center;
    font-size: 1.5rem; margin-bottom: 18px;
    background: rgba(30,91,184,.1); color: var(--blue);
}
.svc-card:nth-child(even) .ic { background: rgba(249,115,22,.12); color: var(--orange); }
.svc-card h3 { font-size: 1.12rem; }
.svc-card p { color: var(--muted); font-size: .95rem; margin: 0; }
.svc-grid.compact .svc-card { padding: 26px 22px; text-align: center; }
.svc-grid.compact .ic { margin: 0 auto 16px; }
.home-services { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1024px) { .home-services { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .home-services { grid-template-columns: 1fr 1fr; } }

/* ---------- CTA bar ---------- */
.cta-bar {
    background: linear-gradient(100deg, var(--navy-800), var(--navy-700));
    color: #fff;
    padding: 36px 0;
}
.cta-bar .inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-bar .left { display: flex; align-items: center; gap: 20px; }
.cta-bar .ic { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: rgba(249,115,22,.18); color: var(--orange); font-size: 1.6rem; }
.cta-bar .small { color: rgba(255,255,255,.75); font-size: 1rem; }
.cta-bar h3 { font-size: 1.9rem; margin: 0; color: #fff; }
.cta-phone {
    background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 800;
    font-size: 1.4rem; padding: 14px 28px; border-radius: 10px; display: inline-flex; gap: 12px; align-items: center;
    box-shadow: 0 12px 30px rgba(249,115,22,.35);
}
.cta-phone:hover { background: var(--orange-600); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 48px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { font-size: .92rem; max-width: 22rem; }
.footer-col h4 { color: #fff; text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .92rem; transition: color .15s; }
.footer-col a:hover { color: var(--orange); }
.footer-contact .row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer-contact .row i { color: var(--orange); margin-top: 4px; }
.footer-contact .row b { color: #fff; font-family: var(--font-head); font-size: 1.05rem; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: background .2s; }
.social a:hover { background: var(--orange); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; text-align: center; font-size: .85rem; color: rgba(255,255,255,.5); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    background: var(--navy-900);
    color: #fff;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(700px 300px at 80% 20%, rgba(249,115,22,.18), transparent 60%),
                radial-gradient(600px 300px at 10% 90%, rgba(30,91,184,.22), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: #fff; }
.page-hero p { color: rgba(255,255,255,.78); max-width: 42rem; font-size: 1.1rem; }
.crumbs { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.crumbs a:hover { color: var(--orange); }

/* ---------- Cards / generic ---------- */
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); padding: 28px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* job listing rows */
.job-row {
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--orange);
    border-radius: var(--radius); padding: 22px 26px; margin-bottom: 16px;
    box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .15s;
}
.job-row:hover { box-shadow: var(--shadow); transform: translateX(2px); }
.job-row.office { border-left-color: var(--blue); }
.job-row .meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: .88rem; margin-top: 6px; }
.job-row .meta span { display: inline-flex; gap: 6px; align-items: center; }
.tag { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.tag.driving { background: rgba(249,115,22,.14); color: var(--orange-600); }
.tag.office { background: rgba(30,91,184,.12); color: var(--blue); }

/* ---------- Forms ---------- */
.form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
label.fld { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 7px; color: var(--ink); }
.input, select.input, textarea.input {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
    font-family: inherit; font-size: .95rem; background: #fff; transition: border .15s, box-shadow .15s;
}
.input:focus, select.input:focus, textarea.input:focus {
    outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(43,111,214,.15);
}
textarea.input { resize: vertical; min-height: 130px; }
.help { font-size: .82rem; color: var(--muted); }
.field-error { color: #dc2626; font-size: .82rem; margin-top: 5px; }

/* ---------- Alerts ---------- */
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-weight: 500; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 2.6rem; color: var(--orange); line-height: 1; }
.stat .lbl { text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--muted); font-weight: 600; }
.section.navy .stat .lbl { color: rgba(255,255,255,.7); }

/* values / icon list */
.value-card { text-align: left; }
.value-card .ic { width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px; background: rgba(249,115,22,.12); color: var(--orange); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .audience-grid { grid-template-columns: repeat(3, 1fr); }
    .aud-card:nth-child(3) { border-right: 0; }
    .svc-grid, .grid-3 { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
    .main-nav, .header-phone { display: none; }
    .main-nav.open {
        display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
        position: absolute; top: var(--header-h); left: 0; right: 0;
        background: var(--navy-850); padding: 22px 24px; border-top: 1px solid rgba(255,255,255,.06);
    }
    .nav-toggle { display: block; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-media { order: -1; }
    .jobs-split, .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .audience-grid { grid-template-columns: 1fr 1fr; }
    .aud-card { border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line); }
    .svc-grid, .grid-3, .grid-4, .pos-cols, .stats, .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-bar .inner { flex-direction: column; text-align: center; }
    .cta-bar .left { flex-direction: column; }
    .job-row { flex-direction: column; align-items: flex-start; }
}

/* ---------- Admin ---------- */
.admin-body { background: var(--gray-100); min-height: 100vh; display: flex; }
.admin-sidebar {
    width: 256px; background: var(--navy-900); color: #fff; flex: none; min-height: 100vh;
    position: sticky; top: 0; align-self: flex-start;
}
.admin-sidebar .brand { padding: 22px 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-sidebar nav { padding: 16px 12px; display: flex; flex-direction: column; gap: 4px; }
.admin-sidebar nav a {
    display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 8px;
    color: rgba(255,255,255,.75); font-weight: 500; font-size: .92rem;
}
.admin-sidebar nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.admin-sidebar nav a.active { background: var(--orange); color: #fff; }
.admin-sidebar nav a i { width: 18px; text-align: center; }
.admin-main { flex: 1; min-width: 0; }
.admin-topbar { background: #fff; border-bottom: 1px solid var(--line); padding: 16px 28px; display: flex; justify-content: space-between; align-items: center; }
.admin-content { padding: 28px; }
.admin-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 28px; }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.admin-card .num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; }
.admin-card .lbl { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.admin-card .ic { float: right; font-size: 1.6rem; color: var(--orange); opacity: .7; }

.table-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: .9rem; }
table.data th, table.data td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); }
table.data th { background: var(--gray-50); text-transform: uppercase; font-size: .74rem; letter-spacing: .06em; color: var(--muted); }
table.data tr:last-child td { border-bottom: 0; }
table.data tr:hover td { background: var(--gray-50); }
.badge { padding: 3px 10px; border-radius: 999px; font-size: .72rem; font-weight: 700; text-transform: capitalize; }
.badge.new { background: #dbeafe; color: #1e40af; }
.badge.reviewing, .badge.in_review { background: #fef3c7; color: #92400e; }
.badge.contacted, .badge.approved, .badge.hired { background: #d1fae5; color: #065f46; }
.badge.rejected, .badge.declined { background: #fee2e2; color: #991b1b; }
.badge.green { background: #d1fae5; color: #065f46; }
.badge.gray { background: #e5e7eb; color: #374151; }

.admin-page-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.admin-page-head h1 { font-size: 1.5rem; margin: 0; }

@media (max-width: 768px) {
    .admin-sidebar { width: 64px; }
    .admin-sidebar .brand .logo-word, .admin-sidebar nav a span { display: none; }
    .admin-cards { grid-template-columns: 1fr 1fr; }
}

/* login */
.login-wrap { min-height: 100vh; display: grid; place-items: center; background: var(--navy-900); padding: 24px; }
.login-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px; width: 100%; max-width: 410px; }
.login-card .brand { justify-content: center; margin-bottom: 24px; }
.login-card .name { color: var(--ink) !important; -webkit-text-fill-color: var(--ink); background: none !important; }
.login-logo { display: block; background: var(--navy-900); border-radius: 14px; padding: 18px 26px; margin: 0 auto 24px; width: max-content; }
.login-logo img { height: 90px; width: auto; display: block; }
.admin-sidebar .admin-brand { padding: 18px 20px; }
.admin-sidebar .admin-brand .logo-img { height: 54px; }

/* pagination */
.pager { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.pager-link {
    min-width: 40px; height: 40px; padding: 0 12px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line); background: #fff; font-weight: 600; color: var(--ink);
}
.pager-link:hover { border-color: var(--orange); color: var(--orange); }
.pager-link.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.pager-link.disabled { opacity: .45; pointer-events: none; }

.muted { color: var(--muted); }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-0{margin-bottom:0}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}
.flex{display:flex}.gap{gap:14px}.between{justify-content:space-between}.items-center{align-items:center}.wrap{flex-wrap:wrap}
