/* Applications Section Styles */
.applications-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
    position: relative;
}

.applications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/background.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.applications-section .container {
    position: relative;
    z-index: 1;
}

.applications-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ff0000;
    text-shadow: 0 0 20px #ff0000;
    font-weight: 900;
}

.application-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.application-intro p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.application-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.question-group {
    margin-bottom: 25px;
    opacity: 1;
    transition: all 0.3s ease;
}

.question-group[style*="none"] {
    opacity: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
}

.question-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 8px;
    text-shadow: 0 0 5px #ff0000;
}

.question-group input,
.question-group textarea,
.question-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.question-group input:focus,
.question-group textarea:focus,
.question-group select:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.8);
}

.question-group textarea {
    min-height: 100px;
    resize: vertical;
}

.question-group select {
    cursor: pointer;
}

.question-group select option {
    background: #000;
    color: #fff;
}

.job-specific {
    border-left: 3px solid #ff0000;
    padding-left: 20px;
    margin-left: 10px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 0 8px 8px 0;
}

.job-section {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    border-radius: 10px;
}

.job-title {
    color: #ff0000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px #ff0000;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.2);
}

.checkbox-label span {
    color: #fff;
    font-size: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #cc0000, #990000);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.success-message {
    text-align: center;
    padding: 40px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 10px;
    color: #00ff00;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00ff00;
}

.success-message p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .applications-section h2 {
        font-size: 2rem;
    }
    
    .application-form-container {
        margin: 0 20px;
        padding: 25px;
    }
    
    .question-group label {
        font-size: 1rem;
    }
    
    .job-specific {
        margin-left: 0;
        padding-left: 15px;
    }
}