/*
Theme Name: OgaalJobs
Theme URI: https://ogaaljobs.com
Author: OgaalJobs Team
Author URI: https://ogaaljobs.com
Description: East Africa's premier job portal WordPress theme. Built for OgaalJobs.com with full WP Job Manager integration, job seeker profile creation, employer dashboard, and a polished navy/gold design system. Requires WP Job Manager plugin.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ogaaljobs
Tags: jobs, job-board, employment, careers, east-africa, custom-colors, custom-logo, full-width-template, two-columns, blog, portfolio

OgaalJobs WordPress Theme
Design: Corporate Modernism meets East African Digital Identity
Primary Color: #0F1B35 (Deep Navy)
Accent Color:  #F5A623 (Warm Gold)
Typography: Clash Display (headings) + Plus Jakarta Sans (body)
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #F8F9FC;
    color: #1a1a2e;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
    --navy:        #0F1B35;
    --navy-light:  #1a2d52;
    --navy-dark:   #080f1e;
    --gold:        #F5A623;
    --gold-light:  #f9b84a;
    --gold-dark:   #c47d0a;
    --white:       #ffffff;
    --gray-50:     #F8F9FC;
    --gray-100:    #f1f3f7;
    --gray-200:    #e5e8ef;
    --gray-400:    #9aa0b0;
    --gray-500:    #6b7280;
    --gray-600:    #4b5563;
    --gray-900:    #111827;
    --radius-sm:   6px;
    --radius-md:   10px;
    --radius-lg:   16px;
    --radius-xl:   24px;
    --shadow-sm:   0 1px 3px rgba(15,27,53,0.08);
    --shadow-md:   0 4px 16px rgba(15,27,53,0.12);
    --shadow-lg:   0 8px 32px rgba(15,27,53,0.16);
    --shadow-gold: 0 8px 24px rgba(245,166,35,0.25);
    --transition:  all 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Clash Display', 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p  { font-size: 1rem; line-height: 1.7; color: var(--gray-600); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap-2 { gap: 0.5rem; }
.flex-gap-3 { gap: 0.75rem; }
.flex-gap-4 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--gray-500); }

.bg-navy { background-color: var(--navy); }
.bg-gold { background-color: var(--gold); }
.bg-white { background-color: var(--white); }
.bg-gray { background-color: var(--gray-50); }

.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245,166,35,0.35);
    color: var(--navy);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-md);
}
.btn-secondary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }

/* ============================================================
   BADGES & TAGS
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.badge-gold    { background: rgba(245,166,35,0.15); color: var(--gold-dark); border: 1px solid rgba(245,166,35,0.3); }
.badge-navy    { background: rgba(15,27,53,0.08);   color: var(--navy); }
.badge-green   { background: #ecfdf5; color: #059669; }
.badge-blue    { background: #eff6ff; color: #2563eb; }
.badge-red     { background: #fef2f2; color: #dc2626; }
.badge-purple  { background: #f5f3ff; color: #7c3aed; }

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    color: var(--navy);
    background: var(--white);
    transition: border-color 150ms ease, box-shadow 150ms ease;
    appearance: none;
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}
.card:hover {
    border-color: rgba(245,166,35,0.4);
    box-shadow: 0 16px 40px rgba(245,166,35,0.1);
    transform: translateY(-4px);
}
.card-body { padding: 1.5rem; }
.card-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--gray-100); }

/* ============================================================
   SITE HEADER / NAVBAR
   ============================================================ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 300ms ease, box-shadow 300ms ease;
}
#site-header.scrolled,
#site-header.solid {
    background: var(--navy);
    box-shadow: 0 4px 24px rgba(15,27,53,0.4);
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}
.site-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 200ms ease;
}
.site-logo-icon:hover { transform: scale(1.05); }
.site-logo-icon svg { width: 20px; height: 20px; color: var(--navy); }
.site-logo-text { display: flex; flex-direction: column; line-height: 1; }
.site-logo-name {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
    letter-spacing: -0.02em;
}
.site-logo-name span { color: var(--gold); }
.site-logo-tagline {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-actions .btn-signin {
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    padding: 0.5rem 0.75rem;
    transition: color 200ms;
}
.header-actions .btn-signin:hover { color: var(--white); }

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--white);
}
.menu-toggle svg { width: 24px; height: 24px; }
.mobile-menu {
    display: none;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.mobile-menu-actions { padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
@media (max-width: 768px) {
    .main-nav, .header-actions { display: none; }
    .menu-toggle { display: flex; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--navy);
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,27,53,0.92) 0%, rgba(15,27,53,0.75) 50%, rgba(15,27,53,0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    padding-bottom: 4rem;
    max-width: 750px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.3);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease forwards;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}
.hero-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.03em;
}
.hero-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-title .accent { color: var(--gold); }
.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 560px;
    animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-subtitle strong { color: var(--white); font-weight: 700; }

/* Hero Search Box */
.hero-search {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 0.6s 0.3s ease both;
    margin-bottom: 1.5rem;
}
.hero-search-inner {
    display: flex;
    align-items: center;
    gap: 0;
}
.hero-search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    transition: background 150ms;
}
.hero-search-field:hover { background: var(--gray-50); }
.hero-search-field svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.hero-search-field input,
.hero-search-field select {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--navy);
}
.hero-search-field input::placeholder { color: var(--gray-400); }
.hero-search-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-200);
    flex-shrink: 0;
}
.hero-search-btn {
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.hero-search-btn:hover { background: var(--navy-light); transform: translateY(-1px); }
.hero-search-btn svg { width: 16px; height: 16px; }
@media (max-width: 768px) {
    .hero-search-inner { flex-direction: column; }
    .hero-search-divider { display: none; }
    .hero-search-field { width: 100%; }
    .hero-search-btn { width: 100%; justify-content: center; }
}

.hero-popular {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 0.6s 0.4s ease both;
}
.hero-popular-label { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.hero-popular a {
    padding: 0.25rem 0.875rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.hero-popular a:hover { background: rgba(255,255,255,0.2); color: var(--white); }

/* Decorative circles */
.hero-circle-1 {
    position: absolute;
    top: 25%;
    right: 15%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(245,166,35,0.2);
    animation: float 4s ease-in-out infinite;
}
.hero-circle-2 {
    position: absolute;
    bottom: 25%;
    right: 28%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    animation: float 4s 1s ease-in-out infinite;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--navy); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; }
.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(245,166,35,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}
.stat-icon svg { width: 24px; height: 24px; color: var(--gold); }
.stat-value {
    font-family: 'Clash Display', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   JOB CATEGORIES
   ============================================================ */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 1024px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .categories-grid { grid-template-columns: repeat(2, 1fr); } }

.category-card {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    text-decoration: none;
    display: block;
}
.category-card:hover {
    border-color: rgba(245,166,35,0.4);
    box-shadow: 0 8px 24px rgba(245,166,35,0.1);
    transform: translateY(-4px);
}
.category-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 200ms;
}
.category-card:hover .category-icon { transform: scale(1.1); }
.category-icon svg { width: 24px; height: 24px; }
.category-name { font-weight: 700; font-size: 0.9375rem; color: var(--navy); margin-bottom: 0.25rem; }
.category-count { font-size: 0.8125rem; color: var(--gray-400); font-weight: 500; }
.category-arrow {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 0.75rem;
    opacity: 0;
    transition: opacity 200ms;
}
.category-card:hover .category-arrow { opacity: 1; }

/* ============================================================
   JOB LISTINGS
   ============================================================ */
.jobs-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; }
@media (max-width: 1024px) { .jobs-layout { grid-template-columns: 1fr; } }

/* Sidebar Filters */
.filters-sidebar {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    position: sticky;
    top: 88px;
}
.filter-section { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-100); }
.filter-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.filter-title { font-size: 0.875rem; font-weight: 700; color: var(--navy); margin-bottom: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; }
.filter-option { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; cursor: pointer; }
.filter-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
.filter-option label { font-size: 0.9375rem; color: var(--gray-600); cursor: pointer; }
.filter-option label span { color: var(--gray-400); font-size: 0.8125rem; margin-left: 0.25rem; }

/* Job Cards */
.job-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    padding: 1.5rem;
    transition: var(--transition);
    display: block;
    text-decoration: none;
    margin-bottom: 1rem;
}
.job-card:hover {
    border-color: rgba(245,166,35,0.4);
    box-shadow: 0 12px 32px rgba(245,166,35,0.1);
    transform: translateY(-2px);
}
.job-card-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.job-logo {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}
.job-info { flex: 1; min-width: 0; }
.job-title { font-family: 'Clash Display', sans-serif; font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.job-company { font-size: 0.9375rem; color: var(--gray-500); }
.job-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.875rem; }
.job-meta-item { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: var(--gray-500); }
.job-meta-item svg { width: 14px; height: 14px; }
.job-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.job-tag { padding: 0.25rem 0.75rem; border-radius: var(--radius-sm); background: var(--white); border: 1px solid var(--gray-200); font-size: 0.8125rem; font-weight: 500; color: var(--gray-600); }
.job-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.job-salary { font-weight: 700; font-size: 0.9375rem; color: var(--navy); }
.job-posted { font-size: 0.8125rem; color: var(--gray-400); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
@media (max-width: 1024px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .steps-grid { grid-template-columns: 1fr; } }

.steps-connector {
    position: absolute;
    top: 48px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(245,166,35,0.3), transparent);
}
@media (max-width: 1024px) { .steps-connector { display: none; } }

.step-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.step-card:hover { box-shadow: 0 12px 32px rgba(245,166,35,0.1); }
.step-number {
    position: absolute;
    top: -16px;
    left: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(245,166,35,0.3);
}
.step-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(15,27,53,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    margin-top: 0.5rem;
}
.step-icon svg { width: 24px; height: 24px; color: var(--navy); }
.step-title { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 0.625rem; }
.step-desc { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.6; }

/* ============================================================
   DUAL CTA SECTION
   ============================================================ */
.dual-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 768px) { .dual-cta { grid-template-columns: 1fr; } }

.cta-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    padding: 2.5rem;
}
.cta-card-bg {
    position: absolute;
    inset: 0;
}
.cta-card-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-card-content { position: relative; z-index: 2; }
.cta-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
.cta-card-badge svg { width: 16px; height: 16px; }
.cta-card-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
.cta-card-desc { font-size: 1rem; line-height: 1.65; margin-bottom: 2rem; }
.cta-checklist { list-style: none; margin-bottom: 2rem; }
.cta-checklist li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; margin-bottom: 0.75rem; }
.cta-checklist li svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Seeker card */
.cta-card--seeker { background: var(--navy); }
.cta-card--seeker .cta-card-bg img { opacity: 0.2; }
.cta-card--seeker .cta-card-badge { background: rgba(245,166,35,0.2); border: 1px solid rgba(245,166,35,0.3); color: var(--gold); }
.cta-card--seeker .cta-card-badge svg { color: var(--gold); }
.cta-card--seeker .cta-card-title { color: var(--white); }
.cta-card--seeker .cta-card-desc { color: rgba(255,255,255,0.65); }
.cta-card--seeker .cta-checklist li { color: rgba(255,255,255,0.8); }
.cta-card--seeker .cta-checklist li svg { color: var(--gold); }

/* Employer card */
.cta-card--employer { background: var(--gold); }
.cta-card--employer .cta-card-bg img { opacity: 0.15; }
.cta-card--employer .cta-card-badge { background: rgba(15,27,53,0.15); border: 1px solid rgba(15,27,53,0.2); color: var(--navy); }
.cta-card--employer .cta-card-badge svg { color: var(--navy); }
.cta-card--employer .cta-card-title { color: var(--navy); }
.cta-card--employer .cta-card-desc { color: rgba(15,27,53,0.7); }
.cta-card--employer .cta-checklist li { color: rgba(15,27,53,0.8); }
.cta-card--employer .cta-checklist li svg { color: var(--navy); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: 0 12px 32px rgba(245,166,35,0.1); }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1.25rem; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
.testimonial-text { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9375rem; color: var(--navy); }
.testimonial-role { font-size: 0.8125rem; color: var(--gray-400); }

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    text-align: center;
}
.cta-banner-bg { position: absolute; inset: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-overlay { position: absolute; inset: 0; background: rgba(15,27,53,0.85); }
.cta-banner-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-banner-title { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 1rem; }
.cta-banner-desc { font-size: 1.125rem; color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: var(--white); }
.footer-newsletter { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 2.5rem 0; }
.footer-newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-newsletter-text h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 0.25rem; }
.footer-newsletter-text p { font-size: 0.9375rem; color: rgba(255,255,255,0.6); }
.footer-newsletter-form { display: flex; gap: 0.5rem; flex-shrink: 0; }
.footer-newsletter-form input {
    width: 280px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    transition: var(--transition);
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-form input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.15); }
@media (max-width: 640px) { .footer-newsletter-form { flex-direction: column; } .footer-newsletter-form input { width: 100%; } }

.footer-main { padding: 3.5rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { font-size: 0.9375rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 1.25rem 0 1.5rem; max-width: 280px; }
.footer-contact-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--white); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-social a svg { width: 16px; height: 16px; }

.footer-col-title { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { font-size: 0.9375rem; color: rgba(255,255,255,0.55); transition: color 150ms; }
.footer-links a:hover { color: var(--gold); }

.footer-categories { padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-categories-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-categories-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-categories-tags a {
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.footer-categories-tags a:hover { background: rgba(245,166,35,0.15); color: var(--gold); border-color: rgba(245,166,35,0.3); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.footer-bottom-love { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.footer-bottom-love span { color: var(--gold); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header { background: var(--navy); padding: 6rem 0 3rem; }
.page-header h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.0625rem; }

/* ============================================================
   WP JOB MANAGER OVERRIDES
   ============================================================ */
.job_listings { margin: 0; }
.job_listing { background: var(--white); border-radius: var(--radius-xl); border: 1px solid var(--gray-100); padding: 1.5rem; margin-bottom: 1rem; transition: var(--transition); }
.job_listing:hover { border-color: rgba(245,166,35,0.4); box-shadow: 0 12px 32px rgba(245,166,35,0.1); transform: translateY(-2px); }
.job_listing .position h3 a { font-family: 'Clash Display', sans-serif; font-size: 1.0625rem; font-weight: 700; color: var(--navy); text-decoration: none; }
.job_listing .company strong { color: var(--gray-500); font-weight: 500; font-size: 0.9375rem; }
.job_listing .location { color: var(--gray-500); font-size: 0.875rem; }
.job_listing .job-type { background: #eff6ff; color: #2563eb; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.8125rem; font-weight: 600; }

/* Submit Job Form */
#submit-job-form .fieldset-job_title input,
#submit-job-form .fieldset-job_description textarea,
#submit-job-form select { @extend .form-control; }
#submit-job-form .submit-button,
#submit-job-form input[type="submit"] { @extend .btn; @extend .btn-primary; }

/* Resume / Profile */
.resume { background: var(--white); border-radius: var(--radius-xl); border: 1px solid var(--gray-100); padding: 1.5rem; margin-bottom: 1rem; transition: var(--transition); }
.resume:hover { border-color: rgba(245,166,35,0.4); box-shadow: 0 12px 32px rgba(245,166,35,0.1); }
.resume .candidate-name a { font-family: 'Clash Display', sans-serif; font-size: 1.0625rem; font-weight: 700; color: var(--navy); text-decoration: none; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.4); }
    50%       { box-shadow: 0 0 0 8px rgba(245,166,35,0); }
}

@media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
    .hide-desktop { display: none !important; }
}
