/* =========================================================
   RELIABLE MED COURIER LLC — FLAGSHIP WEBSITE V4
   Paste this entire file into CodePen's CSS panel.
========================================================= */

:root {
  --navy: #061a33;
  --navy-2: #0b2a4a;
  --navy-3: #123d67;
  --green: #00a878;
  --green-dark: #008a68;
  --blue: #00b4e3;
  --white: #ffffff;
  --ink: #10243a;
  --muted: #667788;
  --light: #f3f6f8;
  --line: #d9e2e8;
  --shadow: 0 22px 70px rgba(5, 25, 49, 0.16);
  --shadow-dark: 0 28px 85px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(1500px, calc(100% - 56px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 9999;
  padding: 12px 18px;
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow);
}

.skip-link:focus { top: 18px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.05; }
h1, h2 { letter-spacing: -0.05em; text-transform: uppercase; }

h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3.5rem, 5.5vw, 6.8rem);
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

h2 em, h1 em {
  color: var(--green);
  font-style: normal;
}

p { color: var(--muted); }

.eyebrow,
.feature-kicker,
.section-kicker {
  color: var(--green);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-kicker span {
  width: 38px;
  height: 2px;
  background: currentColor;
}

.section-kicker.light { color: #77dec4; }

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 25px;
  border: 2px solid transparent;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .25s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--navy);
  border-color: var(--navy);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.75);
}

.btn-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: .62rem;
}

/* TOPBAR */

.topbar {
  background: var(--navy);
  color: #dbe6ee;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: .62rem;
  font-weight: 700;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar a:hover { color: var(--white); }

.divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.35);
}

.top-pickup {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-inline: 25px;
  background: var(--green-dark);
  color: white;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(8,34,62,.08);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: 50px;
  display: grid;
  grid-template-columns: 1.15fr auto 250px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: .05em;
  font-style: italic;
}

.brand-copy > span {
  margin-top: 7px;
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .19em;
}

.brand-copy small {
  margin-top: 8px;
  color: var(--navy);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .07em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: .2s;
}

.nav-links a:hover::after { transform: scaleX(1); }

.dispatch-badge {
  justify-self: end;
  width: 230px;
  padding: 12px 20px;
  clip-path: polygon(10% 0,100% 0,92% 100%,0 100%);
  background: var(--navy);
  color: white;
  text-align: center;
}

.dispatch-badge small,
.dispatch-badge span,
.dispatch-badge strong {
  display: block;
}

.dispatch-badge small {
  font-size: .65rem;
  font-weight: 800;
}

.dispatch-badge span {
  font-size: .52rem;
  color: #b7c8d5;
}

.dispatch-badge strong {
  color: #48d3ab;
  font-size: 1.03rem;
  line-height: 1.2;
}

.menu-toggle { display: none; }

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background: linear-gradient(115deg, #03172e 0%, #062346 52%, #0a3554 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 640px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 30px;
  align-items: center;
  padding: 55px 0 100px;
}

.hero-copy p {
  max-width: 610px;
  color: #d2dde6;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  min-height: 525px;
}

.hospital {
  position: absolute;
  top: 0;
  right: 0;
  width: 93%;
  height: 305px;
  padding: 28px;
  clip-path: polygon(16% 0,100% 0,100% 100%,0 100%,0 18%);
  background: linear-gradient(145deg, #224d72, #071c33);
  border: 1px solid rgba(255,255,255,.15);
}

.hospital-name {
  color: white;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: center;
}

.hospital-h {
  position: absolute;
  top: 20px;
  right: 24px;
  display: grid;
  width: 52px;
  height: 66px;
  place-items: center;
  background: var(--blue);
  color: white;
  font-size: 2.2rem;
  font-weight: 900;
}

.hospital-windows {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  margin-top: 35px;
}

.hospital-windows span {
  height: 44px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(0,180,227,.08));
  border: 1px solid rgba(255,255,255,.1);
}

.fleet {
  position: absolute;
  left: -25px;
  right: -25px;
  bottom: 30px;
  height: 335px;
}

.vehicle {
  position: absolute;
  bottom: 0;
  filter: drop-shadow(0 20px 18px rgba(0,0,0,.35));
}

.vehicle-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;
  height: 78px;
  background: linear-gradient(180deg,#fff,#dfe8ee);
  border-radius: 20px 28px 8px 8px;
  border-bottom: 24px solid var(--navy);
}

.vehicle-roof {
  position: absolute;
  bottom: 100px;
  background: #f5f8fa;
}

.vehicle-window {
  position: absolute;
  bottom: 102px;
  background: #0b304c;
  border: 4px solid #dce5eb;
}

.wheel {
  position: absolute;
  bottom: 12px;
  width: 54px;
  height: 54px;
  border: 14px solid var(--navy);
  border-radius: 50%;
  background: #cfd9e0;
}

.brand-wrap {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.9);
}

.brand-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sedan {
  left: 0;
  width: 360px;
  height: 205px;
  z-index: 3;
}

.sedan .vehicle-roof {
  left: 70px;
  width: 210px;
  height: 76px;
  border-radius: 90px 100px 0 0;
}

.sedan .vehicle-window.front {
  left: 196px;
  width: 70px;
  height: 61px;
  clip-path: polygon(0 0,100% 15%,100% 100%,0 100%);
}

.sedan .vehicle-window.rear {
  left: 88px;
  width: 100px;
  height: 61px;
  clip-path: polygon(18% 0,100% 0,100% 100%,0 100%);
}

.sedan .brand-wrap {
  left: 130px;
  bottom: 62px;
  width: 88px;
  height: 75px;
}

.sedan .w1 { left: 60px; }
.sedan .w2 { right: 45px; }

.cargo-van {
  width: 370px;
  height: 295px;
}

.cargo-van .vehicle-body {
  height: 185px;
  border-radius: 30px 22px 8px 8px;
}

.cargo-van .vehicle-roof {
  left: 45px;
  width: 280px;
  height: 130px;
  border-radius: 55px 35px 0 0;
}

.cargo-van .vehicle-window.front {
  right: 28px;
  width: 90px;
  height: 88px;
  clip-path: polygon(0 0,75% 12%,100% 100%,0 100%);
}

.cargo-van .brand-wrap {
  left: 80px;
  bottom: 92px;
  width: 105px;
  height: 105px;
}

.cargo-van .w1 { left: 55px; }
.cargo-van .w2 { right: 45px; }

.cargo-van.large {
  left: 320px;
  z-index: 4;
  transform: scale(1.08);
}

.cargo-van.small {
  right: 0;
  z-index: 2;
  transform: scale(.86);
  transform-origin: bottom right;
}

.service-area-chip {
  position: absolute;
  right: 40px;
  bottom: 5px;
  z-index: 5;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 18px;
  background: rgba(5,26,51,.94);
  color: white;
  border: 1px solid #244666;
}

.pin {
  color: #6ddebd;
  font-size: 1.5rem;
}

.service-area-chip strong,
.service-area-chip small {
  display: block;
}

.service-area-chip strong {
  color: #62d9b7;
  font-size: .68rem;
}

.service-area-chip small {
  font-size: .58rem;
  color: #c5d1db;
}

.hero-metrics {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  margin-bottom: -38px;
  background: var(--navy);
  border: 1px solid #244768;
  box-shadow: var(--shadow-dark);
}

.metric {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  border-right: 1px solid #35536e;
}

.metric:last-child { border-right: 0; }

.metric-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #4dd4ac;
  border-radius: 50%;
  color: #54d7b0;
  font-size: 1.2rem;
}

.metric strong,
.metric small { display: block; }

.metric strong {
  color: white;
  font-size: .88rem;
}

.metric small {
  color: #a8bac8;
  font-size: .54rem;
}

/* QUICK ACCESS */

.quick-access {
  padding: 70px 0 10px;
}

.quick-grid {
  display: grid;
  grid-template-columns: 210px repeat(4,1fr) 260px;
  gap: 0;
}

.quick-title,
.quick-card,
.quick-emergency {
  min-height: 96px;
  border: 1px solid var(--line);
}

.quick-title {
  display: grid;
  align-content: center;
  padding: 20px;
  color: var(--navy);
  font-size: 1.05rem;
}

.quick-title span,
.quick-title strong { display: block; }

.quick-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  transition: .2s;
}

.quick-card:hover {
  background: var(--light);
  transform: translateY(-2px);
}

.quick-icon {
  font-size: 1.7rem;
  color: var(--navy);
}

.quick-card strong,
.quick-card small { display: block; }

.quick-card strong {
  color: var(--navy);
  font-size: .66rem;
}

.quick-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .6rem;
}

.quick-emergency {
  padding: 14px 22px;
  background: var(--navy);
  color: white;
}

.quick-emergency small,
.quick-emergency span,
.quick-emergency strong { display: block; }

.quick-emergency small { font-weight: 800; }
.quick-emergency span { font-size: .58rem; color: #b9cad7; }
.quick-emergency strong { color: #4fd4ad; line-height: 1.2; }

/* FEATURE CARDS */

.feature-section {
  padding: 20px 0 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 355px;
  overflow: hidden;
  padding: 28px;
  background: linear-gradient(145deg, var(--navy), #0b3a5d);
  color: white;
}

.feature-card h2 {
  color: white;
  font-size: 1.65rem;
  letter-spacing: -.03em;
}

.feature-card p {
  color: #c1cfda;
  font-size: .76rem;
}

.feature-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #d4e0e8;
  font-size: .68rem;
}

.feature-card li {
  margin-top: 7px;
}

.feature-card li::before {
  content: "✓";
  color: #3bd1a2;
  margin-right: 8px;
  font-weight: 800;
}

.feature-card .btn {
  position: absolute;
  left: 28px;
  bottom: 24px;
}

.mini-fleet {
  position: absolute;
  right: 20px;
  bottom: 58px;
  width: 145px;
  height: 170px;
}

.mini-car,
.mini-van {
  position: absolute;
  right: 0;
  width: 110px;
  height: 38px;
  border-radius: 16px 18px 5px 5px;
  background: linear-gradient(180deg,#fff,#dce5eb);
  border-bottom: 10px solid var(--green);
}

.mini-car { top: 0; }
.mini-van { top: 58px; height: 54px; }
.mini-van.two { top: 122px; transform: scale(.9); }

.policy-shield {
  position: absolute;
  right: 25px;
  bottom: 52px;
  width: 120px;
  height: 145px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0,100% 16%,92% 72%,50% 100%,8% 72%,0 16%);
  background: rgba(255,255,255,.08);
  border: 3px solid rgba(255,255,255,.75);
  text-align: center;
}

.policy-shield strong {
  display: block;
  font-size: 3rem;
}

.policy-shield span {
  font-size: .62rem;
  font-weight: 800;
}

.worker-illustration {
  position: absolute;
  right: -5px;
  bottom: 0;
  width: 160px;
  height: 235px;
}

.worker-head {
  position: absolute;
  top: 0;
  left: 48px;
  width: 58px;
  height: 65px;
  border-radius: 50%;
  background: #b87355;
}

.worker-body {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 0;
  height: 180px;
  border-radius: 80px 80px 0 0;
  background: linear-gradient(145deg, #1a5f89, #0b3150);
}

.worker-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 74px;
  padding: 8px;
  background: #edf2f5;
}

.worker-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.check-list.compact {
  max-width: 180px;
}

.mini-map {
  position: absolute;
  right: 15px;
  bottom: 48px;
  width: 170px;
  height: 220px;
  clip-path: polygon(16% 0,90% 5%,100% 62%,76% 100%,10% 90%,0 28%);
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px),
    rgba(255,255,255,.04);
  background-size: 24px 24px;
  border: 1px solid rgba(255,255,255,.3);
}

.map-point {
  position: absolute;
  color: white;
  font-size: .5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-point::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #4cd4ab;
}

.rosamond { top: 25px; left: 48px; }
.lancaster { top: 72px; left: 65px; }
.palmdale { top: 112px; left: 85px; }
.quartz { top: 145px; left: 52px; }
.mojave { bottom: 28px; right: 20px; }

/* TRUST BAR */

.trust-bar {
  background: var(--navy);
  color: white;
}

.trust-grid {
  min-height: 56px;
  display: grid;
  grid-template-columns: 1.8fr repeat(9,1fr);
  align-items: center;
  gap: 18px;
  font-size: .58rem;
  text-transform: uppercase;
}

.trust-grid > strong { color: #4ad2aa; }
.trust-grid > span { line-height: 1.2; }
.trust-grid small { color: #aebfcd; }

/* SERVICES */

.services-section {
  padding: 105px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading .section-kicker { justify-content: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 270px;
  padding: 30px;
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: .25s;
}

.service-card:hover {
  background: var(--navy);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card > span {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #9caab4;
  font-size: .6rem;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 1.3rem;
}

.service-card h3 { color: var(--navy); }
.service-card p { font-size: .8rem; }

.service-card:hover h3,
.service-card:hover .service-icon { color: white; }

.service-card:hover p,
.service-card:hover > span { color: #bdccd8; }

/* COMPLIANCE */

.compliance-section {
  padding: 110px 0;
  background: var(--navy);
  color: white;
}

.compliance-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.rings {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  border: 1px solid #2d4e68;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size: 34px 34px;
}

.rings img {
  width: 150px;
  z-index: 4;
}

.ring {
  position: absolute;
  border: 1px solid #33536c;
  border-radius: 50%;
}

.ring.one { width: 365px; height: 365px; }
.ring.two { width: 265px; height: 265px; }
.ring.three { width: 165px; height: 165px; }

.badge {
  position: absolute;
  z-index: 5;
  padding: 9px 12px;
  background: white;
  color: var(--navy);
  font-size: .55rem;
}

.b1 { top: 55px; left: 25px; }
.b2 { top: 190px; right: 18px; }
.b3 { bottom: 60px; left: 42px; }
.b4 { right: 30px; bottom: 118px; }

.compliance-copy h2 { color: white; }
.compliance-copy > p { color: #c3d1dc; }

.compliance-list > div {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid #35516a;
}

.compliance-list span {
  color: #67d8b9;
  font-size: .62rem;
  font-weight: 800;
}

.compliance-list p {
  margin: 0;
  color: #b8c8d4;
  font-size: .78rem;
}

.compliance-list strong {
  display: block;
  margin-bottom: 5px;
  color: white;
}

/* COMPANY */

.company-section {
  padding: 105px 0;
}

.company-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 85px;
  align-items: center;
}

.values {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
  margin-top: 35px;
}

.values div {
  padding-left: 17px;
  border-left: 3px solid var(--green);
}

.values strong,
.values span { display: block; }

.values strong { color: var(--navy); }

.values span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .72rem;
}

.quote-card {
  padding: 45px;
  background: linear-gradient(145deg,var(--navy),#0b4160);
  color: white;
  box-shadow: var(--shadow);
}

.quote-card img {
  width: 120px;
  margin-bottom: 25px;
}

.quote-card small {
  color: #72dec0;
  font-weight: 800;
  letter-spacing: .12em;
}

.quote-card blockquote {
  margin: 25px 0 0;
  font-size: 2rem;
  line-height: 1.35;
  font-weight: 800;
}

/* REQUEST */

.request-section {
  padding: 110px 0;
  background: linear-gradient(120deg,var(--navy),#0b3754);
}

.request-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 75px;
  align-items: start;
}

.request-copy h2 { color: white; }
.request-copy > p { color: #c7d3dc; }

.dispatch-list {
  display: grid;
  margin-top: 35px;
  border-top: 1px solid #36536b;
}

.dispatch-list a {
  padding: 18px 0;
  border-bottom: 1px solid #36536b;
}

.dispatch-list small,
.dispatch-list strong { display: block; }

.dispatch-list small {
  color: #6edabd;
  font-size: .58rem;
  font-weight: 800;
}

.dispatch-list strong {
  color: white;
  margin-top: 4px;
}

.warning {
  margin-top: 24px;
  padding: 16px;
  color: #c3d1dc;
  background: rgba(255,255,255,.06);
  border-left: 3px solid var(--blue);
  font-size: .72rem;
}

.pickup-form {
  padding: 38px 42px;
  background: white;
  border-top: 7px solid var(--green);
  box-shadow: var(--shadow-dark);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: .62rem;
  letter-spacing: .1em;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}

.pickup-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
  color: var(--navy);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #cad5dd;
  border-radius: 0;
  background: white;
  color: var(--ink);
  outline: none;
  font-size: .78rem;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,180,227,.12);
}

.checkbox-row {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  color: var(--muted) !important;
  font-size: .67rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-status {
  margin: 12px 0 0;
  color: var(--green);
  font-size: .7rem;
}

/* RESOURCES */

.resources-section {
  padding: 90px 0;
  background: var(--light);
}

.resources-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 75px;
  align-items: center;
}

.resource-links {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  border-top: 1px solid #cfd9e1;
  border-left: 1px solid #cfd9e1;
}

.resource-links a {
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-right: 1px solid #cfd9e1;
  border-bottom: 1px solid #cfd9e1;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-links a:hover {
  background: white;
}

/* CTA */

.contact-cta {
  padding: 80px 0;
  background: var(--green);
  color: white;
}

.contact-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.contact-layout h2,
.contact-layout p { color: white; }

.contact-layout small {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FOOTER */

.site-footer {
  padding: 70px 0 25px;
  background: #04152a;
  color: #a8bac8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4,1fr);
  gap: 45px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-wrap img {
  width: 86px;
}

.footer-logo-wrap strong,
.footer-logo-wrap span {
  display: block;
}

.footer-logo-wrap strong {
  color: white;
  font-size: 1.8rem;
  letter-spacing: .05em;
}

.footer-logo-wrap span {
  color: #50d4ad;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.footer-brand p {
  margin-top: 20px;
  color: #9eb1c0;
  font-size: .72rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: .68rem;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: white;
  font-size: .68rem;
  letter-spacing: .12em;
}

.footer-column a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid #21374c;
  font-size: .56rem;
  letter-spacing: .06em;
}

/* ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */

@media (max-width: 1250px) {
  .navbar {
    grid-template-columns: 1fr auto;
  }

  .dispatch-badge { display: none; }

  .nav-links { gap: 16px; }

  .hero-layout { grid-template-columns: 1fr; }

  .hero-visual {
    max-width: 970px;
    margin-inline: auto;
  }

  .hero-metrics { grid-template-columns: repeat(3,1fr); }
  .metric:nth-child(3) { border-right: 0; }

  .quick-grid {
    grid-template-columns: repeat(3,1fr);
  }

  .quick-title,
  .quick-emergency { grid-column: span 1; }

  .feature-grid { grid-template-columns: repeat(2,1fr); }

  .trust-grid {
    grid-template-columns: repeat(5,1fr);
    padding: 16px 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(4,1fr);
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .container { width: min(100% - 30px,1500px); }

  .topbar-inner { justify-content: center; padding: 8px 0; }
  .topbar-left { flex-wrap: wrap; justify-content: center; }
  .topbar-right { display: none; }

  .navbar {
    min-height: 82px;
    grid-template-columns: 1fr auto;
  }

  .brand-logo { width: 64px; height: 64px; }
  .brand-copy strong { font-size: 1.35rem; }
  .brand-copy > span { font-size: .8rem; }
  .brand-copy small { display: none; }

  .menu-toggle {
    display: block;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--navy);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }

  .hero-layout { padding-top: 65px; }
  .hero-visual { min-height: 450px; }

  .fleet {
    left: -120px;
    right: -120px;
    transform: scale(.9);
  }

  .hero-metrics { grid-template-columns: repeat(2,1fr); }
  .metric:nth-child(2n) { border-right: 0; }

  .quick-grid { grid-template-columns: repeat(2,1fr); }

  .feature-grid,
  .services-grid,
  .compliance-layout,
  .company-layout,
  .request-layout,
  .resources-layout {
    grid-template-columns: 1fr;
  }

  .trust-grid { grid-template-columns: repeat(3,1fr); }

  .values { grid-template-columns: 1fr; }

  .resource-links { grid-template-columns: 1fr; }

  .contact-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-buttons { flex-direction: row; flex-wrap: wrap; }

  .footer-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.3rem; }

  .brand-copy > span { letter-spacing: .1em; }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn,
  .contact-buttons .btn {
    width: 100%;
  }

  .hero-visual { min-height: 390px; }

  .hospital {
    width: 100%;
    height: 250px;
  }

  .fleet {
    left: -225px;
    right: -225px;
    transform: scale(.72);
  }

  .service-area-chip {
    right: 0;
    left: 0;
  }

  .hero-metrics,
  .quick-grid,
  .feature-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-title,
  .quick-emergency { grid-column: auto; }

  .feature-card { min-height: 430px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .pickup-form { padding: 28px 22px; }

  .contact-buttons { width: 100%; }

  .footer-brand { grid-column: auto; }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}/* FORCE FIRST HEADER LOGO TO BE SMALLER */
.site-header .brand .brand-logo {
  width: 55px !important;
  height: 55px !important;
  max-width: 55px !important;
  object-fit: contain;
  flex-shrink: 0;
}