/* ============================================
   CANOPY TREE SERVICE — Premium Website Styles
   canopy.metrix.build
   ============================================ */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
  --green-900: #0d2818;
  --green-800: #14472b;
  --green-700: #1a5c35;
  --green-600: #1e6e3e;
  --green-500: #27864a;
  --green-400: #34a85a;
  --green-100: #e8f5e9;
  --green-50: #f1f8f2;

  --gold-600: #b8860b;
  --gold-500: #d4a017;
  --gold-400: #e6b422;
  --gold-300: #f0c94d;

  --neutral-900: #1a1a1a;
  --neutral-800: #2d2d2d;
  --neutral-700: #404040;
  --neutral-600: #555;
  --neutral-500: #717171;
  --neutral-400: #999;
  --neutral-300: #c4c4c4;
  --neutral-200: #e0e0e0;
  --neutral-100: #f0f0f0;
  --neutral-50: #f8f8f8;
  --white: #ffffff;

  --red-600: #c0392b;
  --red-500: #e74c3c;

  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --max-width: 1200px;
  --header-height: 80px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--neutral-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-600); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-500); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--neutral-900);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; }
strong { color: var(--neutral-800); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  height: var(--header-height);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--green-700);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-800);
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--neutral-500);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--neutral-700);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--green-600); }

.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -12px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 220px;
  z-index: 100;
  margin-top: 12px;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--neutral-700);
}
.dropdown-menu a:hover { background: var(--green-50); color: var(--green-700); }

.header-ctas { display: flex; align-items: center; gap: 12px; }
.header-phone {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-700);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone:hover { color: var(--green-500); }

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--neutral-700);
  padding: 4px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  color: var(--neutral-800);
  font-weight: 500;
  border-bottom: 1px solid var(--neutral-100);
}
.mobile-menu .btn { display: block; text-align: center; margin-top: 16px; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  line-height: 1.2;
}
.btn-primary {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}
.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--green-700);
}
.btn-secondary:hover {
  background: var(--green-50);
  transform: translateY(-1px);
}
.btn-emergency {
  background: var(--red-600);
  color: var(--white);
  border-color: var(--red-600);
}
.btn-emergency:hover {
  background: var(--red-500);
  border-color: var(--red-500);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--gold-500);
  color: var(--white);
  border-color: var(--gold-500);
}
.btn-gold:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { display: flex; width: 100%; }

/* --- HERO SECTION --- */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.9);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  max-width: 800px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.85);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.hero-emergency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
}
.hero-emergency a { color: #ff8a80; font-weight: 600; }
.hero-emergency a:hover { color: #ff5252; }
.pulse-dot {
  width: 10px; height: 10px;
  background: var(--red-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(231,76,60,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(231,76,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(231,76,60,0); }
}

/* Service page hero (lighter variant) */
.hero-service {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%);
}
.hero-service h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--green-900);
  padding: 18px 0;
  border-bottom: 2px solid var(--gold-500);
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item .check { color: var(--gold-400); font-size: 1.1rem; }

/* --- SECTIONS --- */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--neutral-50);
}
.section-dark {
  background: var(--green-900);
  color: rgba(255,255,255,0.9);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--neutral-600);
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-600);
  margin-bottom: 10px;
}

/* --- PROBLEM SECTION --- */
.problem-section { background: var(--neutral-50); }
.problem-content { max-width: 800px; margin: 0 auto; }
.problem-content h2 { text-align: center; margin-bottom: 24px; }
.problem-content p { font-size: 1.05rem; }

/* --- SERVICE CARDS --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.3s ease;
  position: relative;
}
.service-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--neutral-600); font-size: 0.95rem; margin-bottom: 16px; }
.service-card .card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .card-link:hover { gap: 10px; }

/* Emergency card special */
.service-card.emergency-card {
  border-color: var(--red-500);
  background: linear-gradient(135deg, #fff5f5, var(--white));
}
.service-card.emergency-card .service-icon {
  background: #fde8e8;
}

/* --- DIFFERENTIATORS --- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.diff-item {
  display: flex;
  gap: 20px;
}
.diff-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.diff-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.diff-item p { font-size: 0.93rem; color: var(--neutral-600); margin: 0; }

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 4rem;
  color: var(--green-100);
  font-family: Georgia, serif;
  line-height: 1;
}
.stars {
  color: var(--gold-500);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--neutral-700);
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  font-weight: 600;
  color: var(--neutral-800);
  font-size: 0.9rem;
}
.testimonial-meta {
  font-size: 0.8rem;
  color: var(--neutral-500);
  margin-top: 2px;
}

/* --- PROCESS STEPS --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  position: relative;
  counter-increment: step;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--green-600);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--neutral-600); margin: 0; }

/* --- GUARANTEE / RISK REVERSAL --- */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.guarantee-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 28px;
}
.guarantee-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.guarantee-card p { font-size: 0.9rem; margin: 0; }

/* --- SERVICE AREA --- */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.area-tag {
  background: var(--green-50);
  color: var(--green-700);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid var(--green-100);
}
.area-tag.primary {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
  font-weight: 600;
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--neutral-200);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 40px 22px 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--neutral-800);
  text-align: left;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green-600);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 22px;
}
.faq-answer p { color: var(--neutral-600); font-size: 0.95rem; }

/* --- CTA SECTION --- */
.cta-section {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.cta-reassurance {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
}

/* --- INLINE CTA --- */
.inline-cta {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}
.inline-cta p { margin: 0; font-weight: 600; color: var(--neutral-800); font-size: 1.05rem; }

/* --- CONTENT PAGES --- */
.page-content {
  padding: 40px 0 80px;
}
.page-content .content-body {
  max-width: 800px;
  margin: 0 auto;
}
.content-body h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--neutral-200);
}
.content-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.content-body h3 { margin-top: 28px; }
.content-body ul, .content-body ol {
  margin: 0 0 20px 20px;
}
.content-body li {
  margin-bottom: 8px;
  padding-left: 4px;
  list-style: disc;
  color: var(--neutral-600);
}
.content-body ol li { list-style: decimal; }

/* Price table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.price-table th {
  background: var(--green-700);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
}
.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--neutral-200);
  font-size: 0.95rem;
}
.price-table tr:nth-child(even) td { background: var(--neutral-50); }
.price-table tr:last-child td { border-bottom: none; }

/* --- ESTIMATE FORM --- */
.estimate-form-section {
  background: var(--neutral-50);
  padding: 80px 0;
}
.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--neutral-800);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(30,110,62,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col p, .footer-col li, .footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.footer-col a:hover { color: var(--gold-400); }
.footer-col ul li { margin-bottom: 4px; }
.footer-company .footer-phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin: 12px 0;
}
.footer-badges {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

/* --- BREADCRUMB --- */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 8px; }

/* --- TWO-COLUMN LAYOUT --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* --- EMERGENCY PAGE OVERRIDES --- */
.hero-emergency-page {
  background: linear-gradient(135deg, #1a0000, var(--red-600)) !important;
}
.hero-emergency-page::after { display: none; }
.emergency-phone-huge {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  display: block;
  margin: 20px 0;
}
.emergency-phone-huge a {
  color: var(--white);
  text-decoration: none;
  background: var(--red-500);
  padding: 16px 40px;
  border-radius: var(--radius-md);
  display: inline-block;
  transition: all 0.3s;
}
.emergency-phone-huge a:hover {
  background: #c0392b;
  transform: scale(1.02);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root { --header-height: 68px; }
  .main-nav { display: none; }
  .header-ctas .btn { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding: 120px 0 70px; }
  .hero-service { padding: 110px 0 50px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .inline-cta { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .trust-items { gap: 4px 20px; }
  .trust-item { font-size: 0.78rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero { padding: 110px 0 60px; }
  .service-card { padding: 28px 24px; }
  .form-wrapper { padding: 28px 20px; }
  .process-grid { grid-template-columns: 1fr; }
}

/* --- UTILITIES --- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.fade-in{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}

/* --- HERO IMAGE BACKGROUNDS --- */
.hero{background:linear-gradient(135deg,rgba(13,40,24,0.87),rgba(14,71,43,0.8)),url(../img/hero-main.jpeg) center/cover no-repeat}
.hero-service{background:linear-gradient(135deg,rgba(13,40,24,0.9),rgba(20,71,43,0.85)),url(../img/work-4.jpeg) center/cover no-repeat}
.hero-service.hero-trimming{background:linear-gradient(135deg,rgba(13,40,24,0.88),rgba(14,71,43,0.82)),url(../img/work-5.jpeg) center/cover no-repeat}
.hero-service.hero-stump{background:linear-gradient(135deg,rgba(13,40,24,0.88),rgba(14,71,43,0.82)),url(../img/getty-hero.jpeg) center/cover no-repeat}
.hero-service.hero-land{background:linear-gradient(135deg,rgba(13,40,24,0.88),rgba(14,71,43,0.82)),url(../img/work-1.jpeg) center/cover no-repeat}
.hero-emergency-page{background:linear-gradient(135deg,rgba(120,20,10,0.88),rgba(26,0,0,0.85)),url(../img/work-6.jpeg) center/cover no-repeat!important}
.hero-service.hero-estimate{background:linear-gradient(135deg,rgba(13,40,24,0.9),rgba(14,71,43,0.85)),url(../img/work-8.jpeg) center/cover no-repeat}

/* --- HERO OUTLINE BUTTON (replaces inline styles) --- */
.btn-outline-hero{background:rgba(255,255,255,0.1);color:#fff;border-color:rgba(255,255,255,0.3)}
.btn-outline-hero:hover{background:rgba(255,255,255,0.2);color:#fff;transform:translateY(-2px)}

/* --- CTA SECTION IMAGE BG --- */
.cta-section{background:linear-gradient(135deg,rgba(13,40,24,0.92),rgba(14,71,43,0.88)),url(../img/work-3.jpeg) center/cover no-repeat}

/* --- LOGO IMAGE --- */
.logo-img{height:42px;width:auto;filter:brightness(0) invert(0);object-fit:contain}
.site-header .logo-img{filter:brightness(0) saturate(100%) invert(26%) sepia(91%) saturate(500%) hue-rotate(115deg)}
.site-footer .logo-img{filter:brightness(0) invert(1);opacity:0.85}

/* --- PHOTO GALLERY --- */
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:6px;border-radius:var(--radius-lg);overflow:hidden}
.gallery-item{position:relative;overflow:hidden;aspect-ratio:1;cursor:pointer}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.gallery-item:hover img{transform:scale(1.08)}
.gallery-item::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(0,0,0,0.35));opacity:0;transition:opacity .3s}
.gallery-item:hover::after{opacity:1}
.gallery-item.span-2{grid-column:span 2;grid-row:span 2;aspect-ratio:auto}
@media(max-width:768px){.gallery-grid{grid-template-columns:repeat(2,1fr)}.gallery-item.span-2{grid-column:span 2}}

/* --- STAGGER ANIMATIONS --- */
.fade-in-1{transition-delay:.1s}.fade-in-2{transition-delay:.2s}.fade-in-3{transition-delay:.3s}
.fade-in-4{transition-delay:.4s}.fade-in-5{transition-delay:.5s}

/* --- SERVICE ICONS (SVG-based) --- */
.service-icon svg{width:26px;height:26px;stroke:currentColor;stroke-width:1.8;fill:none;stroke-linecap:round;stroke-linejoin:round}
.service-icon{color:var(--green-600)}
.diff-icon svg{width:24px;height:24px;stroke:currentColor;stroke-width:1.8;fill:none;stroke-linecap:round;stroke-linejoin:round}
.diff-icon{color:var(--gold-500)}

/* --- OWNER ABOUT CARD --- */
.about-owner{display:flex;gap:28px;align-items:center;background:var(--green-50);border:1px solid var(--green-100);border-radius:var(--radius-lg);padding:32px;margin-top:40px}
.about-owner img{width:120px;height:120px;border-radius:50%;object-fit:cover;border:3px solid var(--green-400);flex-shrink:0}
.about-owner-text h3{margin-bottom:6px}
.about-owner-text p{font-size:.92rem;color:var(--neutral-600);margin:0}
@media(max-width:600px){.about-owner{flex-direction:column;text-align:center}.about-owner img{margin:0 auto}}

/* --- EMERGENCY PAGE OVERRIDES (class-based) --- */
.hero-eyebrow-emergency{border-color:rgba(231,76,60,0.4)!important;background:rgba(231,76,60,0.15)!important;color:#fff}
.trust-bar-emergency{border-bottom-color:#e74c3c!important}
.trust-bar-emergency .check{color:#ff8a80!important}
.inline-cta-emergency{background:#fde8e8!important;border-color:#e74c3c!important}
.text-emergency{color:#c0392b!important}
.cta-emergency{background:linear-gradient(135deg,rgba(26,0,0,0.92),rgba(192,57,43,0.88)),url(../img/work-6.jpeg) center/cover no-repeat!important}

/* --- BACK TO SELECTOR --- */
.back-to-selector{position:absolute;top:6px;left:24px;font-size:.7rem;font-weight:600;color:var(--green-600);z-index:10;text-decoration:none;display:inline-flex;align-items:center;gap:4px;opacity:.65;transition:opacity .2s;line-height:1}
.back-to-selector:hover{opacity:1;color:var(--green-500)}
.mobile-back{display:block;padding:14px 0;font-size:1.05rem;color:var(--green-600)!important;font-weight:600;border-bottom:1px solid var(--neutral-100)}
@media(max-width:768px){.back-to-selector{display:none}}
