
:root {
    --fas-primary: #004AAD;
    --fas-dark: #0a2540;
    --fas-mid: #1a3a5c;
    --fas-accent: #38B6FF;
    --fas-light: #f8f9fa;
    --border: #e9ecef;
    --radius: 12px;
    --color-light: #fff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #f0f4f8; }

/* ── Top utility bar ── */
.topbar {
    background: var(--fas-dark);
    color: #a8bdd4;
    font-size: 12px;
    padding: 6px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    align-items: center;
}
.topbar a { color: #a8bdd4; text-decoration: none; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .sep { opacity: .35; }
.topbar-ctas {
    display: flex;
    gap: 8px;
    margin-left: 8px;
}
.tb-login {
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #fff !important;
    background: transparent;
    border: 2px solid var(--fas-primary);
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.tb-login:hover { background: var(--fas-accent); color: #fff; }
.tb-create {
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #fff !important;
    background: var(--fas-primary);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s;
}
.tb-create:hover { background: var(--fas-accent); color: #fff !important; }

/* ── Main navbar ── */
.main-nav {
    background: #fff;
    border-bottom: 0.5px solid #dde4ec;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 75px;
    gap: 0;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 32px;
}
.brand-icon {
    width: 36px; height: 36px;
    background: var(--fas-primary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 18px;
}
.brand-name { font-size: 17px; font-weight: 600; color: var(--fas-dark); line-height: 1.1; }
.brand-name span { color: var(--fas-primary); }

/* Nav links */
.nav-links {
    display: flex;
    align-items: stretch;
    flex: 1;
    height: 100%;
    list-style: none;
    gap: 0;
}
.nav-links > li {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    height: 64px;
    font-size: 14px;
    font-weight: 500 !important;
    color: #3a4a5c;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: color .15s, background .15s;
    border-bottom: 2px solid transparent;
}

.nav-links > li > button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    height: 64px;
    font-size: 14px;
    font-weight: 500 !important;
    color: #3a4a5c;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: color .15s, background .15s;
    border-bottom: 2px solid transparent;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li.open > button {
    color: var(--fas-primary);
    background: #f0f6ff;
    border-bottom-color: var(--fas-primary);
}
.chevron {
    font-size: 12px;
    transition: transform .2s;
    opacity: .7;
}
li.open .chevron { transform: rotate(180deg); opacity: .9; }

/* Dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background: #fff;
    border: 0.5px solid #dde4ec;
    border-radius: 10px;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0,0,0,.09);
    padding: 8px 0;
    z-index: 2000;
}
li.open .dropdown { display: block; }
.dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 18px;
    font-size: 13.5px;
    color: #2c3e50;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.dropdown a:hover { background: #f0f6ff; color: var(--fas-primary); }
.dropdown a .di {
    width: 18px;
    text-align: center;
    font-size: 14px;
    color: #7a90aa;
    transition: color .15s;
}
.dropdown a:hover .di { color: var(--fas-primary); }
.dropdown hr { border: none; border-top: 0.5px solid #eef1f5; margin: 4px 12px; }

/* Single CTA button in navbar */
.nav-ctas {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    flex-shrink: 0;
}
.btn-post {
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    background: var(--fas-primary);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, box-shadow .15s;
    white-space: nowrap;
}
.btn-post:hover { background: var(--fas-accent); box-shadow: 0 4px 12px rgba(13,110,253,.3); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: none; border: none; cursor: pointer; padding: 4px;
    margin-left: auto;
    z-index: 2001;
}
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: #3a4a5c; border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer overlay ── */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,37,64,0.45);
    z-index: 1500;
    opacity: 0;
    transition: opacity .3s;
}
.drawer-overlay.open {
    display: block;
    opacity: 1;
}

/* ── Mobile drawer panel ── */
.mobile-drawer {
    position: fixed;
    top: 0; left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1600;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 4px 0 24px rgba(0,0,0,.12);
    overflow-y: auto;
}
.mobile-drawer.open {
    transform: translateX(0);
}

/* Drawer header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #eef1f5;
    flex-shrink: 0;
}
.drawer-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}
.drawer-brand .brand-icon {
    width: 32px; height: 32px;
    border-radius: 7px;
    font-size: 16px;
}
.drawer-brand .brand-name { font-size: 15px; }
.drawer-close {
    width: 32px; height: 32px;
    border: none; background: #f3f5f8; border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #5a6a7c;
    transition: background .15s, color .15s;
    flex-shrink: 0;
}
.drawer-close:hover { background: #e8ecf2; color: #2c3e50; }
.drawer-close svg { width: 16px; height: 16px; }

/* Drawer nav body */
.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

/* Simple drawer links */
.mob-link {
    display: flex; align-items: center;
    padding: 13px 20px;
    font-size: 15px; font-weight: 500; color: #2c3e50;
    text-decoration: none;
    transition: background .15s, color .15s;
    border-left: 3px solid transparent;
    gap: 12px;
}
.mob-link i { width: 20px; font-size: 16px; color: #7a90aa; }
.mob-link:hover { background: #f5f8ff; color: var(--fas-primary); border-left-color: var(--fas-primary); }
.mob-link:hover i { color: var(--fas-primary); }

/* Drawer accordion items */
.mob-item { width: 100%; }
.mob-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 13px 20px;
    font-size: 15px; font-weight: 500; color: #2c3e50;
    background: none; border: none; border-left: 3px solid transparent; cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    text-align: left;
}
.mob-toggle i:first-child { width: 20px; font-size: 16px; color: #7a90aa; margin-right: 12px; }
.mob-toggle span:first-of-type { flex: 1; text-align: left; }
.mob-toggle:hover { background: #f5f8ff; color: var(--fas-primary); border-left-color: var(--fas-primary); }
.mob-toggle:hover i:first-child { color: var(--fas-primary); }
.mob-toggle.active { color: var(--fas-primary); border-left-color: var(--fas-primary); background: #f0f6ff; }
.mob-toggle.active i:first-child { color: var(--fas-primary); }
.mob-toggle .chevron { transition: transform .25s; font-size: 12px; }
.mob-toggle.active .chevron { transform: rotate(180deg); }

/* Drawer submenu */
.mob-sub {
    display: none;
    background: #f9fafb;
    border-top: 1px solid #eef1f5;
    border-bottom: 1px solid #eef1f5;
}
.mob-sub.open { display: block; }
.mob-sub a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px 11px 28px;
    font-size: 13.5px; color: #4a5c72;
    text-decoration: none;
    transition: background .15s, color .15s;
    border-left: 3px solid transparent;
}
.mob-sub a:hover { background: #eef4ff; color: var(--fas-primary); border-left-color: var(--fas-primary); }
.mob-sub a.active { background: #eef4ff; color: var(--fas-primary); }
.mob-sub .sub-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e0e8f0;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--fas-primary);
    font-size: 14px;
    transition: background .15s, border-color .15s;
}
.mob-sub a:hover .sub-icon { background: #ddeeff; border-color: #b3d4ff; }
.mob-sub .sub-text { display: flex; flex-direction: column; }
.mob-sub .sub-label { font-size: 13.5px; font-weight: 500; line-height: 1.2; }
.mob-sub .sub-desc { font-size: 11.5px; color: #8a9ab0; line-height: 1.3; margin-top: 1px; }

/* Drawer divider */
.mob-divider { border: none; border-top: 1px solid #eef1f5; margin: 8px 0; }

/* Drawer footer CTAs */
.drawer-footer {
    flex-shrink: 0;
    padding: 16px 20px;
    border-top: 1px solid #eef1f5;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* Contact info block in drawer */
.drawer-contact {
    margin: 5px 20px 5px;
    background: #f5f8ff;
    border-radius: 10px;
    padding: 14px 16px;
}
.drawer-contact h4 {
    font-size: 12px; font-weight: 700; color: var(--fas-primary);
    text-transform: uppercase; letter-spacing: .5px;
    margin-bottom: 10px;
}
.drawer-contact .ci {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: #3a4a5c;
    margin-bottom: 8px;
}
.drawer-contact .ci i { width: 18px; font-size: 14px; color: var(--fas-primary); flex-shrink: 0; }
.mob-btn-post {
    display: block; text-align: center;
    padding: 11px; font-size: 14px; font-weight: 600;
    border-radius: 8px; text-decoration: none;
    background: var(--fas-primary); color: #fff;
    transition: background .15s;
}
.mob-btn-post:hover { background: #0056d6; }
.mob-btn-login {
    display: block; text-align: center;
    padding: 10px; font-size: 14px; font-weight: 500;
    border-radius: 8px; text-decoration: none;
    border: 1.5px solid #c8daee; color: var(--fas-primary);
    transition: background .15s, border-color .15s;
}
.mob-btn-login:hover { background: #f0f6ff; border-color: var(--fas-primary); }
.mob-btn-create {
    display: block; text-align: center;
    padding: 10px; font-size: 14px; font-weight: 500;
    border-radius: 8px; text-decoration: none;
    background: #1db87a; color: #fff;
    transition: background .15s;
}
.mob-btn-create:hover { background: #169960; }



@media (max-width: 900px) {
    .nav-links, .nav-ctas { display: none; }
    .hamburger { display: flex; }
    .brand { margin-right: auto; }
    .topbar { display: none; }
}
@media (min-width: 901px) {
    .drawer-overlay, .mobile-drawer { display: none !important; }
}

/* ── Footer ── */
.footer { background: var(--fas-dark); color: #a8bdd4; }

.footer-main {
    max-width: 1200px; margin: 0 auto;
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 48px;
}

/* Brand column */
.footer-brand .brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .brand-icon {
    width: 38px; height: 38px; background: var(--fas-primary);
    border-radius: 9px; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; flex-shrink: 0;
}
.footer-brand .brand-name { font-size: 17px; font-weight: 600; color: #fff; }
.footer-brand .brand-name span { color: var(--fas-accent); }
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: #7a9ab8; max-width: 280px; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 34px; height: 34px; border-radius: 8px;
    background: var(--fas-mid); border: 1px solid #264d73;
    display: flex; align-items: center; justify-content: center;
    color: #7a9ab8; font-size: 14px; text-decoration: none;
    transition: background .15s, color .15s;
}
.footer-socials a:hover { background: var(--fas-primary); color: #fff; border-color: var(--fas-primary); }

.badge-hipaa {
    display: inline-flex; align-items: center; gap: 6px;
    background: #0e2f4a; border: 1px solid #264d73;
    border-radius: 6px; padding: 5px 10px;
    font-size: 11.5px; color: #5a8aaa; margin-top: 16px;
}
.badge-hipaa i { color: var(--fas-accent); font-size: 12px; }

/* Link columns */
.footer-col h4 {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: #fff; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-size: 13.5px; color: #7a9ab8; text-decoration: none;
    transition: color .15s; display: flex; align-items: center; gap: 7px;
}
.footer-col ul li a:hover { color: var(--fas-accent); }
.footer-col ul li a i { font-size: 12px; width: 14px; color: #446a8a; transition: color .15s; }
.footer-col ul li a:hover i { color: var(--fas-accent); }

/* Contact block */
.footer-contact-block {
    background: var(--fas-mid); border: 1px solid #264d73;
    border-radius: 10px; padding: 16px; margin-top: 4px;
}
.footer-contact-block .ci {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13px; color: #7a9ab8; margin-bottom: 10px; line-height: 1.5;
}
.footer-contact-block .ci:last-child { margin-bottom: 0; }
.footer-contact-block .ci i { font-size: 13px; color: var(--fas-accent); margin-top: 2px; flex-shrink: 0; }

/* Bottom bar */
.footer-bottom { border-top: 1px solid #1e3a55; }
.footer-bottom-inner {
    max-width: 1200px; margin: 0 auto; padding: 20px 24px;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-inner p { font-size: 12.5px; color: #4a6a88; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: #4a6a88; text-decoration: none; transition: color .15s; }
.footer-bottom-links a:hover { color: #7a9ab8; }

/* Responsive */
@media (max-width: 900px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION — FindAStaff
   Paste this block into your styles.css (after the navbar rules)
   ═══════════════════════════════════════════════════════════ */

/* ── Hero wrapper ── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--fas-dark) 0%, var(--fas-mid) 55%, #0e3a6e 100%), url(../);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

/* ── Animated background blobs ── */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.hero-blob--1 {
  width: 520px; height: 520px;
  background: rgba(56, 182, 255, 0.12);
  top: -120px; left: -140px;
  animation-delay: 0s;
}
.hero-blob--2 {
  width: 380px; height: 380px;
  background: rgba(0, 74, 173, 0.18);
  bottom: -60px; right: -80px;
  animation-delay: 3s;
}
.hero-blob--3 {
  width: 280px; height: 280px;
  background: rgba(56, 182, 255, 0.08);
  top: 40%; left: 42%;
  animation-delay: 1.5s;
}
@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

/* ── Floating decorative icons ── */
.hero-float {
  position: absolute;
  color: rgba(56,182,255,0.12);
  pointer-events: none;
  font-size: 48px;
  animation: floatIcon 6s ease-in-out infinite alternate;
}
.hero-float--a { top: 12%; left: 5%;  animation-delay: 0s;    font-size: 36px; }
.hero-float--b { top: 70%; left: 2%;  animation-delay: 1.8s;  font-size: 52px; }
.hero-float--c { top: 8%;  right: 32%; animation-delay: 0.9s; font-size: 30px; }
.hero-float--d { bottom: 12%; right: 30%; animation-delay: 2.4s; font-size: 44px; }
@keyframes floatIcon {
  from { transform: translateY(0) rotate(-4deg); opacity: .6; }
  to   { transform: translateY(-18px) rotate(4deg); opacity: 1; }
}

/* ── Inner grid ── */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  align-items: center;
}

/* ══════════════════════════════
   LEFT — Copy
══════════════════════════════ */

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,182,255,0.12);
  border: 1px solid rgba(56,182,255,0.3);
  color: var(--fas-accent);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .4px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--fas-accent);
  box-shadow: 0 0 0 3px rgba(56,182,255,0.25);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(56,182,255,0.25); }
  50%       { box-shadow: 0 0 0 7px rgba(56,182,255,0.08); }
}

/* Headline */
.hero-headline {
  font-family: 'Georgia', 'Cambria', serif;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.13;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero-headline__accent {
  color: var(--fas-accent);
  position: relative;
  display: inline-block;
}
.hero-headline__accent::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--fas-accent), transparent);
  border-radius: 2px;
}

/* Sub-copy */
.hero-sub {
  font-size: 16.5px;
  line-height: 1.7;
  color: #8ab4d4;
  max-width: 480px;
  margin-bottom: 36px;
}

/* ── Dual CTA paths ── */
.hero-cta-paths__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5a8aaa;
  margin-bottom: 12px;
}
.hero-cta-paths__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.cta-path {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cta-path::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s;
  border-radius: inherit;
}
.cta-path:hover { transform: translateY(-3px); }
.cta-path:hover::before { opacity: 1; }

/* Facility path */
.cta-path--facility {
  background: rgba(0,74,173,0.35);
  border-color: rgba(0,74,173,0.5);
}
.cta-path--facility::before {
  background: rgba(0,74,173,0.5);
}
.cta-path--facility:hover {
  box-shadow: 0 8px 28px rgba(0,74,173,0.35);
  border-color: var(--fas-primary);
}
.cta-path--facility .cta-path__icon {
  background: var(--fas-primary);
  color: #fff;
}

/* Pro path */
.cta-path--pro {
  background: rgba(56,182,255,0.12);
  border-color: rgba(56,182,255,0.25);
}
.cta-path--pro::before {
  background: rgba(56,182,255,0.18);
}
.cta-path--pro:hover {
  box-shadow: 0 8px 28px rgba(56,182,255,0.2);
  border-color: var(--fas-accent);
}
.cta-path--pro .cta-path__icon {
  background: var(--fas-accent);
  color: var(--fas-dark);
}

.cta-path__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .25s;
}
.cta-path:hover .cta-path__icon { transform: scale(1.1) rotate(-4deg); }
.cta-path__text {
  flex: 1;
}
.cta-path__text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.cta-path__text span {
  font-size: 12.5px;
  color: #7aa8c8;
}
.cta-path__arrow {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: transform .25s, color .25s;
}
.cta-path:hover .cta-path__arrow {
  transform: translateX(4px);
  color: rgba(255,255,255,0.85);
}

/* ── Trust row ── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust__item {
  font-size: 12px;
  font-weight: 500;
  color: #5a8aaa;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust__item i { color: var(--fas-accent); font-size: 13px; }
.hero-trust__sep {
  width: 1px; height: 14px;
  background: rgba(56,182,255,0.2);
}

/* ══════════════════════════════
   RIGHT — Search Card
══════════════════════════════ */
.hero-search-wrap {
  position: relative;
}
.hero-search-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
}

/* Card header */
.hsc-header {
  background:  var(--fas-primary);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hsc-header__icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  flex-shrink: 0;
}
.hsc-header__title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
}
.hsc-header__sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Card body */
.hsc-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Field label */
.hsc-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #5a7a9a;
  margin-bottom: 7px;
}
.hsc-label i { color: var(--fas-primary); font-size: 12px; }

/* Select */
.hsc-select-wrap {
  position: relative;
}
.hsc-select {
  width: 100%;
  appearance: none;
  padding: 11px 40px 11px 14px;
  font-size: 14px;
  color: #2c3e50;
  background: #f5f8fe;
  border: 1.5px solid #d4e1f5;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.hsc-select:focus {
  border-color: var(--fas-primary);
  box-shadow: 0 0 0 3px rgba(0,74,173,0.1);
}
.hsc-select-arrow {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 11px; color: #7a90aa;
  pointer-events: none;
}

/* Input with geo button */
.hsc-input-wrap {
  display: flex;
  gap: 8px;
}
.hsc-input {
  flex: 1;
  padding: 11px 14px;
  font-size: 14px;
  color: #2c3e50;
  background: #f5f8fe;
  border: 1.5px solid #d4e1f5;
  border-radius: 10px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.hsc-input::placeholder { color: #aab8cc; }
.hsc-input:focus {
  border-color: var(--fas-primary);
  box-shadow: 0 0 0 3px rgba(0,74,173,0.1);
}
.hsc-geo-btn {
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1.5px solid #d4e1f5;
  background: #f5f8fe;
  color: #7a90aa;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
}
.hsc-geo-btn:hover { background: var(--fas-primary); color: #fff; border-color: var(--fas-primary); }

/* Radio group */
.hsc-radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hsc-radio {
  cursor: pointer;
}
.hsc-radio input { display: none; }
.hsc-radio span {
  display: block;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  border: 1.5px solid #d4e1f5;
  background: #f5f8fe;
  color: #4a5c72;
  transition: all .2s;
  cursor: pointer;
  user-select: none;
}
.hsc-radio input:checked + span {
  background: var(--fas-primary);
  border-color: var(--fas-primary);
  color: #fff;
  box-shadow: 0 3px 10px rgba(0,74,173,0.25);
}
.hsc-radio:hover span { border-color: var(--fas-primary); color: var(--fas-primary); }
.hsc-radio input:checked + span:hover { color: #fff; }

/* Submit */
.hsc-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background:  var(--fas-primary);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: transform .2s, box-shadow .2s;
  margin-top: 4px;
}
.hsc-submit:hover {
  background: var(--fas-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,74,173,0.35);
}
.hsc-submit:active { transform: translateY(0); }



/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-search-wrap {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .hero {
    padding: 60px 0 50px;
    min-height: auto;
  }
}
@media (max-width: 640px) {
  .hero { padding: 40px 0 40px; }
  .hero-headline { font-size: clamp(28px, 8vw, 40px); }
  .hero-cta-paths__cards { gap: 10px; }
  .cta-path { padding: 13px 16px; gap: 12px; }
  .cta-path__icon { width: 38px; height: 38px; font-size: 15px; border-radius: 10px; }
  .hsc-body { padding: 18px; gap: 14px; }
  .hsc-radio-group { gap: 6px; }
  .hsc-stats { padding: 14px 18px; }
  .hsc-stat strong { font-size: 17px; }
  .hero-float { display: none; }
}

  /* ── SECTION SHARED ── */
.section-wrap {
    padding: 72px 24px;
}
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.section-headline {
    font-size: 36px;
    font-weight: 700;
    color: #0a2540;
    line-height: 1.2;
    margin-bottom: 14px;
    max-width: 560px;
 }
  .section-body {
    font-size: 16px;
    color: #4a6070;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
  }

  /* ── SECTION 1 — FACILITY ── */
  .facility-section {
    background: #f0f4f8;
  }
  .facility-badge {
    background: #e6f1fb;
    color: #004AAD;
  }
  .facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
  .facility-card {
    background: #fff;
    border: 0.5px solid #dde4ec;
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    transition: box-shadow .2s, border-color .2s, transform .15s;
    cursor: pointer;
  }
  .facility-card:hover {
    border-color: var(--fas-accent);
    box-shadow: 0 6px 24px rgba(0,74,173,.1);
    transform: translateY(-2px);
  }
  .fc-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    margin-bottom: 4px;
  }
  .fc-icon.blue  { background: #e6f1fb; }
  .fc-icon.teal  { background: #e1f5ee; }
  .fc-icon.amber { background: #faeeda; }
  .fc-icon.coral { background: #faece7; }
  .fc-label {
    font-size: 15px;
    font-weight: 600;
    color: #0a2540;
    line-height: 1.3;
  }
  .fc-desc {
    font-size: 13px;
    color: #5a7080;
    line-height: 1.55;
    flex: 1;
  }
  .fc-arrow {
    font-size: 13px;
    color: var(--fas-primary);
    font-weight: 600;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  /* ── SECTION 2 — PROFESSIONALS ── */
  .pro-section {
    background: #fff;
    border-top: 0.5px solid #dde4ec;
  }
  .pro-badge {
    background: #e1f5ee;
    color: #0f6e56;
  }
  .pro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  @media (max-width: 720px) {
    .pro-layout { grid-template-columns: 1fr; gap: 36px; }
    .section-headline { font-size: 28px; }
  }
  .pro-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }
  .pro-action-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8fafc;
    border: 0.5px solid #dde4ec;
    border-radius: 12px;
    padding: 14px 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, border-color .15s;
  }
  .pro-action-btn:hover {
    background: #f0f6ff;
    border-color: var(--fas-accent);
  }
  .pab-icon {
    width: 38px; height: 38px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
  }
  .pab-icon.blue  { background: #e6f1fb; }
  .pab-icon.teal  { background: #e1f5ee; }
  .pab-icon.purple{ background: #eeedfe; }
  .pab-icon.amber { background: #faeeda; }
  .pab-text { flex: 1; }
  .pab-label {
    font-size: 14px;
    font-weight: 600;
    color: #0a2540;
    line-height: 1;
    margin-bottom: 3px;
  }
  .pab-sub {
    font-size: 12px;
    color: #6a8090;
    line-height: 1.4;
  }
  .pab-caret {
    font-size: 16px;
    color: #a0b8cc;
  }


/* ══════════════════════════════════════════
    SECTION WRAPPER
══════════════════════════════════════════ */
.fj-section {
    padding: 72px 24px;
    background: #f0f4f8;
    overflow: hidden;
}

.fj-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Section Header ── */
.fj-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.fj-eyebrow {
   background: #e1f5ee;
    color: #0f6e56;
}

.fj-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--fas-dark);
    line-height: 1.15;
    letter-spacing: -.02em;
}
.fj-title span { color: var(--fas-primary); }

.fj-subtitle {
    margin-top: 10px;
    font-size: 15px;
    color: #5a7a9a;
    max-width: 440px;
    line-height: 1.6;
}

.fj-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: var(--fas-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    flex-shrink: 0;
}
.fj-view-all:hover {
    background: var(--fas-accent);
    transform: translateY(-2px);
}
.fj-view-all i { font-size: 12px; }

/* ══════════════════════════════════════════
    SWIPER WRAPPER
══════════════════════════════════════════ */
.fj-swiper-wrap {
    position: relative;
}

.fj-swiper {
    overflow: hidden !important; /* let cards peek */
    padding-bottom: 8px !important;
}

.swiper-slide {
    height: auto;
}

/* ══════════════════════════════════════════
    JOB CARD
══════════════════════════════════════════ */
.fj-card {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
    border: 1px solid rgba(0,74,173,.07);
    cursor: pointer;
}
.fj-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10,37,64,.16);
}

/* Image */
.fj-card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 250px;
    flex-shrink: 0;
}
.fj-card__img-wrap img {
    width: 100%;
    height: 250px !important;
    overflow: hidden;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.fj-card:hover .fj-card__img-wrap img {
    transform: scale(1.05);
}

/* Overlay gradient on image */
.fj-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(10,37,64,.55));
    pointer-events: none;
}

/* Badge on image */
.fj-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--fas-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}
.fj-card__badge.badge--urgent {
    background: #e63946;
}
.fj-card__badge.badge--new {
    background: #2ecc71;
}

/* Save button on image */
.fj-card__save {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 34px; height: 34px;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: #8a9ab0;
    transition: background .2s, color .2s, transform .2s;
    backdrop-filter: blur(4px);
}
.fj-card__save:hover, .fj-card__save.saved {
    background: #fff;
    color: #e63946;
    transform: scale(1.12);
}

/* Card body */
.fj-card__body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fj-card__role {
    font-size: 16px;
    font-weight: 700;
    color: var(--fas-dark);
    line-height: 1.3;
    margin-bottom: 14px;
}

/* Meta rows */
.fj-card__meta {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}
.fj-card__meta li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: #4a6a8a;
}
.fj-card__meta li i {
    width: 16px;
    color: var(--fas-primary);
    font-size: 13px;
    flex-shrink: 0;
}
.fj-card__meta li strong {
    color: var(--fas-dark);
    font-weight: 600;
}

/* CTA button */
.fj-card__cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.fj-card__apply {
    flex: 1;
    padding: 10px 16px;
    background: var(--fas-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.fj-card__apply:hover { background: var(--fas-accent); }

.fj-card__detail {
    padding: 10px 14px;
    border: 1.5px solid #dde8f4;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fas-primary);
    background: transparent;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    text-decoration: none;
    white-space: nowrap;
}
.fj-card__detail:hover {
    border-color: var(--fas-accent);
    background: #eef6ff;
}

/* ══════════════════════════════════════════
    SWIPER NAVIGATION
══════════════════════════════════════════ */
.fj-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.fj-btn-prev,
.fj-btn-next {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid var(--fas-primary);
    background: #fff;
    color: var(--fas-primary);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background .2s, color .2s, transform .15s;
    flex-shrink: 0;
}
.fj-btn-prev:hover,
.fj-btn-next:hover {
    background: var(--fas-primary);
    color: #fff;
    transform: scale(1.08);
}
.fj-btn-prev.swiper-button-disabled,
.fj-btn-next.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}

/* Custom Pagination */
.fj-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 60px;
}
.fj-pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: #c5d5e8;
    border-radius: 4px;
    opacity: 1;
    transition: width .3s, background .3s;
    cursor: pointer;
}
.fj-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background: var(--fas-primary);
}

/* ══════════════════════════════════════════
    RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 767px) {
    .fj-section { padding: 52px 24px; }
    .fj-header { flex-direction: column; align-items: flex-start; }
    .fj-card__img-wrap { height: 170px; }
}

/* ── Swiper container ── */
.swiper-outer {
    position: relative;
    padding: 0 52px;
}

.partners-swiper {
    overflow: hidden;
    border-radius: var(--radius);
}

/* ── Logo card ── */
.logo-card {
    background: var(--fas-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(.22,.68,0,1.2),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    cursor: default;
}

.logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--fas-accent) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-4px) scale(1.025);
    box-shadow: 0 10px 30px rgba(26, 111, 186, 0.15);
    border-color: rgba(26, 111, 186, 0.3);
}

.logo-card:hover::before { opacity: 1; }

.logo-card img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(40%) opacity(0.85);
    transition: filter 0.3s ease;
    position: relative;
    z-index: 1;
}

.logo-card:hover img {
    filter: grayscale(0%) opacity(1);
}

/* ── SVG placeholder logos (inline) ── */
.logo-svg-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════
    AUTHENTICATION PAGE
══════════════════════════════════════════ */
.auth-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e1e9f4 100%);
    min-height: calc(100vh - 75px);
    display: flex;
    align-items: center;
}

.auth-card {
    border-radius: var(--radius);
    border: none;
}

.auth-title {
    font-family: 'Georgia', 'Cambria', serif;
    font-weight: 700;
    color: var(--fas-dark);
    margin-bottom: 8px;
    font-size: 28px;
}

.auth-subtitle {
    color: #6c757d;
    font-weight: 500;
    font-size: 14.5px;
}

.auth-tabs .nav-link {
    font-weight: 600;
    color: #4a5c72;
    border-radius: 8px;
    padding: 12px 0;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.auth-tabs .nav-link.active {
    background-color: var(--fas-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 74, 173, 0.2);
}

.auth-tabs .nav-link:not(.active) {
    background-color: #fff;
    border: 1px solid #dde8f4;
}

.auth-tabs .nav-link:hover:not(.active) {
    background-color: #f0f6ff;
    color: var(--fas-primary);
    border-color: #c8daee;
}

.auth-btn-submit {
    background: var(--fas-primary);
    border: none;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-btn-submit:hover {
    background: var(--fas-accent);
    box-shadow: 0 4px 12px rgba(56, 182, 255, 0.3);
}

.auth-link {
    color: var(--fas-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: var(--fas-accent);
}

.auth-social-btn {
    color: #fff !important;
    background-color: var(--fas-dark) !important;
    border-radius: 50% !important;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
}

.auth-social-btn:hover {
    background-color: var(--fas-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 74, 173, 0.25);
}


