/* ====================================================================
   VOICE MISSIONARY SCHOOL (VMS) - CAREERS & RECRUITMENT STYLESHEET
   ==================================================================== */

.careers-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0369a1 100%);
    color: white;
    padding: 80px 20px 90px 20px;
    text-align: center;
    overflow: hidden;
}

.careers-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.15), transparent 60%);
    pointer-events: none;
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.careers-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #38bdf8;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.careers-hero h1 {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.careers-hero p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-hero-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color, #0ea5e9);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35);
    transition: all 0.25s ease;
}

.btn-hero-apply:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.45);
}

/* Section Common Title */
.section-title-wrap {
    text-align: center;
    margin-bottom: 45px;
}

.section-title-wrap h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-title-wrap p {
    font-size: 1rem;
    color: #64748b;
}

/* Benefits Section */
.careers-benefits-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.08);
}

.benefit-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Openings Grid */
.careers-openings-section {
    padding: 80px 20px;
    background: white;
}

.openings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.job-opening-card {
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.job-opening-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 12px 28px -5px rgba(14, 165, 233, 0.15);
    transform: translateY(-3px);
}

.job-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.job-tag.pgt { background: #eff6ff; color: #2563eb; }
.job-tag.tgt { background: #f0fdf4; color: #16a34a; }
.job-tag.primary { background: #fef3c7; color: #d97706; }
.job-tag.admin { background: #fae8ff; color: #c026d3; }

.job-opening-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.35;
}

.job-card-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.88rem;
    color: #475569;
    margin-bottom: 24px;
}

.job-card-details div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-job-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #0f172a;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.job-opening-card:hover .btn-job-apply {
    background: #0ea5e9;
    color: white;
}

/* Form Section */
.careers-form-section {
    padding: 80px 20px 100px 20px;
    background: #f8fafc;
}

.form-container-card {
    max-width: 820px;
    margin: 0 auto;
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.06);
    padding: 45px;
}

.form-card-header {
    text-align: center;
    margin-bottom: 35px;
    border-bottom: 1.5px solid #f1f5f9;
    padding-bottom: 20px;
}

.form-card-header h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 6px;
}

.form-card-header p {
    font-size: 0.92rem;
    color: #64748b;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.field-group.full-width {
    grid-column: 1 / -1;
}

.field-label {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    color: #334155;
    margin-bottom: 6px;
}

.field-label .req {
    color: #ef4444;
}

.field-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.92rem;
    outline: none;
    background: white;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.field-input:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3.5px rgba(14, 165, 233, 0.15);
}

.resume-upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: #f8fafc;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.resume-upload-box:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.resume-upload-box p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
}

.resume-file-input {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.btn-submit-application {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 380px;
    padding: 15px 30px;
    background: #0ea5e9;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
    transition: all 0.25s ease;
}

.btn-submit-application:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 14px 25px rgba(14, 165, 233, 0.4);
}

@media (max-width: 768px) {
    .careers-hero h1 { font-size: 2rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-container-card { padding: 25px 20px; }
}
