/*
  Extra styles for the service-area / location pages.
  Loaded on top of styles.css - only the bits that don't show up anywhere else.
*/

/* row of "what we do here" cards near the top of a location page */
.loc-services-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.loc-service-item {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid var(--silver-light);
  text-align: center;
  transition: var(--transition);
}
.loc-service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(59,130,196,0.1);
  border-color: var(--blue-light);
}
.loc-service-item svg {
  width: 36px; height: 36px;
  stroke: var(--blue); fill: none; stroke-width: 1.6;
  margin-bottom: 14px;
}
.loc-service-item h3 { margin-bottom: 8px; font-size: 1rem; }
.loc-service-item p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.loc-service-item a {
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.8rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* trust badges (licensed, 24/7, etc) */
.loc-trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
  padding: 48px 0;
}
.loc-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.loc-trust-item svg {
  width: 32px; height: 32px;
  stroke: var(--blue); fill: none; stroke-width: 1.6;
}
.loc-trust-item strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-primary);
}
.loc-trust-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* FAQ accordion - the "open" class is what reveals the answer */
.loc-faq { max-width: 800px; }
.loc-faq-item {
  border-bottom: 1px solid var(--silver-light);
  padding: 20px 0;
}
.loc-faq-item:first-child { border-top: 1px solid var(--silver-light); }
.loc-faq-q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.loc-faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.loc-faq-item.open .loc-faq-q::after {
  content: '−';
}
.loc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}
.loc-faq-item.open .loc-faq-a {
  max-height: 300px;
  padding-top: 12px;
}

/* "we also cover nearby towns" pill links */
.loc-nearby {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.loc-nearby a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--blue-pale);
  color: var(--blue-dark);
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition);
}
.loc-nearby a:hover {
  background: var(--blue);
  color: var(--white);
}

/* breadcrumb trail over the hero (helps with the page schema too) */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--blue-bright); }
.breadcrumb span { margin: 0 8px; }
