/* ============================================================
   Aplus Edtech Career / Job Portal Stylesheet
   Version: 1.0.0
   Designed to seamlessly match Aplus Edtech Design System
   ============================================================ */

:root {
  --sap-navy:    #003366;
  --sap-blue:    #0070F2;
  --sap-accent:  #00A3FF;
  --sap-light:   #F5F7FA;
  --sap-dark:    #001f3f;
  --sap-white:   #ffffff;
  --sap-text:    #1a1a2e;
  --sap-muted:   #5a6a7a;
  --sap-border:  #dde3ec;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(0,51,102,0.06);
  --shadow-md:   0 6px 20px rgba(0,51,102,0.09);
  --shadow-lg:   0 12px 36px rgba(0,51,102,0.14);
  --transition:  all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --font-head:   'Plus Jakarta Sans', sans-serif;
  --font-body:   'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--sap-text);
  background: var(--sap-light);
  line-height: 1.6;
  font-size: 15px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.portal-main-content {
  flex: 1 0 auto;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
button, input, select, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Top Header Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 51, 102, 0.08);
  box-shadow: 0 2px 16px rgba(0, 51, 102, 0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.header-logo-wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header-logo {
  height: 48px;
  width: auto;
}
.header-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 14.5px;
}
.header-nav-links a {
  color: var(--sap-navy);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header-nav-links a:hover,
.header-nav-links a.active {
  color: var(--sap-blue);
  background: rgba(0, 112, 242, 0.06);
}
.btn-post-job {
  background: var(--sap-blue) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 16px !important;
}
.btn-post-job:hover {
  background: #0059c6 !important;
  box-shadow: var(--shadow-sm);
}

/* ── Hero Banner ── */
.careers-hero {
  background: linear-gradient(135deg, #001f3f 0%, #003366 50%, #004d99 100%);
  color: #fff;
  padding: 56px 20px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.careers-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.18) 0%, rgba(0, 51, 102, 0) 70%);
  pointer-events: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.hero-subtitle {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
}

/* ── Search & Filter Box ── */
.search-filter-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sap-border);
  margin-top: -30px;
  position: relative;
  z-index: 10;
}
.search-filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
}
.filter-field {
  position: relative;
}
.filter-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sap-muted);
  font-size: 14px;
}
.filter-field input,
.filter-field select {
  width: 100%;
  height: 46px;
  padding: 0 14px 0 40px;
  border: 1px solid var(--sap-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--sap-text);
  font-size: 14px;
  transition: var(--transition);
}
.filter-field input:focus,
.filter-field select:focus {
  outline: none;
  border-color: var(--sap-blue);
  box-shadow: 0 0 0 3px rgba(0, 112, 242, 0.15);
}
.btn-search {
  height: 46px;
  padding: 0 24px;
  background: var(--sap-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-search:hover {
  background: #0056bd;
}

/* ── Category Quick Pills ── */
.category-pills-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #eef2f6;
  flex-wrap: wrap;
}
.pill-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--sap-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.category-pill {
  padding: 6px 16px;
  border-radius: 50px;
  background: #f1f5f9;
  color: var(--sap-navy);
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.category-pill:hover,
.category-pill.active {
  background: var(--sap-navy);
  color: #fff;
}

/* ── Job Listings Layout ── */
.jobs-layout {
  padding: 40px 0 60px;
}
.jobs-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.jobs-count {
  font-size: 16px;
  color: var(--sap-muted);
}
.jobs-count strong {
  color: var(--sap-navy);
  font-weight: 700;
}
.jobs-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--sap-muted);
}

/* ── Job Card ── */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}
.job-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--sap-border);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 112, 242, 0.4);
}
.job-card-top {
  margin-bottom: 16px;
}
.job-card-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12.5px;
  color: var(--sap-muted);
}
.cat-tag {
  background: #eef4ff;
  color: var(--sap-blue);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
}
.job-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--sap-navy);
  margin-bottom: 6px;
  line-height: 1.35;
}
.job-company {
  font-size: 14px;
  color: var(--sap-muted);
  font-weight: 500;
  margin-bottom: 12px;
}
.job-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  padding: 4px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #475569;
}
.job-card-bottom {
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.job-time-info {
  font-size: 12px;
  color: #718096;
}
.days-left-badge {
  color: #d97706;
  font-weight: 600;
}
.btn-view-job {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(0, 112, 242, 0.08);
  color: var(--sap-blue);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13.5px;
}
.btn-view-job:hover {
  background: var(--sap-blue);
  color: #fff;
}

/* ── Student Preference Badges ── */
.pref-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.2px;
}
.badge-aplus {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}
.badge-reliance {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}
.badge-both {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.badge-open {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
}

/* ── Preference Notice Highlight Box ── */
.preference-notice-box {
  background: #f0f7ff;
  border-left: 4px solid var(--sap-blue);
  padding: 14px 18px;
  border-radius: 6px;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #1e3a8a;
}
.preference-notice-box strong {
  display: block;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--sap-navy);
}

/* ── Company Call to Action Banner ── */
.company-cta-banner {
  background: linear-gradient(135deg, #002244 0%, #003366 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 30px 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
.cta-text h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.cta-text p {
  opacity: 0.85;
  font-size: 14.5px;
  max-width: 600px;
}
.cta-btn {
  background: #fff;
  color: var(--sap-navy);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cta-btn:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

/* ── Form Styles (Apply & Company Forms) ── */
.form-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--sap-border);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}
.form-section-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--sap-navy);
  margin: 24px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-section-title:first-of-type {
  margin-top: 0;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 6px;
  color: var(--sap-navy);
}
.req { color: #dc2626; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--sap-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--sap-text);
  background: #fff;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sap-blue);
  box-shadow: 0 0 0 3px rgba(0, 112, 242, 0.12);
}
.field-hint {
  font-size: 12px;
  color: var(--sap-muted);
  margin-top: 4px;
}

/* ── Student Status Radio Selector ── */
.student-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.status-radio-card {
  border: 1px solid var(--sap-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  background: #fff;
}
.status-radio-card:hover {
  border-color: var(--sap-blue);
  background: #f8fafc;
}
.status-radio-card input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--sap-blue);
}
.status-radio-card.active {
  border-color: var(--sap-blue);
  background: #eff6ff;
}

/* ── Resume Upload Box ── */
.upload-drop-zone {
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  background: #f8fafc;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.upload-drop-zone:hover {
  border-color: var(--sap-blue);
  background: #f0f7ff;
}
.upload-drop-zone i {
  font-size: 32px;
  color: var(--sap-blue);
  margin-bottom: 8px;
}
.upload-drop-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-preview-name {
  margin-top: 10px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--sap-navy);
}

/* ── Honeypot field (hidden from humans) ── */
.security-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ── Consent Checkbox ── */
.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
  margin: 20px 0;
  line-height: 1.5;
}
.consent-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--sap-blue);
}

/* ── Submit Buttons ── */
.btn-submit-app {
  width: 100%;
  padding: 14px 28px;
  background: var(--sap-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit-app:hover {
  background: #0056bd;
  box-shadow: 0 4px 14px rgba(0, 112, 242, 0.3);
}

/* ── Job Details View ── */
.job-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin: 30px 0 60px;
}
.job-content-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--sap-border);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.job-sidebar-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--sap-border);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.detail-section {
  margin-bottom: 28px;
}
.detail-section h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--sap-navy);
  margin-bottom: 12px;
  position: relative;
}
.detail-section p, .detail-section ul {
  line-height: 1.7;
  color: #334155;
}
.detail-section ul {
  padding-left: 20px;
}
.detail-section li {
  margin-bottom: 6px;
}
.sidebar-fact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}
.sidebar-fact-item i {
  color: var(--sap-blue);
  font-size: 16px;
  margin-top: 3px;
}
.fact-label {
  font-size: 12px;
  color: var(--sap-muted);
  text-transform: uppercase;
  font-weight: 600;
}
.fact-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--sap-navy);
}

/* ── Confirmation Screen ── */
.confirmation-card {
  max-width: 640px;
  margin: 50px auto;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--sap-border);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.confirm-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.confirmation-card h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--sap-navy);
  margin-bottom: 14px;
}
.confirmation-card p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 15px;
}

/* ── Admin Dashboard & Table ── */
.admin-wrap {
  padding: 30px 0 60px;
}
.admin-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.stat-box {
  background: #fff;
  border: 1px solid var(--sap-border);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.stat-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sap-muted);
}
.stat-number {
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--sap-navy);
  margin-top: 4px;
}
.table-responsive {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--sap-border);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  text-align: left;
}
.admin-table th {
  background: #f8fafc;
  padding: 12px 14px;
  color: var(--sap-navy);
  font-weight: 700;
  border-bottom: 1px solid var(--sap-border);
  white-space: nowrap;
}
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}
.admin-table tr:hover {
  background: #f8fbff;
}
.status-pill {
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
}
.status-published { background: #dcfce7; color: #15803d; }
.status-expired { background: #fee2e2; color: #b91c1c; }
.status-draft { background: #f1f5f9; color: #475569; }
.status-paused { background: #fef3c7; color: #b45309; }
.status-closed { background: #e2e8f0; color: #334155; }
.status-pending { background: #ede9fe; color: #6d28d9; }

.rank-ctrl {
  display: flex;
  align-items: center;
  gap: 4px;
}
.btn-rank-adj {
  padding: 2px 6px;
  border: 1px solid var(--sap-border);
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
}
.btn-rank-adj:hover {
  background: var(--sap-blue);
  color: #fff;
}

/* ── Footer ── */
.site-footer {
  background: #001f3f;
  color: #cbd5e1;
  padding: 50px 20px 24px;
  font-size: 14px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  height: 44px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.footer-col h4 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a:hover {
  color: var(--sap-accent);
}
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 36px;
  text-align: center;
  font-size: 12.5px;
  opacity: 0.75;
}

/* ── Mobile Menu Toggle Button ── */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--sap-border);
  color: var(--sap-navy);
  font-size: 18px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #f1f5f9;
  border-color: var(--sap-blue);
  color: var(--sap-blue);
}

/* ── Mobile Sticky Apply Bar (job.php) ── */
.mobile-sticky-apply-bar {
  display: none;
}

/* ── Responsive Queries for Mobile & Tablet Browsers ── */
@media (max-width: 900px) {
  .search-filter-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .job-detail-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Prevent iOS Safari auto-zoom on input focus */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  input[type="date"],
  input[type="number"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important;
  }

  .site-header {
    position: sticky;
    top: 0;
  }
  .header-inner {
    height: 68px;
    padding: 0 16px;
  }
  .header-logo {
    height: 40px;
  }
  .mobile-menu-toggle {
    display: flex;
  }

  /* Mobile Dropdown Menu */
  .header-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 2px solid var(--sap-blue);
    box-shadow: 0 12px 28px rgba(0, 51, 102, 0.16);
    flex-direction: column;
    padding: 16px 20px;
    gap: 8px;
    z-index: 9999;
  }
  .header-nav-links.open {
    display: flex;
    animation: mobileNavSlideDown 0.22s ease-out;
  }
  @keyframes mobileNavSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .header-nav-links a {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    border: 1px solid #f1f5f9;
  }
  .btn-post-job {
    text-align: center;
    justify-content: center;
    margin-top: 4px;
    padding: 12px !important;
  }

  /* Horizontal touch-swipeable category pills */
  .category-pills-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
    gap: 8px;
  }
  .category-pills-bar::-webkit-scrollbar {
    display: none;
  }
  .category-pill {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 14px;
  }
  .pill-label {
    flex-shrink: 0;
  }

  /* Touch buttons and inputs */
  .btn-search,
  .btn-submit-app {
    min-height: 48px;
    font-size: 16px;
  }
  .filter-field input,
  .filter-field select {
    height: 48px;
    font-size: 16px;
  }

  .careers-hero {
    padding: 40px 16px 36px;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 14.5px;
    margin-bottom: 20px;
  }
  .search-filter-card {
    padding: 18px 16px;
    margin-top: -20px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .job-card {
    padding: 20px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-card {
    padding: 20px 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .student-status-grid {
    grid-template-columns: 1fr;
  }
  .status-radio-card {
    padding: 14px 16px;
    min-height: 52px;
  }
  .job-content-card {
    padding: 22px 16px;
    margin-bottom: 80px; /* Space for mobile sticky apply bar */
  }

  /* Mobile Sticky Bottom Apply Bar for job.php */
  .mobile-sticky-apply-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    border-top: 1px solid var(--sap-border);
    padding: 12px 18px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 990;
  }
  .m-bar-info {
    flex: 1;
    min-width: 0;
  }
  .m-bar-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--sap-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .m-bar-comp {
    font-size: 12px;
    color: var(--sap-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .m-bar-btn {
    width: auto !important;
    padding: 10px 22px !important;
    font-size: 14px !important;
    white-space: nowrap;
    margin: 0 !important;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
