/* Careers Page Styles */

/* Hero Section */
.careers-hero {
    background-image: url('/api/placeholder/1200/400');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    position: relative;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.careers-hero h1, 
.careers-hero p, 
.careers-hero .hero-links {
    position: relative;
    z-index: 2;
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    color: #6e6e73;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Bartec Section */
.why-bartec-section {
    background-color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #f5f5f7;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.benefit-icon {
    background-color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f5f5f7;
}

.testimonials-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin-bottom: 30px;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    flex: 0 0 100%;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-right: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card .image-container {
    background-color: transparent;
    width: 150px;
    max-width: 150px;
    margin-bottom: 20px;
}

.testimonial-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
    color: #1d1d1f;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.testimonial-nav-btn {
    background-color: #0066cc;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s;
}

.testimonial-nav-btn:hover {
    background-color: #0055aa;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    margin: 0 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d2d2d7;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.indicator.active {
    background-color: #0066cc;
}

/* Open Positions Section */
.open-positions-section {
    background-color: #ffffff;
}

.positions-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid #d2d2d7;
    border-radius: 20px;
    padding: 8px 16px;
    margin: 0 8px 8px 0;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: #0066cc;
    color: #0066cc;
}

.filter-btn.active {
    background-color: #0066cc;
    border-color: #0066cc;
    color: white;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.position-card {
    background-color: #f5f5f7;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.position-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.position-location {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 5px;
}

.position-type {
    font-size: 16px;
    color: #0066cc;
    margin-bottom: 15px;
}

.position-description {
    font-size: 16px;
    line-height: 1.5;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.no-positions-message {
    text-align: center;
    padding: 40px;
    background-color: #f5f5f7;
    border-radius: 20px;
    margin-top: 30px;
}

.no-positions-message p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #6e6e73;
}

/* Spontaneous Application Section */
.spontaneous-application-section {
    background-color: #f5f5f7;
    text-align: center;
}

.spontaneous-application-section .section-container {
    padding: 60px 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .position-card {
        padding: 20px;
    }
}