/* ===========================
   CAREERS PAGE STYLES
   =========================== */

/* Why Join Section */
.why-join-section {
    padding: var(--section-padding);
    background: var(--charcoal);
}

.benefits-grid-career {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    padding: 40px;
    background: var(--pure-black);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Jobs Section */
.jobs-section {
    padding: var(--section-padding);
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.job-card {
    padding: 40px;
    background: var(--charcoal);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
}

.job-card.featured {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, var(--charcoal) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: var(--gradient-red);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.job-title-group h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.job-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.job-type,
.job-location,
.job-department {
    padding: 6px 14px;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-red);
}

.job-apply-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.job-description {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 16px;
}

.job-requirements {
    margin-bottom: 24px;
}

.job-requirements h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--white);
}

.job-requirements ul {
    list-style: none;
    padding-left: 0;
}

.job-requirements li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--light-gray);
    line-height: 1.6;
}

.job-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
}

.job-salary {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
}

.job-posted {
    color: var(--gray);
    font-size: 14px;
}

/* Application Process */
.application-process {
    padding: var(--section-padding);
    background: var(--charcoal);
}

.process-steps-career {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step-career {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 32px;
    background: var(--pure-black);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.process-step-career:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-red);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
}

.process-step-career h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-step-career p {
    color: var(--light-gray);
    font-size: 14px;
    line-height: 1.6;
}

.process-arrow {
    font-size: 32px;
    color: var(--primary-red);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid-career {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-header {
        flex-direction: column;
    }

    .job-apply-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .benefits-grid-career {
        grid-template-columns: 1fr;
    }

    .process-arrow {
        display: none;
    }

    .process-steps-career {
        flex-direction: column;
    }

    .process-step-career {
        max-width: 100%;
    }

    .job-title-group h3 {
        font-size: 22px;
    }

    .job-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}