/* AllWorkJob - Modern Public Pages Stylesheet (Emergent Design System) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --awj-primary: #4f46e5;
  --awj-primary-dark: #3730a3;
  --awj-emerald: #10b981;
  --awj-emerald-dark: #059669;
  --awj-emerald-light: #ecfdf5;
  --awj-amber: #f59e0b;
  --awj-amber-light: #fef3c7;
  --awj-slate-950: #020617;
  --awj-slate-900: #0f172a;
  --awj-slate-800: #1e293b;
  --awj-slate-700: #334155;
  --awj-slate-600: #475569;
  --awj-slate-500: #64748b;
  --awj-slate-400: #94a3b8;
  --awj-slate-300: #cbd5e1;
  --awj-slate-200: #e2e8f0;
  --awj-slate-100: #f1f5f9;
  --awj-slate-50: #f8fafc;
  --awj-font-heading: 'Plus Jakarta Sans', sans-serif;
  --awj-font-body: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --awj-radius: 16px;
  --awj-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
  --awj-shadow-lg: 0 12px 30px -4px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--awj-font-body);
  background-color: var(--awj-slate-50);
  color: var(--awj-slate-800);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--awj-font-heading);
  font-weight: 700;
  color: var(--awj-slate-900);
  letter-spacing: -0.015em;
}
a { color: var(--awj-primary); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--awj-primary-dark); }

/* LIVE TICKER */
.awj-ticker {
  background: var(--awj-slate-900);
  color: var(--awj-slate-300);
  border-bottom: 1px solid rgba(51, 65, 85, 0.6);
  font-size: 12.5px;
  position: relative !important;
}
.awj-ticker-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ticker-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: awj-pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes awj-pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.ticker-badge { color: #34d399; font-weight: 800; }

/* HEADER (STRICTLY NON-STICKY) */
.awj-header {
  position: relative !important;
  background: #ffffff;
  border-bottom: 1px solid var(--awj-slate-200);
  box-shadow: var(--awj-shadow);
  top: auto !important;
  z-index: 100;
}
.awj-header-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-logo, .awj-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4f46e5, #3730a3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}
.brand-titles h1, .brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--awj-slate-900);
  line-height: 1.1;
  letter-spacing: -0.4px;
}
.brand-titles h1 span, .brand-name span { color: var(--awj-primary); }
.brand-titles p, .brand-sub { font-size: 11px; font-weight: 600; color: var(--awj-slate-500); }

.header-ad-center, .awj-header-ad {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 728px;
  width: 100%;
  min-height: 90px;
}
.header-ad-center .adsbygoogle, .awj-header-ad .adsbygoogle {
  display: block;
  width: 100%;
  max-width: 728px;
  height: 90px;
}

.header-public-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-header-login {
  border: 1px solid var(--awj-slate-300);
  background: white;
  color: var(--awj-slate-800);
  padding: 8px 18px;
  border-radius: 10px;
  font-family: var(--awj-font-heading);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-header-login:hover {
  background: var(--awj-slate-100);
  border-color: var(--awj-slate-400);
}
.btn-header-signup {
  background: var(--awj-emerald);
  color: white;
  padding: 8px 18px;
  border-radius: 10px;
  font-family: var(--awj-font-heading);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-header-signup:hover {
  background: var(--awj-emerald-dark);
}

/* Dark Navbar Strip (Exact Homepage) */
.awj-navbar-wrap {
  background: var(--awj-slate-900);
}
.awj-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}
.nav-links-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links-list a {
  color: #cbd5e1;
  text-decoration: none;
  font-family: var(--awj-font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
}
.nav-links-list a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}
.nav-links-list a.active {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-bottom-color: #38bdf8;
}

.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: var(--awj-slate-700);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
}
#mobile-nav-checkbox { display: none; }

@media (max-width: 1360px) { .header-ad-center, .awj-header-ad { display: none !important; } }
@media (max-width: 900px) {
  .mobile-toggle-btn { display: block; }
  .awj-nav-inner {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--awj-slate-900);
    flex-direction: column;
    height: auto;
    padding: 14px 20px 20px 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    z-index: 999;
  }
  #mobile-nav-checkbox:checked ~ .awj-navbar-wrap .awj-nav-inner {
    display: flex;
  }
  .nav-links-list {
    flex-direction: column;
    width: 100%;
  }
  .nav-links-list a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border-bottom: none;
  }
}

/* Nav Strip (Legacy scoped) */
.awj-nav-strip {
  background: #ffffff;
  border-top: 1px solid var(--awj-slate-100);
  position: relative !important;
}
.awj-nav-strip .awj-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.awj-desktop-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.awj-desktop-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: var(--awj-font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--awj-slate-700);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.awj-desktop-links a:hover {
  background: var(--awj-slate-100);
  color: var(--awj-primary);
}
.awj-desktop-links a.active {
  background: rgba(79, 70, 229, 0.08);
  color: var(--awj-primary);
  font-weight: 700;
}
.awj-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.awj-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 9px;
  font-family: var(--awj-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--awj-slate-700);
  background: transparent;
  border: 1px solid var(--awj-slate-300);
  text-decoration: none;
  transition: all 0.15s ease;
}
.awj-btn-ghost:hover {
  background: var(--awj-slate-100);
  color: var(--awj-slate-900);
}
.awj-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 9px;
  font-family: var(--awj-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff !important;
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 12px -1px rgba(79, 70, 229, 0.35);
  transition: all 0.15s ease;
}
.awj-btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.awj-mobile-toggle {
  display: none;
  background: var(--awj-slate-100);
  border: 1px solid var(--awj-slate-200);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 18px;
  color: var(--awj-slate-800);
  cursor: pointer;
}

/* Mobile Drawer (Click triggered) */
.awj-mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--awj-slate-200);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  z-index: 999;
}
.awj-mobile-drawer.open {
  display: block;
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mobile-drawer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--awj-slate-800);
  text-decoration: none;
  border-radius: 8px;
}
.mobile-drawer-links a:hover, .mobile-drawer-links a.active {
  background: var(--awj-slate-100);
  color: var(--awj-primary);
}
.mobile-btn-ghost {
  background: var(--awj-slate-100) !important;
  justify-content: center;
  margin-top: 6px;
}
.mobile-btn-primary {
  background: var(--awj-primary) !important;
  color: white !important;
  justify-content: center;
  margin-top: 6px;
}

/* Page Hero Banner */
.page-hero {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
  color: white;
  padding: 48px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 800;
}
.page-hero p {
  font-size: 16px;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto 16px auto;
}
.breadcrumb-trail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
}
.breadcrumb-trail a { color: #818cf8; }
.breadcrumb-trail span { color: #cbd5e1; }

/* Main Container */
.page-container {
  max-width: 1280px;
  margin: 40px auto 60px auto;
  padding: 0 20px;
}

/* Card Styling */
.awj-card {
  background: #ffffff;
  border: 1px solid var(--awj-slate-200);
  border-radius: var(--awj-radius);
  padding: 32px;
  box-shadow: var(--awj-shadow);
  margin-bottom: 28px;
}

/* 4 Action Cards Row */
.action-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.action-card {
  background: #ffffff;
  border: 1px solid var(--awj-slate-200);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--awj-shadow);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.action-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--awj-shadow-lg);
  border-color: var(--awj-primary);
}
.action-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}
.icon-blue { background: #e0e7ff; color: #4338ca; }
.icon-green { background: #dcfce7; color: #15803d; }
.icon-amber { background: #fef3c7; color: #b45309; }
.icon-purple { background: #f3e8ff; color: #7e22ce; }
.action-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.action-card p {
  font-size: 13px;
  color: var(--awj-slate-500);
  margin-bottom: 16px;
}
.action-card .btn-card {
  display: inline-block;
  width: 100%;
  padding: 9px 0;
  border-radius: 8px;
  font-family: var(--awj-font-heading);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
}
.btn-card-primary { background: var(--awj-primary); color: white; }
.btn-card-primary:hover { background: var(--awj-primary-dark); }
.btn-card-outline { background: var(--awj-slate-100); color: var(--awj-slate-800); }
.btn-card-outline:hover { background: var(--awj-slate-200); }

/* FAQ Accordion Items */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--awj-slate-200);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
}
.faq-item:hover {
  border-color: #cbd5e1;
}
.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--awj-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--awj-slate-900);
  background: #ffffff;
  user-select: none;
}
.faq-question:hover {
  background: var(--awj-slate-50);
  color: var(--awj-primary);
}
.faq-question i {
  color: var(--awj-slate-400);
  transition: transform 0.25s ease;
  font-size: 14px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--awj-primary);
}
.faq-answer {
  display: none;
  padding: 0 24px 20px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--awj-slate-600);
  border-top: 1px solid var(--awj-slate-100);
  background: #ffffff;
}
.faq-item.active .faq-answer {
  display: block;
}

/* Modern Form Controls */
.awj-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group.full-width {
  grid-column: span 2;
}
.form-group label {
  font-family: var(--awj-font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--awj-slate-700);
}
.form-control {
  border: 1px solid var(--awj-slate-300);
  background: #ffffff;
  border-radius: 9px;
  padding: 11px 14px;
  font-family: var(--awj-font-body);
  font-size: 14.5px;
  color: var(--awj-slate-900);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--awj-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: white;
  border: none;
  border-radius: 9px;
  padding: 12px 28px;
  font-family: var(--awj-font-heading);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px -1px rgba(79, 70, 229, 0.35);
  transition: all 0.2s ease;
}
.btn-submit:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.btn-reset {
  background: var(--awj-slate-100);
  color: var(--awj-slate-700);
  border: 1px solid var(--awj-slate-300);
  border-radius: 9px;
  padding: 12px 24px;
  font-family: var(--awj-font-heading);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-reset:hover {
  background: var(--awj-slate-200);
}

/* Two Column Split */
.two-col-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}

/* 4-COLUMN DARK FOOTER */
.awj-footer-dark {
  background: var(--awj-slate-950);
  color: var(--awj-slate-400);
  padding: 60px 0 0 0;
  border-top: 1px solid var(--awj-slate-800);
  position: relative !important;
}
.footer-grid-4col {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 48px 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.awj-footer-dark h4 {
  font-family: var(--awj-font-heading);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 18px;
}
.awj-footer-dark ul { list-style: none; padding: 0; margin: 0; }
.awj-footer-dark ul li { margin-bottom: 10px; }
.awj-footer-dark ul li a {
  font-size: 13.5px;
  color: var(--awj-slate-400);
  text-decoration: none;
  transition: color 0.15s ease;
}
.awj-footer-dark ul li a:hover { color: #ffffff; }
.footer-sub-strip {
  border-top: 1px solid var(--awj-slate-900);
  background: #010409;
  padding: 18px 20px;
  text-align: center;
  font-size: 12.5px;
  color: var(--awj-slate-500);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .awj-header-ad { display: none; }
  .action-cards-grid { grid-template-columns: 1fr 1fr; }
  .two-col-layout { grid-template-columns: 1fr; }
  .footer-grid-4col { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .awj-desktop-links, .awj-header-actions { display: none; }
  .awj-mobile-toggle { display: block; }
  .action-cards-grid { grid-template-columns: 1fr; }
  .awj-form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .footer-grid-4col { grid-template-columns: 1fr; gap: 28px; }
  .footer-sub-strip { flex-direction: column; gap: 8px; text-align: center; }
  .awj-ticker-inner { justify-content: center; }
  .ticker-right { display: none; }
  .page-hero h1 { font-size: 26px; }
}


/* ============================================================
   GLOBAL LAYOUT OVERFLOW FIXES
   ============================================================ */
html {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100%;
}
body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  -webkit-overflow-scrolling: touch !important;
}

*, *::before, *::after {
  box-sizing: border-box !important;
}

table, img, video {
  max-width: 100% !important;
}

@media (max-width: 1360px) { .header-ad-center, .awj-header-ad { display: none !important; } }


.header-public-auth {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
  margin-left: auto !important;
}
.btn-header-login, .btn-header-signup {
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}


/* ============================================================
   STICKY FLOATING REGISTER BUTTON (PUBLIC PAGES ONLY)
   ============================================================ */
.awj-sticky-bottom-btn {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 9999 !important;
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
  font-family: var(--awj-font-heading, 'Plus Jakarta Sans', sans-serif) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  padding: 12px 22px !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45), 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease !important;
  letter-spacing: 0.3px !important;
}
.awj-sticky-bottom-btn:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.55), 0 4px 10px rgba(0, 0, 0, 0.2) !important;
  color: #ffffff !important;
}
.awj-sticky-bottom-btn i {
  font-size: 14px !important;
}
@media (max-width: 600px) {
  .awj-sticky-bottom-btn {
    bottom: 16px !important;
    right: 16px !important;
    padding: 10px 18px !important;
    font-size: 12px !important;
  }
}



/* ==========================================================
   AWJ TICKER (SHIFTED ABOVE FOOTER) & STICKY ACTION BUTTONS
   ========================================================== */
.awj-ticker {
    background: #020617;
    color: #94a3b8;
    font-size: 12.5px;
    font-weight: 500;
    padding: 9px 16px;
    border-top: 1px solid rgba(51, 65, 85, 0.6);
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    position: relative;
    z-index: 10;
}

/* Floating Bottom-Right Sticky Auth Stack (Public Pages: Login + Register) */
.awj-sticky-auth-stack {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    pointer-events: auto;
}
.awj-sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 9999px;
    font-family: var(--awj-font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
    letter-spacing: 0.03em;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.35);
}
.awj-sticky-login-btn {
    background: #0f172a;
    color: #f8fafc !important;
    border: 1.5px solid #334155;
    box-shadow: 0 10px 20px -3px rgba(15, 23, 42, 0.45);
}
.awj-sticky-login-btn:hover {
    background: #1e293b;
    border-color: #6366f1;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px -3px rgba(99, 102, 241, 0.4);
}
.awj-sticky-reg-btn {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    color: #ffffff !important;
    border: 1.5px solid #6366f1;
    box-shadow: 0 10px 25px -3px rgba(79, 70, 229, 0.55);
}
.awj-sticky-reg-btn:hover {
    background: linear-gradient(135deg, #4338ca, #3730a3);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -3px rgba(79, 70, 229, 0.7);
}

/* Floating Bottom-Right Sticky CALL US Button (Logged-In Members Portal) */
.awj-sticky-call-btn {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 9999;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f172a !important;
    font-family: var(--awj-font-heading, 'Plus Jakarta Sans', sans-serif);
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: 0.04em;
    padding: 12px 24px;
    border-radius: 9999px;
    box-shadow: 0 10px 25px -3px rgba(217, 119, 6, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid #fbbf24;
    white-space: nowrap;
}
.awj-sticky-call-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 30px -4px rgba(217, 119, 6, 0.65);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000000 !important;
}

@media (max-width: 640px) {
    .awj-sticky-auth-stack {
        bottom: 16px;
        right: 14px;
        gap: 8px;
    }
    .awj-sticky-btn {
        font-size: 12px;
        padding: 8px 15px;
    }
    .awj-sticky-call-btn {
        bottom: 16px;
        right: 14px;
        font-size: 12px;
        padding: 9px 18px;
    }
}



/* Floating Bottom-Right Sticky Auth Stack (Login + Register) */
.awj-sticky-auth-stack {
    position: fixed !important;
    bottom: 22px !important;
    right: 22px !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: flex-end !important;
    pointer-events: auto !important;
}
.awj-sticky-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 11px 20px !important;
    border-radius: 9999px !important;
    font-family: var(--awj-font-heading, 'Plus Jakarta Sans', sans-serif) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    letter-spacing: 0.03em !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    white-space: nowrap !important;
    box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.4) !important;
}
.awj-sticky-login-btn {
    background: #0f172a !important;
    color: #f8fafc !important;
    border: 1.5px solid #334155 !important;
    box-shadow: 0 10px 20px -3px rgba(15, 23, 42, 0.5) !important;
}
.awj-sticky-login-btn:hover {
    background: #1e293b !important;
    border-color: #6366f1 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 26px -3px rgba(99, 102, 241, 0.4) !important;
}
.awj-sticky-reg-btn {
    background: linear-gradient(135deg, #4f46e5, #4338ca) !important;
    color: #ffffff !important;
    border: 1.5px solid #6366f1 !important;
    box-shadow: 0 10px 25px -3px rgba(79, 70, 229, 0.55) !important;
}
.awj-sticky-reg-btn:hover {
    background: linear-gradient(135deg, #4338ca, #3730a3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 30px -3px rgba(79, 70, 229, 0.7) !important;
}
@media (max-width: 640px) {
    .awj-sticky-auth-stack {
        bottom: 16px !important;
        right: 14px !important;
        gap: 8px !important;
    }
    .awj-sticky-btn {
        font-size: 12px !important;
        padding: 8px 15px !important;
    }
}

/* ============================================================
   ENHANCED MOBILE DRAWER, BACKDROP & 2-COL GRID (AWJ 2026)
   ============================================================ */
.awj-nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 998;
}
#mobile-nav-checkbox:checked ~ .awj-nav-backdrop {
  display: block;
}

.awj-mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  width: 100%;
}
.awj-drawer-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.awj-drawer-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  color: #f1f5f9;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.awj-drawer-close-btn:hover {
  background: rgba(255,255,255,0.22);
}
.awj-drawer-logout-btn {
  background: #dc2626;
  color: white !important;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.awj-two-col-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .awj-two-col-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  [style*="grid-template-columns:1.5fr 1fr"],
  [style*="grid-template-columns: 1.5fr 1fr"],
  [style*="grid-template-columns:1.3fr 1fr"],
  [style*="grid-template-columns: 1.3fr 1fr"],
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns:repeat(3, 1fr)"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .awj-header-top {
    padding: 10px 14px !important;
    gap: 8px !important;
  }
  .brand-logo .brand-titles p {
    display: none !important;
  }
  .brand-logo .brand-titles h1 {
    font-size: 18px !important;
  }
  .brand-icon-box {
    width: 34px !important;
    height: 34px !important;
    font-size: 15px !important;
  }
  .header-public-auth {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }
  .awj-worker-badge {
    max-width: 110px !important;
    font-size: 11px !important;
    padding: 6px 9px !important;
  }
  .btn-header-logout {
    display: none !important;
  }
  .mobile-toggle-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    background: #f1f5f9 !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 8px !important;
    color: #1e293b !important;
    font-size: 18px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
  }
  .awj-nav-inner {
    max-height: 80vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

.awj-three-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
@media (max-width: 640px) {
  .awj-three-input-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 901px) {
  .awj-mobile-drawer-header {
    display: none !important;
  }
}

/* ============================================================
   DEDICATED BULLETPROOF MOBILE PORTAL CSS (@media max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  html, body, body.hb-portal {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch !important;
  }

  *, *::before, *::after {
    box-sizing: border-box !important;
  }

  main.wfh-portal-main,
  main.wfh-main,
  .wfh-shell,
  .page-container,
  .wfh-portal-main .page-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  .awj-card,
  .awj-table-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px 14px !important;
    margin-bottom: 20px !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .awj-two-col-grid,
  .data-entry-layout,
  [style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 18px !important;
    box-sizing: border-box !important;
  }

  .awj-two-col-grid > *,
  .data-entry-layout > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .awj-copy-link-row,
  .awj-card div[style*="display:flex"][style*="gap"] {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .awj-copy-link-row input,
  .awj-card input[type="text"],
  .awj-card input[type="email"],
  .awj-card select,
  .awj-card button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    text-align: center;
  }

  img, video {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .portal-banner {
    flex-direction: column !important;
    padding: 18px 14px !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .portal-banner-badge {
    width: 100% !important;
    text-align: left !important;
  }
  .awj-stat-grid-4,
  .awj-stat-grid-3,
  .portal-stat-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 12px !important;
    box-sizing: border-box !important;
  }
  .awj-stat-card,
  .stat-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .awj-card ul,
  .awj-card ol {
    padding-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .awj-card li {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }

  .awj-table-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-x pan-y !important;
    box-sizing: border-box !important;
  }
  .awj-table {
    min-width: 500px !important;
  }

  /* Public nav drawer when closed */
  .awj-nav-inner {
    display: none !important;
  }
  #mobile-nav-checkbox:checked ~ .awj-navbar-wrap .awj-nav-inner {
    display: flex !important;
  }
}
