/* ========================================
   CAREERS HERO SECTION STYLES
   ======================================== */

/* Careers Hero - giữ nguyên màu sắc gốc */
.careers-hero { 
    position: relative; 
    min-height: 25vh; 
    display: flex; 
    align-items: center; 
    overflow: hidden; 
    background: linear-gradient(135deg, #059669 0%, #10b981 25%, #34d399 50%, #6ee7b7 75%, #a7f3d0 100%);
}

.careers-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #059669 0%, #10b981 25%, #34d399 50%, #6ee7b7 75%, #a7f3d0 100%);
}

.careers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}


.careers-content-wrapper {
    background: rgba(5, 150, 105, 0.9);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.careers-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.careers-title {
    font-weight: 800;
    letter-spacing: -1px;
}

.eyebrow {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero-buttons .btn {
    padding: .95rem 1.65rem;
    font-weight: 600;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Stats Section */
.careers-stats-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}


/* Responsive */
@media (max-width: 768px) {
    .careers-hero { 
        position: relative; 
        min-height: 25vh; 
        display: flex; 
        align-items: center; 
        overflow: hidden; 
    }
    
    .careers-content-wrapper {
        padding: 2rem;
        margin: 1rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .careers-stats-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}
