/* ══════════════════════════════════════════
   GLOBAL VARIABLES & BASE STYLES
   ══════════════════════════════════════════ */
:root {
  --m: #8B1A4A;
  --m2: #6B1238;
  --m3: #f5e6ed;
  --m4: #fdf0f5;
  --mmid: #b8345e;
  --bk: #0e0e0e;
  --bk2: #1a1a1a;
  --bk3: #242424;
  --wh: #ffffff;
  --gy: #6b7280;
  --gy2: #f7f7f7;
  --gy3: #e8e8e8;
  --ff: 'DM Sans', sans-serif;
  --fs: 'Playfair Display', serif;
  --nav-h: 76px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff);
  background: var(--wh);
  color: var(--bk);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   NAVBAR & MEGA MENU
   ══════════════════════════════════════════ */
.navbar {
  background: var(--bk);
  padding: 0 48px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 300;
  border-bottom: 2.5px solid var(--m);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 62px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 4px 10px;
  transition: transform .2s;
  display: block;
}

.nav-logo-img:hover {
  transform: scale(1.03);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  position: relative;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-chevron {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform .2s;
}

.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdowns */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all .22s ease;
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Bridge to prevent dropdown from closing when moving across the gap */
.dropdown::before,
.mega-panel::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 20px;
  z-index: -1;
}

.dd-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--bk);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}

.dd-link:hover {
  background: var(--m3);
  color: var(--m);
}

/* Mega Menu */
.mega-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.06);
  width: 720px;
  padding: 20px 20px 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all .22s ease;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.nav-item:hover .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-col {
  padding: 0 16px 0 0;
}

.mega-col:not(:last-child) {
  border-right: 1px solid var(--gy3);
  margin-right: 16px;
}

.mega-head {
  font-size: 10px;
  font-weight: 700;
  color: var(--m);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  padding: 0 2px;
}

.mega-link {
  display: block;
  padding: 7px 10px;
  border-radius: 7px;
  color: #444;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}

.mega-link:hover {
  background: var(--m3);
  color: var(--m);
}

.mega-link strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 1px;
}

.mega-link small {
  font-size: 11px;
  color: #5c6370;
}

.mega-sub {
  padding-left: 10px;
  border-left: 2px solid var(--gy3);
  margin: 4px 0 4px 10px;
}

.mega-sub .mega-link {
  font-size: 11px;
  color: #5c6370;
  padding: 4px 6px;
}

.see-more-link {
  color: var(--m) !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  margin-top: 5px;
  border-top: 1px solid var(--gy3);
  padding-top: 8px !important;
  display: block;
}

.mega-sub .mega-link:hover {
  color: var(--m);
}

.mega-footer {
  grid-column: 1/-1;
  border-top: 1px solid var(--gy3);
  margin-top: 12px;
  padding-top: 12px;
  display: flex;
  gap: 10px;
}

.mega-cta {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--m3);
  text-decoration: none;
  transition: background .15s;
  justify-content: center;
}

.mega-cta:hover {
  background: var(--m);
  color: #fff;
}

.mega-cta svg {
  width: 16px;
  height: 16px;
  stroke: var(--m);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.mega-cta:hover svg {
  stroke: #fff;
}

.mega-cta span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--m);
}

.mega-cta:hover span {
  color: #fff;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nbtn {
  font-family: var(--ff);
  cursor: pointer;
  font-weight: 600;
  border-radius: 7px;
  padding: 8px 18px;
  font-size: 12.5px;
  transition: all .2s;
  border: none;
  white-space: nowrap;
}

.nbtn-wa {
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nbtn-wa:hover {
  background: #1ebe5d;
}

.nbtn-wa svg {
  width: 15px;
  height: 15px;
  fill: #fff;
  flex-shrink: 0;
}

.nbtn-hire {
  background: var(--m);
  color: #fff;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 8px;
}

.nbtn-hire:hover {
  background: var(--m2);
}

/* Mobile Menu Button */
.ham {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.ham span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all .3s;
}

/* Mobile Menu Panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bk2);
  z-index: 250;
  padding: 16px 20px 24px;
  border-bottom: 2px solid var(--m);
  flex-direction: column;
  gap: 0;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mm-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  padding: 11px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: block;
}

.mm-section {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 4px 6px;
  margin-top: 6px;
}

.mm-sub {
  padding-left: 14px;
}

.mm-sub a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  text-decoration: none;
  display: block;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mm-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.mm-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--ff);
  cursor: pointer;
  border: none;
  text-align: center;
}

.mm-btn-hire {
  background: var(--m);
  color: #fff;
}

.mm-btn-wa {
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mm-btn-wa svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* ══════════════════════════════════════════
   FLOATING BUTTONS & CHAT BOX
   ══════════════════════════════════════════ */
.float-btns {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 24px;
  z-index: 400;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
}

.float-wa {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  position: relative;
  pointer-events: all;
  background: #25D366;
}

.float-wa:hover { transform: scale(1.1); }

.float-wa svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}


/* ══════════════════════════════════════════
   RESPONSIVE OVERRIDES
   ══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   FOOTER STYLES
   ══════════════════════════════════════════ */
.footer {
  background: var(--bk);
  color: #fff;
  padding: 80px 48px 40px;
  border-top: 4px solid var(--m);
  width: 100%;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.ft-about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 360px;
}

.ft-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.ft-soc {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
}

.ft-soc:hover {
  background: var(--m);
  transform: translateY(-3px);
}

.ft-soc svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.ft-col h2 {
  font-family: var(--fs);
  font-size: 19px;
  margin-bottom: 24px;
  color: #fff;
}

.ft-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color .2s;
}

.ft-col a:hover {
  color: var(--m);
}

/* Payment Strip */
.payment-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
  text-align: center;
}

.payment-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  font-weight: 700;
}

.payment-cards {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pay-card {
  width: 50px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-card svg {
  width: 100%;
  height: 100%;
}

.pay-card-img {
  width: 50px;
  height: 32px;
  object-fit: contain;
  background: #fff;      
  border-radius: 4px;
  padding: 4px;           
}

.pay-secure {
  background: #28a745;
  border-radius: 4px;
  display: flex;
  height: 32px;
  width: 50px;;
  align-items: center;
  justify-content: center;
}

.secure-img {
  width: 24px;   
  height: 24px;
  object-fit: contain;
  display: block;
}

.payment-note {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 15px;
}

/* Trust Badges Styling */
.trust-badges-row {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 15px;
  margin: 15px 0 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
  margin-bottom: 10px;
}

.trust-badge-group{
  margin-top: 20px;
  width: 180px;
  flex-direction: row;
  gap: 20px;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--m);
}

.trust-badge svg {
  width: 15px;
  height: 15px;
  stroke: var(--m);
  stroke-width: 2.5;
}

/* Image-based payment card (e.g. Stripe) */
.pay-card-img {
  background: #fff;
  padding: 4px 6px;
  object-fit: contain;
  width: 68px;
  height: 42px;
  border-radius: 5px;
  opacity: 0.9;
  display: block;
  flex-shrink: 0;
}

/* Security trust logos (Norton, McAfee, PCI SSC) */
.trust-logo {
  width: 100px;
  height: 60px;
  object-fit: contain;
  opacity: 0.88;
  background: transparent;
  border-radius: 8px;
  padding: 4px 8px;
  display: block;
  flex-shrink: 0;
}

/* Nursing association logos (ANA, AACN) */
.assoc-row {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.assoc-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.assoc-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.assoc-logo {
  width: 170px;
  height: 72px;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  flex-shrink: 0;
}

/* Trustpilot + BBB row in footer payment strip */
.tp-bbb-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 20px 0 4px;
  flex-wrap: wrap;
}

/* Trustpilot pill */
.tp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px 16px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.tp-pill:hover {
  border-color: rgba(0, 182, 122, 0.5);
}

.tp-pill-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.tp-pill-brand {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* BBB badge */
.bbb-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.bbb-pill:hover {
  opacity: 0.85;
}

.bbb-logo {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}



.ft-col-assoc-label {
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ft-col-assoc-logos {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.ft-col-assoc-logos img {
  height: 34px;
  width: auto;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  flex-shrink: 0;
}

/* Disclaimer Strip */
.disclaimer-strip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.disclaimer-icon {
  width: 48px;
  height: 48px;
  background: rgba(139, 26, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--m);
}

.disclaimer-icon svg { width: 24px; height: 24px; }

.disclaimer-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.disclaimer-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.ft-copy { font-size: 13px; color: rgba(255, 255, 255, 0.55); }

.footer-legal-links { display: flex; gap: 20px; }

.footer-legal-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color .2s;
}

.footer-legal-links a:hover { color: #fff; }

/* ══════════════════════════════════════════
   RESPONSIVE OVERRIDES
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .navbar { padding: 0 24px; }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-center, .nav-right .nbtn { display: none; }
  .ham { display: block; }
  .navbar { padding: 0 16px; }
  .nav-logo-img { height: 50px; max-width: 150px; }

  /* Footer */
  .footer { padding: 60px 24px 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal-links { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .disclaimer-strip { flex-direction: column; text-align: center; }
  .disclaimer-icon { margin: 0 auto 10px; }

  /* Chat box */
  .chat-box { width: calc(100vw - 40px); right: 16px; bottom: 84px; }
}

@media (max-width: 600px) {
  /* Navbar */
  .navbar { padding: 0 14px; }
  .nav-logo-img { height: 44px; max-width: 130px; }

  /* Footer */
  .footer { padding: 48px 16px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .ft-about p { max-width: none; }
  .trust-badge { width: 100%; justify-content: center; }
  .footer-legal-links { flex-direction: column; align-items: center; gap: 10px; }
  .footer-bottom { padding-top: 20px; }

  /* Floating buttons */
  .float-btns { left: 14px; right: 14px; bottom: 16px; }
  .float-wa { width: 48px; height: 48px; }
  .float-wa svg { width: 22px; height: 22px; }
}

@media (max-width: 400px) {
  .nav-logo-img { height: 38px; max-width: 110px; }
  .float-btns { left: 10px; right: 10px; }
}