/* ============================= */
/* ALIGNED RECRUITMENT SECTION   */
/* ============================= */

.recruitment-section { 
    padding: 80px 0; 
    background: #fcfaff; /* Matches .request-section background */
}

.recruitment-header { text-align: center; margin-bottom: 50px; }

/* Changed from Purple to Request-Title Blue */
.recruitment-header h1 { 
    font-size: 3.5rem; 
    color: #1f5d91; 
    font-weight: 800; 
}

/* Changed from Light Purple to Primary Green */
.recruitment-header h1 span { 
    color: #2f8f6b; 
}

.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    /* Updated shadow to match request section depth */
    box-shadow: 0 10px 30px rgba(31, 93, 145, 0.05);
    margin-bottom: 30px;
    border: 1px solid #e0d6f5; /* Matches .form-group border */
}

/* Aligned with Request Blue */
.card-title { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 30px; 
    color: #1f5d91; 
}

.card-title i { 
    width: 28px; 
    height: 28px; 
    color: #2f8f6b; /* Icons now use the green accent */
}

/* Grid Logic (Remains the same as per your layout) */
.form-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.col-1 { grid-column: span 1; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-full { grid-column: span 5; }

.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; }

/* Labels match Request Blue */
label { 
    font-weight: 700; 
    color: #1f5d91; 
    margin-bottom: 8px; 
    display: block; 
    font-size: 0.9rem; 
}

input, select, textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e0d6f5; /* Unified border color */
    border-radius: 12px;
    transition: 0.3s;
    font-family: inherit;
    background: #fff;
}

/* Focus state matches Request UI */
input:focus { 
    border-color: #1f5d91; 
    outline: none; 
    background: #fff;
    box-shadow: 0 0 0 4px rgba(31, 93, 145, 0.1);
}

/* File Upload Zone - Soft Green/Blue Tint */
.upload-zone {
    border: 2px dashed #2f8f6b; /* Green dashed border */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    background: #f4fbf8; /* Very soft green tint */
}

.upload-zone input { position: absolute; opacity: 0; width: 100%; height: 100%; top: 0; left: 0; cursor: pointer; }
.upload-zone i { width: 40px; height: 40px; color: #1f5d91; margin-bottom: 10px; }

/* Submit Button Aligned with .btn-primary-form */
.btn-submit-career {
    width: 100%;
    background: #1f5d91; 
    color: #fff;
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit-career:hover { 
    background: #164a75; /* Darker blue for hover */
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(31, 93, 145, 0.2); 
}

/* Better spacing for form groups */
.mb-4 { margin-bottom: 1.5rem; }

/* Interactive Selection Cards (Driver's License) */
.selection-box-group {
    display: flex;
    gap: 10px;
}

.selection-card {
    flex: 1;
    cursor: pointer;
    position: relative;
}

.selection-card input {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.card-content {
    background: #fff;
    border: 1px solid #e0d6f5;
    padding: 12px;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    color: #1f5d91;
    transition: all 0.2s ease;
}

/* Selected State */
.selection-card input:checked + .card-content {
    background: #1f5d91;
    color: #fff;
    border-color: #1f5d91;
    box-shadow: 0 4px 10px rgba(31, 93, 145, 0.2);
}

.selection-card:hover .card-content {
    border-color: #1f5d91;
}

/* Modern Consent Checkbox */
.consent-container {
    background: #f4fbf8;
    padding: 1.25rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.modern-checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.modern-checkbox input {
    display: none; /* Hide original */
}

.checkbox-box {
    width: 22px;
    height: 22px;
    border: 2px solid #2f8f6b;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    transition: 0.2s;
}

.modern-checkbox input:checked + .checkbox-box {
    background: #2f8f6b;
}

.modern-checkbox input:checked + .checkbox-box::after {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 0.9rem;
    color: #444;
    font-weight: 500;
}

/* Button with Icon alignment */
.btn-submit-career {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* File Upload refinement */
.upload-zone {
    transition: 0.3s;
}

.upload-zone:hover {
    background: #e9f5f0;
    border-color: #1f5d91;
}