/* Careers Page Specific Styles */

/* Page Hero */
.page-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(190, 3, 0, 0.9), rgba(160, 2, 0, 0.9)), 
                url('../assets/images/manufacture/IMG_4960.HEIC') center/cover;
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-hero .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Career Introduction */
.career-intro {
    padding: 6rem 0;
    background-color: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.intro-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    border-right: 4px solid #be0300;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateX(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #be0300, #a00200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-info h4 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.stat-info p {
    color: #666;
    margin: 0;
}

/* Why Join Section */
.why-join {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #be0300;
}

.benefit-icon {
    margin-bottom: 2rem;
}

.benefit-icon i {
    font-size: 4rem;
    color: #be0300;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Application Process */
.application-process {
    padding: 6rem 0;
    background-color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #be0300, #a00200);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    margin-bottom: 2rem;
}

.step-icon i {
    font-size: 3rem;
    color: #be0300;
}

.step-content h4 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Important Notes */
.important-notes {
    padding: 6rem 0;
    background: linear-gradient(135deg, #be0300, #a00200);
    color: white;
}

.notes-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.note-item i {
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.note-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.note-item strong {
    color: white;
}

/* Application Form */
.application-form-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 4rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.2rem;
    color: #666;
}

.job-application-form {
    display: grid;
    gap: 3rem;
}

.form-section {
    padding: 2rem;
    border: 2px solid #f8f9fa;
    border-radius: 15px;
    background-color: #fafafa;
}

.form-section h3 {
    font-size: 1.8rem;
    color: #be0300;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #be0300;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #be0300;
    box-shadow: 0 0 0 3px rgba(190, 3, 0, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

/* File Upload */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-area {
    border: 2px dashed #be0300;
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}

.file-upload-area:hover {
    border-color: #a00200;
    background-color: #fff5f5;
}

.file-upload-area i {
    font-size: 3rem;
    color: #be0300;
    margin-bottom: 1rem;
}

.file-upload-area p {
    color: #666;
    margin-bottom: 0.5rem;
}

.file-name {
    color: #be0300;
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
}

/* Checkbox */
.checkbox-group {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #be0300;
    border-color: #be0300;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.terms-link {
    color: #be0300;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.submit-btn {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    margin-top: 2rem;
    justify-self: center;
    min-width: 250px;
}

/* External Portal */
.external-portal {
    padding: 6rem 0;
    background-color: white;
}

.portal-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #be0300;
}

.portal-icon {
    margin-bottom: 2rem;
}

.portal-icon i {
    font-size: 5rem;
    color: #be0300;
}

.portal-content h3 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 2rem;
}

.portal-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.portal-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    padding: 1.5rem 3rem;
    margin-bottom: 1rem;
}

.portal-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-text {
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        padding: 2.5rem 2rem;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
    }
    
    .note-item {
        padding: 1.5rem;
    }
    
    .form-wrapper {
        padding: 3rem 2rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portal-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 4rem 0 3rem;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon i {
        font-size: 3rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .note-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .form-section h3 {
        font-size: 1.5rem;
    }
    
    .file-upload-area {
        padding: 2rem 1rem;
    }
    
    .file-upload-area i {
        font-size: 2rem;
    }
    
    .portal-card {
        padding: 2rem 1.5rem;
    }
    
    .portal-icon i {
        font-size: 4rem;
    }
    
    .portal-content h3 {
        font-size: 1.8rem;
    }
}
