/* Career Page Styles - Refined for FinPluss Brand */
.career-hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(36, 62, 147, 0.95) 0%, rgba(36, 62, 147, 0.7) 100%), url('/assets/images/hero/hero-banner-1.webp');
    background-size: cover;
    background-position: center;
    color: white;
}

.career-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.career-hero p.lead {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    opacity: 0.9;
}

.career-hero .stats-bar {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.v-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}

/* Section Header Style - FinPluss Brand */
.career-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.career-section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.career-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.career-section-header p {
    font-size: 18px;
    color: var(--text-dark);
}

/* Values Section */
.career-values {
    background: white;
}

.value-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #fef9f6;
    /* Ivory */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, rgba(243, 109, 33, 0.1), rgba(243, 109, 33, 0.05));
    color: var(--primary-orange);
}

.value-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Job Section */
.job-vacancies {
    background: #f8f9fa;
}

.job-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
    background: white;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(36, 62, 147, 0.2);
}

.job-list {
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.job-card-icon {
    width: 60px;
    height: 60px;
    background-color: #fef9f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.job-card-info {
    flex-grow: 1;
}

.job-card-info h4 {
    margin: 0 0 8px 0;
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
}

.job-card-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.job-card-meta span {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-card-meta span i {
    color: var(--primary-orange);
    font-size: 14px;
}

.job-card-right {
    text-align: right;
}

.job-posted-date {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 8px;
    display: block;
}

.job-type-badge {
    padding: 6px 14px;
    background: rgba(36, 62, 147, 0.08);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 15px;
    }

    .job-card-right {
        text-align: center;
    }

    .job-card-meta {
        justify-content: center;
    }

    .career-section-header h2 {
        font-size: 28px;
    }
}