/* Little Rock Tree Service Experts — site stylesheet */

:root {
  --green-dark: #1e4d2b;
  --green: #2e7d32;
  --green-light: #e8f3ea;
  --amber: #e65100;
  --text: #222c25;
  --text-muted: #55605a;
  --bg: #ffffff;
  --bg-alt: #f4f8f5;
  --border: #d8e2da;
  --radius: 8px;
  --maxw: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  max-width: var(--maxw);
  margin: 0 auto;
  flex-wrap: wrap;
}
.brand {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-dark);
  text-decoration: none;
  line-height: 1.2;
}
.main-nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--green); }
.nav-call {
  background: var(--amber);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav-call:hover { background: #cc4700; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  padding: 64px 20px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 16px;
  overflow-wrap: break-word;
}
.hero p {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
  color: #eaf4ec;
}
.btn {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  font-size: 1.05rem;
  cursor: pointer;
}
.btn:hover { background: #cc4700; }
.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  margin-left: 10px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-green { background: var(--green); }
.btn-green:hover { background: var(--green-dark); }

/* Page banner (inner pages) */
.page-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  padding: 44px 20px;
  text-align: center;
}
.page-banner h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.25;
  overflow-wrap: break-word;
}
.page-banner p { color: #eaf4ec; margin-top: 10px; max-width: 720px; margin-left: auto; margin-right: auto; }

/* Sections */
.section { padding: 48px 0; }
.section-alt { background: var(--bg-alt); }
.section h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.section h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin: 22px 0 8px;
}
.section p { margin-bottom: 14px; }
.section ul, .section ol { margin: 0 0 14px 22px; }
.section li { margin-bottom: 8px; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.card h3 { margin: 0 0 10px; color: var(--green-dark); font-size: 1.2rem; }
.card p { flex: 1; color: var(--text-muted); }
.card .btn { align-self: flex-start; margin-top: 14px; padding: 10px 20px; font-size: 0.95rem; }

/* Tables */
.table-wrap { overflow-x: auto; margin: 16px 0; }
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 480px;
  background: #fff;
}
th, td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
}
th { background: var(--green-light); color: var(--green-dark); }

/* FAQ */
.faq-item { margin-bottom: 8px; }
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  padding: 14px 16px;
  background: var(--green-light);
  border-radius: var(--radius);
  color: var(--green-dark);
}
.faq-item[open] summary { border-radius: var(--radius) var(--radius) 0 0; }
.faq-body {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* CTA band */
.cta-band {
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 44px 20px;
}
.cta-band h2 { color: #fff; font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 12px; }
.cta-band p { color: #dceade; margin-bottom: 20px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* Forms */
.contact-form { max-width: 620px; }
.contact-form label { display: block; font-weight: 600; margin: 16px 0 6px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { margin-top: 20px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Footer */
.site-footer {
  background: #14301c;
  color: #cfe0d4;
  padding: 40px 20px 24px;
  font-size: 0.95rem;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.site-footer h4 { color: #fff; margin-bottom: 10px; font-size: 1rem; }
.site-footer a { color: #a9c8b2; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 6px; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 28px auto 0;
  padding-top: 16px;
  border-top: 1px solid #2c4a35;
  text-align: center;
  color: #8fae98;
  font-size: 0.85rem;
}

/* Utility */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }

@media (max-width: 640px) {
  body { font-size: 16px; }
  .header-inner { justify-content: center; text-align: center; }
  .btn-secondary { margin-left: 0; margin-top: 12px; }
  .hero { padding: 44px 16px; }
}
