
/* ==========================================================================
   PROVINCIAL CONTACT ROUTER
   ========================================================================== */

.provincial-routing-block {
  margin: 1rem auto;
  max-width: 800px;
}

.provincial-routing-block h3 {
  color: #3d6b1e;
  margin-top: 0;
  font-size: 1.3rem;
}

.provincial-routing-block p {
  color: #4a4a4a;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.fallback-contact-info {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 0.5rem;
}

.fallback-contact-info p {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.localized-card {
  background: white;
  border: 2px solid #3d6b1e;
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(61, 107, 30, 0.15);
  transition: box-shadow 0.3s ease;
}

.localized-card:hover {
  box-shadow: 0 6px 20px rgba(61, 107, 30, 0.25);
}

.localized-card h4 {
  color: #3d6b1e;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.localized-card p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.localized-card small {
  color: #6b7280;
  font-size: 0.85rem;
  display: block;
  margin-top: 0.5rem;
}

.call-now-anchor {
  background: #c53030;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.25rem;
  transition: background 0.2s ease;
}

.call-now-anchor:hover {
  background: #991b1b;
}

.match-glow {
  animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from { box-shadow: 0 4px 12px rgba(61, 107, 30, 0.15); }
  to { box-shadow: 0 4px 20px rgba(61, 107, 30, 0.35); }
}
