/* ========== LOCAL / TOWN LANDING PAGES ========== */

/* Hero Banner */
.service-hero-banner {
  padding: 160px 0 80px;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('assets/hero.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.service-hero-banner h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 800;
  color: #ffffff;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.6);
  paint-order: stroke fill;
}
.service-hero-banner p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.95;
  color: #ffffff;
}

/* Service Content Grid */
.service-content { padding: 80px 0; }
.service-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}
.service-copy h2 { color: #2c5e1a; font-size: 2rem; margin-bottom: 1.5rem; }
.service-copy h3 { color: #1a3a10; font-size: 1.3rem; margin: 2rem 0 1rem; }
.service-copy p { line-height: 1.7; margin-bottom: 1rem; color: #374151; font-size: 1.05rem; }
.service-detail-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.service-detail-list li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  line-height: 1.6;
  color: #374151;
}
.service-detail-list li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: #7cb342;
  font-weight: 700;
}

/* Sidebar */
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: linear-gradient(135deg, #f0fdf4, #ecfccb);
  border: 1px solid #d9f99d;
  border-radius: 1.25rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h3 { color: #2c5e1a; margin-bottom: 1rem; font-size: 1.2rem; }
.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #374151;
}
.sidebar-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #7cb342;
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTA Card */
.cta-card {
  background: #2c5e1a;
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 25px -5px rgba(44, 94, 26, 0.4);
  margin-bottom: 1.5rem;
}
.cta-card h3 { color: #fff; margin-bottom: 0.75rem; font-size: 1.3rem; }
.cta-card p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.5; }
.cta-card .btn {
  background: #a5d67a;
  color: #1a3a10;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  width: 100%;
  box-sizing: border-box;
}
.cta-card .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
  background: #b5e68a;
}
.cta-phone { display: block; margin-top: 1.25rem; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.cta-phone a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid rgba(165, 214, 122, 0.4);
  transition: border-color 0.2s;
}
.cta-phone a:hover { border-color: #a5d67a; }

/* Service Category Cards on Town Pages */
.town-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.town-service-category {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.town-service-category:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.town-service-category h3 {
  color: #2c5e1a;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #d9f99d;
}
.town-service-category h3 a {
  color: inherit;
  text-decoration: none;
}
.town-service-category h3 a:hover {
  color: #7cb342;
}
.town-service-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.town-service-category li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}
.town-service-category li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: #7cb342;
  font-size: 0.8rem;
}

/* Owner Footer Section - Clean Version */
.owner-footer-section {
  background: #f9fafb;
  padding: 50px 0 40px;
  border-top: 1px solid #e5e7eb;
}
.owner-footer-compact {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.owner-footer-compact h3 {
  font-size: 1.3rem;
  color: #1a3a10;
  margin-bottom: 0.25rem;
}
.owner-footer-compact .owner-role {
  font-size: 0.95rem;
  color: #7cb342;
  font-weight: 600;
  margin-bottom: 1rem;
}
.owner-footer-compact p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Cross-Links Section */
.cross-links {
  background: #fff;
  padding: 50px 0;
  border-top: 1px solid #e5e7eb;
}
.cross-links h3 {
  color: #1a3a10;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.cross-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}
.cross-links-grid a {
  color: #2c5e1a;
  text-decoration: none;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.cross-links-grid a:hover { color: #7cb342; }

/* Responsive */
@media (max-width: 992px) {
  .service-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-sidebar { position: static; }
}
