/* =========================================
   LA AGENCY NURSE REGISTRY — Global Styles
   ========================================= */

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

:root {
  --teal:        #1AABB5;
  --teal-dark:   #128890;
  --teal-light:  #E8F7F8;
  --black:       #111111;
  --text:        #2D2D2D;
  --text-light:  #666666;
  --border:      #E0E0E0;
  --bg-light:    #F7FAFA;
  --white:       #FFFFFF;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.15);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  all 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--black);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p  { line-height: 1.75; color: var(--text-light); }

.section-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
  display: block;
}
.section-title { margin-bottom: 1rem; }
.section-desc { max-width: 580px; font-size: 1.05rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
/* Hover glow spotlight */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--bx, 50%) var(--by, 50%), rgba(0,255,195,0.28) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.btn:hover::before { opacity: 1; }
.btn > * { position: relative; z-index: 1; }
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26,171,181,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--teal);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-dark:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* --- Container --- */
.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

/* --- Sections --- */
section { padding: 5rem 0; }

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo img {
  height: 50px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--black);
}
.nav-logo-text .sub {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--teal);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .btn { padding: 0.6rem 1.4rem; font-size: 0.82rem; }

/* ── Tubelight Navbar Effect ── */
.nav-links { position: relative; }

/* Suppress old underline on tubelight items */
.tl-item > a::after { display: none !important; }
.tl-item > a { position: relative; z-index: 1; padding: 0.45rem 1rem; border-radius: 9999px; }

/* Sliding pill indicator */
.tl-indicator {
  position: absolute;
  border-radius: 9999px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 6px rgba(0,0,0,0.09), 0 0 0 1px rgba(13,148,136,0.12);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  overflow: visible;
}

/* Teal lamp bar — sits at the very top of the pill */
.tl-lamp {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--teal);
  border-radius: 0 0 4px 4px;
}

/* Outer diffuse glow */
.tl-lamp::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 20px;
  background: rgba(13,148,136,0.18);
  border-radius: 50%;
  filter: blur(8px);
}

/* Inner tight glow */
.tl-lamp::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 10px;
  background: rgba(13,148,136,0.32);
  border-radius: 50%;
  filter: blur(4px);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border-left: 1px solid var(--border);
  padding-left: 1.2rem;
  margin-left: -0.5rem;
}
.lang-toggle a,
.lang-toggle span {
  font-size: 1.35rem;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
}
.lang-toggle span { opacity: 0.45; cursor: default; }
.lang-toggle a:hover { transform: scale(1.2); opacity: 1; }
.lang-toggle::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.5rem 1rem;
  gap: 1rem;
}
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav .btn { text-align: center; justify-content: center; margin-top: 0.5rem; }

/* =========================================
   HERO SECTIONS
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a4a 50%, #0f2535 100%);
  overflow: hidden;
  padding-top: 76px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1765896387377-e293914d1e69?w=1920&q=80');
  background-size: cover;
  background-position: center center;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(9,20,30,0.88) 0%, rgba(9,20,30,0.60) 50%, rgba(9,20,30,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
/* Animated glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(90px);
}
.hero-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(13,148,136,0.32) 0%, transparent 70%);
  top: -12%; right: 8%;
  animation: orb-drift 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(15,37,53,0.9) 0%, transparent 70%);
  bottom: -22%; left: -8%;
  animation: orb-drift 18s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(45,212,191,0.18) 0%, transparent 70%);
  top: 35%; right: 28%;
  animation: orb-drift 10s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes orb-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  25%      { transform: translate(28px,-22px) scale(1.04); }
  50%      { transform: translate(-18px,18px) scale(0.97); }
  75%      { transform: translate(20px,8px) scale(1.02); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13,148,136,0.12);
  border: 1px solid rgba(13,148,136,0.38);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-head);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
/* shimmer sweep on badge */
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -70%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: badge-shimmer 3.5s ease-in-out infinite;
}
@keyframes badge-shimmer { 0% { left: -70%; } 60%,100% { left: 130%; } }

.hero-badge .ab-dot {
  width: 7px; height: 7px; background: var(--teal); border-radius: 50%;
  display: inline-block; animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(13,148,136,0.6); }
  50%      { box-shadow: 0 0 0 5px rgba(13,148,136,0); }
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--teal); font-style: normal; display: block; white-space: nowrap; margin: 0; padding: 0; line-height: inherit; }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 520px; }

/* Floating trust cards */
/* ── Hero map card ── */
.hero-map-card {
  position: absolute;
  right: 4%; top: 50%;
  transform: translateY(-50%);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  z-index: 3;
  width: 250px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(9,20,30,0.82);
  border: 1px solid rgba(45,212,191,0.28);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 24px 60px rgba(0,0,0,0.45);
  opacity: 0;
  animation: card-slide-in 0.7s ease 0.6s forwards;
}
.hero-map-card:hover {
  border-color: rgba(45,212,191,0.55);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 24px 60px rgba(0,0,0,0.5), 0 0 28px rgba(45,212,191,0.15);
}
@keyframes card-slide-in {
  from { opacity: 0; transform: translateY(-50%) translateX(28px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.hero-map-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px 8px;
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}
.hero-map-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 6px var(--teal);
  flex-shrink: 0;
  animation: dot-pulse 2s ease infinite;
}
@keyframes dot-pulse {
  0%,100% { box-shadow: 0 0 4px var(--teal); }
  50%      { box-shadow: 0 0 12px var(--teal), 0 0 22px rgba(45,212,191,0.35); }
}
#heroMap {
  width: 100%;
  height: 175px;
  display: block;
}
.hero-map-footer {
  padding: 7px 14px 11px;
  font-size: 0.67rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* Leaflet marker override */
.hero-map-marker {
  width: 14px; height: 14px;
  background: var(--teal, #2dd4bf);
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.95);
  position: relative;
}
.hero-map-ping {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: rgba(45,212,191,0.35);
  animation: map-ping 1.8s ease infinite;
}
@keyframes map-ping {
  0%   { transform: scale(0.7); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}
@media (max-width: 1150px) { .hero-map-card { display: none; } }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  display: block;
}
.hero-stat .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* Page Hero (subpages) */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a4a 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1920&q=80');
  background-size: cover;
  background-position: center top;
  opacity: 0.12;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.9) 0%, rgba(26,171,181,0.15) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.page-hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  font-family: var(--font-head);
  font-weight: 500;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.about-badge .text {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.9;
}
.about-text { }
.about-text .section-desc { margin-bottom: 1.5rem; }
.about-points { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.about-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-point-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  font-size: 1.1rem;
}
.about-point-text strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  margin-bottom: 0.2rem;
}
.about-point-text p { font-size: 0.9rem; margin: 0; }

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section { background: var(--bg-light); }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-desc { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--teal); }
.service-icon svg { width: 26px; height: 26px; stroke: var(--teal); transition: var(--transition); }
.service-card:hover .service-icon svg { stroke: var(--white); }
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--black);
}
.service-card p { font-size: 0.9rem; margin: 0; }

/* ── Glowing Card Effect (Aceternity-style) ── */
.glow-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  isolation: isolate;
}
/* The rotating conic-gradient glow ring */
.glow-border {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 3px);
  padding: 2px;                       /* border thickness */
  background: conic-gradient(
    from var(--ga, 0deg),
    transparent    0%,
    rgba(13,148,136,0.0)  2%,
    rgba(13,148,136,0.9) 10%,
    rgba(45,212,191,0.7) 15%,
    rgba(13,148,136,0.3) 20%,
    transparent   27%
  );
  opacity: var(--go, 0);
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 0;
  /* Mask: hollow out the interior so only the 2px ring glows */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
/* Keep the card itself above the glow ring */
.glow-wrap > .service-card { position: relative; z-index: 1; }

/* =========================================
   AUDIENCE SPLIT SECTION
   ========================================= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.split-panel {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.split-panel.nurses {
  background: var(--black);
}
.split-panel.facilities {
  background: var(--teal);
}
.split-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.split-panel-content { position: relative; z-index: 2; }
.split-panel h2 { color: var(--white); margin-bottom: 1rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.split-panel p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1rem; }
.split-panel.nurses .btn { background: var(--teal); border-color: var(--teal); color: var(--white); }
.split-panel.nurses .btn:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.split-panel.facilities .btn { background: var(--white); border-color: var(--white); color: var(--teal); }
.split-panel.facilities .btn:hover { background: transparent; color: var(--white); }
.split-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}
.split-panel.nurses .split-icon { background: rgba(26,171,181,0.2); }
.split-panel.facilities .split-icon { background: rgba(255,255,255,0.2); }

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}
.why-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.why-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-item:hover { background: var(--bg-light); }
.why-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.4;
  line-height: 1;
  width: 40px;
  flex-shrink: 0;
}
.why-item-text strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.why-item-text p { font-size: 0.9rem; margin: 0; }

/* =========================================
   PROCESS STEPS
   ========================================= */
.steps-section { background: var(--bg-light); }
.steps-header { text-align: center; margin-bottom: 3.5rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%;
  width: 80%; height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(26,171,181,0.2) 100%);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--teal);
  box-shadow: 0 0 0 8px var(--bg-light);
}
.step-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================
   CONTACT SECTION / PAGE
   ========================================= */
.contact-section { background: var(--bg-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 0.5rem; }
.contact-info > p { margin-bottom: 2rem; font-size: 0.95rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.contact-card-icon svg { width: 20px; height: 20px; stroke: var(--teal); }
.contact-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.contact-card a, .contact-card span {
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 500;
}
.contact-card a:hover { color: var(--teal); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { margin-bottom: 0.4rem; }
.contact-form-wrap > p { font-size: 0.9rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-group label span { color: var(--teal); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,171,181,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; justify-content: center; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 0.75rem; text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--teal);
}
.form-success h3 { color: var(--teal); }

/* =========================================
   REQUIREMENTS / NURSES PAGE
   ========================================= */
.requirements-section { background: var(--white); }
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.req-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.req-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.req-card h3 { font-size: 1.05rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.req-card h3 .dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; display: inline-block; flex-shrink: 0; }
.req-list { display: flex; flex-direction: column; gap: 0.7rem; }
.req-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
}
.req-check {
  width: 20px; height: 20px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.req-check svg { width: 11px; height: 11px; stroke: var(--teal); }

/* Benefits grid */
.benefits-section { background: var(--bg-light); }
.benefits-header { text-align: center; margin-bottom: 3rem; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 64px; height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
}
.benefit-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.88rem; }

/* =========================================
   PRIVACY / LEGAL PAGES
   ========================================= */
.legal-section { background: var(--white); }
.legal-container { max-width: 820px; margin: 0 auto; }
.legal-toc {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}
.legal-toc h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.legal-toc ol {
  list-style: decimal;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.legal-toc ol li a {
  font-size: 0.9rem;
  color: var(--teal);
  transition: var(--transition);
}
.legal-toc ol li a:hover { color: var(--teal-dark); text-decoration: underline; }
.legal-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.legal-block:last-child { border-bottom: none; }
.legal-block h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.legal-block h2 span {
  width: 6px; height: 30px;
  background: var(--teal);
  border-radius: 3px;
  display: inline-block;
  flex-shrink: 0;
}
.legal-block h3 {
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--black);
}
.legal-block p { font-size: 0.95rem; margin-bottom: 0.75rem; }
.legal-block ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.75rem 0;
}
.legal-block ul li { font-size: 0.95rem; color: var(--text-light); }
.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo-text .name { color: var(--white); }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin: 1.25rem 0 1.5rem;
  max-width: 280px;
}
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--teal); color: var(--teal); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
}
.footer-contact-item svg { stroke: var(--teal); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--teal); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--teal); }

/* =========================================
   UTILITIES
   ========================================= */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.divider { width: 60px; height: 3px; background: var(--teal); border-radius: 2px; margin: 1.25rem 0; }
.divider-center { margin-left: auto; margin-right: auto; }

/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */
/* ── Announcement Bar (dark shimmer strip) ── */
.announcement-bar {
  background: #080d14;
  color: var(--white);
  height: 40px;
  display: flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1001;
  overflow: hidden;
  transition: height 0.4s ease, opacity 0.4s ease;
}
/* shimmer sweep */
.announcement-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: ab-shimmer 4s linear infinite;
  pointer-events: none;
}
@keyframes ab-shimmer { 0% { left: -60%; } 100% { left: 120%; } }

.ab-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}
.ab-badge {
  flex-shrink: 0;
  background: rgba(13,148,136,0.18);
  border: 1px solid rgba(13,148,136,0.45);
  border-radius: 50px;
  padding: 2px 9px;
  font-size: 0.68rem;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ab-messages {
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  overflow: hidden;
}
.ab-msg {
  position: absolute;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  color: rgba(255,255,255,0.82);
  text-align: center;
}
.ab-msg.active { opacity: 1; transform: translateY(0); }
.ab-msg a { color: var(--teal); text-decoration: none; }
.ab-msg a:hover { text-decoration: underline; }
.ab-dismiss {
  position: absolute;
  right: 1.5rem; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer; font-size: 1rem; line-height: 1;
  padding: 6px; transition: color 0.2s;
}
.ab-dismiss:hover { color: white; }

/* Offset navbar and page hero for announcement bar */
.has-announcement .navbar { top: 40px; }
.has-announcement .hero { padding-top: calc(76px + 40px); }
.has-announcement .page-hero { padding-top: calc(120px + 40px); }

/* =========================================
   INSURANCE / PARTNER ROLLING BANNER
   ========================================= */
.partners-bar {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
  overflow: hidden;
}
.partners-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  margin-right: 2rem;
  flex-shrink: 0;
}
.partners-track-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: scroll-partners 22s linear infinite;
  white-space: nowrap;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes scroll-partners {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.5rem 1.2rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 56px;
}
.partner-logo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(13,148,136,0.25);
}
.partner-logo img {
  height: 30px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

/* =========================================
   COMPLIANCE / AHCA NOTICE
   ========================================= */
.compliance-notice {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin: 2rem 0 0;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
}
.compliance-notice strong { color: var(--text); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { background: var(--black); padding: 5rem 0; }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-header .section-label { color: rgba(255,255,255,0.5); }
.testimonials-header h2 { color: var(--white); }
.testimonials-header p { color: rgba(255,255,255,0.6); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(26,171,181,0.4); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
  color: #FFB800;
  font-size: 1rem;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
  quotes: "\201C" "\201D";
}
.testimonial-card blockquote::before { content: open-quote; color: var(--teal); font-size: 1.5rem; line-height: 0; vertical-align: -0.4rem; margin-right: 4px; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.author-role { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* =========================================
   BLOG
   ========================================= */
.blog-section { background: var(--bg-light); }
.blog-header { text-align: center; margin-bottom: 3.5rem; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.blog-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--teal-light);
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-family: var(--font-head);
  font-weight: 500;
}
.blog-card-meta span { display: flex; align-items: center; gap: 0.3rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--black); line-height: 1.4; }
.blog-card p { font-size: 0.88rem; flex: 1; margin-bottom: 1.25rem; }
.blog-card .read-more {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
}
.blog-card .read-more:hover { gap: 0.6rem; color: var(--teal-dark); }

/* Blog Article Pages */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}
.article-body h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; color: var(--black); }
.article-body h3 { font-size: 1.15rem; margin: 2rem 0 0.75rem; color: var(--black); }
.article-body p  { font-size: 1rem; margin-bottom: 1.25rem; color: var(--text); line-height: 1.8; }
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin: 1rem 0 1.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 1rem; color: var(--text); line-height: 1.7; }
.article-body .callout {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.article-body .callout p { margin: 0; color: var(--text); font-weight: 500; }
.article-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.sidebar-post { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.sidebar-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-post img { width: 64px; height: 64px; border-radius: var(--radius); object-fit: cover; flex-shrink: 0; }
.sidebar-post a { font-size: 0.85rem; font-weight: 600; color: var(--black); line-height: 1.4; display: block; }
.sidebar-post a:hover { color: var(--teal); }
.sidebar-post span { font-size: 0.75rem; color: var(--text-light); }
.article-tag-chip {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0.25rem;
}

/* Responsive blog */
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* =========================================
   ACCREDITATION / TRUST BADGES
   ========================================= */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-light);
}
.trust-item svg { stroke: var(--teal); width: 20px; height: 20px; flex-shrink: 0; }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap img { height: 350px; }
  .about-badge { bottom: -16px; right: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: flex; }
  .split-section { grid-template-columns: 1fr; }
  .split-panel { padding: 3rem 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 1.5rem; }
  .steps-grid::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
