/* ═══════════════════════════════════════════
   DAYTON TREE REMOVAL PROS — Premium Design System
   Palette: Forest #1A3A16 / #2D5A27 / #4A7A42
            Amber #D4940A / #E5AD3A
            Bark #2D221A / #4A3728 / #8B7355
            Background #FAF7F2 / #F0EAE0
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Open+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --green-950: #0F2410;
  --green-900: #1A3A16;
  --green-800: #234A1F;
  --green-700: #2D5A27;
  --green-600: #3A6E33;
  --green-500: #4A7A42;
  --green-200: #C8DCC4;
  --green-100: #E3F0DF;
  --green-50: #F1F8EE;
  
  --amber-700: #B87D08;
  --amber-600: #D4940A;
  --amber-500: #DFA52E;
  --amber-400: #E5AD3A;
  --amber-200: #F5DEA8;
  --amber-100: #FDF3D6;
  
  --bark-900: #1D1510;
  --bark-800: #2D221A;
  --bark-700: #3D2E24;
  --bark-600: #4A3728;
  --bark-500: #6B5542;
  --bark-400: #8B7355;
  --bark-300: #B8A58E;
  
  --bg: #FAF7F2;
  --bg-alt: #F0EAE0;
  --bg-card: #FFFFFF;
  --white: #FFFFFF;
  
  --font-heading: 'Lora', 'Georgia', serif;
  --font-body: 'Open Sans', 'Helvetica Neue', sans-serif;
  
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --shadow-sm: 0 2px 8px rgba(45, 37, 26, 0.06);
  --shadow: 0 4px 24px rgba(45, 37, 26, 0.08);
  --shadow-lg: 0 12px 48px rgba(45, 37, 26, 0.12);
  --shadow-xl: 0 24px 64px rgba(45, 37, 26, 0.18);
  
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--bark-800);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--amber-600); }

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--bark-800); letter-spacing: -0.01em; }
h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.4rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--bark-600); line-height: 1.8; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

.text-center { text-align: center; }
.max-w-xl { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212, 148, 10, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--amber-600), var(--amber-700));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 148, 10, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45, 90, 39, 0.3);
}
.btn-green:hover {
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 90, 39, 0.4);
}

.btn-lg { padding: 1.15rem 3rem; font-size: 1.1rem; }
.btn-sm { padding: 0.65rem 1.5rem; font-size: 0.9rem; }

/* ═══ HEADER ═══ */
.site-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 234, 224, 0.6);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 2rem;
  max-width: 1160px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--green-700);
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(45, 90, 39, 0.2);
}
.nav-links { display: flex; gap: 0.25rem; align-items: center; }
.nav-links a {
  color: var(--bark-600);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--green-700);
  background: var(--green-50);
}
.nav-phone {
  font-weight: 700;
  color: var(--green-700) !important;
  font-size: 1.05rem !important;
  background: var(--green-50) !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-phone:hover {
  background: var(--green-100) !important;
}
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; color: var(--bark-800); background: none; border: none; padding: 0.5rem; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--green-950);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 130% 80% at 20% 80%, rgba(45, 144, 39, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 100% 60% at 80% 20%, rgba(212, 148, 10, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 120% 90% at 50% 100%, rgba(15, 36, 16, 0.95) 0%, transparent 60%);
  z-index: 1;
}
.hero-canopy {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-canopy .trunk {
  position: absolute;
  bottom: 0;
  width: 8px;
  background: linear-gradient(to top, rgba(45, 34, 26, 0.3), transparent);
  border-radius: 4px 4px 0 0;
}
.hero-canopy .trunk:nth-child(1) { left: 8%; height: 65%; }
.hero-canopy .trunk:nth-child(2) { left: 22%; height: 80%; }
.hero-canopy .trunk:nth-child(3) { left: 65%; height: 55%; }
.hero-canopy .trunk:nth-child(4) { left: 85%; height: 70%; }
.hero-canopy .trunk:nth-child(5) { left: 45%; height: 45%; }

.hero-canopy .leaf {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: 0.06;
  background: var(--green-500);
}
.hero-canopy .leaf:nth-child(6) { width: 120px; height: 100px; top: 5%; left: 5%; transform: rotate(15deg); }
.hero-canopy .leaf:nth-child(7) { width: 180px; height: 140px; top: 2%; left: 30%; transform: rotate(-20deg); }
.hero-canopy .leaf:nth-child(8) { width: 100px; height: 80px; top: 8%; right: 15%; transform: rotate(45deg); }
.hero-canopy .leaf:nth-child(9) { width: 200px; height: 160px; top: -2%; right: 5%; transform: rotate(-10deg); }
.hero-canopy .leaf:nth-child(10) { width: 80px; height: 60px; top: 15%; left: 55%; transform: rotate(30deg); }

.hero-canopy .light {
  position: absolute;
  width: 4px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.08), transparent);
  transform: rotate(-5deg);
}
.hero-canopy .light:nth-child(11) { left: 18%; top: 10%; }
.hero-canopy .light:nth-child(12) { left: 40%; top: 5%; height: 80px; }
.hero-canopy .light:nth-child(13) { left: 72%; top: 15%; height: 100px; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg,
    rgba(15, 36, 16, 0.3) 0%,
    rgba(26, 58, 22, 0.55) 40%,
    rgba(45, 34, 26, 0.85) 100%
  );
}
.hero-content {  position: relative;  z-index: 3;  max-width: 720px;  padding: 6rem 2rem; }
.hero-content h1 {
  color: var(--white);
  font-size: 3.6rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  font-weight: 700;
}
.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--amber-400);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-rating {  color: var(--amber-400);  font-size: 0.9rem;  margin-left: 0.25rem }

/* ═══ EMERGENCY BANNER ═══ */
.emergency-banner {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: white;
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  z-index: 101;
}
.emergency-banner a { color: white; text-decoration: underline; font-weight: 700; }
.emergency-banner .pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
  100% { opacity: 1; transform: scale(1); }
}

/* �══ SECTIONS �══ */
section { overflow: hidden; }

.section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {  background: linear-gradient(180deg, var(--bark-800), var(--bark-900));
  color: rgba(255,255,255,0.9);
  position: relative;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  opacity: 0.3;
  pointer-events: none;
}
.section-dark h2,.section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.75); }
.section-green {  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: white;
  position: relative;
}
.section-green::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(50% 100% at 50% 100%);
}
.section-green h2,.section-green h3 { color: white; }
.section-green p { color: rgba(255,255,255,0.8); }
.section-green .section-label { color: var(--amber-200); }

.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber-600);
  margin-bottom: 0.5rem;
}
.section-green .section-label { color: var(--amber-200); }

/* ═══ SERVICE CARDS ═══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(240, 234, 224, 0.5);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--amber-500));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-card .icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--green-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .icon-wrap {
  background: var(--green-100);
  transform: scale(1.05);
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.95rem; color: var(--bark-400); margin-bottom: 1rem; }
.service-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-700);
  transition: var(--transition);
}
.service-card .card-cta:hover { gap: 0.6rem; color: var(--amber-600); }

/* ═══ STATS BAND ═══ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin: 2rem 0 1rem;
}
.stat-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.75rem 1rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-400);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* ═══ AREA GRID ═══ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.area-chip {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}
.area-chip:hover {
  background: var(--amber-600);
  color: white;
  border-color: var(--amber-600);
  transform: translateY(-1px);
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  color: var(--amber-600);
  opacity: 0.3;
  line-height: 1;
}
.testimonial-card p { 
  font-style: italic; 
  color: rgba(255,255,255,0.85); 
  font-size: 0.95rem; 
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.testimonial-author { 
  font-weight: 600; 
  color: var(--amber-400);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial-author::before {
  content: '—';
  color: rgba(255,255,255,0.3);
}

/* ═══ PROCESS ═══ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  counter-reset: step;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.75rem;
  left: 60%;
  right: -20%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-200), var(--green-200));
  opacity: 0.4;
}
.process-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 4px 12px rgba(45, 90, 39, 0.3);
}
.process-step h4 { font-size: 1rem;  margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; color: var(--bark-400); }

/* ═══ FAQ ═══ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(240, 234, 224, 0.5);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {  border-color: var(--green-200); }
.faq-q {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  color: var(--bark-800);
  transition: var(--transition);
  gap: 1rem;
}
.faq-q:hover { background: var(--bg); }
.faq-q .arrow {
  transition: var(--transition);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--green-700);
  flex-shrink: 0;}
.faq-item.open .faq-q .arrow {  transform: rotate(180deg);
  background: var(--green-100);
}
.faq-a {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  color: var(--bark-600);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  padding: 0 1.5rem 1.25rem;
  max-height: 500px;
}

/* �══ CTA OXS �══ */
.cta-box {
  background: linear-gradient(135deg, var(--green-800), val(--green-700));
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://w.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Ccircle fill='rgba%28255,255,255,0.03%29' cx='250' cy='50' r='200'/%3E%3Ccircle fill='rgba%28255,255,255,0.03%29' cx='50' cy='300' r='180'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-box h3 { color: white; margin-bottom: 0.75rem; font-size: 1.5rem; }
.cta-box p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.cta-box .btn-wrap { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ╕══ CONTACT �══ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.contact-info { padding-right: 2rem; }
.contact-info .detail {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(240, 234, 224, 0.5);
}
.contact-info .detail .icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info .detail-content {  flex: 1;}
.contact-info .detail-content strong {  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bark-400);
  margin-bottom: 0.15rem}
.contact-info .detail-content a { font-size: 1.15rem; font-weight: 600; }

.form-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 234, 224, 0.5);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  color: var(--bark-700);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--bg-alt);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--bg);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
  background: white;
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* �══ FOOTER �══ */
.site-footer {
  background: linear-gradient(180deg, var(--bark-800), var(--bark-900));
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}
.footer-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.footer-header .logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}
.footer-header span { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: white; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-grid h4 { color: white; margin-bottom: 1rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-grid a { color: rgba(255,255,255,0.55); display: block; margin-bottom: 0.6rem; font-size: 0.9rem; transition: var(--transition); }
.footer-grid a:hover { color: var(--amber-400); padding-left: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* �══ DEEP CONTENT �══ */
.content-page {
  padding: 4rem 2rem;
}
.content-inner {
  max-width: 800px;
  margin: 0 auto;
}
.content-page h1 { margin-bottom: 0.75rem; font-size: 2.5rem; }
.content-page .meta { color: var(--bark-400); font-size: 0.9rem; margin-bottom: 2rem; display: flex; align-items: center; gap: 0.5rem; }
.content-page .meta::before { content: '🌲'; }
.content-page h2 { font-size: 1.7rem; margin-top: 2.5rem; }
.content-page h3 { font-size: 1.2rem; margin-top: 1.75rem; }
.content-page ul, .content-page ol { margin: 1rem 0; padding-left: 1.5rem; color: var(--bark-600); }
.content-page li { margin-bottom: 0.5rem; line-height: 1.7; }
.content-page .cta-box h3 { font-size: 1.3rem; }

/* ╕══ ESONSIVE ╕══ */
@media (max-width: 968px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero-content h1 { font-size: 2.3rem; }
  .hero-content p { font-size: 1.05rem; }
  .hero { min-height: 80vh; }
  .section { padding: 4rem 0; }
  .nav-links { display: none; flex-direction: column; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); position: absolute; top: 100%; left: 0; right: 0; padding: 1rem 1.5rem; box-shadow: var(--shadow-lg); gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; font-size: 1rem; }
  .hamburger { display: block; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-box { padding: 2rem 1.5rem; }
  .content-page { padding: 3rem 1.5rem; }
  .hero-content { padding: 4rem 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 1.5rem; }
}
@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero-content h1 { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}