/* #region Stats section */

.stats-section {
    background-color: var(--primary-navy);
    color: white;
}

.stat-card {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* #endregion */

/* Culture Section */
.culture-section {
    background-color: var(--white);
}

.culture-card {
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background: white;
    height: 100%;
}

    .culture-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

.culture-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.culture-card h4 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.culture-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--bg-light);
}

.benefit-item {
    padding: 1.5rem 1rem;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.benefit-item h5 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Job Positions Section */
.positions-section {
    background-color: var(--white);
}

.btn-filter {
    background-color: white;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    padding: 0.5rem 1.5rem;
    margin: 0.25rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-filter:hover,
    .btn-filter.active {
        background-color: var(--primary-navy);
        color: white;
    }

.job-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    .job-card.hidden {
        display: none;
    }

.job-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .job-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

    .job-header h4 {
        color: var(--primary-navy);
        font-weight: 600;
        margin-bottom: 0;
    }

.job-type {
    background-color: var(--bg-light);
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

    .job-meta span {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

.job-description {
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

    .job-tags .badge {
        background-color: var(--bg-light);
        color: var(--primary-navy);
        padding: 0.4rem 0.8rem;
        border-radius: 15px;
        font-weight: 500;
        font-size: 0.85rem;
    }

.btn-apply {
    background-color: var(--primary-navy);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

    .btn-apply:hover {
        background-color: var(--primary-orange);
        color: white;
        transform: translateX(5px);
    }

/* Application Process Section */
.process-section {
    background-color: var(--bg-light);
}

.process-step {
    padding: 2rem 1rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-orange) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h5 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0f1a2e 100%);
    color: white;
}

    .cta-section h2 {
        color: white;
    }

    .cta-section .lead {
        color: rgba(255, 255, 255, 0.9);
    }

.btn-cta {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

    .btn-cta:hover {
        background-color: #d97706;
        border-color: #d97706;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }

        .hero-section h1 {
            font-size: 2rem;
        }

    .stat-number {
        font-size: 2rem;
    }

    .culture-icon,
    .benefit-icon {
        font-size: 2rem;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-type {
        margin-top: 0.5rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-card {
    animation: fadeIn 0.5s ease forwards;
}

    .job-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .job-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .job-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .job-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .job-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .job-card:nth-child(6) {
        animation-delay: 0.6s;
    }
