/* Careers Page Specific Styles */

.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(10, 10, 10, 1) 50%);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #007bff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #b3b3b3;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Culture Section */
.culture-section {
    padding: 5rem 0;
}

.culture-content {
    text-align: center;
}

.culture-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.culture-description {
    font-size: 1.2rem;
    color: #b3b3b3;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.benefit-item p {
    color: #b3b3b3;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Locations Section */
.locations-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.locations-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.location-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333333;
    text-align: center;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-card p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.location-highlights {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.highlight-tag {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Jobs Section */
.jobs-section {
    padding: 5rem 0;
}

.jobs-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.jobs-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #333333;
    color: #b3b3b3;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: #ffffff;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.job-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
}

.job-header {
    margin-bottom: 1rem;
}

.job-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.job-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-location {
    color: #b3b3b3;
    font-size: 0.9rem;
}

.job-type {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-description {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.job-description p {
    color: #b3b3b3;
    line-height: 1.6;
    margin: 0;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-footer {
    margin-top: auto;
}

.apply-btn {
    width: 100%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-2px);
}

/* Application Section */
.application-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    text-align: center;
}

.application-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.application-description {
    font-size: 1.1rem;
    color: #b3b3b3;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.application-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Job Card Filtering */
.job-card.hidden {
    display: none;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .jobs-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }

    .job-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .application-buttons {
        flex-direction: column;
        align-items: center;
    }

    .application-buttons .btn {
        width: 200px;
    }

    .location-highlights {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .culture-section,
    .locations-section,
    .jobs-section,
    .application-section {
        padding: 3rem 0;
    }

    .location-card,
    .job-card {
        padding: 1.5rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .job-skills {
        gap: 0.3rem;
    }

    .skill-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-item,
.location-card,
.job-card {
    animation: fadeInUp 0.8s ease forwards;
}

.benefit-item:nth-child(2) { animation-delay: 0.1s; }
.benefit-item:nth-child(3) { animation-delay: 0.2s; }
.benefit-item:nth-child(4) { animation-delay: 0.3s; }
.benefit-item:nth-child(5) { animation-delay: 0.4s; }
.benefit-item:nth-child(6) { animation-delay: 0.5s; }

.job-card:nth-child(2) { animation-delay: 0.1s; }
.job-card:nth-child(3) { animation-delay: 0.2s; }
.job-card:nth-child(4) { animation-delay: 0.3s; }
.job-card:nth-child(5) { animation-delay: 0.4s; }
.job-card:nth-child(6) { animation-delay: 0.5s; }
.job-card:nth-child(7) { animation-delay: 0.6s; }
.job-card:nth-child(8) { animation-delay: 0.7s; }