/* Careers Page Specific Styles */

/* Hero Section */
.careers-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.careers-hero .hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.careers-hero .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e50914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.careers-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e50914;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Floating Elements Animation */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-code,
.floating-video,
.floating-pen {
    position: absolute;
    font-size: 3rem;
    color: rgba(229, 9, 20, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-code {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-video {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-pen {
    top: 40%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Categories Section */
.categories-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

.section-subtitle {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    color: #cccccc;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    border-color: #e50914;
    color: #ffffff;
}

.tab-btn.active {
    background: #e50914;
    color: #ffffff;
    border-color: #e50914;
}

.tab-btn i {
    font-size: 1.2rem;
}

/* Jobs Container */
.jobs-container {
    display: none;
}

.jobs-container.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Job Grid */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Job Cards */
.job-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #e50914, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: #e50914;
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.job-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #e50914, #ff6b6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.job-badge {
    background: rgba(229, 9, 20, 0.2);
    color: #e50914;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.job-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.detail-item i {
    color: #e50914;
    width: 16px;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.apply-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: #0f0f0f;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #e50914;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e50914, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(45deg, #e50914, #ff6b6b);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e50914, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step p {
    color: #cccccc;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .job-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .careers-hero .hero-title {
        font-size: 2rem;
    }
    
    .careers-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .job-card {
        padding: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Application Modal Styles */
.application-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.8) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10000 !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
}

.application-modal .modal-content {
    background: #1a1a1a !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    max-width: 500px !important;
    width: 100% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    position: relative !important;
    margin: auto !important;
    color: #ffffff !important;
}

.application-modal .modal-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.application-modal .modal-header h3 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
}

.application-modal .close-modal {
    background: none !important;
    border: none !important;
    color: #cccccc !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.application-modal .close-modal:hover {
    background: rgba(255,255,255,0.1) !important;
    color: #ffffff !important;
}

.application-modal .modal-body {
    color: #cccccc !important;
    line-height: 1.6 !important;
}

.application-modal .contact-info {
    background: rgba(255,255,255,0.05) !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    margin: 1.5rem 0 !important;
}

.application-modal .contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
    color: #ffffff !important;
}

.application-modal .contact-item:last-child {
    margin-bottom: 0 !important;
}

.application-modal .contact-item i {
    color: #e50914 !important;
    font-size: 1.2rem !important;
    width: 20px !important;
}

.application-modal .application-note {
    background: rgba(229, 9, 20, 0.1) !important;
    border: 1px solid rgba(229, 9, 20, 0.3) !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    margin: 1.5rem 0 !important;
    color: #ffffff !important;
}

.application-modal .modal-actions {
    display: flex !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
    flex-wrap: wrap !important;
}

.application-modal .modal-actions .btn {
    flex: 1 !important;
    min-width: 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .application-modal {
        padding: 0.5rem !important;
    }
    
    .application-modal .modal-content {
        padding: 1.5rem !important;
        max-height: 95vh !important;
    }
    
    .application-modal .modal-header h3 {
        font-size: 1.3rem !important;
    }
    
    .application-modal .modal-actions {
        flex-direction: column !important;
    }
    
    .application-modal .modal-actions .btn {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .application-modal .modal-content {
        padding: 1rem !important;
    }
    
    .application-modal .modal-header h3 {
        font-size: 1.2rem !important;
    }
    
    .application-modal .contact-info {
        padding: 1rem !important;
    }
} 