/* ===== RECRUITMENT PAGE BANNER ===== */
.recruitment-banner {
  position: relative; height: 280px;
  background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1400&q=80') center/cover;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.recruitment-banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.recruitment-banner-content { position: relative; z-index: 2; color: #fff; }
.recruitment-banner-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(46,125,50,0.5);
}
.recruitment-banner-content h1 { font-size: 42px; font-weight: 800; margin-bottom: 10px; }
.recruitment-banner-content > p { font-size: 16px; opacity: 0.9; margin-bottom: 16px; }
.recruitment-banner-content .breadcrumb { justify-content: center; color: rgba(255,255,255,0.8); }
.recruitment-banner-content .breadcrumb a { color: #ffd700; }

/* ===== RECRUITMENT PAGE LAYOUT ===== */
.recruitment-page { padding: 50px 0 70px; background: #f5f5f5; }
.recruitment-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }

/* ===== WHY JOIN SECTION ===== */
.why-join-section { margin-bottom: 50px; }
.why-join-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 32px; text-align: center; color: var(--text); }
.why-join-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-join-card {
  background: #fff; border-radius: 12px; padding: 28px 24px;
  text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s; border-top: 4px solid transparent;
}
.why-join-card:hover {
  transform: translateY(-8px); box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-top-color: var(--pink);
}
.why-join-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #ff6b9d);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff; margin: 0 auto 16px;
}
.why-join-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.why-join-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== JOB LISTINGS SECTION ===== */
.job-listings-section { margin-bottom: 50px; }
.job-listings-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 24px; color: var(--text); }
.job-filters { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.job-filter-btn {
  padding: 10px 20px; border-radius: 25px;
  border: 2px solid var(--border); background: #fff;
  font-size: 13px; font-weight: 700; cursor: pointer;
  color: var(--text-light); transition: all 0.2s;
}
.job-filter-btn.active, .job-filter-btn:hover {
  background: var(--pink); color: #fff; border-color: var(--pink);
}

.job-list { display: flex; flex-direction: column; gap: 16px; }
.job-list-empty {
  text-align: center;
  color: var(--text-light, #666);
  padding: 2rem 1rem;
  line-height: 1.65;
  margin: 0;
  font-size: 15px;
}
.job-card {
  background: #fff; border-radius: 12px; padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s; border-left: 4px solid var(--pink);
}
.job-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.job-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.job-card-title { font-size: 18px; font-weight: 800; color: var(--text); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.job-urgent-badge { background: #e53e3e; color: #fff; font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 10px; letter-spacing: .5px; }
.job-card-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.job-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-light); }
.job-meta-item i { color: var(--pink); }
.job-card-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.job-card-footer { display: flex; align-items: center; justify-content: space-between; }
.job-requirements { display: flex; gap: 8px; flex-wrap: wrap; }
.job-requirement-tag { background: var(--pink-light); color: var(--pink); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 12px; }
.job-apply-btn {
  padding: 10px 24px; border-radius: 25px;
  background: var(--pink); color: #fff; border: none;
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: all 0.2s;
}
.job-apply-btn:hover { background: var(--pink-dark); transform: translateY(-2px); }

/* ===== APPLICATION FORM SECTION ===== */
.application-form-section {
  background: #fff; border-radius: 12px; padding: 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.application-form-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 28px; color: var(--text); }

.application-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--text); }
.required { color: #e53935; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 14px; outline: none;
  font-family: inherit; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--pink); }
.form-group textarea { resize: vertical; }

/* File upload */
.file-upload {
  border: 2px dashed var(--border); border-radius: 10px;
  padding: 32px 24px; text-align: center; cursor: pointer;
  transition: all 0.2s;
}
.file-upload:hover { border-color: var(--pink); background: var(--pink-light); }
.file-upload i { font-size: 36px; color: var(--text-light); margin-bottom: 10px; display: block; }
.file-upload p { font-size: 14px; color: var(--text-light); margin-bottom: 4px; }
.file-upload p span { color: var(--pink); font-weight: 600; text-decoration: underline; }
.file-upload small { font-size: 12px; color: #aaa; }

/* Checkbox */
.form-group.checkbox { flex-direction: row; align-items: center; gap: 10px; }
.form-group.checkbox input { width: 18px; height: 18px; cursor: pointer; }
.form-group.checkbox label { margin: 0; font-size: 13px; cursor: pointer; }

/* Submit button */
.btn-submit-application {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--pink); color: #fff; border: none;
  padding: 14px 32px; border-radius: 30px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; align-self: flex-start; margin-top: 10px;
}
.btn-submit-application:hover { background: var(--pink-dark); transform: translateY(-2px); }

/* Success message */
.application-success {
  display: none; text-align: center; padding: 40px 20px;
}
.application-success.show { display: block; }
.success-icon { font-size: 64px; color: #27ae60; margin-bottom: 16px; }
.application-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.application-success p { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }

/* ===== RECRUITMENT SIDEBAR ===== */
.recruitment-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget {
  background: #fff; border-radius: 12px; padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.sidebar-widget:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.sidebar-widget .widget-title { font-size: 15px; font-weight: 800; color: var(--text); padding-bottom: 12px; margin-bottom: 14px; border-bottom: 2px solid var(--pink); display: flex; align-items: center; gap: 8px; }
.sidebar-widget .widget-title i { color: var(--pink); }

/* Contact info */
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-item i { color: var(--pink); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.contact-item p { font-size: 13px; color: var(--text-light); margin: 0; }
.contact-item a { color: var(--pink); text-decoration: none; transition: opacity 0.2s; }
.contact-item a:hover { opacity: 0.75; }

/* Benefits list */
.benefits-list { display: flex; flex-direction: column; gap: 10px; }
.benefits-list li { list-style: none; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-light); }
.benefits-list i { color: #27ae60; font-size: 14px; }

/* Sidebar CTA */
.sidebar-cta { text-align: center; background: linear-gradient(135deg, #e8f5e9, #f1f8e9) !important; }
.sidebar-cta h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.sidebar-cta p { font-size: 13px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.sidebar-cta .btn-primary { display: block !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .recruitment-layout { grid-template-columns: 1fr 280px; }
  .why-join-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .recruitment-layout { grid-template-columns: 1fr; }
  .recruitment-banner { height: 240px; }
  .recruitment-banner-content h1 { font-size: 32px; }
  .why-join-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .job-card-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
  .job-apply-btn { width: 100%; }
}
@media (max-width: 480px) {
  .recruitment-banner-content h1 { font-size: 24px; }
  .recruitment-banner-content > p { font-size: 14px; }
  .application-form-section { padding: 20px; }
  .job-filters { gap: 8px; }
  .job-filter-btn { padding: 8px 14px; font-size: 12px; }
}
