/*
* Careers Page Styles
* Hitzelberger Life Sciences
*/

/*--------------------------------------------------------------
# Careers Hero Section
--------------------------------------------------------------*/
.careers-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="careers-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23careers-grid)"/></svg>');
    opacity: 0.3;
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.breadcrumb {
    justify-content: center;
    background: none;
    margin-bottom: 20px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Why Work With Us Section
--------------------------------------------------------------*/
.why-work-section h2 {
    margin-bottom: 40px;
}

.why-work-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 73, 148, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.why-work-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 73, 148, 0.15);
    border-color: var(--primary-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.why-work-card:hover .card-icon {
    transform: scale(1.1) rotate(360deg);
}

.card-icon i {
    font-size: 32px;
    color: #fff;
}

.why-work-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.why-work-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Job Openings Section
--------------------------------------------------------------*/
.job-openings-section h2 {
    margin-bottom: 40px;
}

.job-filter {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 73, 148, 0.1);
    margin-bottom: 40px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 10px 20px;
    border-radius: 25px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.job-listings {
    min-height: 400px;
}

.job-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.job-item.hidden {
    display: none;
}

.job-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 73, 148, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 73, 148, 0.15);
    border-color: var(--primary-color);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-type,
.job-location {
    background: #f8f9fa;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.job-department {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-department.research {
    background: var(--neurology-color, #4a90e2);
}

.job-department.sales {
    background: var(--cardiology-color, #e74c3c);
}

.job-department.production {
    background: var(--psychiatry-color, #9b59b6);
}

.job-department.quality {
    background: var(--success-color, #27ae60);
}

.job-department.admin {
    background: var(--info-color, #3498db);
}

.job-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color, #2c3e50);
}

.job-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.job-requirements {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.job-requirements h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color, #2c3e50);
}

.job-requirements ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.job-requirements li {
    color: #666;
    margin-bottom: 8px;
    position: relative;
}

.job-requirements li::marker {
    color: var(--primary-color, #004994);
}

.job-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 15px;
}

.job-openings {
    background: var(--success-color, #27ae60);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.job-apply-btn {
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.job-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 73, 148, 0.3);
}

.no-jobs-message {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Special styling for sales executive positions */
.job-card[data-position*="sales-executive"] {
    border-left: 4px solid #e74c3c;
}

.job-card[data-position*="sales-executive"]:hover {
    border-left-color: #c0392b;
}

/*--------------------------------------------------------------
# Employee Benefits Section
--------------------------------------------------------------*/
.benefits-section h2 {
    margin-bottom: 40px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 73, 148, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color, #004994);
    margin-bottom: 30px;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 73, 148, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color, #004994), var(--secondary-color, #0066cc));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 73, 148, 0.3);
}

.benefit-icon i {
    font-size: 28px;
    color: #fff;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--heading-color, #2c3e50);
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.benefit-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary-color, #004994);
    font-weight: bold;
    font-size: 14px;
}

.benefit-card li:hover {
    color: var(--primary-color, #004994);
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# Employee Testimonials Section
--------------------------------------------------------------*/
.employee-testimonials h2 {
    margin-bottom: 40px;
}

.employee-testimonials-carousel .slick-dots {
    bottom: -50px;
}

.employee-testimonials-carousel .slick-dots li button:before {
    color: var(--primary-color, #004994);
    font-size: 12px;
}

.employee-testimonials-carousel .slick-dots li.slick-active button:before {
    color: var(--primary-color, #004994);
}

.employee-testimonials-carousel .testimonial-item {
    padding: 0 15px;
}

.employee-testimonials-carousel .testimonial-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 73, 148, 0.1);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.employee-info {
    margin-bottom: 25px;
}

.employee-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-color, #004994);
}

.employee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.employee-details h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--heading-color, #2c3e50);
}

.employee-details span {
    font-size: 14px;
    color: var(--primary-color, #004994);
    font-weight: 500;
}

.tenure {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.testimonial-content .quote {
    font-size: 16px;
    font-style: italic;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-content .rating {
    margin-top: 20px;
}

.testimonial-content .rating i {
    color: #ffc107;
    margin: 0 2px;
    font-size: 16px;
}

/*--------------------------------------------------------------
# Application Process Section
--------------------------------------------------------------*/
.application-process h2 {
    margin-bottom: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--primary-color, #004994);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.process-step:last-child::after {
    display: none;
}

.process-step:hover::after {
    background: var(--primary-color, #004994);
    height: 4px;
    opacity: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color, #004994), var(--secondary-color, #0066cc));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(0, 73, 148, 0.2);
}

.step-icon {
    font-size: 40px;
    color: var(--primary-color, #004994);
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color, #2c3e50);
}

.process-step p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Apply Now Section
--------------------------------------------------------------*/
.apply-now-section .section-heading h2 {
    margin-bottom: 30px;
}

.apply-content {
    margin-bottom: 30px;
}

.apply-content .description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color, #004994), var(--secondary-color, #0066cc));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-item .content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--heading-color, #2c3e50);
}

.contact-info-item .content p {
    margin-bottom: 0;
    color: #666;
}

.application-form-container {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 73, 148, 0.1);
    border: 1px solid #f0f0f0;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color, #2c3e50);
}

.form-header p {
    color: #666;
    margin-bottom: 0;
}

.application-form .form-group {
    margin-bottom: 20px;
}

.application-form .form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.application-form .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 73, 148, 0.25);
    border-color: var(--primary-color, #004994);
}

.application-form textarea.form-control {
    height: auto;
    resize: vertical;
    min-height: 100px;
}

.application-form select.form-control {
    cursor: pointer;
}

.form-check {
    margin-bottom: 25px;
}

.form-check-label {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.form-check-label a {
    color: var(--primary-color, #004994);
    text-decoration: underline;
}

.form-check-label a:hover {
    text-decoration: none;
}

/*--------------------------------------------------------------
# Careers CTA Section
--------------------------------------------------------------*/
.careers-cta {
    background: linear-gradient(135deg, var(--primary-color, #004994), var(--secondary-color, #0066cc));
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.careers-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="careers-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23careers-pattern)"/></svg>');
    opacity: 0.3;
}

.careers-cta .container {
    position: relative;
    z-index: 2;
}

.careers-cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.careers-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.careers-cta .btn {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.careers-cta .btn:hover {
    transform: translateY(-3px);
    animation: pulse 2s infinite;
}

/*--------------------------------------------------------------
# Job Application Modal
--------------------------------------------------------------*/
.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 73, 148, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color, #004994), var(--secondary-color, #0066cc));
    color: #fff;
    border-radius: 10px 10px 0 0;
    border-bottom: none;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.job-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.job-details h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color, #2c3e50);
}

.job-details p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/*--------------------------------------------------------------
# Social Sharing
--------------------------------------------------------------*/
.job-sharing {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.job-card:hover .job-sharing {
    opacity: 1;
    max-height: 50px;
}

.job-sharing span {
    margin-right: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.share-btn {
    color: #666;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 10px;
}

.share-btn:hover {
    color: var(--primary-color, #004994);
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Loading and Animation Effects
--------------------------------------------------------------*/
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-10deg); }
    75% { transform: scale(1.1) rotate(10deg); }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 73, 148, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 73, 148, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 73, 148, 0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.job-item.filtering {
    animation: fadeInScale 0.6s ease forwards;
}

.job-item.hidden {
    animation: slideOutDown 0.3s ease forwards;
}

.animated-icon {
    animation: iconBounce 0.6s ease;
}

.is-invalid {
    border-color: #dc3545 !important;
    animation: shake 0.5s ease;
}

/*--------------------------------------------------------------
# Loading State
--------------------------------------------------------------*/
.job-listings.loading::before {
    content: 'Loading positions...';
    display: block;
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 50px 0;
    font-size: 16px;
}

/*--------------------------------------------------------------
# Search Input Styling
--------------------------------------------------------------*/
.job-filter input[type="text"] {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.job-filter input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color, #004994);
    box-shadow: 0 0 0 0.2rem rgba(0, 73, 148, 0.25);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .filter-buttons {
        justify-content: flex-start;
    }
    
    .job-card {
        padding: 25px;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .why-work-card,
    .benefit-card {
        margin-bottom: 20px;
    }
    
    .job-card {
        margin-bottom: 20px;
    }
    
    .apply-content,
    .application-form-container {
        margin-bottom: 30px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .careers-hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        text-align: center;
        margin-bottom: 5px;
    }
    
    .job-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .job-footer {
        text-align: center;
    }
    
    .job-sharing {
        opacity: 1;
        max-height: none;
    }
    
    .careers-cta h2 {
        font-size: 28px;
    }
    
    .careers-cta p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .application-form-container {
        padding: 30px 20px;
    }
    
    .employee-testimonials-carousel .testimonial-content {
        padding: 30px 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .why-work-card,
    .benefit-card,
    .job-card {
        padding: 25px 20px;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-icon {
        font-size: 32px;
    }
    
    .job-title {
        font-size: 20px;
    }
    
    .job-footer {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .application-form-container {
        padding: 25px 15px;
    }
}

/*--------------------------------------------------------------
# Print Styles
--------------------------------------------------------------*/
@media print {
    .careers-hero,
    .why-work-section,
    .benefits-section,
    .employee-testimonials,
    .application-process,
    .apply-now-section,
    .careers-cta {
        page-break-inside: avoid;
    }
    
    .job-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-bottom: 20px;
    }
    
    .job-sharing,
    .filter-buttons,
    .job-apply-btn {
        display: none;
    }
}

/*--------------------------------------------------------------
# Accessibility Enhancements
--------------------------------------------------------------*/
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.job-card:focus,
.filter-btn:focus,
.btn:focus {
    outline: 2px solid var(--primary-color, #004994);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .job-card {
        border: 2px solid #000;
    }
    
    .job-department {
        border: 1px solid #fff;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .job-card:hover {
        transform: none;
    }
    
    .why-work-card:hover {
        transform: none;
    }
}