﻿/* ============================================================
   CAREERS PAGE STYLES - PAKMEDICS
   ============================================================ */

/* Hero Section */
.careers-hero {
    background: linear-gradient(135deg, #0d7c6e 0%, #095a4f 50%, #0a5c4f 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.careers-hero-content {
    position: relative;
    z-index: 1;
}

.careers-hero-icon {
    font-size: 48px;
    color: rgba(255,255,255,0.9);
    display: inline-block;
    margin-bottom: 8px;
}

.careers-hero h1 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.careers-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Stats */
.careers-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.careers-stat {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.careers-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: #0d7c6e;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #0d7c6e;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: #94a3b8;
}

/* Job Openings Card */
.job-openings-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    margin-bottom: 20px;
}

.job-openings-header {
    padding: 14px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.job-openings-header h5 {
    font-weight: 700;
    color: #0a1a1f;
    margin: 0;
    font-size: 16px;
}

.job-openings-body {
    padding: 16px 20px;
}

.job-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border-left: 3px solid #0d7c6e;
    transition: all 0.3s ease;
}

.job-card:hover {
    background: #f0faf8;
    transform: translateX(4px);
}

.job-card:last-child {
    margin-bottom: 0;
}

.job-title {
    font-weight: 700;
    color: #0a1a1f;
    font-size: 15px;
    margin-bottom: 4px;
}

.job-meta {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.job-meta .separator {
    margin: 0 6px;
    color: #e2e8f0;
}

.job-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.5;
}

.job-badge {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    background: #e8f5f3;
    color: #0d7c6e;
}

.job-note {
    font-size: 13px;
    color: #94a3b8;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
}

.job-note i {
    color: #0d7c6e;
}

/* Benefits Card */
.benefits-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
}

.benefits-header {
    padding: 14px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.benefits-header h5 {
    font-weight: 700;
    color: #0a1a1f;
    margin: 0;
    font-size: 16px;
}

.benefits-body {
    padding: 16px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.benefit-item {
    text-align: center;
    padding: 14px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #0d7c6e;
    color: white;
}

.benefit-item:hover i {
    color: white;
}

.benefit-item:hover h6 {
    color: white;
}

.benefit-item:hover p {
    color: rgba(255,255,255,0.8);
}

.benefit-item i {
    font-size: 28px;
    color: #0d7c6e;
    display: block;
    margin-bottom: 6px;
}

.benefit-item h6 {
    font-weight: 700;
    color: #0a1a1f;
    margin: 0;
    font-size: 13px;
}

.benefit-item p {
    font-size: 11px;
    color: #94a3b8;
    margin: 2px 0 0;
}

/* Application Card */
.application-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
}

.application-header {
    padding: 18px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.application-header h5 {
    font-weight: 700;
    color: #0a1a1f;
    margin: 0;
    font-size: 18px;
}

.application-header p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #64748b;
}

.application-body {
    padding: 24px;
}

/* Form */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
    display: block;
}

.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d7c6e;
    box-shadow: 0 0 0 4px rgba(13,124,110,0.1);
    outline: none;
}

.form-control::placeholder {
    color: #94a3b8;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.form-check-label {
    font-size: 13px;
    color: #475569;
}

.form-check-label a {
    color: #0d7c6e;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* File Upload */
.file-upload-wrapper {
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #fafafa;
}

.file-upload-wrapper:hover {
    border-color: #0d7c6e;
    background: #f0faf8;
}

.file-upload-wrapper i {
    font-size: 36px;
    color: #0d7c6e;
    display: block;
    margin-bottom: 6px;
}

.file-upload-wrapper .file-text {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-info {
    margin-top: 6px;
    font-size: 12px;
}

.file-info .text-success {
    color: #065f46;
}

.file-info .text-danger {
    color: #991b1b;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 16px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* Careers Contact */
.careers-contact {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 20px 24px;
    text-align: center;
}

.careers-contact-content h6 {
    font-weight: 700;
    color: #0a1a1f;
    margin: 0;
    font-size: 15px;
}

.careers-contact-content p {
    font-size: 14px;
    color: #64748b;
    margin: 4px 0 12px;
}

.careers-contact-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    background: #f8fafc;
    color: #0a1a1f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #0d7c6e;
    color: white;
    text-decoration: none;
    border-color: #0d7c6e;
}

.contact-link i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .careers-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 30px 20px;
    }

    .careers-hero h1 {
        font-size: 26px;
    }

    .careers-hero p {
        font-size: 14px;
    }

    .careers-stats {
        gap: 10px;
    }

    .stat-number {
        font-size: 22px;
    }

    .job-openings-body {
        padding: 12px 14px;
    }

    .application-body {
        padding: 16px;
    }

    .careers-contact-links {
        flex-direction: column;
        align-items: center;
    }

    .contact-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .careers-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .careers-stat {
        padding: 14px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-item {
        padding: 10px;
    }

    .benefit-item i {
        font-size: 22px;
    }

    .job-card {
        padding: 12px;
    }

    .job-title {
        font-size: 14px;
    }

    .application-header {
        padding: 14px 16px;
    }

    .application-header h5 {
        font-size: 16px;
    }

    .application-body {
        padding: 12px;
    }

    .form-control,
    .form-select {
        font-size: 13px;
        padding: 8px 12px;
    }
}