/* ================================================
   Apex Recruitment — Main Stylesheet
   Design: Refined Luxury / Editorial
   ================================================ */

:root {
    --navy:      #0d1b2a;
    --navy-light:#162437;
    --gold:      #c9a84c;
    --gold-light:#e8c97a;
    --cream:     #f7f4ef;
    --cream-dark:#ede9e0;
    --white:     #ffffff;
    --grey-50:   #f9fafb;
    --grey-100:  #f3f4f6;
    --grey-200:  #e5e7eb;
    --grey-400:  #9ca3af;
    --grey-600:  #4b5563;
    --grey-800:  #1f2937;
    --text:      #1a1a2e;
    --text-muted:#5a6073;
    --success:   #0f9b5d;
    --error:     #c0392b;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;

    --radius-sm:  4px;
    --radius:     8px;
    --radius-lg:  16px;
    --radius-xl:  24px;

    --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
    --shadow:     0 4px 20px rgba(0,0,0,.1);
    --shadow-lg:  0 12px 48px rgba(0,0,0,.15);
    --shadow-xl:  0 24px 80px rgba(0,0,0,.18);

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --container:  1200px;
    --header-h:   80px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ---- Layout ---- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .02em; }
p { line-height: 1.75; color: var(--text-muted); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { max-width: 580px; margin: 16px auto 0; font-size: 1.05rem; }
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: .83rem; }

/* ================================================
   TOP BAR
   ================================================ */
.topbar {
    background: var(--navy);
    padding: 8px 0;
    font-size: .82rem;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-contact, .topbar-social { display: flex; gap: 20px; align-items: center; }
.topbar-contact a, .topbar-social a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.topbar-contact a:hover, .topbar-social a:hover { color: var(--gold); }
.topbar-contact a i { margin-right: 6px; color: var(--gold); }

/* ================================================
   HEADER / NAV
   ================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 32px;
}
.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
}
.brand-dot { color: var(--gold); }

.nav-menu { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: flex-end; }
.nav-list { display: flex; align-items: center; }
.nav-item { position: relative; }
.nav-link {
    display: flex; align-items: center; gap: 5px;
    padding: 8px 16px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--grey-800);
    border-radius: var(--radius-sm);
    transition: color var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link i { font-size: .7rem; transition: transform var(--transition); }
.nav-item:hover .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--grey-200);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    min-width: 480px;
    z-index: 200;
    padding-top: 12px; /* invisible bridge so mouse doesn't lose hover */
}
/* Pseudo-element fills the gap between nav link and dropdown */
.dropdown::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}
.nav-item:hover .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-inner { display: flex; padding: 28px; gap: 32px; }
.dropdown-col { flex: 1; }
.dropdown-col h4 {
    font-size: .72rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--grey-200);
}
.dropdown-col a {
    display: block;
    font-size: .88rem;
    color: var(--grey-600);
    padding: 5px 0;
    transition: color var(--transition);
}
.dropdown-col a:hover { color: var(--navy); padding-left: 4px; }

.nav-cta { display: flex; gap: 10px; margin-left: 16px; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: .2;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 40%, rgba(13,27,42,.7) 100%);
}
.hero-accent {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
}
.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 680px;
    animation: fadeUp .8s ease both;
}
.hero-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}
.hero-stat-label {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    letter-spacing: .04em;
}

/* Quick Search Bar */
.search-bar-wrapper {
    position: relative;
    z-index: 2;
    margin-top: -32px;
    margin-bottom: 0;
}
.search-bar {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 32px 36px;
}
.search-bar h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--navy);
}
.search-form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
.search-group label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--grey-600);
    margin-bottom: 6px;
}
.search-group input,
.search-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius);
    font-size: .9rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
.search-group input:focus,
.search-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }

/* ================================================
   SECTORS
   ================================================ */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.sector-card {
    background: var(--white);
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}
.sector-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.sector-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background var(--transition);
}
.sector-card:hover .sector-icon { background: var(--gold); }
.sector-icon i { font-size: 1.4rem; color: var(--navy); }
.sector-card:hover .sector-icon i { color: var(--white); }
.sector-card h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 4px; }
.sector-count { font-size: .82rem; color: var(--gold); font-weight: 600; }

/* ================================================
   JOB LISTINGS
   ================================================ */
.jobs-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }

/* Sidebar filters */
.jobs-sidebar {
    background: var(--white);
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}
.filter-group { margin-bottom: 24px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--grey-200);
}
.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--grey-600);
    cursor: pointer;
    padding: 4px 0;
    transition: color var(--transition);
}
.filter-group label:hover { color: var(--navy); }
.filter-group input[type=radio],
.filter-group input[type=checkbox] { accent-color: var(--gold); width: 15px; height: 15px; }
.filter-group select, .filter-group input[type=text] {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius);
    font-size: .88rem;
    outline: none;
}
.filter-group select:focus, .filter-group input[type=text]:focus {
    border-color: var(--gold);
}

/* Job Cards */
.job-card {
    background: var(--white);
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 16px;
    transition: all var(--transition);
    display: block;
    color: inherit;
    text-decoration: none;
    position: relative;
}
.job-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.job-card.featured { border-color: var(--gold); border-width: 2px; }
.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--navy);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}
.job-card-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 12px; }
.job-logo {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--grey-200);
}
.job-logo i { font-size: 1.3rem; color: var(--navy); }
.job-card h3 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.job-company { font-size: .88rem; color: var(--gold); font-weight: 500; }
.job-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.job-meta-item {
    display: flex; align-items: center; gap: 6px;
    font-size: .83rem;
    color: var(--grey-600);
}
.job-meta-item i { color: var(--gold); font-size: .8rem; }
.job-type-badge {
    display: inline-block;
    background: var(--cream);
    color: var(--navy);
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: capitalize;
}
.job-excerpt { font-size: .88rem; color: var(--text-muted); margin-top: 10px; line-height: 1.6; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 500;
    border: 1.5px solid var(--grey-200);
    color: var(--grey-600);
    transition: all var(--transition);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination span.current { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 700; }

/* ================================================
   JOB DETAIL
   ================================================ */
.job-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.job-detail-main {}
.job-detail-header {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: var(--white);
    margin-bottom: 32px;
}
.job-detail-header h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 8px; }
.job-detail-header .job-company { font-size: 1rem; color: var(--gold); margin-bottom: 20px; }
.job-detail-header .job-meta { gap: 16px; }
.job-detail-header .job-meta-item { color: rgba(255,255,255,.75); font-size: .9rem; }
.job-detail-header .job-meta-item i { color: var(--gold); }
.job-body { font-size: .95rem; line-height: 1.8; color: var(--text-muted); }
.job-body h2, .job-body h3 { color: var(--navy); margin: 28px 0 12px; font-size: 1.3rem; }
.job-body ul { margin: 12px 0 12px 20px; }
.job-body ul li { margin-bottom: 6px; list-style: disc; }
.job-body p { margin-bottom: 14px; }

.job-sidebar-card {
    background: var(--white);
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}
.job-sidebar-card h3 { font-size: 1.2rem; margin-bottom: 20px; color: var(--navy); }
.salary-display {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    margin-bottom: 20px;
}
.salary-amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold); display: block; }
.salary-period { font-size: .8rem; color: var(--text-muted); }

/* ================================================
   FORMS
   ================================================ */
.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--grey-200);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--grey-600);
    margin-bottom: 8px;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group input[type=url],
.form-group input[type=number],
.form-group input[type=password],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius);
    font-size: .92rem;
    color: var(--text);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group.full { grid-column: 1 / -1; }
.file-upload-area {
    border: 2px dashed var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}
.file-upload-area:hover, .file-upload-area.dragover {
    border-color: var(--gold);
    background: rgba(201,168,76,.04);
}
.file-upload-area i { font-size: 2rem; color: var(--grey-400); margin-bottom: 12px; display: block; }
.file-upload-area p { font-size: .88rem; color: var(--text-muted); margin: 0; }
.file-upload-area strong { color: var(--gold); }

/* Alert Messages */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert i { flex-shrink: 0; }

/* ================================================
   STATS BAND
   ================================================ */
.stats-band { background: var(--navy); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item {}
.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { font-size: .88rem; color: rgba(255,255,255,.65); letter-spacing: .04em; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--white);
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
    transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.testimonial-quote {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold);
    opacity: .3;
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 28px;
}
.testimonial-text {
    font-size: .95rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-top: 20px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .92rem; color: var(--navy); margin-bottom: 2px; }
.testimonial-role { font-size: .8rem; color: var(--gold); }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-text h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,.7); max-width: 500px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ================================================
   WHY CHOOSE US
   ================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-xl);
    background: var(--cream);
    transition: all var(--transition);
}
.feature-card:hover { background: var(--navy); }
.feature-card:hover h3, .feature-card:hover p { color: var(--white); }
.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.feature-card:hover .feature-icon { background: rgba(255,255,255,.15); }
.feature-icon i { font-size: 1.6rem; color: var(--gold); }
.feature-card h3 { font-size: 1.1rem; font-family: var(--font-body); margin-bottom: 10px; color: var(--navy); }
.feature-card p { font-size: .88rem; }

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(201,168,76,.05));
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 600px; font-size: 1.05rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 20px; font-size: .83rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: rgba(255,255,255,.7); }

/* ================================================
   SPLIT SECTION (about, services)
   ================================================ */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-section.reverse .split-image { order: -1; }
.split-image { position: relative; }
.split-image img { border-radius: var(--radius-xl); }
.split-image::before {
    content: '';
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--gold);
    border-radius: var(--radius-xl);
    z-index: -1;
}
.split-image::after {
    content: '';
    position: absolute;
    top: -24px;
    left: -24px;
    width: 100px;
    height: 100px;
    background: var(--cream);
    border-radius: var(--radius-xl);
    z-index: -1;
}
.split-content { }
.split-content h2 { margin-bottom: 16px; }
.split-content p { margin-bottom: 14px; font-size: .95rem; }
.checklist { margin: 20px 0 28px; }
.checklist li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.checklist li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

/* ================================================
   INSIGHTS / BLOG
   ================================================ */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.insight-card {
    background: var(--white);
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.insight-image { height: 200px; background: var(--cream); overflow: hidden; }
.insight-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.insight-card:hover .insight-image img { transform: scale(1.05); }
.insight-body { padding: 24px; }
.insight-category {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.insight-card h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.insight-meta { font-size: .8rem; color: var(--grey-400); }

/* ================================================
   CONTACT
   ================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: var(--white);
    height: 100%;
}
.contact-info-card h2 { color: var(--white); margin-bottom: 12px; }
.contact-info-card > p { color: rgba(255,255,255,.7); margin-bottom: 36px; }
.contact-info-item {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 28px;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon i { color: var(--gold); font-size: 1.1rem; }
.contact-info-item h4 { color: var(--white); margin-bottom: 2px; font-size: .9rem; }
.contact-info-item p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }
.contact-info-item a { color: rgba(255,255,255,.65); }

/* ================================================
   ADMIN STYLES
   ================================================ */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px;
    background: var(--navy);
    color: var(--white);
    flex-shrink: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}
.admin-logo {
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}
.admin-logo .brand-dot { color: var(--gold); }
.admin-nav { padding: 16px 0; }
.admin-nav-section { padding: 12px 24px 4px; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.admin-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 24px;
    font-size: .88rem;
    color: rgba(255,255,255,.7);
    transition: all var(--transition);
}
.admin-nav a:hover, .admin-nav a.active { color: var(--white); background: rgba(201,168,76,.12); }
.admin-nav a.active { color: var(--gold); border-right: 3px solid var(--gold); }
.admin-nav a i { width: 18px; text-align: center; }
.admin-main { margin-left: 260px; flex: 1; }
.admin-topbar {
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}
.admin-topbar h1 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; }
.admin-content { padding: 32px; }
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1.5px solid var(--grey-200);
}
.stat-card-label { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-400); margin-bottom: 8px; }
.stat-card-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--navy); }
.stat-card-change { font-size: .8rem; color: var(--success); margin-top: 4px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 14px 16px; text-align: left; font-size: .88rem; border-bottom: 1px solid var(--grey-200); }
.admin-table th { font-weight: 600; color: var(--grey-600); background: var(--grey-50); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.admin-table tr:hover td { background: var(--grey-50); }
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.badge-new { background: #dbeafe; color: #1d4ed8; }
.badge-reviewing { background: #fef3c7; color: #92400e; }
.badge-shortlisted { background: #d1fae5; color: #065f46; }
.badge-rejected { background: #fee2e2; color: #991b1b; }
.badge-hired { background: #ede9fe; color: #5b21b6; }
.badge-active { background: #d1fae5; color: #065f46; }
.badge-inactive { background: #f3f4f6; color: #6b7280; }

/* ================================================
   UTILITIES
   ================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.mt-4 { margin-top: 16px; }
.mb-0 { margin-bottom: 0; }
.d-flex { display: flex; }
.gap-2 { gap: 8px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.animate-fade-up { animation: fadeUp .7s ease both; }
.animate-fade-up-delay { animation: fadeUp .7s ease .15s both; }
.animate-fade-up-delay-2 { animation: fadeUp .7s ease .3s both; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .split-section { grid-template-columns: 1fr; gap: 48px; }
    .split-section.reverse .split-image { order: 0; }
    .job-detail-layout { grid-template-columns: 1fr; }
    .job-sidebar-card { position: static; }
    .contact-layout { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .jobs-layout { grid-template-columns: 1fr; }
    .jobs-sidebar { position: static; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .insights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-h: 68px; }
    .section { padding: 64px 0; }
    .nav-menu {
        display: none;
        position: fixed;
        inset: var(--header-h) 0 0;
        background: var(--white);
        flex-direction: column;
        overflow-y: auto;
        padding: 20px;
        gap: 0;
        justify-content: flex-start;
    }
    .nav-menu.open { display: flex; }
    .nav-list { flex-direction: column; width: 100%; }
    .nav-link { padding: 14px 8px; font-size: 1rem; justify-content: space-between; width: 100%; }
    .dropdown { position: static; transform: none; opacity: 1; pointer-events: auto; box-shadow: none; border: none; border-top: 1px solid var(--grey-200); min-width: 0; border-radius: 0; display: none; }
    .nav-item.open .dropdown { display: block; }
    .nav-toggle { display: flex; }
    .nav-cta { flex-direction: column; width: 100%; margin: 16px 0 0; }
    .nav-cta .btn { text-align: center; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .search-form { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { width: 100%; justify-content: center; }
    .form-grid { grid-template-columns: 1fr; }
    .insights-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .topbar-contact a:first-child { display: none; }
    .search-bar { padding: 24px; }
    .form-card { padding: 28px 20px; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    margin-top: auto;
}

.footer-top {
    padding: 72px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo .brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.footer-logo .brand-dot {
    color: var(--gold);
    font-size: 1.8rem;
    line-height: 1;
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
    max-width: 240px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact-list li i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}

.footer-contact-list li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-list li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
}

.footer-legal li a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal li a:hover {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
    .footer-brand-col {
        grid-column: 1 / -1;
    }
    .footer-tagline { max-width: 100%; }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-top { padding: 48px 0 32px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
    .footer-grid { grid-template-columns: 1fr; }
}