/* ============================================================
   DRIVEWORK AU – MAIN STYLESHEET
   Aesthetic: Industrial-modern, bold orange accent, clean grid
   Fonts: Syne (display) + DM Sans (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --orange: #FF5500;
    --orange-dark: #CC4400;
    --orange-light: #FF7733;
    --navy: #0D1B2A;
    --navy-light: #1A2E45;
    --slate: #4A5568;
    --grey: #718096;
    --border: #E2E8F0;
    --bg: #F7F8FA;
    --white: #FFFFFF;
    --green: #22C55E;
    --blue: #3B82F6;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; transition: all 0.2s; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight { color: var(--orange); }
.center { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,85,0,0.3); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--border);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-ghost {
    background: transparent;
    color: var(--slate);
    border: none;
    padding: 12px 16px;
}
.btn-ghost:hover { color: var(--orange); }

.btn-white {
    background: var(--white);
    color: var(--orange);
    font-weight: 700;
}
.btn-white:hover { background: var(--orange); color: var(--white); }

.btn-search {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-search:hover { background: var(--orange-dark); }

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 48px; font-size: 1.1rem; }
.w-full { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    flex-shrink: 0;
}
.logo em { color: var(--orange); font-style: normal; }
.logo sup { font-size: 0.55rem; color: var(--grey); vertical-align: super; }
.logo-icon { font-size: 1.6rem; }

.nav-links {
    display: flex;
    gap: 24px;
    flex: 1;
}
.nav-links a {
    font-weight: 500;
    color: var(--slate);
    font-size: 0.95rem;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--orange); border-bottom-color: var(--orange); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.user-menu { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; font-size: 1.4rem; background: none; border: none; cursor: pointer; color: var(--navy); }

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    gap: 16px;
    background: var(--white);
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-weight: 500; color: var(--slate); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--orange);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.shape-2 { width: 300px; height: 300px; bottom: 50px; left: -100px; }
.shape-3 { width: 200px; height: 200px; top: 100px; left: 30%; opacity: 0.04; }

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 60px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,85,0,0.15);
    border: 1px solid rgba(255,85,0,0.3);
    color: var(--orange-light);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* SEARCH BAR */
.search-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    max-width: 780px;
    margin: 0 auto 24px;
    overflow: hidden;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    padding: 0 20px;
}
.search-field input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    padding: 18px 0;
    background: transparent;
}
.search-field input::placeholder { color: var(--grey); }
.search-icon { font-size: 1.1rem; }
.search-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

.hero-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-tags span { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.hero-tags a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    padding: 4px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);
}
.hero-tags a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* HERO STATS */
.hero-stats {
    background: rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 24px 0;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }
.stat strong { font-family: 'Syne', sans-serif; font-size: 1.8rem; color: var(--orange); font-weight: 800; }
.stat span { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 2px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 72px 0; }
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}
.section-header h2 { font-size: 2rem; }
.see-all { color: var(--orange); font-weight: 600; font-size: 0.95rem; }
.see-all:hover { text-decoration: underline; }

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.25s;
    cursor: pointer;
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }

.cat-orange:hover { background: #FFF4EE; border-color: #FFD0B5; }
.cat-blue:hover { background: #EEF4FF; border-color: #BFD4FF; }
.cat-green:hover { background: #F0FFF4; border-color: #BBF7D0; }
.cat-purple:hover { background: #F5F0FF; border-color: #DDD6FE; }
.cat-red:hover { background: #FFF5F5; border-color: #FEB2B2; }
.cat-teal:hover { background: #F0FFFE; border-color: #99F6E4; }
.cat-yellow:hover { background: #FFFDF0; border-color: #FEF08A; }
.cat-navy:hover { background: #EFF6FF; border-color: #BFDBFE; }

.cat-icon { font-size: 2rem; }
.cat-info { flex: 1; }
.cat-info strong { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.cat-info span { color: var(--grey); font-size: 0.8rem; }
.cat-arrow { color: var(--grey); font-size: 1rem; }

/* ============================================================
   JOB CARDS
   ============================================================ */
.jobs-list { display: flex; flex-direction: column; gap: 12px; }

.job-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: all 0.2s;
    position: relative;
    cursor: pointer;
}
.job-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.job-card.featured { border-color: #FFD0B5; background: #FFFAF7; }

.featured-badge {
    position: absolute;
    top: 12px;
    right: 16px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}

.company-logo {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.job-card-left { display: flex; gap: 16px; flex: 1; align-items: flex-start; }
.job-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.job-info h3:hover { color: var(--orange); }

.job-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 8px;
}

.job-excerpt { font-size: 0.9rem; color: var(--slate); margin-bottom: 10px; line-height: 1.5; }

.job-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
    background: var(--bg);
    color: var(--slate);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid var(--border);
}
.tag-licence { background: #EEF4FF; color: #3B82F6; border-color: #BFDBFE; }

.job-card-right {
    text-align: right;
    flex-shrink: 0;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.salary { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.salary-period { font-size: 0.78rem; color: var(--grey); }
.posted-date { font-size: 0.8rem; color: var(--grey); margin-top: 4px; }
.save-btn { font-size: 1.2rem; cursor: pointer; margin-top: 4px; }

.view-all-cta { text-align: center; margin-top: 36px; }

.no-jobs { padding: 40px; text-align: center; color: var(--grey); border: 1px dashed var(--border); border-radius: var(--radius); }

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations-section { background: var(--bg); }
.locations-section h2 { margin-bottom: 32px; font-size: 2rem; }
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.location-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.location-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }
.location-emoji { font-size: 2rem; }
.location-info { flex: 1; }
.location-info strong { display: block; font-weight: 700; }
.location-info span { color: var(--grey); font-size: 0.85rem; }
.location-count { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--orange); font-size: 0.95rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--navy); }
.how-section h2 { color: var(--white); margin-bottom: 52px; font-size: 2rem; }
.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 48px;
    justify-content: center;
}
.step {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px 28px;
    flex: 1;
    max-width: 320px;
}
.step-num {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,85,0,0.3);
    line-height: 1;
    margin-bottom: 12px;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step h3 { color: var(--white); margin-bottom: 10px; font-size: 1.2rem; }
.step p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; }
.step-arrow { font-size: 2rem; color: rgba(255,255,255,0.2); padding-top: 80px; }

/* ============================================================
   SALARY BANNER
   ============================================================ */
.salary-banner {
    background: linear-gradient(135deg, var(--orange) 0%, #CC3300 100%);
    padding: 56px 0;
}
.salary-banner-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}
.salary-text { flex: 1; }
.salary-text h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 10px; }
.salary-text p { color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.salary-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    flex-shrink: 0;
}
.salary-card {
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sal-role { color: rgba(255,255,255,0.8); font-size: 0.82rem; }
.sal-range { color: var(--white); font-weight: 700; font-family: 'Syne', sans-serif; font-size: 1rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section h2 { margin-bottom: 40px; font-size: 2rem; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
}
.stars { color: #FFB800; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { color: var(--slate); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { color: var(--grey); font-size: 0.8rem; }

/* ============================================================
   EMPLOYER CTA
   ============================================================ */
.employer-cta {
    background: var(--navy-light);
    padding: 56px 0;
}
.employer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.employer-cta h2 { color: var(--white); font-size: 2rem; margin-bottom: 8px; }
.employer-cta p { color: rgba(255,255,255,0.7); max-width: 500px; }
.employer-cta-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.price-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}
.price-badge strong { font-family: 'Syne', sans-serif; font-size: 1.3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 36px; height: 36px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700;
}
.footer-socials a:hover { background: var(--orange); color: var(--white); }

.footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; font-family: 'DM Sans', sans-serif; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-legal a:hover { color: var(--white); }

/* ============================================================
   SEARCH HEADER (Jobs listing page)
   ============================================================ */
.search-header {
    background: var(--navy);
    padding: 24px 0;
}
.search-bar-compact { max-width: 100%; margin: 0; box-shadow: none; border: 1px solid rgba(255,255,255,0.1); }

/* ============================================================
   JOBS LISTING PAGE
   ============================================================ */
.jobs-page { padding: 32px 20px; }
.results-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.results-meta h1 { font-size: 1.3rem; font-weight: 700; }
.results-meta h1 span { color: var(--slate); font-weight: 400; }
.results-meta h1 em { color: var(--orange); font-style: normal; }
.sort-bar { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.sort-bar select { padding: 8px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; }

.jobs-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }

/* FILTERS */
.filters-sidebar {
    position: sticky;
    top: 90px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.filter-section { padding: 20px 0; border-bottom: 1px solid var(--border); }
.filter-section:first-child { padding-top: 0; }
.filter-section:last-of-type { border-bottom: none; }
.filter-section h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--slate); margin-bottom: 12px; font-family: 'DM Sans', sans-serif; }
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--slate);
}
.filter-checkbox:hover { color: var(--navy); }
.filter-checkbox input[type="checkbox"], .filter-checkbox input[type="radio"] { accent-color: var(--orange); width: 15px; height: 15px; cursor: pointer; }

.clear-filters { display: block; text-align: center; color: var(--orange); font-size: 0.85rem; font-weight: 600; margin-top: 16px; }

.jobs-main { display: flex; flex-direction: column; gap: 12px; }

/* PAGINATION */
.pagination { margin-top: 32px; display: flex; justify-content: center; gap: 6px; }

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}
.empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.3rem; margin-bottom: 8px; }
.empty-state p { color: var(--grey); margin-bottom: 24px; }

/* ============================================================
   JOB DETAIL PAGE
   ============================================================ */
.job-detail-page { padding: 32px 20px 64px; }
.breadcrumb { font-size: 0.85rem; color: var(--grey); margin-bottom: 28px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--orange); }

.job-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }

.job-detail-header {
    display: flex;
    gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    align-items: flex-start;
}
.company-logo-lg {
    width: 72px; height: 72px;
    border-radius: var(--radius);
    background: var(--navy);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800; font-size: 1.5rem;
    flex-shrink: 0;
}
.job-detail-title-block h1 { font-size: 1.8rem; margin-bottom: 10px; }
.job-detail-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 12px; }
.meta-item { font-size: 0.9rem; color: var(--slate); display: flex; align-items: center; gap: 4px; }

.quick-facts {
    display: flex;
    gap: 0;
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
    flex-wrap: wrap;
}
.fact {
    flex: 1;
    padding: 18px 20px;
    border-right: 1px solid var(--border);
    min-width: 160px;
}
.fact:last-child { border-right: none; }
.fact-label { display: block; font-size: 0.78rem; color: var(--grey); font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 4px; }
.fact-value { font-weight: 700; font-size: 0.95rem; color: var(--navy); }

.mobile-apply { display: none; margin-bottom: 24px; }

.job-description { }
.job-description h2 { font-size: 1.3rem; margin: 28px 0 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.job-description h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.description-content { color: var(--slate); line-height: 1.8; font-size: 0.95rem; white-space: pre-wrap; }

.similar-jobs { margin-top: 48px; }
.similar-jobs h2 { font-size: 1.3rem; margin-bottom: 16px; }
.job-card-sm { padding: 16px 20px; }

/* SIDEBAR CARDS */
.apply-card, .company-card, .info-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}
.applied-badge {
    background: #F0FFF4;
    color: var(--green);
    border: 1px solid #BBF7D0;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
}
.job-share { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; gap: 12px; align-items: center; font-size: 0.85rem; color: var(--grey); }
.job-share a { color: var(--orange); font-weight: 600; }

.company-card { text-align: center; }
.company-card h3 { margin-bottom: 16px; }
.company-card .company-logo-lg { margin: 0 auto 12px; }
.company-card strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.company-card p { color: var(--grey); font-size: 0.85rem; margin-bottom: 16px; }

.info-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.info-table td { padding: 8px 0; border-bottom: 1px solid var(--border); }
.info-table td:first-child { color: var(--grey); }
.info-table td:last-child { text-align: right; font-weight: 600; }

/* ============================================================
   POST A JOB PAGE
   ============================================================ */
.post-job-header {
    background: var(--navy);
    padding: 48px 0;
    text-align: center;
}
.post-job-header h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 8px; }
.post-job-header p { color: rgba(255,255,255,0.65); font-size: 1rem; }

.post-job-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px 20px 64px;
    align-items: start;
}

.post-job-form { display: flex; flex-direction: column; gap: 0; }

.form-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 20px;
}
.form-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.form-section-header h2 { font-size: 1.2rem; }
.step-badge {
    width: 32px; height: 32px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.required { color: var(--orange); }
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    transition: border-color 0.2s;
    background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,85,0,0.08);
}
.form-group textarea { resize: vertical; line-height: 1.6; }
.is-invalid { border-color: #FC8181 !important; }
.error-msg { color: #E53E3E; font-size: 0.82rem; }
.form-hint { color: var(--grey); font-size: 0.88rem; margin-bottom: 16px; }

/* PRICING CARDS */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card { cursor: pointer; }
.pricing-card input[type="radio"] { display: none; }
.pricing-card-body {
    padding: 24px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.2s;
    position: relative;
    background: var(--white);
}
.pricing-card input:checked + .pricing-card-body {
    border-color: var(--orange);
    background: #FFF8F5;
    box-shadow: 0 0 0 3px rgba(255,85,0,0.1);
}
.pricing-card-body strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.1rem; margin-bottom: 8px; }
.price { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--orange); margin-bottom: 16px; }
.pricing-card-body ul { list-style: none; text-align: left; font-size: 0.85rem; color: var(--slate); display: flex; flex-direction: column; gap: 6px; }
.rec-badge {
    background: var(--orange);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
.pricing-card.recommended .pricing-card-body { border-color: var(--orange); }

.form-actions { text-align: center; padding: 32px 0; }
.form-terms { font-size: 0.82rem; color: var(--grey); margin-bottom: 16px; }
.form-terms a { color: var(--orange); }

.alert-error {
    background: #FFF5F5;
    border: 1px solid #FEB2B2;
    color: #C53030;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
}
.alert-error ul { padding-left: 18px; margin-top: 8px; }

/* POST JOB SIDEBAR */
.post-job-sidebar { position: sticky; top: 90px; }
.tips-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
}
.tips-card h3 { font-size: 1rem; margin-bottom: 14px; }
.tips-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 0.88rem; color: var(--slate); }
.tips-card ul li { padding-left: 0; }
.tips-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.6; margin-bottom: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .jobs-layout { grid-template-columns: 220px 1fr; }
    .job-detail-layout { grid-template-columns: 1fr 300px; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: block; margin-left: auto; }

    .hero-title { font-size: 2.2rem; }
    .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }

    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .jobs-layout { grid-template-columns: 1fr; }
    .filters-sidebar { position: static; }

    .job-detail-layout { grid-template-columns: 1fr; }
    .job-detail-sidebar { display: none; }
    .mobile-apply { display: block; }
    .quick-facts { flex-direction: column; }
    .fact { border-right: none; border-bottom: 1px solid var(--border); }

    .post-job-layout { grid-template-columns: 1fr; }
    .post-job-sidebar { display: none; }
    .form-grid { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }

    .salary-banner-inner { flex-direction: column; }
    .salary-cards { grid-template-columns: 1fr; }
    .employer-cta-inner { flex-direction: column; }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-arrow { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .search-bar { flex-direction: column; border-radius: var(--radius-sm); }
    .search-field { width: 100%; }
    .search-divider { width: 100%; height: 1px; }
    .btn-search { width: 100%; border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-page {
    min-height: calc(100vh - 68px);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.auth-card {
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-card-wide { max-width: 560px; }

.auth-header { text-align: center; margin-bottom: 32px; }
.auth-header h1 { font-size: 1.8rem; margin-bottom: 6px; }
.auth-header p { color: var(--grey); font-size: 0.95rem; }

.auth-alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    margin-bottom: 20px;
}
.auth-alert-error { background: #FFF5F5; border: 1px solid #FEB2B2; color: #C53030; }
.auth-alert-success { background: #F0FFF4; border: 1px solid #BBF7D0; color: #276749; }

.auth-form { display: flex; flex-direction: column; gap: 18px; }
.auth-submit { margin-top: 8px; }

.password-field { position: relative; }
.password-field input { padding-right: 48px; width: 100%; }
.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--grey);
    padding: 4px;
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
    color: var(--grey);
    font-size: 0.82rem;
}
.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
    z-index: 0;
}
.auth-divider span {
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 0 12px;
}

.social-btns { display: flex; gap: 10px; }
.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.2s;
}
.social-btn:hover { border-color: var(--orange); background: #FFF8F5; }

.auth-footer { text-align: center; margin-top: 24px; font-size: 0.9rem; color: var(--grey); }
.auth-link { color: var(--orange); font-weight: 600; }
.auth-link:hover { text-decoration: underline; }

/* Account type toggle */
.account-type-toggle {
    display: flex;
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 4px;
    margin-bottom: 28px;
    gap: 4px;
}
.type-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--grey);
    transition: all 0.2s;
}
.type-btn.active {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow);
}

/* Auth side panel */
.auth-side {
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
}
.auth-side-inner { max-width: 380px; }
.auth-side-badge {
    display: inline-block;
    background: rgba(255,85,0,0.15);
    border: 1px solid rgba(255,85,0,0.3);
    color: var(--orange-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.auth-side h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 20px; line-height: 1.2; }
.auth-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.auth-benefits li { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

.auth-testimonial {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 20px;
}
.auth-testimonial p { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-style: italic; line-height: 1.6; }

.auth-stats { display: flex; gap: 24px; margin-top: 20px; }
.auth-stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.6rem; color: var(--orange); font-weight: 800; }
.auth-stat span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

@media (max-width: 768px) {
    .auth-page { grid-template-columns: 1fr; }
    .auth-side { display: none; }
    .auth-card { padding: 32px 20px; }
    .social-btns { flex-direction: column; }
}

/* ============================================================
   SALARY GUIDE PAGE
   ============================================================ */
.salary-guide-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 64px 0;
    text-align: center;
}
.salary-guide-badge {
    display: inline-block;
    background: rgba(255,85,0,0.15);
    border: 1px solid rgba(255,85,0,0.3);
    color: var(--orange-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.salary-guide-header h1 { color: var(--white); font-size: 2.4rem; margin-bottom: 12px; }
.salary-guide-header p { color: rgba(255,255,255,0.65); max-width: 580px; margin: 0 auto 12px; }
.salary-guide-meta { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

.salary-guide-page { padding: 40px 20px 80px; }

.salary-filter-bar {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    background: var(--bg);
    padding: 20px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.salary-filter-group { display: flex; flex-direction: column; gap: 6px; }
.salary-filter-group label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--grey); }
.salary-filter-group select {
    padding: 8px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    background: var(--white);
}

.salary-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 56px; }
.salary-table { width: 100%; border-collapse: collapse; background: var(--white); }
.salary-table thead { background: var(--navy); }
.salary-table th {
    padding: 14px 18px;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}
.salary-table td { padding: 16px 18px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.salary-table tr:last-child td { border-bottom: none; }
.salary-table tr:hover td { background: #FFFAF7; }
.role-name { font-weight: 600; font-size: 0.95rem; }
.salary-col { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--slate); }
.salary-col.median { color: var(--navy); font-size: 1.05rem; }
.change-col { font-weight: 700; }
.change-col.positive { color: var(--green); }
.change-col.negative { color: #E53E3E; }

.salary-insights { margin-bottom: 56px; }
.salary-insights h2 { font-size: 1.6rem; margin-bottom: 28px; }
.insights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.insight-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.2s;
}
.insight-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.insight-icon { font-size: 2rem; margin-bottom: 12px; }
.insight-card h3 { font-size: 1rem; margin-bottom: 10px; }
.insight-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.6; }

.salary-cta {
    text-align: center;
    padding: 56px 40px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.salary-cta h2 { font-size: 1.8rem; margin-bottom: 10px; }
.salary-cta p { color: var(--grey); margin-bottom: 28px; }

@media (max-width: 768px) {
    .insights-grid { grid-template-columns: repeat(2, 1fr); }
    .salary-filter-bar { flex-direction: column; }
}
@media (max-width: 480px) {
    .insights-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination-nav { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate);
    transition: all 0.15s;
    background: var(--white);
}
.page-btn:hover { border-color: var(--orange); color: var(--orange); }
.page-btn-active { background: var(--orange); border-color: var(--orange); color: var(--white); font-weight: 700; }
.page-btn-disabled { color: var(--border); cursor: default; }
.page-btn-disabled:hover { border-color: var(--border); color: var(--border); }
.page-btn-dots { border: none; background: transparent; cursor: default; }
