:root {
  --blue:#0b0b0b;
  --blue-dark:#000000;
  --blue-mid:#1a1a1a;
  --yellow:#e11d2e;
  --red:#e11d2e;
  --red-dark:#b5121f;
  --amber:#ffb400;
  --text:#0b0b0b;
  --muted:#64748b;
  --soft:#f5f5f5;
  --border:#e5e5e5;
  --shadow:0 15px 40px rgba(0,0,0,.10);
  --radius:22px;
}

@keyframes actPulse {
  0%, 100% { box-shadow:0 0 0 0 rgba(225,29,46,.55), 0 12px 28px rgba(0,0,0,.18); }
  50% { box-shadow:0 0 0 14px rgba(225,29,46,0), 0 12px 28px rgba(0,0,0,.18); }
}

@keyframes actBlink {
  0%, 100% { opacity:1; }
  50% { opacity:.55; }
}

* { box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
  margin:0;
  font-family:'Inter',system-ui,sans-serif;
  color:var(--text);
  background:#fff;
}

a { color:inherit; text-decoration:none; }

img {
  max-width:100%;
  display:block;
}

.container {
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.section {
  padding:88px 0;
}

.section-soft {
  background:#f8fafc;
}

.section-blue {
  background:#0b0b0b;
  color:#fff;
}

.section-head {
  max-width:760px;
  margin:0 auto 48px;
}

.section-head.center {
  text-align:center;
}

.section-head.light p {
  color:rgba(255,255,255,.82);
}

.section-kicker,
.section-eyebrow {
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--red);
}

.section-kicker.gold {
  color:var(--amber);
}

h1,h2,h3 {
  margin:0;
  line-height:1.08;
  letter-spacing:-.03em;
}

h1 {
  font-size:clamp(2.6rem, 4.8vw, 4.8rem);
}

h2 {
  font-size:clamp(2rem, 3.6vw, 3.5rem);
}

h3 {
  font-size:1.45rem;
}

p {
  margin:0;
  line-height:1.8;
}

/* HEADER */
.site-header {
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.97);
  border-bottom:3px solid var(--red);
  backdrop-filter:blur(10px);
}

.site-header .main-nav a { color:#1a1a1a; }
.site-header .main-nav a:hover { color:var(--red); }

.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
  min-height:84px;
}

.brand-wrap {
  display:flex;
  align-items:center;
  gap:14px;
  flex:1 1 auto;
  min-width:0;
}

.logo-box {
  width:auto;
  min-width:auto;
  height:auto;
  padding:0;
  border:none;
  background:transparent;
  box-shadow:none;
  border-radius:0;
  overflow:visible;
}

.logo-box img {
  width:auto;
  height:72px;
  max-height:72px;
  max-width:360px;
  object-fit:contain;
  background:transparent;
}

.brand-name {
  font-weight:900;
  color:#0b0b0b;
  font-size:1.1rem;
  line-height:1.1;
  letter-spacing:.02em;
}

.brand-sub {
  color:var(--muted);
  font-size:.92rem;
  margin-top:2px;
  line-height:1.2;
}

.main-nav {
  display:flex;
  align-items:center;
  gap:22px;
}

.main-nav a {
  font-weight:600;
  color:#334155;
}

.main-nav a:hover {
  color:var(--blue);
}

.header-cta {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--red);
  color:#fff !important;
  font-weight:900 !important;
  padding:14px 20px;
  min-height:50px;
  border-radius:14px;
  box-shadow:0 10px 24px rgba(225,29,46,.28);
  white-space:nowrap;
  letter-spacing:.02em;
  animation:actPulse 2.4s ease-in-out infinite;
}
.header-cta:hover { background:var(--red-dark); }

.mobile-header-cta {
  display:none;
}

.menu-toggle {
  display:none;
  font-size:1.9rem;
  line-height:1;
  background:none;
  border:none;
  color:#111827;
  cursor:pointer;
  padding:4px 6px;
}

/* BUTTONS */
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:16px 24px;
  border-radius:16px;
  font-weight:800;
  min-height:54px;
  transition:transform .2s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform:translateY(-2px);
}

.btn-yellow {
  background:var(--red);
  color:#fff;
  border:2px solid var(--red);
  box-shadow:0 10px 24px rgba(225,29,46,.25);
}
.btn-yellow:hover { background:var(--red-dark); border-color:var(--red-dark); }

.btn-ghost {
  background:rgba(255,255,255,.12);
  color:#fff;
  border:2px solid rgba(255,255,255,.28);
}

/* HERO */
.hero {
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,#0b0b0b 0%, #1a1a1a 55%, #000000 100%);
  color:#fff;
  padding:84px 0 72px;
  border-bottom:3px solid var(--red);
}

.hero-pattern {
  position:absolute;
  inset:0;
  opacity:.1;
  background-image:radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size:28px 28px;
}

.hero-grid {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:44px;
  align-items:center;
}

.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(225,29,46,.5);
  background:rgba(225,29,46,.18);
  color:#ffb400;
  padding:10px 16px;
  border-radius:999px;
  font-size:.95rem;
  font-weight:800;
  letter-spacing:.06em;
  margin-bottom:16px;
  text-transform:uppercase;
}
.eyebrow::before {
  content:"";
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--red);
  box-shadow:0 0 0 0 rgba(225,29,46,.7);
  animation:actPulse 1.6s ease-in-out infinite;
}

.hero-copy {
  max-width:100%;
}

.hero-copy h1 {
  font-size:clamp(2.6rem, 5vw, 4.8rem);
  line-height:1.03;
  margin-bottom:18px;
}

.hero-copy p {
  max-width:760px;
  font-size:1.08rem;
  color:rgba(255,255,255,.92);
  margin-top:0;
  margin-bottom:24px;
}

.hero-copy p a {
  color:#fff;
  text-decoration:underline;
  text-underline-offset:2px;
}

.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:18px;
}

.pill-row {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}

.pill-row span {
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.1);
  padding:10px 14px;
  border-radius:999px;
  color:rgba(255,255,255,.92);
  font-size:.95rem;
}

.hero-media {
  min-height:360px;
  border-radius:32px;
  padding:16px;
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 30px 60px rgba(2,6,23,.24);
}

.hero-photo-wrap,
.about-photo-wrap {
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(11,61,145,.20);
  background:#e8eef8;
  border:1px solid rgba(255,255,255,.18);
}

.hero-photo {
  display:block;
  width:100%;
  min-height:360px;
  object-fit:cover;
}

.about-photo {
  display:block;
  width:100%;
  min-height:360px;
  object-fit:cover;
}

/* TRUST */
.trust-strip {
  margin-top:-42px;
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.trust-card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.trust-card h3 {
  font-size:1.2rem;
  color:#0b0b0b;
}
.trust-card h3::before {
  content:"";
  display:inline-block;
  width:10px;
  height:10px;
  background:var(--red);
  border-radius:50%;
  margin-right:10px;
  vertical-align:middle;
}

.trust-card p {
  margin-top:10px;
  color:var(--muted);
}

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

.service-card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
  box-shadow:0 8px 24px rgba(15,23,42,.05);
  transition:.2s transform,.2s box-shadow;
}

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

.service-icon {
  width:52px;
  height:52px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(225,29,46,.10);
  color:var(--red);
  font-size:1.75rem;
  margin-bottom:16px;
}

.service-card p {
  margin-top:12px;
  color:var(--muted);
}

.service-card h3 a {
  color:inherit;
  text-decoration:none;
}

.service-card h3 a:hover {
  text-decoration:underline;
}

/* SPLIT */
.split-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}

.about-copy p {
  margin-top:18px;
  color:var(--muted);
}

.about-copy ul {
  margin:18px 0 0;
  padding-left:18px;
  color:#334155;
  line-height:1.9;
}

/* AREAS / LINK GRIDS */
.areas-top {
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
}

.areas-grid {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
  margin-top:36px;
}

.areas-grid a {
  text-align:center;
  padding:16px 14px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  font-weight:700;
  color:#1e293b;
  box-shadow:0 6px 18px rgba(15,23,42,.04);
  transition:.2s;
}

.areas-grid a:hover {
  color:var(--red);
  border-color:var(--red);
  transform:translateY(-2px);
}

/* Center popular services section */
#service-pages .areas-grid {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}

#service-pages .areas-grid a {
  min-width:220px;
}

/* REVIEWS */
.review-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.review-card {
  border-radius:24px;
  padding:28px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
}

.review-card p {
  margin:16px 0;
  color:rgba(255,255,255,.9);
}

.stars {
  color:#ffd54f;
  font-size:1.2rem;
  letter-spacing:.1em;
}

/* GALLERY */
.gallery-section .section-heading {
  max-width:760px;
  margin:0 auto 40px;
  text-align:center;
}

.gallery-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:16px;
  margin-top:30px;
}

.gallery-item {
  display:block;
  overflow:hidden;
  border-radius:12px;
}

.gallery-item img {
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  border-radius:12px;
  transition:transform 0.25s ease;
}

.gallery-item:hover img {
  transform:scale(1.03);
}

/* CTA */
.cta-shell {
  padding-top:0;
}

.cta-panel {
  background:#0f172a;
  color:#fff;
  border-radius:32px;
  padding:42px;
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:28px;
  align-items:center;
}

.cta-panel p {
  margin-top:16px;
  color:rgba(255,255,255,.82);
}

.cta-actions {
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-chip {
  border-radius:18px;
  padding:16px 20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  text-align:center;
  color:rgba(255,255,255,.88);
}

/* MOBILE CALL BAR */
.mobile-callbar {
  display:none;
}

.mobile-callbar a::before {
  content:"";
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#fff;
  margin-right:10px;
  vertical-align:middle;
  animation:actBlink 1s ease-in-out infinite;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .cta-panel {
    grid-template-columns:1fr;
  }

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

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

@media (max-width: 860px) {
  .main-nav {
    display:none;
    position:absolute;
    left:16px;
    right:16px;
    top:78px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:16px;
    flex-direction:column;
    align-items:flex-start;
    box-shadow:var(--shadow);
  }

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

  .menu-toggle {
    display:block;
  }

  .trust-strip,
  .services-grid,
  .review-grid {
    grid-template-columns:1fr;
  }

  .areas-top {
    flex-direction:column;
    align-items:flex-start;
  }

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

@media (max-width: 768px) {
  .header-inner {
    gap:10px;
    padding:10px 0;
    min-height:78px;
  }

  .brand-wrap {
    gap:8px;
  }

  .logo-box img {
    height:56px;
    max-height:56px;
    max-width:240px;
  }

  .brand-text {
    display:none;
  }

  .mobile-header-cta {
    display:inline-flex;
    width:150px;
    height:52px;
    padding:0 18px;
    font-size:15px;
    border-radius:16px;
    flex:0 0 auto;
  }

  .header-cta:not(.mobile-header-cta) {
    display:none;
  }

  h1 {
    font-size:clamp(2rem, 8vw, 3.1rem);
    line-height:1.08;
  }

  h2 {
    font-size:clamp(1.7rem, 6vw, 2.5rem);
    line-height:1.14;
  }

  h3 {
    font-size:1.2rem;
  }

  p {
    font-size:16px;
    line-height:1.65;
  }

  .section {
    padding:62px 0;
  }

  .hero {
    padding:42px 0 42px;
  }

  .hero-grid {
    grid-template-columns:1fr;
    gap:24px;
  }

  .hero-copy {
    order:1;
  }

  .hero-media {
    order:2;
    min-height:auto;
  }

  .hero-actions {
    flex-direction:column;
    align-items:stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .btn {
    width:100%;
  }

  .hero-photo {
    min-height:240px;
  }

  .about-photo {
    min-height:240px;
  }

  .areas-grid,
  .gallery-grid {
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  #service-pages .areas-grid a {
    width:100%;
    min-width:0;
  }

  .main-nav {
    top:86px;
  }

  .mobile-callbar {
    display:block;
    position:fixed;
    left:12px;
    right:12px;
    bottom:12px;
    z-index:60;
  }

  .mobile-callbar a {
    display:block;
    text-align:center;
    border-radius:16px;
    padding:16px 18px;
    background:var(--red);
    color:#fff;
    font-weight:900;
    letter-spacing:.02em;
    box-shadow:0 20px 40px rgba(225,29,46,.35);
    animation:actPulse 2.2s ease-in-out infinite;
  }

  body {
    padding-bottom:84px;
  }
}

@media (max-width: 640px) {
  .container {
    width:min(100% - 24px, 1180px);
  }

  .areas-grid,
  .gallery-grid {
    grid-template-columns:1fr;
  }
}


/* ===== ACT mobile + proportional image refinement patch =====
   Added to preserve the existing design while improving mobile usability
   and preventing photos from being cropped/cut off. */
.hero-photo-wrap,
.about-photo-wrap {
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:4 / 3;
  background:#f3f6fb;
}

.hero-photo,
.about-photo {
  width:100%;
  height:100%;
  min-height:0 !important;
  object-fit:contain !important;
  object-position:center center;
}

.gallery-item {
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}

.gallery-item img {
  height:auto !important;
  aspect-ratio:4 / 3;
  object-fit:contain !important;
  object-position:center center;
  background:#f8fafc;
  padding:4px;
}

.service-card,
.review-card,
.trust-card,
.area-card,
.areas-grid a {
  overflow-wrap:anywhere;
}

.btn,
.header-cta,
.mobile-callbar a {
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

@media (max-width: 860px) {
  .main-nav {
    max-height:calc(100vh - 110px);
    overflow:auto;
  }
}

@media (max-width: 768px) {
  .container {
    width:min(100% - 24px, 1180px);
  }

  .site-header {
    position:sticky;
    top:0;
    z-index:70;
  }

  .header-inner {
    min-height:64px !important;
  }

  .logo-box img {
    height:48px !important;
    max-height:48px !important;
    max-width:190px !important;
  }

  .mobile-header-cta {
    width:auto !important;
    min-width:116px;
    height:46px !important;
    padding:0 14px !important;
    font-size:14px !important;
  }

  .menu-toggle {
    min-width:44px;
    min-height:44px;
  }

  .hero {
    padding:34px 0 40px !important;
  }

  .hero-grid,
  .split-grid,
  .cta-panel {
    gap:22px !important;
  }

  .eyebrow {
    font-size:12px;
    line-height:1.45;
  }

  h1 {
    font-size:clamp(1.85rem, 8vw, 2.65rem) !important;
    line-height:1.08 !important;
    letter-spacing:-.02em;
  }

  h2 {
    font-size:clamp(1.55rem, 6.5vw, 2.15rem) !important;
    line-height:1.15 !important;
  }

  h3 {
    font-size:1.1rem !important;
  }

  p,
  li {
    font-size:15.5px !important;
    line-height:1.62 !important;
  }

  .section {
    padding:48px 0 !important;
  }

  .trust-strip {
    margin-top:0 !important;
  }

  .trust-strip,
  .services-grid,
  .review-grid,
  .cta-panel,
  .split-grid {
    grid-template-columns:1fr !important;
  }

  .areas-grid {
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
  }

  .areas-grid a,
  .area-card {
    min-height:48px;
    padding:13px 12px !important;
    text-align:center;
    border-radius:16px !important;
  }

  .gallery-grid {
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
  }

  .gallery-item {
    border-radius:16px !important;
  }

  .gallery-item img {
    border-radius:14px !important;
    padding:3px;
  }

  .hero-actions,
  .cta-actions {
    width:100%;
    align-items:stretch !important;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width:100%;
    text-align:center;
  }

  .pill-row {
    gap:8px !important;
  }

  .pill-row span {
    font-size:12.5px;
    padding:8px 10px !important;
  }

  .mobile-callbar {
    left:10px !important;
    right:10px !important;
    bottom:10px !important;
  }

  body {
    padding-bottom:78px !important;
  }
}

@media (max-width: 480px) {
  .areas-grid,
  .gallery-grid {
    grid-template-columns:1fr !important;
  }

  .hero-photo-wrap,
  .about-photo-wrap {
    aspect-ratio:3 / 2;
  }

  .review-card,
  .service-card,
  .trust-card {
    padding:18px !important;
    border-radius:18px !important;
  }
}


/* ===== Final live polish patch: hero border removal + mobile image protection ===== */
/* Removes the visible white/translucent frame around the main hero image without changing layout. */
.hero-media {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  min-height: auto !important;
}

.hero-photo-wrap {
  border: 0 !important;
  background: transparent !important;
  box-shadow: 0 22px 55px rgba(0,0,0,.28) !important;
}

/* Keep images pleasing and proportional; no faces/trucks get chopped by aggressive cropping. */
.hero-photo,
.about-photo,
.gallery-item img {
  object-fit: contain !important;
  object-position: center center !important;
}

/* Give contained photos a clean visual mat instead of harsh empty white edges. */
.hero-photo-wrap,
.about-photo-wrap,
.gallery-item {
  background: #f8fafc !important;
}

/* Better mobile hero balance: call button stays visible sooner. */
@media (max-width: 768px) {
  .hero {
    padding-top: 28px !important;
    padding-bottom: 34px !important;
  }

  .hero-photo-wrap {
    border-radius: 20px !important;
  }

  .hero-actions .btn,
  .btn-yellow,
  .header-cta,
  .mobile-header-cta {
    min-height: 50px !important;
  }

  .section-head,
  .section-heading {
    margin-bottom: 26px !important;
  }
}



/* ===== Animated Service Area Map ===== */
.driver-map-section {
  padding: 84px 0;
  background: #f7f9fc;
}

.driver-map-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.driver-map-copy h2 {
  margin: 10px 0 16px;
}

.driver-map-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.driver-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn-ghost-light {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
}

.fake-map {
  position: relative;
  min-height: 390px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11,11,11,0.93), rgba(26,26,26,0.98)),
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.16), transparent 24%),
    radial-gradient(circle at 76% 64%, rgba(225,29,46,0.20), transparent 24%);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.fake-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .5;
}

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-lines path {
  fill: none;
  stroke: rgba(255,255,255,0.28);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
}

.map-label {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.map-label.portland { left: 44%; top: 42%; }
.map-label.vancouver { left: 38%; top: 18%; }
.map-label.gresham { right: 10%; top: 43%; }
.map-label.beaverton { left: 12%; top: 52%; }
.map-label.clackamas { right: 20%; bottom: 18%; }

.driver-dot {
  position: absolute;
  z-index: 3;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff2d2d;
  box-shadow: 0 0 0 6px rgba(255,45,45,0.18), 0 0 22px rgba(255,45,45,0.8);
}

.driver-dot::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 2px solid rgba(255,45,45,0.5);
  border-radius: 50%;
  animation: pulseDot 1.8s infinite;
}

.dot-1 { animation: driveOne 8s linear infinite alternate; }
.dot-2 { animation: driveTwo 10s linear infinite alternate; }
.dot-3 { animation: driveThree 9s linear infinite alternate; }
.dot-4 { animation: driveFour 11s linear infinite alternate; }

@keyframes pulseDot {
  0% { transform: scale(0.65); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes driveOne {
  0% { left: 12%; top: 48%; }
  50% { left: 46%; top: 40%; }
  100% { left: 82%; top: 45%; }
}

@keyframes driveTwo {
  0% { left: 38%; top: 16%; }
  50% { left: 48%; top: 34%; }
  100% { left: 61%; top: 58%; }
}

@keyframes driveThree {
  0% { left: 18%; top: 72%; }
  50% { left: 45%; top: 66%; }
  100% { left: 72%; top: 70%; }
}

@keyframes driveFour {
  0% { left: 75%; top: 24%; }
  50% { left: 56%; top: 39%; }
  100% { left: 35%; top: 58%; }
}

.map-disclaimer {
  margin-top: 14px;
  font-size: 13px !important;
  color: #64748b;
}

@media (max-width: 768px) {
  .driver-map-section {
    padding: 56px 0;
  }

  .driver-map-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .driver-map-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .fake-map {
    min-height: 310px;
    border-radius: 22px;
  }

  .map-label {
    font-size: 12px;
    padding: 6px 9px;
  }

  .map-label.portland { left: 39%; top: 42%; }
  .map-label.vancouver { left: 30%; top: 18%; }
  .map-label.gresham { right: 6%; top: 44%; }
  .map-label.beaverton { left: 8%; top: 56%; }
  .map-label.clackamas { right: 13%; bottom: 15%; }
}

@media (prefers-reduced-motion: reduce) {
  .driver-dot,
  .driver-dot::after {
    animation: none !important;
  }
}






/* ===== Google Map Overlay With Slow Tow Markers ===== */
.priority-map-section {
  padding: 48px 0 70px;
  background: #f7f9fc;
}

.driver-map-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 40px;
  align-items: center;
}

.driver-map-copy h2 {
  margin: 10px 0 16px;
}

.driver-map-copy p {
  max-width: 640px;
}

.driver-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn-blue-outline {
  border: 2px solid #0B3D91;
  color: #0B3D91;
  background: #fff;
}

.live-map-wrap {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #d8dee9;
  background: #e5e7eb;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.16);
}

.google-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.08) contrast(0.98);
}

.map-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 3;
}

.map-status-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: calc(100% - 32px);
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: #334155;
  box-shadow: 0 10px 24px rgba(15,23,42,0.16);
  font-size: 14px;
  font-weight: 800;
}

.map-status-pill span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ef233c;
  box-shadow: 0 0 0 6px rgba(239,35,60,0.14);
}

.driver-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.driver-routes path {
  fill: none;
  stroke: rgba(239,35,60,0.34);
  stroke-width: 0.65;
  stroke-linecap: round;
  stroke-dasharray: 2 2.2;
}

.slow-driver {
  position: absolute;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 999px;
  background: #ef233c;
  box-shadow:
    0 0 0 7px rgba(239,35,60,0.16),
    0 0 28px rgba(239,35,60,0.7),
    0 8px 18px rgba(15,23,42,0.24);
  font-size: 16px;
  transform: translate(-50%, -50%);
}

.slow-driver::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(239,35,60,0.46);
  border-radius: 999px;
  animation: mapPulse 2.4s infinite;
}

.driver-a { animation: roadRouteA 34s linear infinite; }
.driver-b { animation: roadRouteB 42s linear infinite; }
.driver-c { animation: roadRouteC 38s linear infinite; }
.driver-d { animation: roadRouteD 46s linear infinite; }

@keyframes mapPulse {
  0% { transform: scale(0.62); opacity: 0.9; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* These paths are intentionally very slow and follow major-road-style lines over the map area. */
@keyframes roadRouteA {
  0% { left: 33%; top: 16%; }
  18% { left: 36%; top: 29%; }
  38% { left: 40%; top: 39%; }
  58% { left: 47%; top: 50%; }
  78% { left: 56%; top: 66%; }
  100% { left: 62%; top: 82%; }
}

@keyframes roadRouteB {
  0% { left: 12%; top: 62%; }
  22% { left: 25%; top: 58%; }
  46% { left: 38%; top: 54%; }
  68% { left: 50%; top: 51%; }
  84% { left: 74%; top: 47%; }
  100% { left: 88%; top: 45%; }
}

@keyframes roadRouteC {
  0% { left: 77%; top: 25%; }
  20% { left: 67%; top: 34%; }
  44% { left: 58%; top: 41%; }
  64% { left: 49%; top: 50%; }
  82% { left: 32%; top: 68%; }
  100% { left: 21%; top: 77%; }
}

@keyframes roadRouteD {
  0% { left: 42%; top: 88%; }
  20% { left: 46%; top: 73%; }
  45% { left: 50%; top: 61%; }
  65% { left: 54%; top: 50%; }
  84% { left: 64%; top: 27%; }
  100% { left: 70%; top: 15%; }
}

/* ===== Entire Service Cards Clickable ===== */
.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.service-card-link:hover,
.service-card-link:focus {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
  outline: none;
}

.service-card-link h3 {
  color: inherit;
}

.service-card-link:focus-visible {
  outline: 3px solid rgba(255,193,7,0.9);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .priority-map-section {
    padding: 40px 0 54px;
  }

  .driver-map-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .live-map-wrap {
    min-height: 340px;
    border-radius: 24px;
  }

  .driver-map-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .map-status-pill {
    top: 12px;
    left: 12px;
    right: 12px;
    min-height: 38px;
    font-size: 12px;
    padding: 0 12px;
  }

  .slow-driver {
    width: 27px;
    height: 27px;
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .live-map-wrap {
    min-height: 310px;
  }
}

