/* ========================================
   Careers Page Specific Styles
   ======================================== */

/* Careers Hero Section */
.careers-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 20px 60px;
    text-align: center;
}

.careers-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.careers-hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Careers Section */
.careers-section {
    padding: 80px 20px;
    background: var(--background);
}

.careers-section .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-color);
}

/* Job Cards */
.job-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all var(--transition-base);
    cursor: pointer;
}

.job-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* Job Header */
.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.job-header h3 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.job-header h3 i {
    color: var(--primary);
    font-size: 26px;
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-secondary);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta i {
    color: var(--primary);
}

/* Apply Button */
.btn-expand {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-expand:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-expand.expanded {
    background: var(--text-secondary);
}

.btn-expand i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-expand.expanded i {
    transform: rotate(180deg);
}

.btn-apply {
    background: #28a745;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    margin-bottom: 20px;
}

.btn-apply:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-apply i {
    font-size: 14px;
}

/* Job Content */
.job-content {
    color: var(--text-color);
    line-height: 1.7;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-content-header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.job-description {
    margin-bottom: 35px;
}

.job-description:last-child {
    margin-bottom: 0;
}

.job-description h4 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.job-description h5 {
    font-size: 20px;
    color: var(--text-color);
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 600;
}

.job-info {
    background: var(--background);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.job-info p {
    margin: 8px 0;
    font-size: 15px;
}

.job-description p {
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--text-secondary);
}

.job-description ul {
    margin: 14px 0;
    padding-left: 24px;
}

.job-description ul ul {
    margin: 8px 0;
    padding-left: 24px;
}

.job-description li {
    margin: 8px 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.job-description li strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Language Divider */
.language-divider {
    border: none;
    border-top: 3px solid var(--border-color);
    margin: 50px 0;
}

/* Active Navigation Link */
.nav-center a.active {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.nav-center a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .careexpand,
    .btn-apply {
        width: 100%;
        justify-content: center;
    }

    .job-meta {
        flex-direction: column;
        gap: 10px;
    }

    .job-description h4 {
        font-size: 20px;
    }

    .job-description h5 {
        font-size: 18px;
    }

    .job-actions {
        width: 100%

    .job-header h3 {
        font-size: 24px;
    }

    .btn-apply {
        width: 100%;
        justify-content: center;
    }

    .job-meta {
        flex-direction: column;
        gap: 10px;
    }

    .job-description h4 {
        font-size: 20px;
    }

    .job-description h5 {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .careers-hero {
        padding: 80px 20px 40px;
    }

    .careers-hero h1 {
        font-size: 28px;
    }

    .careers-hero p {
        font-size: 16px;
    }

    .careers-section {
        padding: 50px 16px;
    }

    .careers-section .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .job-card {
        padding: 24px 16px;
        margin-bottom: 30px;
    }

    .job-header h3 {
        font-size: 20px;
    }

    .job-header h3 i {
        font-size: 20px;
    }

    .job-description h4 {
        font-size: 18px;
    }

    .job-description h5 {
        font-size: 16px;
        margin-top: 20px;
    }

    .job-description p,
    .job-description li {
        font-size: 14px;
    }

    .job-info {
        padding: 16px;
    }

    .language-divider {
        margin: 35px 0;
    }
}

/* CTA Button */
.btn-cta {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
}

.btn-cta i {
    font-size: 18px;
}
