/* Croslow Excavating - Modern Design */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #111111;
  --primary-dark: #000000;
  --primary-darker: #000000;
  --accent: #F97316;
  --accent-dark: #ea580c;
  --white: #fff;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* Utility Bar */
.utility-bar {
  background: var(--gray-900);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; }
.utility-link { display: flex; align-items: center; gap: 6px; color: var(--white); opacity: 0.9; }
.utility-nav { display: flex; gap: 24px; }
.utility-nav a { color: rgba(255,255,255,0.8); }

/* Header - TruGreen Protocol: defined borders for visual weight */
.header {
  background: var(--white);
  padding: 16px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-bottom: 2px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 80px;
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text span { font-size: 20px; font-weight: 800; color: var(--gray-900); }
.logo-text small { font-size: 12px; font-weight: 500; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav > a {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
}
.main-nav > a:hover { color: var(--accent); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--gray-700); }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-menu-btn span { width: 24px; height: 2px; background: var(--gray-800); }

/* Hero */
.hero {
  position: relative;
  background: var(--gray-900);
  padding: 120px 0 140px;
  overflow: hidden;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}
.hero .container { position: relative; z-index: 2; }
.hero-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-centered .hero-tag { margin-bottom: 24px; }
.hero-centered .hero-trust { justify-content: center; }
.hero-centered .form-inline { justify-content: center; flex-wrap: wrap; }
.hero-centered .form-subtext { text-align: center; }

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content h1 .text-accent { color: var(--accent); }
.hero-content > p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.6; }

.contact-form .form-inline {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.contact-form input {
  width: 160px;
  padding: 12px 16px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  outline: none;
  background: var(--white);
}
.contact-form input:focus { box-shadow: 0 0 0 3px rgba(249,115,22,0.3); }
.contact-form .btn {
  padding: 12px 24px;
  font-size: 14px;
  white-space: nowrap;
}
.form-subtext { font-size: 12px; color: rgba(255,255,255,0.5); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
/* Trust Badges - TruGreen Protocol: prominent with defined borders */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}
.trust-badge:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.trust-badge svg { color: var(--accent); flex-shrink: 0; }

/* Marquee Bar */
.marquee-bar {
  background: var(--primary);
  overflow: hidden;
  padding: 14px 0;
  width: 100%;
  position: relative;
}
.marquee-track {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee-item {
  display: inline-block;
  padding: 0 32px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Work Showcase */
.work-showcase { padding: 100px 0; background: var(--white); overflow: hidden; }
.showcase-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}
/* Section Tag - TruGreen Protocol: defined border for visual weight */
.section-tag {
  display: inline-block;
  background: rgba(249,115,22,0.1);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 50px;
  border: 2px solid rgba(249,115,22,0.3);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.showcase-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 16px;
}
.showcase-content > p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 28px; }
.showcase-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}
.showcase-stat .stat-num { display: block; font-size: 42px; font-weight: 800; color: var(--accent); line-height: 1; }
.showcase-stat .stat-desc { font-size: 14px; color: var(--gray-500); }

.showcase-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}
.gallery-column { display: flex; flex-direction: column; gap: 20px; }
/* Gallery Items - TruGreen Protocol: defined borders for visual weight */
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.gallery-large { height: 100%; min-height: 380px; }
.gallery-column .gallery-item { height: 180px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  background: var(--gray-100);
}
.gallery-placeholder span { font-size: 14px; font-weight: 500; }

/* Service Areas Highlight */
.areas-highlight {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #111111 50%, #0a0a0a 100%);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(249,115,22,0.2);
  border-bottom: 1px solid rgba(249,115,22,0.2);
}
.areas-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
/* Map Card - TruGreen Protocol: defined border */
.map-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.map-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
}
.map-areas { display: flex; flex-wrap: wrap; gap: 10px; }
/* Area Tags - TruGreen Protocol: 2px borders */
.area-tag {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.area-tag:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.area-more {
  background: var(--accent);
  border-color: var(--accent);
}

.areas-content .section-tag {
  background: rgba(249,115,22,0.15);
  color: var(--accent);
  border: 1px solid rgba(249,115,22,0.3);
}
.areas-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.areas-content > p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}
.areas-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.areas-cta .btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.areas-cta .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

/* Why Pros */
.why-pros { padding: 100px 0; background: var(--gray-50); overflow: hidden; }
.why-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
.why-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 16px;
}
.why-content > p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; }
.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 2px solid var(--gray-200);
  transition: all 0.2s;
}
.phone-cta:hover { border-color: var(--accent); box-shadow: 0 6px 30px rgba(249,115,22,0.15); }
.phone-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.phone-text span { display: block; font-size: 13px; color: var(--gray-500); }
.phone-text strong { font-size: 20px; color: var(--gray-900); }

.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
/* Feature Cards - TruGreen Protocol: 2px borders, defined shadows */
.feature-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 2px solid var(--gray-200);
  transition: all 0.2s;
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(249,115,22,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-text h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.feature-text p { font-size: 14px; color: var(--gray-500); line-height: 1.5; }

/* Process - TruGreen Protocol: defined visual elements */
.process { padding: 80px 0; background: var(--gray-50); }
.process h2 { text-align: center; font-size: 40px; font-weight: 800; color: var(--gray-900); margin-bottom: 48px; }
.process-timeline { display: flex; align-items: flex-start; justify-content: center; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; width: 200px; }
.step-marker {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 3px solid var(--accent-dark);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
.step-content h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.step-content p { font-size: 14px; color: var(--gray-500); }
.process-connector { width: 60px; height: 3px; background: var(--gray-300); margin-top: 28px; border-radius: 2px; }

/* Services */
.services-section { padding: 80px 0; background: var(--white); }
.services-section h2 { text-align: center; font-size: 40px; font-weight: 800; color: var(--gray-900); margin-bottom: 48px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
/* Service Cards - TruGreen Protocol: 2px borders, defined shadows */
.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 2px solid var(--gray-200);
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-color: var(--accent);
}
.service-image { height: 160px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; }
.service-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-400);
}
.service-content { padding: 20px; }
.service-content h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.service-content p { font-size: 14px; color: var(--gray-500); margin-bottom: 12px; }
.service-link { font-size: 14px; font-weight: 600; color: var(--accent); }

/* Testimonials - TruGreen Protocol: cards with defined borders */
.testimonials { padding: 80px 0; background: var(--primary-darker); color: var(--white); }
.testimonials h2 { text-align: center; font-size: 40px; font-weight: 800; margin-bottom: 48px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-meta { flex: 1; }
.testimonial-meta strong { display: block; font-size: 16px; }
.testimonial-meta span { font-size: 13px; opacity: 0.7; }
.testimonial-stars { color: var(--accent); font-size: 14px; }
.testimonial-card > p { font-size: 15px; line-height: 1.7; opacity: 0.95; }

/* CTA Section */
.cta-section { padding: 80px 0; background: var(--gray-50); }
.cta-grid { display: grid; grid-template-columns: 1fr 440px; gap: 60px; align-items: start; }
.cta-content h2 { font-size: 48px; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; }
.cta-content > p { font-size: 18px; color: var(--gray-500); margin-bottom: 32px; }
.cta-options { display: flex; flex-direction: column; gap: 16px; }
/* CTA Options - TruGreen Protocol: 2px borders */
.cta-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 2px solid var(--gray-200);
  transition: all 0.2s ease;
}
.cta-option:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.option-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.option-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--gray-900); }
.option-text span { font-size: 14px; color: var(--gray-500); }
/* CTA Form Container - TruGreen Protocol: defined border for visual weight */
.cta-form {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  border: 2px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
/* Form Inputs - TruGreen Protocol: clear focus states */
.form-group input, .form-group select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  outline: none;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}
.form-note { text-align: center; font-size: 13px; color: var(--gray-500); margin-top: 16px; }

/* Footer - TruGreen Protocol: defined top border with brand color */
.footer {
  background: var(--gray-900);
  color: var(--white);
  border-top: 3px solid var(--accent);
}
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text span { color: var(--white); }
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.footer-phone { font-size: 20px; font-weight: 700; color: var(--accent); }
.footer-col h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.7); padding: 6px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ========================================
   PAGE HERO - Service & Area Pages
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  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;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

.breadcrumb span:last-child {
  color: var(--accent);
  font-weight: 600;
}

/* ========================================
   GALLERY SECTION - Photo Grids
   ======================================== */

.gallery-section {
  padding: 80px 0;
  background: var(--white);
}

.gallery-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.gallery-section > .container > p {
  text-align: center;
  font-size: 16px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 40px;
}

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

.gallery-grid .gallery-item {
  height: 250px;
}

.gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
}

/* ========================================
   FAQ SECTION - Accordion Style
   ======================================== */

.faq-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 40px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  padding: 20px 24px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
}

.faq-item h3::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq-item.active h3::after {
  transform: rotate(45deg);
}

.faq-item p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  padding: 0 24px 20px;
  margin: 0;
  display: none;
}

.faq-item.active p {
  display: block;
}

/* ========================================
   SECTION HEADER - Generic Headers
   ======================================== */

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

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   UTILITY BAR - Left Side
   ======================================== */

.utility-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Nav */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 1998;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90%;
  height: 100%;
  background: var(--white);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--gray-200); }
.mobile-close { font-size: 28px; color: var(--gray-500); }
.mobile-nav-body { flex: 1; overflow-y: auto; padding: 16px 0; }
.mobile-nav-body a { display: block; padding: 16px 24px; font-size: 16px; font-weight: 500; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.mobile-nav-footer { padding: 24px; border-top: 1px solid var(--gray-200); }

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  width: 100%;
  box-sizing: border-box;
}
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  min-width: 0;
}
.sticky-call { background: var(--accent); color: var(--white); }
.sticky-quote { background: var(--gray-900); color: var(--white); }
.sticky-btn svg { flex-shrink: 0; width: 20px; height: 20px; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 44px; }
  .showcase-layout { grid-template-columns: 1fr 1fr; gap: 40px; }
  .areas-layout { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-features { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-grid { display: block !important; }
  .cta-content { margin-bottom: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .utility-bar { display: none; }
  .main-nav, .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 70px; }

  .hero { padding: 80px 0 100px; min-height: 70vh; }
  .hero-content h1 { font-size: 32px; }
  .hero-centered { max-width: 100%; padding: 0 8px; }
  .contact-form .form-inline { flex-direction: column; align-items: stretch; }
  .contact-form input { width: 100%; }
  .contact-form .btn { width: 100%; }
  .hero-trust { gap: 8px; flex-wrap: wrap; }
  .trust-badge { padding: 8px 12px; font-size: 11px; }

  .work-showcase { padding: 60px 0; }
  .showcase-layout { display: block !important; }
  .showcase-content { margin-bottom: 32px; }
  .showcase-gallery { display: block !important; }
  .gallery-large { min-height: 240px; margin-bottom: 16px; }
  .gallery-column { display: flex; flex-direction: row; gap: 16px; }
  .gallery-column .gallery-item { flex: 1; height: 140px; }

  .why-pros { padding: 60px 0; }
  .why-layout { display: block !important; }
  .why-content { margin-bottom: 32px; }
  .why-features { display: block !important; }
  .feature-card { padding: 20px; margin-bottom: 16px; }

  .areas-highlight { padding: 60px 0; }
  .areas-layout { display: block !important; }
  .areas-map { margin-bottom: 32px; }
  .areas-cta { flex-direction: column; }
  .areas-cta .btn { width: 100%; }
  .areas-content h2 { font-size: 28px; }
  .process-timeline { flex-wrap: wrap; gap: 24px; }
  .process-connector { display: none; }
  .process-step { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }

  .showcase-content h2, .why-content h2, .process h2, .services-section h2, .testimonials h2 { font-size: 28px; }
  .cta-content h2 { font-size: 32px; }
  .form-row-2 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }

  /* Page Hero - Mobile */
  .page-hero { padding: 60px 0 40px; }
  .page-hero-content h1 { font-size: 32px; }
  .page-hero-content p { font-size: 16px; }
  .breadcrumb { font-size: 12px; flex-wrap: wrap; }

  /* Gallery Grid - Mobile */
  .gallery-section { padding: 60px 0; }
  .gallery-section h2 { font-size: 28px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-grid .gallery-item { height: 150px; }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; height: 200px; }

  /* FAQ Section - Mobile */
  .faq-section { padding: 60px 0; }
  .faq-section h2 { font-size: 28px; }
  .faq-item h3 { font-size: 15px; padding: 16px 20px; }
  .faq-item p { padding: 0 20px 16px; font-size: 14px; }

  /* Section Header - Mobile */
  .section-header h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; max-width: 100%; box-sizing: border-box; }
  .hero-content h1 { font-size: 30px; }
  .showcase-stat .stat-num { font-size: 32px; }
  .gallery-column { flex-direction: column; }
  .gallery-column .gallery-item { height: 160px; }
  .phone-cta { width: 100%; flex-wrap: wrap; justify-content: center; }
  .cta-option { flex-wrap: wrap; }
  .map-areas { justify-content: center; }
  .area-tag { font-size: 12px; padding: 8px 14px; }

  /* Page Hero - Small Mobile */
  .page-hero-content h1 { font-size: 28px; }
  .breadcrumb { gap: 4px; }

  /* Gallery Grid - Small Mobile */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item { height: 180px; }
  .gallery-grid .gallery-item:first-child { grid-column: span 1; height: 220px; }
}

/* Prevent horizontal scroll */
html {
  overflow-x: clip;
  overflow-y: auto;
}
body {
  overflow-x: clip;
  overflow-y: auto;
  width: 100%;
  max-width: 100%;
  position: relative;
}
.page-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
}
main, section, footer, header {
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}
.container {
  overflow-x: clip;
  max-width: 100%;
}
img, video, iframe, embed, object {
  max-width: 100%;
}
@media (max-width: 768px) {
  *, *::before, *::after {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  html, body {
    overflow-x: clip !important;
    overflow-y: auto !important;
  }
  .page-wrapper {
    overflow-x: clip !important;
    overflow-y: visible !important;
    width: 100%;
    max-width: 100%;
  }
  main, section {
    overflow-x: clip !important;
  }
}

/* ========================================
   SCROLL-TRIGGERED ANIMATIONS
   ======================================== */

/* Base animation class - elements start hidden and translate up */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in from left */
.animate-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in from right */
.animate-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in animation */
.animate-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ========================================
   STAGGERED ANIMATION DELAYS
   ======================================== */

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* ========================================
   ENHANCED HOVER EFFECTS
   ======================================== */

/* Service cards - lift up with enhanced shadow on hover */
.service-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Buttons - subtle scale and glow effect */
.btn {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
}

/* Gallery items - zoom image slightly on hover */
.gallery-item {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Feature cards - border color change with lift */
.feature-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.12);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--white);
  transition: background 0.3s ease, color 0.3s ease;
}

/* Testimonial cards hover effect */
.testimonial-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

/* Area tags hover enhancement */
.area-tag {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

/* ========================================
   HERO SECTION ANIMATIONS
   ======================================== */

/* Hero text fade in from bottom with stagger */
.hero-animate-text {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-animate-text.delay-1 { animation-delay: 0.1s; }
.hero-animate-text.delay-2 { animation-delay: 0.2s; }
.hero-animate-text.delay-3 { animation-delay: 0.3s; }
.hero-animate-text.delay-4 { animation-delay: 0.4s; }
.hero-animate-text.delay-5 { animation-delay: 0.5s; }

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust badges pop in with delay */
.hero-trust-animate {
  opacity: 0;
  transform: scale(0.8);
  animation: trustPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-trust-animate.delay-1 { animation-delay: 0.6s; }
.hero-trust-animate.delay-2 { animation-delay: 0.7s; }
.hero-trust-animate.delay-3 { animation-delay: 0.8s; }
.hero-trust-animate.delay-4 { animation-delay: 0.9s; }

@keyframes trustPopIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Form slide up animation */
.hero-form-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: formSlideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.4s;
}

@keyframes formSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   COUNTER NUMBER ANIMATION SETUP
   ======================================== */

.counter-animate {
  display: inline-block;
  min-width: 2ch;
}

.counter-animate.counting {
  animation: counterPulse 0.3s ease-out;
}

@keyframes counterPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Stats number glow effect when animated */
.stat-num.animated {
  text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
  transition: text-shadow 0.3s ease;
}

/* ========================================
   SMOOTH TRANSITIONS ON ALL INTERACTIVE ELEMENTS
   ======================================== */

a, button, input, select, textarea {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Links with underline animation */
.animated-link {
  position: relative;
  display: inline-block;
}

.animated-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.animated-link:hover::after {
  width: 100%;
}

/* Input focus animations */
.form-group input:focus,
.form-group select:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

/* ========================================
   PARALLAX-READY CLASSES
   ======================================== */

.parallax-bg {
  will-change: transform;
  transition: transform 0.1s linear;
}

.parallax-slow {
  --parallax-speed: 0.3;
}

.parallax-medium {
  --parallax-speed: 0.5;
}

.parallax-fast {
  --parallax-speed: 0.7;
}

/* Parallax container setup */
.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  will-change: transform;
}

/* ========================================
   PULSE ANIMATION FOR CTA BUTTONS
   ======================================== */

.btn-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(249, 115, 22, 0);
  }
}

/* Subtle pulse for primary CTA */
.btn-primary.btn-cta {
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
  }
  50% {
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
  }
}

/* Glow ring animation */
.btn-glow {
  position: relative;
  overflow: visible;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent), var(--accent-dark), var(--accent));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
  opacity: 1;
  animation: glowRotate 2s linear infinite;
}

@keyframes glowRotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

/* ========================================
   ADDITIONAL ANIMATION UTILITIES
   ======================================== */

/* Fade in animation */
.fade-in {
  animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Slide up animation */
.slide-up {
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bounce in animation */
.bounce-in {
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Shake animation for attention */
.shake {
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-3px); }
  40%, 60% { transform: translateX(3px); }
}

/* Float animation for decorative elements */
.float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ========================================
   REDUCED MOTION ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll,
  .animate-fade-left,
  .animate-fade-right,
  .animate-scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-animate-text,
  .hero-trust-animate,
  .hero-form-animate {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .btn-pulse,
  .btn-primary.btn-cta,
  .float {
    animation: none;
  }

  .parallax-bg,
  .parallax-layer {
    transform: none !important;
  }
}
