/* Beyond Clear Land Service - Modern Design */
/* Brand Color: Kubota Orange */

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

:root {
  /* Kubota Orange Brand Colors */
  --primary: #F37021;
  --primary-dark: #D85D15;
  --primary-darker: #B94D0F;
  --primary-light: #FF8A47;
  --accent: #F37021;
  --accent-dark: #D85D15;
  --accent-light: #FF8A47;

  /* Dark/Neutral Palette */
  --dark: #1a1a1a;
  --dark-800: #262626;
  --dark-700: #333333;

  --white: #fff;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #6b6b6b;
  --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: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: 2px solid var(--primary);
  box-shadow: 0 2px 4px rgba(243, 112, 33, 0.2);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(243, 112, 33, 0.4);
}
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); 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); }
.utility-nav a:hover { color: var(--primary); }

/* Header */
.header {
  background: var(--gray-900);
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 90px;
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text span { font-size: 20px; font-weight: 800; color: var(--white); }
.logo-text small { font-size: 12px; font-weight: 500; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav > a {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.main-nav > a:hover { color: var(--primary); }
.main-nav > a.active { color: var(--primary); }

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

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

/* 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-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.7) 100%);
}
.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(243, 112, 33, 0.2);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(243, 112, 33, 0.3);
}
.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(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, #fbbf24 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content > p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.6; }
.hero-location {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

/* Hero Form */
.hero-form {
  margin-bottom: 32px;
}
.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(243, 112, 33, 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.75); }

/* Trust Badges */
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.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(--primary);
  transform: translateY(-2px);
}
.trust-badge svg { color: var(--primary); flex-shrink: 0; }

/* Marquee Bar */
.marquee-bar {
  background: var(--dark);
  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;
}
.marquee-item::before {
  content: "★ ";
  color: var(--primary);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section Tag */
.section-tag {
  display: inline-block;
  background: rgba(243, 112, 33, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  border: 2px solid rgba(243, 112, 33, 0.3);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* 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;
}
.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(--primary); 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-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);
}

/* 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(243, 112, 33, 0.2);
  border-bottom: 1px solid rgba(243, 112, 33, 0.2);
}
.areas-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.6;
}
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.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(--primary);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
}
.map-areas { display: flex; flex-wrap: wrap; gap: 10px; }
.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(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.area-more {
  background: var(--primary);
  border-color: var(--primary);
}

.areas-content .section-tag {
  background: rgba(243, 112, 33, 0.15);
  color: var(--primary);
  border: 1px solid rgba(243, 112, 33, 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 Choose Us */
.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(--primary); box-shadow: 0 6px 30px rgba(243, 112, 33, 0.15); }
.phone-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  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-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(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(243, 112, 33, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.2s;
}
.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 Section */
.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(--primary);
  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(--primary-dark);
  box-shadow: 0 4px 12px rgba(243, 112, 33, 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 Section */
.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(3, 1fr); gap: 24px; }
.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(--primary);
}
.service-image { height: 180px; 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: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  color: var(--gray-400);
  font-size: 48px;
}
.service-content { padding: 24px; }
.service-content h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.service-content p { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.6; }
.service-link { font-size: 14px; font-weight: 600; color: var(--primary); }

/* Testimonials */
.testimonials { padding: 80px 0; background: var(--dark); 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);
  backdrop-filter: blur(10px);
  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);
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}
.testimonial-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(243, 112, 33, 0.15);
  border-radius: 50px;
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 16px;
}
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  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(--primary); 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-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(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.option-icon {
  width: 48px;
  height: 48px;
  background: rgba(243, 112, 33, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  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 {
  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-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  outline: none;
  background: var(--white);
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-note { text-align: center; font-size: 13px; color: var(--gray-500); margin-top: 16px; }

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  border-top: 3px solid var(--primary);
}
.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(--primary); }
.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-col a:hover { color: var(--primary); }
.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.75); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.75); }

.footer-local {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-local h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-regions .region strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.footer-regions .region span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Local Expertise Section */
.local-expertise {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.local-expertise-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}
.local-expertise-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}
.local-expertise-content p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
}
.local-expertise-content strong {
  color: var(--gray-800);
  font-weight: 600;
}
.local-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.stat-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--gray-200);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(243, 112, 33, 0.15);
}
.stat-card strong {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card span {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}

/* Page Hero */
.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 */
.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.8);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb span {
  color: rgba(255,255,255,0.7);
}
.breadcrumb span:last-child {
  color: var(--primary);
  font-weight: 600;
}

/* FAQ Section */
.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(--primary);
}
.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: '';
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F37021'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s;
}
.faq-item.active h3::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F37021'%3E%3Cpath d='M19 13H5v-2h14v2z'/%3E%3C/svg%3E");
}
.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;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.form-header {
  margin-bottom: 32px;
}
.form-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.form-header p {
  font-size: 15px;
  color: var(--gray-600);
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-card {
  background: var(--gray-900);
  padding: 32px;
  border-radius: 12px;
  color: var(--white);
}
.contact-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(243, 112, 33, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}
a.info-value:hover {
  color: var(--primary);
}
.hours-card {
  background: var(--gray-50);
  padding: 28px;
  border-radius: 12px;
  border: 2px solid var(--gray-200);
}
.hours-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.hours-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.hours-row .day {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}
.hours-row .time {
  font-size: 14px;
  color: var(--gray-600);
}

/* About Page Styles */
.about-story {
  padding: 80px 0;
  background: var(--white);
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
  line-height: 1.15;
}
.story-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.story-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  background: var(--gray-200);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-values {
  padding: 80px 0;
  background: var(--gray-50);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}
.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(243, 112, 33, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}
.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Mobile Navigation */
.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(--gray-900);
  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: 2px solid var(--primary);
  background: var(--gray-900);
}
.mobile-nav-header .logo-text span {
  font-size: 16px;
}
.mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 8px;
  transition: all 0.2s;
}
.mobile-close:hover {
  color: var(--primary);
  background: rgba(255,255,255,0.1);
}
.mobile-close svg {
  width: 24px;
  height: 24px;
}
.mobile-nav-body { flex: 1; overflow-y: auto; padding: 16px 0; background: var(--gray-800); }
.mobile-nav-body a { display: block; padding: 16px 24px; font-size: 16px; font-weight: 500; color: var(--white); border-bottom: 1px solid var(--gray-700); }
.mobile-nav-body a:hover { background: var(--gray-700); color: var(--primary); }
.mobile-nav-footer { padding: 24px; border-top: 2px solid var(--primary); background: var(--gray-900); }

/* 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%;
}
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
}
.sticky-call { background: var(--primary); color: var(--white); }
.sticky-quote { background: var(--gray-900); color: var(--white); }

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.contact-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--white);
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
.contact-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 28px 0;
}
.modal-header-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.modal-header-content p {
  font-size: 14px;
  color: var(--gray-500);
}
.modal-close {
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 20px;
  transition: all 0.2s ease;
}
.modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}
.modal-body {
  padding: 24px 28px 28px;
}
.modal-form .form-group {
  margin-bottom: 18px;
}
.modal-footer-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 16px;
}
.modal-phone-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--gray-200);
  font-size: 14px;
  color: var(--gray-600);
}
.modal-phone-cta a {
  color: var(--primary);
  font-weight: 600;
}

/* Animations */
.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);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* 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; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-grid { display: block; }
  .cta-content { margin-bottom: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .story-layout { grid-template-columns: 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; }

  .header { min-height: 75px; padding: 10px 0; }

  .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; }
  .showcase-content { margin-bottom: 32px; }
  .showcase-gallery { display: block; }
  .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; }
  .why-content { margin-bottom: 32px; }
  .why-features { display: block; }
  .feature-card { padding: 20px; margin-bottom: 16px; }

  .areas-highlight { padding: 60px 0; }
  .areas-layout { display: block; }
  .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; }
  .footer-regions { grid-template-columns: 1fr; gap: 20px; }

  .page-hero { padding: 60px 0 40px; }
  .page-hero-content h1 { font-size: 32px; }

  .local-stats { grid-template-columns: 1fr; gap: 16px; }
  .stat-card strong { font-size: 36px; }
  .local-expertise-content h2 { font-size: 28px; }

  .values-grid { grid-template-columns: 1fr; }
  .story-content h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .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-content h1 { font-size: 28px; }
  .stat-card strong { font-size: 32px; }
}

/* Prevent horizontal scroll */
html, body {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

/* Services Full Grid */
.services-section-full {
  padding: 80px 0;
  background: var(--gray-50);
}
.services-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card-full {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  gap: 24px;
  transition: all 0.3s ease;
}
.service-card-full:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(243, 112, 33, 0.15);
}
.service-icon-lg {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-lg svg {
  color: var(--white);
}
.service-card-full h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.service-card-full p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.service-link svg {
  transition: transform 0.2s;
}
.service-card-full:hover .service-link svg {
  transform: translateX(4px);
}

/* Service Detail Page */
.service-detail {
  padding: 80px 0;
  background: var(--white);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.service-detail-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.2;
}
.service-detail-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 32px 0 16px;
}
.service-detail-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.service-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--gray-700);
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: 12px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
}
.feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Service Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.sidebar-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.sidebar-phone {
  text-align: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.sidebar-phone span {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.sidebar-phone a {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.area-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.area-list li:last-child {
  border-bottom: none;
}
.sidebar-card.highlight {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  border-color: var(--gray-800);
}
.sidebar-card.highlight h4 {
  color: var(--white);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F37021'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Related Services */
.related-services {
  padding: 60px 0;
  background: var(--gray-50);
}
.related-services h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 32px;
  text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.related-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(243, 112, 33, 0.15);
}
.related-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.related-card p {
  font-size: 14px;
  color: var(--gray-600);
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.benefit-item {
  text-align: center;
  padding: 24px;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.benefit-icon svg {
  color: var(--white);
}
.benefit-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.benefit-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Areas Section */
.areas-section {
  padding: 80px 0;
  background: var(--white);
}
.areas-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}
.areas-intro h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.areas-intro p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
}
.areas-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.area-region h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}
.area-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.area-card {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}
.area-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 112, 33, 0.1);
}
.area-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.area-card > p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 16px;
}
.area-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.area-services li {
  font-size: 11px;
  font-weight: 500;
  color: var(--primary);
  background: rgba(243, 112, 33, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}
.areas-note {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  border-radius: 16px;
  text-align: center;
}
.areas-note h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.areas-note p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

/* Services Quick Links */
.services-quick {
  padding: 60px 0;
  background: var(--gray-50);
}
.services-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.service-quick-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.service-quick-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 112, 33, 0.1);
}
.service-quick-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.service-quick-card p {
  font-size: 13px;
  color: var(--gray-600);
}

/* Additional stagger animations */
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Responsive for new components */
@media (max-width: 1024px) {
  .services-grid-full { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .area-cards { grid-template-columns: repeat(2, 1fr); }
  .services-quick-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .service-card-full { flex-direction: column; text-align: center; }
  .service-icon-lg { margin: 0 auto; }
  .service-features { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .area-cards { grid-template-columns: 1fr; }
  .services-quick-grid { grid-template-columns: 1fr; }
  .areas-intro h2 { font-size: 28px; }
  .service-detail-content h2 { font-size: 26px; }
}

/* Reduced motion */
@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 {
    opacity: 1;
    transform: none;
  }
}
