/* Career Page Styles */

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: white;
}

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

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    border: 2px solid #edf2f7;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(70, 153, 70, 0.1), rgba(70, 153, 70, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.benefit-desc {
    color: var(--text-light);
    line-height: 1.6;
}

/* Jobs Section */
.jobs-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.jobs-grid {
    display: grid;
    gap: 2rem;
}

.job-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid #edf2f7;
    transition: all 0.4s ease;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--secondary-color);
}

.job-info {
    flex: 1;
}

.job-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.job-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.job-meta-item i {
    color: var(--secondary-color);
}

.job-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.job-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.job-tag {
    padding: 0.4rem 1rem;
    background: rgba(70, 153, 70, 0.1);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-action {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.apply-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), #5ab35a);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(70, 153, 70, 0.4);
}

.job-deadline {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Application Section */
.application-section {
    padding: 6rem 0;
    background: white;
}

.application-form {
    max-width: 700px;
    margin: 3rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid #edf2f7;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(70, 153, 70, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-input-wrapper input[type=file] {
    position: absolute;
    left: -9999px;
}

.file-input-label {
    display: block;
    padding: 0.9rem 1.2rem;
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.file-input-label:hover {
    border-color: var(--secondary-color);
    background: rgba(70, 153, 70, 0.05);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--secondary-color), #5ab35a);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(70, 153, 70, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .career-hero h1 {
        font-size: 2rem;
    }

    .job-card {
        flex-direction: column;
    }

    .job-action {
        width: 100%;
        align-items: stretch;
    }

    .apply-btn {
        width: 100%;
    }

    .application-form {
        padding: 2rem 1.5rem;
    }
}
