/* Service landing pages — extends blog.css (loaded first) */

/* Landing hero carries h1 + subtitle + CTA, needs more room than the blog hero */
.post-hero { height: 500px; }
@media (max-width: 640px) { .post-hero { height: 460px; } }

.svc-breadcrumb {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 2rem 0;
  font-size: 0.9rem;
  color: var(--neutral-600);
}
.svc-breadcrumb a { color: var(--primary-500); text-decoration: none; }
.svc-breadcrumb a:hover { text-decoration: underline; }

.svc-hero-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.svc-hero-sub {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  max-width: 640px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.svc-hero-cta {
  display: inline-block;
  margin-top: 1.25rem;
  background: var(--primary-500);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.svc-hero-cta:hover { background: var(--primary-600); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}
.svc-card {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
}
.svc-card h3 {
  font-family: var(--font-heading);
  color: var(--primary-700);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.svc-card p { font-size: 0.95rem; margin: 0; }

.svc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 2rem;
}
.svc-badge {
  background: var(--primary-50);
  color: var(--primary-700);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.svc-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.svc-gallery figure { margin: 0; }
.svc-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.svc-gallery figcaption {
  font-size: 0.85rem;
  color: var(--neutral-600);
  padding-top: 0.4rem;
}

.svc-faq details {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  padding: 0.9rem 1.25rem;
}
.svc-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-700);
  font-family: var(--font-heading);
}
.svc-faq details p { margin: 0.75rem 0 0; }

.svc-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.svc-phones a {
  background: white;
  color: var(--primary-700);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.svc-phones a:hover { background: var(--primary-50); }

@media (max-width: 640px) {
  .svc-hero-title { font-size: 1.7rem; }
  .svc-hero-sub { font-size: 1rem; }
  .svc-breadcrumb { padding: 0.75rem 1.25rem 0; }
}
