/* ============================================================
   EFAdrive site overlay — sits on top of efa-family.css
   Adds orange product accent + components specific to this site
   (stats bar, migration timeline, pricing rows, bundle card).
   ============================================================ */

/* Orange product accent (matches goefa.com /products/efadrive.html) */
:root {
  --efa-accent: #fd7e14;
  --efa-accent-soft: rgba(253, 126, 20, 0.10);
}

/* Brand wordmark gets the accent in headings/links */
.efa-accent { color: var(--efa-accent); }

/* ---------- Stats bar (home page) ---------- */
.efa-stats-bar {
  border-top: 1px solid var(--efa-border);
  border-bottom: 1px solid var(--efa-border);
  background: var(--efa-bg-soft);
  padding: 2.5rem 0;
}
.efa-stats-bar .stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--efa-accent);
  display: block;
}
.efa-stats-bar .stat-label {
  font-size: 0.875rem;
  color: var(--efa-text-muted);
  display: block;
  margin-top: 0.25rem;
}

/* ---------- Migration timeline ---------- */
.efa-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.efa-timeline-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.efa-timeline-step .step-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--efa-accent);
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.efa-timeline-step .step-content h3 {
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 0.25rem;
}
.efa-timeline-step .step-content p {
  margin-bottom: 0;
  color: var(--efa-text-muted);
}

/* ---------- Pricing rows (used on migration page) ---------- */
.efa-pricing-card { display: flex; flex-direction: column; }
.efa-pricing-card .price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--efa-border);
}
.efa-pricing-card .price-row:last-of-type { border-bottom: none; }
.efa-pricing-card .price {
  font-weight: 700;
  color: var(--efa-accent);
}
.efa-pricing-card .pricing-cta { margin-top: auto; padding-top: 1.25rem; }

/* ---------- Bundle / highlighted product card ---------- */
.efa-bundle-card {
  border: 2px solid var(--efa-accent);
  background: var(--efa-accent-soft);
}
.efa-bundle-card .bundle-item {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.efa-bundle-card .bundle-item:last-of-type { border-bottom: none; }
.efa-bundle-card .price-tag {
  color: var(--efa-accent); font-weight: 700;
}

/* ---------- Service card icon (replaces hand-rolled svg colors) ---------- */
.efa-service-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 3rem; height: 3rem;
  border-radius: 0.5rem;
  background: var(--efa-accent-soft);
  color: var(--efa-accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ---------- Active nav link ---------- */
.efa-navbar .navbar-nav .nav-link.active {
  color: var(--efa-accent);
  font-weight: 600;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Scroll-to-top button (light theme) ---------- */
#scrollToTop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--efa-accent);
  color: #fff;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1030;
}
#scrollToTop:hover { background: #e96c00; }

/* ---------- Honeypot (kept for contact form parity) ---------- */
.honeypot { position: absolute; left: -9999px; }

/* ---------- Hero accent text ---------- */
.efa-hero .efa-accent { color: #ffd9b5; }
