/* Nacogdoches Tree Pros — site stylesheet */
:root{
  --green:#1e5631; --green-dark:#143d22; --amber:#e8a013; --amber-dark:#c78a0e;
  --ink:#1f2937; --ink-light:#4b5563; --bg:#ffffff; --bg-alt:#f4f6f3; --line:#e5e7eb;
  --radius:10px; --maxw:1080px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;color:var(--ink);background:var(--bg);line-height:1.65;font-size:17px}
.container{max-width:var(--maxw);margin:0 auto;padding:0 20px}
a{color:var(--green);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}

/* Header */
header{background:var(--bg);border-bottom:1px solid var(--line);position:sticky;top:0;z-index:50}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 20px;max-width:var(--maxw);margin:0 auto}
.logo{font-weight:800;font-size:1.15rem;color:var(--green-dark);line-height:1.15}
.logo small{display:block;font-weight:600;color:var(--ink-light);font-size:.72rem;letter-spacing:.04em;text-transform:uppercase}
nav ul{display:flex;gap:18px;list-style:none;flex-wrap:wrap}
nav a{font-weight:600;font-size:.95rem;color:var(--ink)}
.header-cta{display:flex;align-items:center;gap:10px}
.phone-link{font-weight:800;color:var(--green-dark);font-size:1.05rem;white-space:nowrap}

/* Buttons */
.btn{display:inline-block;padding:13px 22px;border-radius:var(--radius);font-weight:700;text-align:center;text-decoration:none !important;cursor:pointer;border:0;font-size:1rem}
.btn-primary{background:var(--amber);color:#1a1a1a}
.btn-primary:hover{background:var(--amber-dark)}
.btn-secondary{background:var(--green);color:#fff}
.btn-secondary:hover{background:var(--green-dark)}
.btn-block{display:block;width:100%}

/* Hero */
.hero{background:linear-gradient(160deg,var(--green-dark) 0%,var(--green) 70%);color:#fff;padding:56px 0 48px}
.hero h1{font-size:clamp(1.7rem,4.5vw,2.6rem);line-height:1.2;margin-bottom:14px}
.hero p.lead{font-size:1.12rem;max-width:46rem;color:#e8efe9;margin-bottom:24px}
.hero .cta-row{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:14px}
.hero .assurance{font-size:.92rem;color:#cfe0d3}
.hero a{color:#fff}

/* Sections */
section{padding:44px 0}
section.alt{background:var(--bg-alt)}
h2{font-size:1.55rem;color:var(--green-dark);margin-bottom:16px;line-height:1.25}
h3{font-size:1.15rem;margin:20px 0 8px;color:var(--ink)}
section p{margin-bottom:14px;max-width:50rem}
section ul,section ol{margin:0 0 16px 22px;max-width:48rem}
section li{margin-bottom:8px}

/* Service grid */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px;margin-top:10px}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:22px;display:flex;flex-direction:column}
.card h3{margin-top:0;color:var(--green-dark)}
.card p{flex:1;font-size:.97rem;color:var(--ink-light)}
.card a.more{font-weight:700}

/* Steps */
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;counter-reset:step}
.step{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:22px}
.step .num{display:inline-flex;width:34px;height:34px;border-radius:50%;background:var(--green);color:#fff;font-weight:800;align-items:center;justify-content:center;margin-bottom:10px}

/* FAQ */
details{border:1px solid var(--line);border-radius:var(--radius);padding:16px 18px;margin-bottom:10px;background:#fff}
summary{font-weight:700;cursor:pointer;color:var(--green-dark)}
details p{margin-top:10px}

/* Quote form */
.quote-box{background:#fff;border:2px solid var(--green);border-radius:var(--radius);padding:26px;max-width:560px}
.quote-box label{display:block;font-weight:600;font-size:.92rem;margin:12px 0 4px}
.quote-box input,.quote-box select,.quote-box textarea{width:100%;padding:11px;border:1px solid #cbd5d1;border-radius:8px;font-size:1rem;font-family:inherit}
.quote-box textarea{min-height:100px}
.quote-box .fineprint{font-size:.8rem;color:var(--ink-light);margin-top:10px}

/* Callout */
.callout{background:#fdf6e3;border-left:4px solid var(--amber);padding:16px 18px;border-radius:0 var(--radius) var(--radius) 0;margin:18px 0;max-width:50rem}

/* Footer */
footer{background:var(--green-dark);color:#cfe0d3;padding:40px 0 30px;font-size:.9rem;margin-top:30px}
footer a{color:#fff}
footer .disclosure{border-top:1px solid rgba(255,255,255,.2);margin-top:18px;padding-top:18px;font-size:.83rem;line-height:1.6}
footer nav ul{margin-bottom:10px}

/* Sticky mobile call bar */
.callbar{display:none}
@media(max-width:760px){
  nav{display:none}
  .callbar{display:flex;position:fixed;bottom:0;left:0;right:0;z-index:60;gap:1px}
  .callbar a{flex:1;text-align:center;padding:15px 8px;font-weight:800;font-size:1rem;text-decoration:none}
  .callbar .call{background:var(--green);color:#fff}
  .callbar .quote{background:var(--amber);color:#1a1a1a}
  body{padding-bottom:56px}
}
