/* ===== JOBS PAGE ===== */
.jobs-page { max-width: 1200px; margin: 0 auto; padding: 24px 20px 60px; }

.jobs-search-bar {
    background: #0a66c2;
    margin: 0 -20px;
    padding: 24px 20px;
    margin-bottom: 24px;
}

.jobs-search-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.jobs-search-form input {
    flex: 1;
    padding: 13px 18px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.jobs-search-form button {
    background: #f3a000;
    color: white;
    border: none;
    padding: 13px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

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

/* ===== FILTER SIDEBAR ===== */
.filter-sidebar {
    background: white;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 84px;
}

.filter-sidebar h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #191919;
}

.filter-group {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-group h4 {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-radio, .filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
    padding: 5px 0;
    cursor: pointer;
}

.filter-radio input, .filter-check input { cursor: pointer; }

.white-radio { color: #0a66c2; }
.blue-radio  { color: #e65100; }

.filter-cats { max-height: 200px; overflow-y: auto; }

.filter-input {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
}

.filter-input:focus { border-color: #0a66c2; }

.filter-btn {
    width: 100%;
    padding: 11px;
    background: #0a66c2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    margin-bottom: 8px;
}

.filter-btn:hover { background: #004182; }

.clear-filter {
    display: block;
    text-align: center;
    font-size: 13px;
    color: #888;
    text-decoration: none;
    margin-top: 4px;
}

.clear-filter:hover { color: #c62828; }

/* ===== RESULTS ===== */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.results-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #191919;
    display: flex;
    align-items: center;
    gap: 10px;
}

.collar-tag {
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.white-tag { background: #e8f0fe; color: #0a66c2; }
.blue-tag  { background: #fff3e0; color: #e65100; }

.sort-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #888;
}

.sort-bar a {
    color: #0a66c2;
    text-decoration: none;
    font-weight: 600;
}

/* ===== JOB LIST CARDS ===== */
.job-cards-list { display: flex; flex-direction: column; gap: 14px; }

.job-list-card {
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border: 1.5px solid #eee;
    transition: all 0.2s;
    position: relative;
}

.job-list-card:hover {
    border-color: #0a66c2;
    box-shadow: 0 6px 20px rgba(10,102,194,0.1);
}

.urgent-card { border-color: #e65100; }

.urgent-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff3e0;
    color: #e65100;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.jlc-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }

.jlc-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #e8f0fe;
    color: #0a66c2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.jlc-logo.blue-logo { background: #fff3e0; color: #e65100; }

.jlc-info { flex: 1; }

.jlc-title {
    font-size: 17px;
    font-weight: 700;
    color: #191919;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.jlc-title:hover { color: #0a66c2; }

.jlc-company { font-size: 13px; color: #666; }

.jlc-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.white-badge { background: #e8f0fe; color: #0a66c2; }
.blue-badge  { background: #fff3e0; color: #e65100; }

.jlc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #555;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.jlc-meta span { display: flex; align-items: center; gap: 5px; }
.jlc-meta i    { color: #0a66c2; }

.jlc-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }

.jlc-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.jlc-tags span {
    background: #f3f2ee;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
    color: #555;
}

.jlc-actions { display: flex; align-items: center; gap: 12px; }

.jlc-date { font-size: 12px; color: #888; display: flex; align-items: center; gap: 4px; }

.jlc-apply-btn {
    background: #0a66c2;
    color: white;
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.2s;
}

.jlc-apply-btn:hover { background: #004182; }

/* ===== NO JOBS ===== */
.no-jobs {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.no-jobs i { font-size: 56px; display: block; margin-bottom: 16px; color: #ddd; }
.no-jobs h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: #444; }

/* ===== JOB DETAIL ===== */
.job-detail-page { max-width: 1100px; margin: 0 auto; padding: 30px 20px 60px; }

.jd-layout { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }

.jd-header-card, .jd-section-card {
    background: white;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 18px;
}

.jd-title-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.jd-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #e8f0fe;
    color: #0a66c2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.jd-logo.blue-logo { background: #fff3e0; color: #e65100; }

.jd-title { font-size: 24px; font-weight: 800; color: #191919; margin-bottom: 6px; }
.jd-company { font-size: 14px; color: #666; display: flex; align-items: center; gap: 6px; }

.jd-collar-badge {
    margin-left: auto;
    padding: 5px 14px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.jd-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #555;
    padding: 16px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 18px;
}

.jd-quick-info span { display: flex; align-items: center; gap: 6px; }
.jd-quick-info i    { color: #0a66c2; }

.jd-apply-bar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.apply-now-btn {
    padding: 13px 28px;
    background: #0a66c2;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.apply-now-btn:hover { background: #004182; }

.apply-done-btn {
    padding: 13px 28px;
    background: #e6f4ea;
    color: #2e7d32;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.jd-posted, .jd-deadline {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.jd-section-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jd-description { font-size: 14px; line-height: 1.7; color: #444; }

.jd-skills { display: flex; flex-wrap: wrap; gap: 8px; }

.jd-skills span {
    background: #f3f2ee;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #444;
    font-weight: 500;
}

/* SIDEBAR */
.jd-info-card {
    background: white;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 16px;
}

.jd-info-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #191919;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jd-overview { list-style: none; }

.jd-overview li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
}

.jd-overview li i     { color: #0a66c2; width: 16px; }
.jd-overview li span  { color: #888; flex: 1; }
.jd-overview li strong { color: #191919; }

.contact-phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e6f4ea;
    color: #2e7d32;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.related-job-link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
}

.rj-title { font-size: 14px; font-weight: 600; color: #0a66c2; margin-bottom: 3px; }
.rj-meta  { font-size: 12px; color: #888; display: flex; align-items: center; gap: 4px; }

/* ===== JOB DETAIL ACTION BUTTONS ===== */
.jd-action-btn {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid #ddd;
    background: white;
    text-decoration: none;
    color: #555;
    transition: all 0.2s;
}
.jd-action-btn:hover { border-color: #0a66c2; color: #0a66c2; background: #f0f6ff; }
.save-btn.saved { background: #e8f0fe; border-color: #0a66c2; color: #0a66c2; }
.chat-btn  { color: #2e7d32; border-color: #a5d6a7; }
.chat-btn:hover  { background: #e6f4ea; border-color: #2e7d32; color: #2e7d32; }
.share-btn { color: #e65100; border-color: #ffcc80; }
.share-btn:hover { background: #fff3e0; border-color: #e65100; color: #e65100; }

.unsave-btn {
    padding: 9px 16px;
    background: #e8f0fe;
    color: #0a66c2;
    border: 1.5px solid #0a66c2;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.unsave-btn:hover { background: #fce4ec; color: #c62828; border-color: #c62828; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .jobs-layout { grid-template-columns: 1fr; }
    .filter-sidebar { position: static; }
    .jd-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .jobs-search-form { flex-direction: column; }
    .jlc-top { flex-wrap: wrap; }
}
