/* ============================================================
   Chopmen Tree Service — shared stylesheet (v2)
   Used by all service / city / support pages.
   Mirrors the inline styles on index.html so every page matches.
   ============================================================ */

:root {
  --teal: #008EA3;
  --teal-dark: #006D80;
  --navy: #04313B;
  --navy-soft: #0A4A57;
  --green: #94BC13;
  --green-dark: #5E7E13;
  --sky: #D8F2FF;
  --sky-soft: #ECF8FF;
  --wood: #C57925;
  --steel: #4B565A;
  --white: #FFFFFF;
  --ink: #1A2528;
  --muted: #6B7A7F;
  --rule: #E4ECEE;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ------ Top bar ------ */
.topbar { background: var(--navy); color: var(--white); position: sticky; top: 0; z-index: 50; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1180px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px; background: var(--sky); border-radius: 50%;
  background-image: url('logo.png'); background-size: cover; background-position: center;
}
.brand-name {
  font-family: 'Lato', sans-serif; font-weight: 900; letter-spacing: 0.04em;
  font-size: 18px; text-transform: uppercase;
}
.brand-name span { color: var(--green); }
.topbar-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--navy); font-weight: 900; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 11px 18px;
  border-radius: 4px; transition: background .15s ease;
}
.topbar-cta:hover { background: #A8D31A; }

/* ------ Buttons ------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Lato', sans-serif; font-weight: 900; font-size: 15px;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 16px 26px;
  border-radius: 4px; border: 2px solid transparent; transition: all .15s ease; cursor: pointer;
}
.btn-primary { background: var(--green); color: var(--navy); }
.btn-primary:hover { background: #A8D31A; }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }

/* ------ Breadcrumb ------ */
.breadcrumb { background: var(--sky-soft); border-bottom: 1px solid var(--rule); }
.breadcrumb-inner {
  max-width: 1180px; margin: 0 auto; padding: 12px 24px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--muted);
}
.breadcrumb-inner a { color: var(--teal); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner .sep { margin: 0 8px; color: var(--rule); }

/* ------ Service hero ------ */
.svc-hero { background: linear-gradient(180deg, var(--sky-soft) 0%, var(--white) 100%); padding: 56px 0 56px; }
.svc-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.svc-hero-eyebrow {
  display: inline-block; font-family: 'Lato', sans-serif; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px;
  color: var(--teal); margin-bottom: 14px;
}
.svc-hero h1 {
  font-family: 'Lato', sans-serif; font-weight: 900; font-size: 46px; line-height: 1.06;
  margin: 0 0 16px 0; color: var(--navy); letter-spacing: -0.01em;
}
.svc-hero h1 .accent { color: var(--teal); }
.svc-hero-sub { font-size: 18px; line-height: 1.55; color: var(--steel); max-width: 540px; margin-bottom: 26px; }
.svc-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.svc-hero-mascot { display: flex; justify-content: center; }
.svc-hero-mascot img { width: 100%; max-width: 340px; filter: drop-shadow(0 20px 40px rgba(4, 49, 59, 0.18)); }

/* ------ Prose body ------ */
.prose { padding: 64px 0; }
.prose .answer-lead {
  font-size: 20px; line-height: 1.6; color: var(--navy); font-weight: 600;
  border-left: 4px solid var(--green); padding-left: 20px; margin: 0 0 36px 0;
}
.prose h2 {
  font-family: 'Lato', sans-serif; font-weight: 900; font-size: 30px; line-height: 1.15;
  color: var(--navy); letter-spacing: -0.01em; margin: 44px 0 14px 0;
}
.prose h3 {
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: 20px;
  color: var(--navy); margin: 28px 0 8px 0;
}
.prose p { font-size: 16.5px; color: var(--steel); line-height: 1.7; margin: 0 0 16px 0; }
.prose ul, .prose ol { font-size: 16.5px; color: var(--steel); line-height: 1.7; padding-left: 22px; margin: 0 0 20px 0; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); }
.prose a.inline { color: var(--teal); font-weight: 600; }
.prose a.inline:hover { text-decoration: underline; }

/* Highlight / cost callout box */
.callout {
  background: var(--sky-soft); border: 1px solid var(--rule); border-radius: 6px;
  padding: 24px 26px; margin: 24px 0 28px 0;
}
.callout h3 { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }

/* Cost table */
.cost-table { width: 100%; border-collapse: collapse; margin: 8px 0 28px 0; font-size: 15.5px; }
.cost-table th, .cost-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--rule); }
.cost-table th { background: var(--navy); color: var(--white); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.cost-table td { color: var(--steel); }
.cost-table tr:nth-child(even) td { background: var(--sky-soft); }

/* Checklist row */
.checklist { list-style: none; padding-left: 0; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--green);
}
.checklist li::after {
  content: ""; position: absolute; left: 6px; top: 8px; width: 5px; height: 9px;
  border: solid var(--navy); border-width: 0 2px 2px 0; transform: rotate(45deg);
}

/* ------ FAQ ------ */
.faq { background: var(--sky-soft); padding: 64px 0; }
.faq h2 {
  font-family: 'Lato', sans-serif; font-weight: 900; font-size: 30px; color: var(--navy);
  margin: 0 0 28px 0; letter-spacing: -0.01em;
}
.faq-item { background: var(--white); border: 1px solid var(--rule); border-radius: 6px; padding: 22px 24px; margin-bottom: 14px; }
.faq-item h3 { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 17.5px; color: var(--navy); margin: 0 0 8px 0; }
.faq-item p { font-size: 15.5px; color: var(--steel); line-height: 1.65; margin: 0; }

/* ------ Related services ------ */
.related { padding: 64px 0; }
.related h2 { font-family: 'Lato', sans-serif; font-weight: 900; font-size: 28px; color: var(--navy); margin: 0 0 26px 0; text-align: center; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  display: block; background: var(--white); border: 1px solid var(--rule); border-radius: 6px;
  padding: 22px 22px; transition: all .2s ease;
}
.related-card:hover { border-color: var(--teal); box-shadow: 0 8px 24px rgba(4, 49, 59, 0.08); transform: translateY(-2px); }
.related-card h3 { font-family: 'Lato', sans-serif; font-weight: 900; font-size: 17px; color: var(--navy); margin: 0 0 6px 0; }
.related-card p { font-size: 14px; color: var(--steel); margin: 0; line-height: 1.5; }
.related-card .arrow { color: var(--teal); font-weight: 900; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 12px; display: inline-block; }

/* ------ Big CTA band ------ */
.cta-band { background: var(--teal); color: var(--white); padding: 64px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-family: 'Lato', sans-serif; font-weight: 900; font-size: 34px; margin: 0 0 6px 0; letter-spacing: -0.01em; }
.cta-band p { margin: 0; font-size: 17px; opacity: 0.92; }
.cta-band .btn-primary { background: var(--navy); color: var(--white); }
.cta-band .btn-primary:hover { background: #02232B; }

/* ------ Footer ------ */
footer { background: var(--navy); color: var(--white); padding: 48px 0 32px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand .brand-mark { width: 44px; height: 44px; }
.footer-brand .brand-name { font-size: 20px; color: var(--white); }
.footer-tagline { font-size: 14px; color: rgba(255, 255, 255, 0.7); max-width: 340px; line-height: 1.6; margin: 0; }
.footer-col h4 {
  font-family: 'Lato', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green); margin: 0 0 14px 0;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { font-size: 14px; color: rgba(255, 255, 255, 0.78); margin-bottom: 8px; }
.footer-col li a { color: rgba(255, 255, 255, 0.78); transition: color .15s ease; }
.footer-col li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 12px; font-size: 13px; color: rgba(255, 255, 255, 0.55);
}

/* ------ Responsive ------ */
@media (max-width: 880px) {
  .svc-hero { padding: 40px 0 44px; }
  .svc-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .svc-hero h1 { font-size: 34px; }
  .svc-hero-mascot { order: -1; }
  .svc-hero-mascot img { max-width: 240px; }
  .prose { padding: 48px 0; }
  .prose h2 { font-size: 25px; }
  .faq, .related { padding: 48px 0; }
  .related-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-band h2 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .topbar-inner { padding: 10px 20px; }
  .topbar-cta { font-size: 12px; padding: 9px 12px; }
  .brand-name { font-size: 16px; }
  .cost-table { font-size: 14px; }
  .cost-table th, .cost-table td { padding: 9px 10px; }
}
