/* SINGLE-CAREER-JOB.CSS - Page Scoped Styles */

/* ── Scope Protection & Typography ── */
  body { font-family: 'Avenir Next', 'Avenir', sans-serif !important; background: #ffffff !important; margin: 0 !important; color: #334155; }
  footer a, header a { text-decoration: none !important; color: inherit !important; }
  footer ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
  footer h4 { font-size: 1rem !important; font-weight: 700 !important; margin-bottom: 1rem !important; color: #000000 !important; }
  footer p { margin: 0 !important; }
  footer > div { display: grid !important; }
  footer .flex { display: flex !important; }
  header { text-align: left !important; }

  #single-job-scope { background: #ffffff; overflow-x: hidden; }

  #single-job-scope .container {
    max-width: 1140px !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* ── 1. Hero Banner ── */
  #single-job-scope .job-hero {
    background: linear-gradient(135deg, rgba(13, 56, 211, 0.95) 0%, rgba(7, 37, 156, 0.95) 100%),
                url('../../images/hero-square-bg-1.png') center/cover no-repeat;
    padding: 70px 0;
    color: #ffffff;
  }

  #single-job-scope .job-hero h1 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
  }

  /* ── 2. Job Detail Content Section ── */
  #single-job-scope .job-detail-section {
    padding: 70px 0 60px;
    background: #ffffff;
  }

  #single-job-scope .main-job-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 20px;
  }

  #single-job-scope .job-badges-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
  }

  #single-job-scope .job-pill-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
    background: #f8fafc;
  }

  #single-job-scope .job-section-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #0f172a;
    margin-top: 32px;
    margin-bottom: 16px;
  }

  #single-job-scope .job-bullet-list {
    padding-left: 20px;
    margin-bottom: 30px;
  }

  #single-job-scope .job-bullet-list li {
    font-family: 'Avenir Next', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 8px;
  }

  /* ── 3. Submit Your Resume Form Section ── */
  #single-job-scope .apply-form-section {
    padding: 70px 0 100px;
    background: #ffffff;
  }

  #single-job-scope .form-section-heading {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: #0f172a;
    text-align: center;
    margin-bottom: 44px;
  }

  #single-job-scope .form-label-custom {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    color: #0f172a;
    margin-bottom: 8px;
    display: block;
  }

  #single-job-scope .form-label-custom span {
    color: #dc2626;
  }

  #single-job-scope .input-custom {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    padding: 14px 18px;
    font-family: 'Avenir Next', sans-serif;
    font-size: 14px;
    color: #334155;
    outline: none;
    transition: all 0.2s ease;
  }

  #single-job-scope .input-custom:focus {
    background: #ffffff;
    border-color: #0f3cd9;
    box-shadow: 0 0 0 3px rgba(15, 60, 217, 0.1);
  }

  #single-job-scope .file-input-wrap {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  #single-job-scope .btn-choose-file {
    background: #e2e8f0;
    color: #334155;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
  }

  #single-job-scope .file-name-display {
    font-size: 13.5px;
    color: #94a3b8;
  }

  #single-job-scope .form-helper-text {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 6px;
  }

  #single-job-scope .btn-submit-resume {
    background: #0f3cd9;
    color: #ffffff;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 48px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(15, 60, 217, 0.25);
    transition: all 0.2s ease;
    display: block;
    margin: 40px auto 0;
    min-width: 200px;
  }

  #single-job-scope .btn-submit-resume:hover {
    background: #082073;
    transform: translateY(-2px);
  }

