/* ============================================
   SARAPATH DIAGNOSTICS — REDESIGN 2026
   Medical Web Experts
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* === TOKENS === */
:root {
  --navy:        #0a2a63;
  --navy-dark:   #071d45;
  --navy-light:  #0e3580;
  --gold:        #c9a96e;
  --gold-light:  #e2c99a;
  --gold-dark:   #8a6a2e;
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --gray-50:     #f0f2f6;
  --gray-100:    #e1e5ee;
  --gray-300:    #b0baca;
  --gray-500:    #6b7a99;
  --gray-700:    #374160;
  --gray-900:    #111827;
  --text-primary:   #0f1c36;
  --text-secondary: #4a5578;
  --text-muted:     #6b7a99;
  --success:     #1a7f5a;
  --sidebar-w:   220px;
  --nav-h:       64px;
  --quickbar-h:  48px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow-sm:   0 1px 3px rgba(10,42,99,0.08);
  --shadow-md:   0 4px 16px rgba(10,42,99,0.12);
  --shadow-lg:   0 12px 40px rgba(10,42,99,0.18);
  --transition:  0.2s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 58px; /* height of quick-bar-sticky */
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === SKIP LINK (ADA) === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--navy);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ============================================
   HEADER & NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #F6F8FC;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 2rem;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 0;
}
.nav-logo img {
  height: 80px;
  width: auto;
}
.nav-logo-fallback {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}

/* Nav right group */
.nav-right-group {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: unset;
  margin-left: 0;
}

.nav-item {
  position: relative;
}

/* Invisible bridge to prevent dropdown flicker */
.nav-item::after {
  content: '';
  position: absolute;
  top: calc(var(--nav-h) - 2px);
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
  z-index: 999;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 1rem;
  height: 88px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--navy); }
.nav-link svg { transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-link.active { color: var(--navy); border-bottom: 2px solid var(--gold); }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

.btn-become-client {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.01em;
  margin-left: 1.5rem;
  white-space: nowrap;
}
.btn-become-client:hover { background: var(--navy-dark); transform: translateY(-1px); }

/* ============================================
   MEGA DROPDOWN — LINK COLUMNS STYLE
   ============================================ */
.dropdown {
  position: absolute;
  top: calc(88px - 2px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(10,42,99,0.18), 0 4px 16px rgba(10,42,99,0.10);
  padding: 1.25rem 0.5rem;
  width: max-content;
  min-width: 200px;
  max-width: 340px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
  z-index: 800;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

/* Single column layout inside dropdown */
.dropdown-cols {
  display: block;
}

.dropdown-col {
  padding: 0 0.75rem;
}
.dropdown-col + .dropdown-col {
  border-top: 1px solid var(--gray-100);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

/* Individual link */
.dd-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 0.5rem;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.dd-link:hover {
  background: var(--gray-50);
  color: var(--navy);
}
.dd-link--active {
  color: var(--navy);
  font-weight: 600;
  background: var(--gray-50);
}
.dd-link--has-sub {
  color: var(--text-secondary);
}
.dd-link--has-sub svg {
  width: 12px;
  height: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color var(--transition);
}
.dd-link--has-sub:hover svg {
  color: var(--navy);
}

/* Flyout — second level */
.dd-flyout-item {
  position: relative;
}
.dd-flyout {
  position: absolute;
  left: 100%;
  top: -0.5rem;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(10,42,99,0.15);
  padding: 0.75rem 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s;
  pointer-events: none;
  z-index: 810;
}
.dd-flyout-item:hover .dd-flyout,
.dd-flyout-item:focus-within .dd-flyout {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* ============================================
   QUICK ACCESS BAR — Sticky Bottom
   ============================================ */
.quick-bar-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 24px rgba(7,29,69,0.3);
  padding-bottom: env(safe-area-inset-bottom);
}

.quick-bar-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.qbs-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 58px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.qbs-item:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.05);
}
.qbs-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
  color: var(--gold-light);
}
.qbs-item:last-child { border-right: none; }
.qbs-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .quick-bar-sticky-inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .quick-bar-sticky-inner::-webkit-scrollbar { display: none; }
  .qbs-item {
    padding: 0 16px;
    font-size: 14px;
  }
  .qbs-item:first-child { padding-left: 8px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1579154204601-01588f351e67?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--navy-dark) 45%, rgba(7,29,69,0.6) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0;
  max-width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-eyebrow-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.5; }

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.05); }

.hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(201,169,110,0.25);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  aspect-ratio: unset;
  height: 460px;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(7,29,69,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
}
.hero-image-badge svg { color: var(--gold); flex-shrink: 0; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar-outer { background: var(--navy); border-bottom: 3px solid var(--gold); }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: none;
  padding: 0;
}
.trust-item {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy-dark); }

.section-header {
  margin-bottom: 3rem;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-title.light { color: white; }
.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
}
.section-sub.light { color: rgba(255,255,255,0.75); }
.section-footer {
  text-align: center;
  margin-top: 2.5rem;
}
.section > .container { padding-left: 2rem; padding-right: 2rem; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  cursor: pointer;
  text-decoration: none;
}
.service-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.sc-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.service-card:hover .sc-icon { background: var(--navy); }
.sc-icon svg { width: 22px; height: 22px; color: var(--navy); transition: color var(--transition); }
.service-card:hover .sc-icon svg { color: white; }

.sc-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.sc-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.sc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.5rem;
  transition: gap var(--transition);
}
.service-card:hover .sc-link { gap: 8px; color: var(--gold-dark); }

/* ============================================
   PATHOLOGISTS SECTION
   ============================================ */
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.path-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.path-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
}

.path-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 auto 1rem;
  overflow: hidden;
}
.path-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}

.path-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.path-spec {
  font-size: 12px;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.path-cert {
  font-size: 11px;
  color: rgba(255,255,255,0.70);
}

.path-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

/* ============================================
   NEWS STRIP
   ============================================ */
.news-strip-outer { background: var(--gray-50); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.news-strip {
  border-top: none;
  border-bottom: none;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.news-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid var(--gray-300);
  white-space: nowrap;
}
.news-text {
  font-size: 13px;
  color: var(--text-secondary);
  flex: 1;
}
.news-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.news-link:hover { gap: 8px; }

/* ============================================
   NEWS & EVENTS SECTION
   ============================================ */
.news-section { background: var(--off-white); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.news-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.nc-image {
  height: 160px;
  overflow: hidden;
  background: var(--gray-50);
  flex-shrink: 0;
}
.nc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.news-card:hover .nc-image img { transform: scale(1.04); }

.nc-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nc-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.nc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.nc-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.news-card:hover .nc-link { gap: 8px; color: var(--gold-dark); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 2rem;
}
.footer-brand img { height: 36px; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-contact {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}
.footer-contact strong { color: var(--gold-light); }

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.65); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================================
   INNER PAGE LAYOUT
   ============================================ */
.page-hero {
  background: var(--navy);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(201,169,110,0.08);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.page-breadcrumb a:hover { color: var(--gold-light); }
.page-breadcrumb span { color: var(--gold-light); }
.page-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.page-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
}

/* Default: sidebar on the right */
.page-layout {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 0;
  max-width: 100%;
}

.page-content {
  padding: 3rem 2.5rem 4rem;
  min-width: 0;
}

.page-sidebar {
  background: var(--off-white);
  border-left: 1px solid var(--gray-100);
  padding: 2rem 1.5rem;
  min-height: 100%;
}

/* Sidebar on the LEFT — add class="sidebar-left" to <body> */
body.sidebar-left .page-layout {
  grid-template-columns: var(--sidebar-w) 1fr;
}
body.sidebar-left .page-sidebar {
  border-left: none;
  border-right: 1px solid var(--gray-100);
}

/* Sidebar nav */
.sidebar-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.sidebar-nav { margin-bottom: 2rem; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  font-weight: 500;
}
.sidebar-nav a:hover { background: var(--gray-100); color: var(--navy); }
.sidebar-nav a.active {
  background: var(--navy);
  color: white;
  font-weight: 600;
}
.sidebar-nav a.active svg { color: var(--gold); }
.sidebar-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Sidebar resource links (replaces repeated inline styles) */
.sidebar-resource-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.sidebar-resource-link:hover { background: var(--gray-100); color: var(--navy); }

/* Content typography */
.content-intro {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-100);
}
.content-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.content-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Services list */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 1.5rem 0 2rem;
}
.sl-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
}
.sl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 6px;
}
.sl-text {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
}

/* Info card */
.info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,169,110,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card-icon svg { width: 20px; height: 20px; color: var(--gold); }
.info-card-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 4px; }
.info-card-text { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.info-card-link { font-size: 13px; font-weight: 600; color: var(--gold); margin-top: 8px; display: flex; align-items: center; gap: 5px; }

/* ============================================
   PATHOLOGIST PAGE — FILTER BAR
   ============================================ */
.filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.filter-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 4px;
}

.filter-btn {
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 99px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-btn:hover {
  background: var(--gray-100);
  color: var(--navy);
  border-color: var(--gray-300);
}
.filter-btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.path-count {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================
   PATHOLOGIST PAGE — CARDS
   ============================================ */
.pathologist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pathologist-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pathologist-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pathologist-card:focus-within {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.pc-photo {
  width: 120px;
  flex-shrink: 0;
  background: var(--gray-50);
  overflow: hidden;
  position: relative;
}
.pc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.pc-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  font-size: 36px;
  font-weight: 700;
  color: rgba(201,169,110,0.6);
  letter-spacing: -2px;
}

.pc-body {
  flex: 1;
  min-width: 0;
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
}
.pc-name { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.pc-spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-50);
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid var(--gray-100);
  margin-bottom: 8px;
  align-self: flex-start;
}
.pc-cert { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.pc-quote {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  padding-left: 10px;
  border-left: 2px solid var(--gold);
  flex: 1;
  margin-bottom: 10px;
}
.pc-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}
.pc-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.pc-email:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.pc-email svg { width: 14px; height: 14px; flex-shrink: 0; }
.pc-years {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   PATHOLOGIST PAGE — JOIN CTA BANNER
   ============================================ */
.join-card {
  margin-top: 4rem;
  background: var(--navy-dark);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.15);
}
.join-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(201,169,110,0.06);
  pointer-events: none;
}
.join-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(201,169,110,0.04);
  pointer-events: none;
}
.join-card h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.join-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.join-card .btn-primary {
  position: relative;
  z-index: 1;
  padding: 14px 32px;
  font-size: 15px;
}

/* ============================================
   HAMBURGER / MOBILE NAV
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--gray-100);
  padding: 1rem 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu.open { max-height: 600px; }
.mobile-menu-item {
  display: block;
  padding: 12px 1.5rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--gray-50);
  transition: background var(--transition);
}
.mobile-menu-item:hover { background: var(--gray-50); }
.mobile-menu-item--cta { color: var(--navy); font-weight: 600; }
.mobile-sub {
  padding: 8px 2.5rem;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--gray-50);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-sub:hover { background: var(--gray-50); color: var(--navy); }

/* ============================================
   FOCUS / ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .service-card, .pathologist-card, .path-card {
    animation: fadeUp 0.4s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .path-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pathologist-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .page-layout { grid-template-columns: 1fr !important; }
  .page-sidebar { border-left: none; border-right: none; border-top: 1px solid var(--gray-100); }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }
  .hero-image { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn-become-client { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .path-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .pathologist-card { flex-direction: column; }
  .pc-photo { width: 100%; height: 180px; }
  .services-list { grid-template-columns: 1fr; }
  .hero-content { padding: 3rem 1.5rem; }
  .section { padding: 3rem 1.5rem; }
  .dropdown-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .news-strip { flex-direction: column; align-items: flex-start; }
  .news-grid { grid-template-columns: 1fr; }
  .join-card { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .path-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
}

/* ============================================
   NEWS — PAGINATION
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}
.pagination-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  background: white;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.pagination-item:hover {
  background: var(--gray-50);
  color: var(--navy);
  border-color: var(--gray-300);
}
.pagination-item.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  font-weight: 700;
  pointer-events: none;
}
.pagination-item.disabled {
  color: var(--gray-300);
  pointer-events: none;
  background: var(--gray-50);
}
.pagination-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================
   NEWS — ARTICLE INTERNAL PAGE
   ============================================ */
.news-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.news-article-date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.news-article-category {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-50);
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid var(--gray-100);
}

.news-article-image {
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  margin-bottom: 2rem;
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-article-image img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  padding: 2rem;
}

.news-article-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
}
.news-article-body p {
  margin-bottom: 1.25rem;
}
.news-article-body p:last-child {
  margin-bottom: 0;
}
.news-article-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.news-article-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}
.news-article-related-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.news-article-related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition), border-color var(--transition);
}
.news-article-related-link:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}
.news-article-related-link svg {
  width: 15px;
  height: 15px;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.news-article-nav {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}
.news-article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: gap var(--transition), color var(--transition);
}
.news-article-back:hover {
  color: var(--gold-dark);
  gap: 10px;
}
.news-article-back svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================
   CAREERS — PAGE LAYOUT
   ============================================ */
.page-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

/* ============================================
   CAREERS — INDEED SYNC BAR
   ============================================ */
.indeed-sync-bar {
  background: #f0f4ff;
  border: 1px solid #d0daf5;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  font-size: 13px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.indeed-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 15px;
  color: #2557a7;
}
.indeed-sync-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}
.indeed-sync-time {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   CAREERS — FILTERS
   ============================================ */
.jobs-filters-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.jobs-results-count {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   CAREERS — JOB CARDS
   ============================================ */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card {
  background: white;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.job-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.job-card.job-featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffdf7 0%, white 100%);
}

.job-featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.job-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.job-icon {
  width: 42px;
  height: 42px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.job-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
  line-height: 1.3;
}
.job-dept {
  font-size: 13px;
  color: var(--text-muted);
}

.job-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.job-tag {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 99px;
  font-weight: 500;
}
.job-tag-fulltime { background: #eef2ff; color: #3b5bdb; }
.job-tag-parttime { background: #fff3e0; color: #e65100; }
.job-tag-loc { background: var(--gray-50); color: var(--text-secondary); }
.job-tag-exp { background: #f0fdf4; color: var(--success); }

.job-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-50);
  padding-top: 0.85rem;
  gap: 1rem;
}
.job-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2557a7;
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.job-apply-btn:hover { background: #1c4690; }
.job-apply-btn-icon {
  font-size: 11px;
  font-weight: 800;
  background: white;
  color: #2557a7;
  padding: 1px 5px;
  border-radius: 3px;
  line-height: 1.4;
}

.jobs-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  display: none;
}
.jobs-empty-icon { font-size: 2rem; margin-bottom: 0.5rem; }

/* ============================================
   CAREERS — SIDEBAR
   ============================================ */
.careers-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.careers-sidebar-card {
  background: white;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.careers-sidebar-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-100);
}

.careers-sidebar-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-50);
  font-size: 13.5px;
}
.careers-sidebar-stat:last-child { border-bottom: none; }
.careers-stat-label { color: var(--text-secondary); }
.careers-stat-value { font-weight: 700; color: var(--text-primary); }

.indeed-sidebar-cta {
  background: linear-gradient(135deg, #eef3ff 0%, #dce8ff 100%);
  border: 1.5px solid #c5d5f5;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.indeed-sidebar-logo {
  font-size: 24px;
  font-weight: 800;
  color: #2557a7;
  margin-bottom: 0.5rem;
}
.indeed-sidebar-cta p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.indeed-sidebar-btn {
  display: block;
  width: 100%;
  background: #2557a7;
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  text-align: center;
}
.indeed-sidebar-btn:hover { background: #1c4690; color: white; }
.indeed-sidebar-note {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.careers-contact-card {
  background: var(--navy);
  border: none;
}
.careers-contact-card h3 {
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.1);
}
.careers-contact-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.careers-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 500;
  transition: color var(--transition);
}
.careers-contact-link:hover { color: white; }

/* Responsive */
@media (max-width: 900px) {
  .page-body {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem 3rem;
  }
  .careers-sidebar { order: -1; }
}
