/* Custom Styles for Careers Page */

.careers-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=2084&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 0;
}
.careers-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}
.careers-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.perks-section {
    padding: 80px 0;
    background: var(--white);
}
.perk-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--light);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.perk-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: #e2e8f0;
    transform: translateY(-5px);
}
.perk-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
    background: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}
.perk-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.jobs-section {
    background: #f8f9fa;
    padding: 80px 0;
}
.job-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.job-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}
.job-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: var(--dark);
}
.job-meta {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.job-meta i {
    color: var(--secondary);
    margin-right: 0.5rem;
}
.job-badge {
    background: rgba(0, 97, 242, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.careers-cta {
    background: var(--dark);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.careers-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c7da?q=80&w=2070&auto=format&fit=crop') center/cover;
    opacity: 0.15;
}
.cta-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.cta-glass-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}
.careers-cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}
.careers-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}
.careers-cta .btn-light {
    background: var(--white);
    color: var(--primary);
    border: none;
    font-weight: 700;
}
.careers-cta .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: var(--slate-100);
}

