/* ===== CAREER DISCOVERY HUB — ENHANCED ===== */

/* ---------- HERO ---------- */
#career-hero {
    background: linear-gradient(135deg, #093f99 0%, #0c5adb 55%, #3b7ef7 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
#career-hero::before {
    content: '';
    position: absolute;
    top: -40%; right: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 6s ease-in-out infinite;
}
#career-hero::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.career-hero-img {
    max-width: 100%;
    border-radius: 18px;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,0.25));
    animation: float-y 4s ease-in-out infinite;
    max-height: fit-content;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.7; }
}
@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Quick Search Bar */
.career-search-form { position: relative; max-width: 560px; }
.career-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.95);
    border-radius: 50px;
    padding: 6px 6px 6px 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    backdrop-filter: blur(12px);
    transition: box-shadow 0.3s;
}
.career-search-bar:focus-within {
    box-shadow: 0 8px 40px rgba(12,90,219,0.35);
}
.career-search-icon {
    color: #0c5adb;
    font-size: 18px;
    margin-right: 12px;
}
.career-search-input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 15px;
    padding: 10px 0;
    color: #333;
}
.career-search-btn {
    background: linear-gradient(135deg, #0c5adb 0%, #3b7ef7 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.career-search-btn:hover {
    background: linear-gradient(135deg, #093f99 0%, #0c5adb 100%);
    box-shadow: 0 4px 16px rgba(12,90,219,0.35);
    transform: translateY(-1px);
}

/* Search Autocomplete */
.search-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    max-height: 360px;
    overflow-y: auto;
    z-index: 100;
    border: 1px solid #eef1f8;
}
.search-suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: #333;
}
.search-suggestion-item:hover,
.search-suggestion-item:focus {
    background: rgba(12,90,219,0.05);
    outline: none;
}
.search-suggestion-item:last-child { border-bottom: none; }
.suggestion-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(12,90,219,0.1);
    color: #0c5adb;
    display: flex; align-items: center; justify-content: center;
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
}
.suggestion-title { font-weight: 600; font-size: 14px; }
.suggestion-meta { font-size: 12px; color: #888; }
.search-no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Tags */
.career-hero-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.career-tag {
    background: rgba(255,255,255,0.18);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.25);
}
.career-tag:hover {
    background: rgba(255,255,255,0.35);
    color: #fff;
    transform: translateY(-1px);
}

/* ---------- STATS BAR ---------- */
#career-stats {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #eef1f8;
}
.career-stat h2 { font-size: 32px; font-weight: 700; }
.career-stat p { font-size: 14px; color: #666; }

/* ---------- DUAL PATHWAY ---------- */
#career-pathways { padding: 60px 0; background: #f7f9fc; }
.pathway-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(12,90,219,0.08);
    border-radius: 18px;
    padding: 36px 30px;
    text-align: center;
    transition: transform 0.35s, box-shadow 0.35s;
    height: 100%;
}
.pathway-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(12,90,219,0.12);
}
.pathway-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 16px;
}
.pathway-candidate .pathway-icon { background: rgba(12,90,219,0.1); color: #0c5adb; }
.pathway-employer .pathway-icon { background: rgba(9,63,153,0.1); color: #093f99; }
.pathway-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.pathway-card p { color: #555; font-size: 15px; margin-bottom: 20px; }
.pathway-cta-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pathway-login-link { display: inline-block; color: #0c5adb; font-size: 14px; font-weight: 600; text-decoration: none; transition: color .2s; }
.pathway-login-link:hover { color: #093d8f; text-decoration: underline; }
.pathway-employer .pathway-login-link { color: #0c5adb; }
.pathway-employer .pathway-login-link:hover { color: #093d8f; }

/* ---------- OPPORTUNITIES CTA ---------- */
.opp-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0c5adb, #0974f1);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(12, 90, 219, 0.35);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}
.opp-cta-btn:hover {
    background: linear-gradient(135deg, #093d8f, #0c5adb);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(12, 90, 219, 0.45);
    color: #fff;
    text-decoration: none;
}

/* ---------- FILTERS ---------- */
#job-listings { padding: 60px 0; background: #fff; }
.career-filters {
    background: #f7f9fc;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #eef1f8;
    transition: box-shadow 0.3s;
}
.career-filters:focus-within {
    box-shadow: 0 4px 20px rgba(12,90,219,0.08);
}
.filter-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}
.filter-select {
    border-radius: 10px;
    border: 1px solid #dde2ee;
    padding: 8px 12px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.filter-select:focus { border-color: #0c5adb; box-shadow: 0 0 0 3px rgba(12,90,219,0.1); }
.filter-clear-btn {
    background: #fff;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    border-radius: 10px;
    padding: 8px 18px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.filter-clear-btn:hover { background: #e74c3c; color: #fff; }

/* ---------- JOB CARDS ---------- */
.job-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(12,90,219,0.06);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s;
    position: relative;
    overflow: hidden;
}
.job-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0c5adb, #3b7ef7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.job-card:hover::before { transform: scaleX(1); }
.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(12,90,219,0.1);
}
.job-card-featured {
    border: 2px solid rgba(12,90,219,0.25);
    background: linear-gradient(135deg, rgba(12,90,219,0.03) 0%, rgba(255,255,255,0.95) 100%);
}
.job-card-premium { border-left: 4px solid #f39c12; }
.job-card-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: linear-gradient(135deg, #0c5adb, #3b7ef7);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.job-card-badge-premium { background: linear-gradient(135deg, #f39c12, #f1c40f); }

/* Card header with logo */
.job-card-header { display: flex; align-items: center; gap: 12px; }
.job-card-company-logo { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; background: #f7f9fc; }
.job-card-company-logo-sm { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; background: #f7f9fc; }
.job-card-company-logo-placeholder {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0c5adb, #3b7ef7);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.job-card-title { font-size: 17px; font-weight: 700; color: #1a1a2e; }
.job-card-company { font-size: 14px; color: #666; }
.job-card-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #777; }
.job-card-meta span { display: inline-flex; align-items: center; gap: 4px; }
.job-card-meta i { color: #0c5adb; font-size: 12px; }
.job-card-salary { font-size: 15px; font-weight: 600; color: #0c5adb; }
.job-card-desc { font-size: 14px; color: #555; line-height: 1.6; flex: 1; }
.job-card-skills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.job-skill-tag {
    background: rgba(12,90,219,0.08);
    color: #0c5adb;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 500;
    transition: background 0.2s;
}
.job-skill-tag:hover { background: rgba(12,90,219,0.16); }
.job-card-deadline { font-size: 13px; color: #999; margin-top: 8px; }
.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #eef1f8;
}
.job-card-date { font-size: 12px; color: #999; }
.job-card-link {
    color: #0c5adb;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.job-card-link:hover { color: #093f99; gap: 8px; }

.jobs-empty { padding: 40px 0; }

/* ---------- CANDIDATE PROFILE / TALENT PIPELINE ---------- */
#candidate-profile {
    padding: 70px 0;
    background: linear-gradient(135deg, #093f99 0%, #0c5adb 100%);
    position: relative;
    overflow: hidden;
}
#candidate-profile::before {
    content: '';
    position: absolute;
    bottom: -20%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.cv-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}
.cv-benefits li {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cv-benefits i { color: #3b7ef7; font-size: 18px; }

/* Badge preview */
.badge-preview { display: flex; gap: 10px; }
.profile-badge {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}
.profile-badge:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.15);
}

.cv-upload-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.cv-upload-card h4 { font-weight: 700; color: #1a1a2e; }
.cv-upload-card .form-control,
.cv-upload-card .form-select {
    border-radius: 10px;
    border: 1px solid #dde2ee;
    padding: 10px 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.cv-upload-card .form-control:focus,
.cv-upload-card .form-select:focus {
    border-color: #0c5adb;
    box-shadow: 0 0 0 3px rgba(12,90,219,0.1);
}

/* ---------- CAREER RESOURCES ---------- */
#career-resources { padding: 60px 0; background: #f7f9fc; }
.resource-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(12,90,219,0.06);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: transform 0.35s, box-shadow 0.35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(12,90,219,0.1);
}
.resource-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}
.resource-type-badge {
    display: inline-block;
    background: rgba(12,90,219,0.1);
    color: #0c5adb;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.resource-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(12,90,219,0.1);
    color: #0c5adb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    transition: transform 0.3s;
}
.resource-card:hover .resource-icon { transform: scale(1.1); }
.resource-card h5 { font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.resource-card p { font-size: 14px; color: #555; line-height: 1.6; }
.resource-link {
    color: #0c5adb;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.resource-link:hover { color: #093f99; gap: 8px; }

/* ---------- EMPLOYER SECTION ---------- */
#employer-section { padding: 70px 0; background: #fff; }

/* Pricing Cards */
.pricing-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(12,90,219,0.08);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.35s, box-shadow 0.35s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(12,90,219,0.12);
}
.pricing-card-popular {
    border: 2px solid #0c5adb;
    background: linear-gradient(180deg, rgba(12,90,219,0.03) 0%, #fff 30%);
}
.pricing-popular-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0c5adb, #3b7ef7);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.pricing-header { margin-bottom: 24px; }
.pricing-tier-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(12,90,219,0.1);
    color: #0c5adb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}
.pricing-tier-gold { background: rgba(243,156,18,0.12); color: #f39c12; }
.pricing-tier-diamond { background: rgba(9,63,153,0.1); color: #093f99; }
.pricing-header h4 { font-weight: 700; font-size: 22px; margin-bottom: 4px; }
.pricing-subtitle { color: #888; font-size: 14px; margin-bottom: 0; }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    flex: 1;
}
.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f5f5f5;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i.fa-check { color: #0c5adb; font-size: 13px; }
.pricing-features li i.fa-times { color: #ccc; font-size: 13px; }
.pricing-disabled { color: #bbb !important; }

/* Employer logos */
.employer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
}
.employer-logo-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s;
}
.employer-logo-item img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Employer form */
.employer-form-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(12,90,219,0.08);
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 8px 32px rgba(12,90,219,0.08);
}
.employer-form-card h4 { font-weight: 700; color: #1a1a2e; }
.employer-form-card .form-control,
.employer-form-card .form-select {
    border-radius: 10px;
    border: 1px solid #dde2ee;
    padding: 10px 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.employer-form-card .form-control:focus,
.employer-form-card .form-select:focus {
    border-color: #0c5adb;
    box-shadow: 0 0 0 3px rgba(12,90,219,0.1);
}

/* ---------- COMMUNITY ---------- */
#career-community { padding: 60px 0; background: #f7f9fc; }
.community-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(12,90,219,0.06);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.35s, box-shadow 0.35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(12,90,219,0.1);
}
.community-badge {
    display: inline-block;
    background: rgba(12,90,219,0.1);
    color: #0c5adb;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.community-badge-event { background: rgba(46,204,113,0.1); color: #27ae60; }
.community-card h5 { font-size: 17px; font-weight: 600; line-height: 1.5; margin-bottom: 8px; }

/* Success story enhancements */
.story-photo {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid rgba(12,90,219,0.15);
}
.story-video-btn {
    position: absolute;
    top: 16px; right: 16px;
    font-size: 28px;
    color: #0c5adb;
    transition: all 0.3s;
    text-decoration: none;
}
.story-video-btn:hover { color: #093f99; transform: scale(1.15); }
.story-company { font-size: 13px; color: #888; margin-top: 6px; }

/* Event card enhancements */
.event-card-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}
.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #777;
}
.event-meta span { display: inline-flex; align-items: center; gap: 4px; }
.event-meta i { color: #0c5adb; }
.event-spots {
    height: 6px;
    background: #eef1f8;
    border-radius: 3px;
    margin-top: 12px;
    overflow: hidden;
}
.event-spots-bar {
    height: 100%;
    background: linear-gradient(90deg, #0c5adb, #3b7ef7);
    border-radius: 3px;
    transition: width 0.5s;
}
.event-spots-text { font-size: 12px; color: #888; margin-top: 4px; }

/* ---------- FAQ ---------- */
#career-faq { padding: 60px 0; }

/* ---------- NEWSLETTER ---------- */
.newsletter-form .newsletter-input,
.newsletter-form .newsletter-select {
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 12px 16px;
    backdrop-filter: blur(6px);
    transition: all 0.3s;
}
.newsletter-form .newsletter-input::placeholder { color: rgba(255,255,255,0.65); }
.newsletter-form .newsletter-input:focus,
.newsletter-form .newsletter-select:focus {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
    color: #fff;
    outline: none;
}
.newsletter-form .newsletter-select {
    color: #fff;
}
.newsletter-form .newsletter-select option { color: #333; background: #fff; }
.newsletter-btn {
    border-radius: 10px !important;
    padding: 12px 20px;
    font-weight: 600;
    background: #fff !important;
    color: #0c5adb !important;
    border: none !important;
    transition: all 0.3s;
}
.newsletter-btn:hover {
    background: #f0f4ff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ---------- MICRO-INTERACTIONS ---------- */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

/* Focus ring for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #0c5adb;
    outline-offset: 2px;
}

/* Skip link (WCAG) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: #0c5adb;
    color: #fff;
    padding: 10px 20px;
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---------- RESPONSIVE ---------- */
@media screen and (max-width: 767px) {
    #career-hero { padding: 50px 0 40px; }
    #career-hero h1 { font-size: 28px; }
    .career-search-form { max-width: 100%; }
    .career-search-bar { flex-direction: column; padding: 12px; border-radius: 16px; gap: 8px; }
    .career-search-icon { display: none; }
    .career-search-input { width: 100%; padding: 10px; text-align: center; }
    .career-search-btn { width: 100%; border-radius: 12px; padding: 12px; }
    .search-suggestions { border-radius: 12px; }
    
    .career-stat h2 { font-size: 24px; }
    .career-stat p { font-size: 12px; }
    #career-stats { padding: 25px 0; }
    
    .pathway-card { padding: 24px 18px; }
    .pathway-cta-group { flex-direction: column; gap: 10px; }
    .pathway-cta-group .button,
    .pathway-cta-group .button_1,
    .pathway-cta-group .button_2 { width: 100%; text-align: center; }
    
    .career-filters .row .col-6 { margin-bottom: 6px; }
    .filter-select { font-size: 13px; padding: 7px 10px; }
    
    .job-card { padding: 18px; }
    .job-card-header { flex-direction: column; text-align: center; }
    .job-card-meta { justify-content: center; font-size: 12px; }
    
    #candidate-profile { padding: 40px 0; }
    .cv-upload-card { padding: 24px; }
    
    .pricing-card { padding: 28px 20px; }
    .pricing-card-popular { margin-top: 16px; }
    
    .employer-form-card { padding: 24px; }
    
    #employer-section, #career-resources, #career-community, #career-faq { padding: 40px 0; }
    
    .newsletter-form .row { gap: 8px; }
    .newsletter-form .col-md-4,
    .newsletter-form .col-md-2 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width:768px) and (max-width:991px) {
    #career-hero { padding: 60px 0 50px; }
    .career-search-form { max-width: 480px; }
    .job-card { padding: 20px; }
    .pricing-card { padding: 28px 22px; }
}

/* ---------- JOB DETAILS PAGE ---------- */
.job-details {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.job-details.expand {
    max-height: 500px;
}
.job-detail-section {
    margin-bottom: 20px;
}
.job-detail-section h2 {
    margin-bottom: 15px;
}
.apply-button {
    margin-top: 20px;
}