/* ============================================================
   Floyd County Tree & Stump Removal — Shared Stylesheet
   ============================================================ */

/* RESET & ROOT */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green-dark:   #1a3a1f;
  --green-mid:    #2d5a35;
  --green-accent: #4a8c56;
  --green-light:  #e8f2ea;
  --bark:         #5c3d1e;
  --bark-light:   #f5ede4;
  --text:         #1c1c1c;
  --text-muted:   #555;
  --white:        #fff;
  --border:       #dde8de;
  --cta-orange:   #d45f1e;
  --cta-orange-dark: #b34f18;
}
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  padding-bottom: 72px;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h3, h4 { font-weight: 800; }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  background: var(--green-dark);
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 200;
  gap: 10px;
}
.nav-brand {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.nav-links a.active { background: rgba(255,255,255,0.15); color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-phone-btn {
  background: var(--cta-orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-phone-btn:hover { background: var(--cta-orange-dark); }
.nav-quote-btn {
  background: transparent;
  color: #a8d5af;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-quote-btn:hover { background: rgba(255,255,255,0.1); }

/* Mobile nav */
.nav-hamburger {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 5px;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}
.mobile-menu {
  display: none;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 5%;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  display: block;
}
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(255,255,255,0.1); color: var(--white); }
.mobile-menu.open { display: flex; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-quote-btn { display: none; }
  .nav-phone-btn { font-size: 13px; padding: 8px 10px; }
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--bark-light);
  border-top: 3px solid var(--bark);
  border-bottom: 1px solid #e0d4c8;
  padding: 14px 5%;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4%, 48px);
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--bark);
}

/* ── SECTIONS ────────────────────────────────────────────── */
section { padding: 60px 5%; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-accent); margin-bottom: 8px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--green-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px; color: var(--text-muted);
  max-width: 580px; margin-bottom: 36px; line-height: 1.6;
}

/* ── CTA BANNERS ─────────────────────────────────────────── */
.cta-banner {
  background: var(--green-dark);
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-banner-text { color: var(--white); }
.cta-banner-text strong {
  display: block; font-size: 18px; font-weight: 700;
  font-family: 'Montserrat', sans-serif; margin-bottom: 2px;
}
.cta-banner-text span { font-size: 14px; color: rgba(255,255,255,0.6); }
.cta-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-orange {
  background: var(--cta-orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
}
.btn-orange:hover { background: var(--cta-orange-dark); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.35);
  white-space: nowrap;
  transition: background 0.15s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(150deg, var(--green-dark) 0%, var(--green-mid) 60%, #3d6b47 100%);
  padding: 60px 5% 70px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 5vw, 56px);
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.page-hero h1 span { color: #a8d5af; }
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.8);
  max-width: 540px; margin: 0 auto 28px;
}
.page-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FORM STYLES ─────────────────────────────────────────── */
.form-card { background: var(--white); border: 1px solid #ddd; border-radius: 12px; padding: 28px 24px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 10px 13px; border: 1px solid #ccc; border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif; font-size: 15px; color: var(--text);
  background: var(--white); outline: none; transition: border-color 0.15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--green-accent); box-shadow: 0 0 0 3px rgba(74,140,86,0.12);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .form-2col { grid-template-columns: 1fr; } }
.form-submit {
  width: 100%; background: var(--cta-orange); color: var(--white);
  font-family: 'Source Sans 3', sans-serif; font-size: 16px; font-weight: 700;
  padding: 14px; border: none; border-radius: 6px; cursor: pointer;
  transition: background 0.15s; margin-top: 4px;
}
.form-submit:hover { background: var(--cta-orange-dark); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 8px; }
.success-msg { display: none; text-align: center; padding: 36px 16px; }
.success-msg h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; color: var(--green-dark); margin-bottom: 6px; font-weight: 800; }
.success-msg p { color: var(--text-muted); font-size: 14px; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 40px 5% 24px;
  font-size: 13px;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.footer-col p { color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-col .footer-phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--cta-orange);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.footer-col .footer-phone:hover { color: var(--cta-orange-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}

/* ── STICKY BAR ──────────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--green-dark);
  border-top: 3px solid var(--cta-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 5%;
  z-index: 300;
  flex-wrap: wrap;
}
.sticky-bar-label { color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 500; white-space: nowrap; }
.sticky-call {
  background: var(--cta-orange); color: var(--white); font-size: 16px; font-weight: 700;
  padding: 9px 20px; border-radius: 6px; text-decoration: none;
  display: flex; align-items: center; gap: 7px;
  transition: background 0.15s; white-space: nowrap;
}
.sticky-call:hover { background: var(--cta-orange-dark); }
.sticky-quote {
  background: transparent; color: var(--white); font-size: 14px; font-weight: 600;
  padding: 9px 16px; border-radius: 6px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35); white-space: nowrap; transition: background 0.15s;
}
.sticky-quote:hover { background: rgba(255,255,255,0.1); }

/* ── UTILITIES ───────────────────────────────────────────── */
.bg-white    { background: var(--white); }
.bg-light    { background: var(--green-light); }
.bg-subtle   { background: #f7faf7; }
.bg-bark     { background: var(--bark-light); }
.phone-big {
  display: flex; align-items: center; gap: 10px;
  background: var(--cta-orange); color: var(--white);
  text-decoration: none; padding: 15px 20px; border-radius: 8px;
  font-size: 20px; font-weight: 700; transition: background 0.15s; margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif; letter-spacing: -0.01em;
}
.phone-big:hover { background: var(--cta-orange-dark); }
.divider {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  color: var(--text-muted); font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
}
.divider::before, .divider::after { content:''; flex:1; height:1px; background:#ccc; }
