/* ============================================
   Best Tree Service Charlotte — Main Stylesheet
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.7;
  color: #334155;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #0B4A12;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #0D3B11;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #0D3B11;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-weight: 800;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-weight: 800;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
}

h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
}

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: 700;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #0B4A12;
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 6px 6px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1001;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  background: #0B4A12;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-block;
}

.nav-logo span {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.nav-dropdown > button {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-dropdown > button:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.nav-links .nav-btn-quote {
  background: #FF6B00;
  color: #fff;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nav-links .nav-btn-quote:hover {
  background: #E55D00;
  transform: translateY(-1px);
}

.nav-links .nav-btn-phone {
  border: 1.5px solid #fff;
  border-radius: 6px;
  padding: 7px 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-links .nav-btn-phone:hover {
  background: rgba(255,255,255,0.15);
}

.nav-btn-phone svg {
  width: 14px;
  height: 14px;
  fill: #fff;
  flex-shrink: 0;
}

/* Nav Dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > button::after {
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.nav-dropdown.open > button::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15), 0 2px 6px rgba(0,0,0,0.08);
  min-width: 240px;
  padding: 6px 0;
  z-index: 100;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #334155;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
  border-radius: 0;
}

.nav-dropdown-menu a:hover {
  background: #F1F8F1;
  color: #0B4A12;
  padding-left: 24px;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

/* Mobile Nav */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  background: #0B4A12;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-height: 80vh;
  overflow-y: auto;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  color: #fff;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav-mobile a:hover {
  color: rgba(255,255,255,0.9);
  padding-left: 4px;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile-group {
  margin-bottom: 8px;
}

.nav-mobile-group-title {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 0 6px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background: #0B4A12;
  background-size: cover;
  background-position: center;
  padding: 64px 0 56px;
  position: relative;
}

.hero-bg {
  background-size: cover;
  background-position: center;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 59, 17, 0.85), rgba(13, 59, 17, 0.9));
  z-index: 1;
}

.hero-bg > * {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.hero h1 {
  color: #fff;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Hero Checklist */
.hero-checklist {
  margin-bottom: 32px;
}

.hero-checklist li {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-checklist li::before {
  content: '\2713';
  color: #81C784;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Hero Info Cards */
.hero-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.hero-info-card {
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 18px 16px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s ease;
}

.hero-info-card:hover {
  background: rgba(255,255,255,0.18);
}

.hero-info-card h4 {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.hero-info-card p {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Call Banner */
.hero-call-banner {
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  padding: 14px 24px;
  text-align: center;
  margin-bottom: 20px;
  transition: background 0.2s ease;
}

.hero-call-banner:hover {
  background: rgba(0,0,0,0.4);
}

.hero-call-banner a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-call-banner a:hover {
  color: #FF6B00;
}

/* Serving Cities */
.hero-cities {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.6;
}

/* Hero Quote Form */
.hero-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.hero-form-card h3 {
  color: #0D3B11;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0D3B11;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #334155;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0B4A12;
  box-shadow: 0 0 0 3px rgba(11,74,18,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: #FF6B00;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  margin-top: 6px;
}

.btn-submit:hover {
  background: #E55D00;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,107,0,0.3);
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-submit:focus-visible {
  outline: 2px solid #0B4A12;
  outline-offset: 2px;
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 72px 0;
}

.section-mint {
  background: #F1F8F1;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  margin-bottom: 14px;
}

.section-title p {
  color: #64748b;
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   Service Cards (Top Services)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.06);
}

img.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

div.service-card-img {
  height: 200px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 14px;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.service-card-body p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-card-price {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 14px;
}

.service-card-link {
  color: #0B4A12;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card-link:hover {
  color: #0D3B11;
  text-decoration: underline;
}

/* ============================================
   Area / Location Pills
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.area-pill {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border: 1.5px solid #0B4A12;
  border-radius: 30px;
  color: #0B4A12;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.area-pill:hover {
  background: #0B4A12;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11,74,18,0.2);
}

/* ============================================
   Company Cards
   ============================================ */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.company-card {
  background: #fff;
  border: none;
  border-top: 3px solid #0B4A12;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.company-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.06);
}

.company-card h3 {
  margin-bottom: 10px;
}

.company-card h3 a {
  color: #0D3B11;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.company-card h3 a:hover {
  color: #0B4A12;
}

.company-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.stars {
  color: #FF6B00;
  font-size: 16px;
  letter-spacing: 1px;
}

.review-count {
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

/* Service Tags (Outlined Pills) */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
}

.service-tag {
  padding: 4px 10px;
  border: 1.5px solid #0B4A12;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #0B4A12;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.company-desc {
  font-size: 15px;
  line-height: 1.65;
  margin: 14px 0;
}

.company-serves {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.company-link {
  margin-top: auto;
  color: #0B4A12;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.company-link:hover {
  color: #0B4A12;
  text-decoration: underline;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #0D3B11;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
  min-height: 44px;
}

.faq-question:hover {
  color: #0B4A12;
}

.faq-question:focus-visible {
  outline: 2px solid #0B4A12;
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #0B4A12;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.open .faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  background: #0B4A12;
  padding: 68px 0;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-block;
  padding: 15px 36px;
  background: #FF6B00;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
  background: #E55D00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,107,0,0.35);
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: none;
}

.cta-phone {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  font-weight: 600;
}

.cta-phone a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-phone a:hover {
  color: #FF6B00;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #1A1A1A;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 44px;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
  padding-left: 3px;
}

.footer-col p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}

/* ============================================
   Certifications Section
   ============================================ */
.cert-content {
  max-width: 800px;
  margin: 0 auto;
}

.cert-content p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.cert-content p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Page Content (Service/Location)
   ============================================ */
.page-content {
  padding: 48px 0;
}

.page-content h2 {
  margin-bottom: 18px;
  margin-top: 44px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  margin-bottom: 14px;
  margin-top: 36px;
}

.page-content p {
  font-size: 17px;
  line-height: 1.8;
}

.page-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.page-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.7;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}

.pricing-table th {
  background: #0B4A12;
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.pricing-table td {
  padding: 13px 20px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 15px;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:nth-child(even) td {
  background: #F1F8F1;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success h3 {
  color: #0B4A12;
  font-size: 24px;
  margin-bottom: 12px;
}

.form-success p {
  color: #334155;
  font-size: 17px;
  line-height: 1.6;
}

/* ============================================
   Blog Styles
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.06);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-post-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.35;
}

.blog-card-body h3 a {
  color: #0D3B11;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-body h3 a:hover {
  color: #0B4A12;
}

.blog-card-date {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 15px;
  color: #64748b;
  line-height: 1.65;
}

.blog-card-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  color: #0B4A12;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}

.blog-card-link:hover {
  color: #0D3B11;
  text-decoration: underline;
}

/* Blog Post Single */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px;
}

.blog-post h1 {
  font-size: 38px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.blog-post-meta {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.blog-post-content {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.85;
  color: #334155;
}

.blog-post-content h2 {
  font-size: 28px;
  font-weight: 800;
  margin-top: 48px;
  margin-bottom: 18px;
}

.blog-post-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 14px;
}

.blog-post-content p {
  margin-bottom: 22px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 22px 0;
  padding-left: 28px;
}

.blog-post-content ul li {
  list-style: disc;
  margin-bottom: 10px;
  line-height: 1.8;
}

.blog-post-content ol li {
  list-style: decimal;
  margin-bottom: 10px;
  line-height: 1.8;
}

.blog-post-content a {
  color: #0B4A12;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(11,74,18,0.3);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.blog-post-content a:hover {
  color: #0D3B11;
  text-decoration-color: #0D3B11;
}

.blog-post-content blockquote {
  border-left: 4px solid #0B4A12;
  padding: 20px 28px;
  margin: 28px 0;
  background: #F1F8F1;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #475569;
}

/* Blog CTA */
.blog-cta {
  background: #F1F8F1;
  border: 2px solid #0B4A12;
  border-radius: 12px;
  padding: 36px;
  margin: 44px 0;
  text-align: center;
}

.blog-cta h3 {
  margin-bottom: 12px;
}

.blog-cta p {
  margin-bottom: 20px;
  color: #475569;
}

/* Related Posts */
.related-posts {
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid #e2e8f0;
}

.related-posts h3 {
  margin-bottom: 24px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-post-card {
  padding: 22px;
  background: #F1F8F1;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.related-post-card h4 {
  margin-bottom: 8px;
}

.related-post-card h4 a {
  color: #0D3B11;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

.related-post-card h4 a:hover {
  color: #0B4A12;
  text-decoration: underline;
}

.related-post-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   Contact / Form Pages
   ============================================ */
.form-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 24px;
}

.form-page h2 {
  text-align: center;
  margin-bottom: 10px;
}

.form-page > p {
  text-align: center;
  color: #64748b;
  margin-bottom: 36px;
}

.form-full {
  background: #fff;
  padding: 36px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: #94a3b8;
}

.breadcrumb a {
  color: #64748b;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #0B4A12;
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 6px;
  color: #cbd5e1;
}

/* ============================================
   Accessibility: Focus States
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #0B4A12;
  outline-offset: 2px;
}

.nav-links a:focus-visible,
.nav-dropdown > button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ============================================
   Selection Highlight
   ============================================ */
::selection {
  background: rgba(11,74,18,0.15);
  color: #0D3B11;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-form-card {
    max-width: 500px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 44px 0 40px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-info-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .companies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .area-pill {
    padding: 12px 12px;
    font-size: 13px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .blog-post {
    padding: 40px 20px;
  }

  .blog-post h1 {
    font-size: 28px;
  }

  .blog-post-content {
    font-size: 17px;
    line-height: 1.8;
  }

  .blog-post-content h2 {
    font-size: 24px;
    margin-top: 36px;
  }

  .blog-post-content h3 {
    font-size: 20px;
    margin-top: 28px;
  }

  .blog-post-content blockquote {
    padding: 16px 20px;
    margin: 22px 0;
  }

  .blog-cta {
    padding: 28px 20px;
    margin: 32px 0;
  }

  .cta-banner {
    padding: 48px 0;
  }

  .page-content h2 {
    margin-top: 32px;
  }

  .page-content h3 {
    margin-top: 24px;
  }

  .form-page {
    padding: 40px 20px;
  }

  .form-full {
    padding: 28px 20px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px 0;
  }

  .nav-mobile a {
    padding: 14px 0;
    min-height: 48px;
  }

  .footer-col h4 {
    margin-bottom: 12px;
  }

  .footer-col a {
    padding: 6px 0;
    min-height: 36px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 23px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-form-card {
    padding: 24px 20px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 40px 0;
  }

  .hero {
    padding: 36px 0 32px;
  }

  .blog-post {
    padding: 32px 16px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }
}
