:root {
    --primary: #1B3A5C;
    --primary-dark: #132942;
    --primary-light: #2A5580;
    --secondary: #0E7C6B;
    --secondary-light: #10A892;
    --accent: #D4A84B;
    --dark: #1E293B;
    --text: #334155;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --bg: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-section: #F1F5F9;
    --success: #16A34A;
    --warning: #D97706;
    --danger: #DC2626;
    --info: #0284C7;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.06);
    --radius: 6px;
    --radius-lg: 10px;
    --transition: 0.2s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===================== HEADER ===================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img { height: 42px; width: auto; }
.logo-divider {
    width: 1px;
    height: 28px;
    background: var(--border);
}
.logo-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-list a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    padding: 4px 0;
    position: relative;
}
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}
.nav-list a:hover, .nav-list a.active { color: var(--primary); }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }

.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: background var(--transition);
    letter-spacing: 0.3px;
}
.header-cta:hover { background: var(--primary-dark); color: #fff; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* ===================== HERO ===================== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/><circle cx="100" cy="100" r="60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/><circle cx="100" cy="100" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>') center/cover no-repeat;
    opacity: 0.5;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.hero-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}
.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: #0a6356; color: #fff; }
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--bg-light); color: var(--primary); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #b91c1c; color: #fff; }

/* ===================== SECTIONS ===================== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-section); }
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.3;
}
.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================== WHY KMCH GRID ===================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: box-shadow var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); }
.why-card-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-section);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 22px;
}
.why-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================== CATEGORIES ===================== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.cat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.cat-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    color: var(--primary);
}
.cat-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-section);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 18px;
}
.cat-card-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}
.cat-card-count {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===================== HOSPITALS ===================== */
.hospital-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hospital-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: box-shadow var(--transition);
}
.hospital-card:hover { box-shadow: var(--shadow-md); }
.hospital-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}
.hospital-card-location {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hospital-card-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-section);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* ===================== FEATURED JOBS ===================== */
.job-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.job-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.job-card-header { margin-bottom: 14px; }
.job-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.4;
}
.job-card-title a { color: inherit; }
.job-card-title a:hover { color: var(--primary); }
.job-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}
.job-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
}
.job-card-summary {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}
.job-card-date {
    font-size: 12px;
    color: var(--text-muted);
}
.job-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--bg-section);
    color: var(--text-light);
    font-size: 12px;
    border-radius: 4px;
    font-weight: 500;
}
.tag-primary { background: rgba(27,58,92,0.08); color: var(--primary); }
.tag-secondary { background: rgba(14,124,107,0.08); color: var(--secondary); }

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===================== EVP SECTION ===================== */
.evp-section {
    padding: 80px 0;
    background: var(--primary);
    color: #fff;
}
.evp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.evp-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}
.evp-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}
.evp-list {
    list-style: none;
}
.evp-list li {
    padding: 10px 0;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.evp-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.evp-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.evp-stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}
.evp-stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.evp-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ===================== PROCESS ===================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: process-counter;
}
.process-step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
    counter-increment: process-counter;
}
.process-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}
.process-step h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}
.process-step p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
    padding: 60px 0;
    background: var(--bg-section);
}
.cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.cta-inner h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}
.cta-inner p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}
.cta-equal {
    padding: 48px 0;
    background: var(--bg);
}
.cta-equal-inner {
    text-align: center;
    padding: 40px;
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.cta-equal-inner p {
    font-size: 14px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================== JOBS LISTING PAGE ===================== */
.page-banner {
    padding: 110px 0 40px;
    background: var(--primary);
}
.page-banner h1 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.page-banner p { color: rgba(255,255,255,0.7); font-size: 15px; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }

.jobs-page { padding: 40px 0 80px; }
.jobs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 90px;
    height: fit-content;
}
.filter-section { margin-bottom: 24px; }
.filter-section:last-child { margin-bottom: 0; }
.filter-section h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}
.filter-options { display: flex; flex-direction: column; gap: 6px; }
.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--text);
}
.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    accent-color: var(--primary);
}
.filter-option label { cursor: pointer; flex: 1; }
.filter-option .count {
    font-size: 12px;
    color: var(--text-muted);
}
.search-input-wrap {
    position: relative;
    margin-bottom: 24px;
}
.search-input-wrap input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 14px;
    color: var(--text);
    transition: border-color var(--transition);
}
.search-input-wrap input:focus {
    outline: none;
    border-color: var(--primary);
}
.search-input-wrap .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
}

.jobs-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.jobs-count {
    font-size: 14px;
    color: var(--text-light);
}
.jobs-count strong { color: var(--dark); }
.jobs-sort select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 13px;
    color: var(--text);
    background: var(--bg);
}
.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-list-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}
.job-list-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.job-list-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}
.job-list-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
}
.job-list-title a { color: inherit; }
.job-list-title a:hover { color: var(--primary); }
.job-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 10px 0;
}
.job-list-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
}
.job-list-summary {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.job-list-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

/* ===================== JOB DETAILS PAGE ===================== */
.job-detail { padding: 30px 0 80px; }
.job-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
}
.job-detail-main { min-width: 0; }
.job-detail-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}
.job-detail-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}
.job-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.job-detail-meta-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.job-detail-meta-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}
.job-detail-meta-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}
.job-section { margin-bottom: 32px; }
.job-section h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-section);
}
.job-section ul {
    padding-left: 20px;
}
.job-section li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}
.job-section p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}
.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
}
.skills-list li {
    padding: 5px 14px;
    background: var(--bg-section);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Sidebar Card */
.sidebar-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}
.sidebar-info { display: flex; flex-direction: column; gap: 12px; }
.sidebar-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.sidebar-info-label { color: var(--text-light); }
.sidebar-info-value { color: var(--dark); font-weight: 500; text-align: right; }

/* ===================== APPLICATION FORM ===================== */
.form-section {
    margin-bottom: 32px;
}
.form-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-section);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}
.form-group label .required { color: var(--danger); }
.form-control {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 14px;
    color: var(--text);
    transition: border-color var(--transition);
    background: var(--bg);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27,58,92,0.08);
}
textarea.form-control { min-height: 100px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-hint {
    font-size: 12px;
    color: var(--text-muted);
}
.file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}
.file-upload:hover { border-color: var(--primary); background: var(--bg-light); }
.file-upload input[type="file"] { display: none; }
.file-upload-text {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}
.file-upload-text strong { color: var(--primary); }
.file-upload-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}
.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    background: var(--bg-section);
    border-radius: var(--radius);
}
.consent-group input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--primary);
}
.consent-group label {
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
}

/* Alerts */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* ===================== PAGINATION ===================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}
.pagination a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.pagination .current {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.pagination .dots {
    border: none;
    color: var(--text-muted);
}

/* ===================== SIMILAR JOBS ===================== */
.similar-jobs { padding: 60px 0 80px; background: var(--bg-section); }
.similar-jobs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===================== FOOTER ===================== */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); }
.footer-main { padding: 56px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-logo { height: 40px; margin-bottom: 16px; background: #fff; padding: 6px 12px; border-radius: 6px; object-fit: contain; }
.footer-about p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer-address { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-links h4, .footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: 14px; margin-bottom: 12px; }
.footer-contact strong { color: rgba(255,255,255,0.9); display: block; margin-bottom: 3px; font-size: 13px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 34px; }
    .hero-stats { gap: 32px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .hospital-grid { grid-template-columns: repeat(2, 1fr); }
    .jobs-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .evp-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .jobs-layout { grid-template-columns: 240px 1fr; }
    .job-detail-layout { grid-template-columns: 1fr 300px; }
    .similar-jobs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
    .nav-list li { width: 100%; }
    .nav-list a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
    .header-cta { display: none; }

    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 15px; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .hero-stat { flex: 1; min-width: 120px; }

    .section { padding: 60px 0; }
    .section-header h2 { font-size: 24px; }

    .why-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .hospital-grid { grid-template-columns: 1fr; }
    .jobs-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }

    .jobs-layout { grid-template-columns: 1fr; }
    .filters-sidebar {
        position: static;
        display: none;
    }
    .filters-sidebar.active { display: block; }
    .filter-toggle-btn {
        display: inline-flex;
        margin-bottom: 16px;
    }

    .job-detail-layout { grid-template-columns: 1fr; }
    .job-detail-sidebar { position: static; }
    .job-detail-title { font-size: 22px; }

    .form-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
    .similar-jobs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 24px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .cat-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .job-detail-meta { flex-direction: column; gap: 14px; }
}

/* ===================== FILTER TOGGLE (MOBILE) ===================== */
.filter-toggle-btn {
    display: none;
    padding: 9px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    align-items: center;
    gap: 6px;
}
@media (max-width: 768px) {
    .filter-toggle-btn { display: inline-flex; }
}

/* ===================== LOADING / EMPTY STATE ===================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}
.empty-state h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}
.empty-state p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===================== SVG ICONS (inline) ===================== */
.icon-svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* Success page */
.success-page {
    padding: 120px 0 80px;
    text-align: center;
}
.success-icon {
    width: 72px;
    height: 72px;
    background: #f0fdf4;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--success);
    font-size: 32px;
}
.success-page h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.success-page p {
    font-size: 15px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
