/* ========================================
   TOPOGRAPHIC TRANSFORMATION DESIGN SYSTEM
   Land Clearing - Dublin, GA
   Combines surveyor precision + before/after transformation
   ======================================== */

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  /* Colors - Overgrown to Cleared Spectrum */
  --forest-dark:      #0d1f15;  /* Dense overgrowth */
  --forest-mid:       #2d5a45;  /* Mid forest */
  --surveyor-orange:  #ff5500;  /* Technical action */
  --cleared-tan:      #b86f4f;  /* Cleared earth */
  --earth-brown:      #3d2817;  /* Rich soil */
  --cream:            #faf8f3;  /* Clean background */
  --sky-blue:         #a8c5dd;  /* Cleared sky accent */
  --gray-text:        #4a4a4a;  /* Body text */
  --gray-border:      #d4d4d4;  /* Borders */

  /* Base colors */
  --white:            #ffffff;
  --black:            #000000;

  /* Forest elevation gradient steps (service card progression) */
  --forest-step-1:    #1a2e20;
  --forest-step-2:    #3d6b55;
  --forest-step-3:    #4d7b60;
  --forest-step-4:    #6d8b70;
  --forest-step-5:    #8d9b80;
  --forest-step-6:    #a39785;

  /* UI utility colors */
  --chat-online:      #4ade80;  /* Online indicator dot */
  --gray-light:       #f1f1f1;  /* Scrollbar track */

  /* CTA green (phone/call buttons) */
  --cta-green:        #2ECC71;
  --cta-green-dark:   #27AE60;
  --cta-green-darker: #229954;
  --cta-green-alpha-50: rgba(46, 204, 113, 0.5);
  --cta-green-alpha-40: rgba(46, 204, 113, 0.4);
  --cta-green-alpha-30: rgba(46, 204, 113, 0.3);
  --cta-green-alpha-20: rgba(46, 204, 113, 0.2);
  --cta-green-alpha-10: rgba(46, 204, 113, 0.1);

  /* Opacity values for reusable transparent colors */
  --orange-alpha-40:  rgba(255, 85, 0, 0.4);
  --orange-alpha-30:  rgba(255, 85, 0, 0.3);
  --orange-alpha-20:  rgba(255, 85, 0, 0.2);
  --orange-alpha-15:  rgba(255, 85, 0, 0.15);
  --orange-alpha-10:  rgba(255, 85, 0, 0.1);
  --orange-alpha-08:  rgba(255, 85, 0, 0.08);
  --orange-alpha-05:  rgba(255, 85, 0, 0.05);
  --orange-alpha-02:  rgba(255, 85, 0, 0.02);

  --white-alpha-98:   rgba(255, 255, 255, 0.98);
  --white-alpha-95:   rgba(255, 255, 255, 0.95);
  --white-alpha-90:   rgba(255, 255, 255, 0.9);
  --white-alpha-85:   rgba(255, 255, 255, 0.85);
  --white-alpha-80:   rgba(255, 255, 255, 0.8);
  --white-alpha-40:   rgba(255, 255, 255, 0.4);
  --white-alpha-15:   rgba(255, 255, 255, 0.15);
  --white-alpha-12:   rgba(255, 255, 255, 0.12);
  --white-alpha-08:   rgba(255, 255, 255, 0.08);
  --white-alpha-05:   rgba(255, 255, 255, 0.05);
  --white-alpha-02:   rgba(255, 255, 255, 0.02);

  --black-alpha-30:   rgba(0, 0, 0, 0.3);
  --black-alpha-20:   rgba(0, 0, 0, 0.2);
  --black-alpha-15:   rgba(0, 0, 0, 0.15);
  --black-alpha-10:   rgba(0, 0, 0, 0.1);
  --black-alpha-08:   rgba(0, 0, 0, 0.08);
  --black-alpha-05:   rgba(0, 0, 0, 0.05);
  --black-alpha-03:   rgba(0, 0, 0, 0.03);

  /* Gradients */
  --gradient-transform: linear-gradient(135deg, var(--forest-dark) 0%, var(--cleared-tan) 100%);
  --gradient-terrain: linear-gradient(180deg, var(--forest-mid) 0%, var(--earth-brown) 100%);
  --gradient-orange: linear-gradient(135deg, var(--surveyor-orange), var(--cleared-tan));
}

/* ========================================
   TYPOGRAPHY UTILITIES
   ======================================== */
.font-stretched {
  letter-spacing: 0.25em !important;
}

.font-compressed {
  letter-spacing: -0.02em !important;
}

/* ========================================
   SURVEYOR DETAILS - Distance Markers & Compass
   ======================================== */
.distance-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 80px auto;
  max-width: 1200px;
  opacity: 0.4;
}

.distance-marker::before,
.distance-marker::after {
  content: '';
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--cleared-tan) 0px,
    var(--cleared-tan) 10px,
    transparent 10px,
    transparent 20px
  );
}

.distance-marker span {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cleared-tan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Compass Rose (Footer decoration) */
.compass-rose {
  width: 60px;
  height: 60px;
  position: relative;
  margin: 0 auto 30px;
}

.compass-rose::before,
.compass-rose::after {
  content: '';
  position: absolute;
  background: var(--surveyor-orange);
}

.compass-rose::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.compass-rose::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.compass-rose span {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--surveyor-orange);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.compass-rose span:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -10px); }
.compass-rose span:nth-child(2) { bottom: 0; left: 50%; transform: translate(-50%, 10px) rotate(180deg); }
.compass-rose span:nth-child(3) { left: 0; top: 50%; transform: translate(-10px, -50%) rotate(-90deg); }
.compass-rose span:nth-child(4) { right: 0; top: 50%; transform: translate(10px, -50%) rotate(90deg); }

/* ========================================
   RESET & BASE
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-text);
  background: var(--cream);
  overflow-x: hidden;
  /* Safe area support for iPhone notch/dynamic island */
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  color: var(--forest-dark);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

a {
  text-decoration: none;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--surveyor-orange);
  outline-offset: 3px;
}

/* ========================================
   CONTEXTUAL CONTENT LINKS
   Links to related services embedded in body paragraphs
   ======================================== */
p a[href^="http"],
.faq-item p a[href^="http"],
.message-content a[href^="http"] {
  color: var(--surveyor-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

p a[href^="http"]:hover,
.faq-item p a[href^="http"]:hover,
.message-content a[href^="http"]:hover {
  color: var(--cleared-tan);
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ========================================
   SKIP LINK (ACCESSIBILITY)
   ======================================== */
.skip-link {
  position: fixed;
  top: -100px;
  left: 0;
  background: var(--surveyor-orange);
  color: #fff;
  padding: 12px 24px;
  z-index: 9999;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

@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,
  .hero-card {
    animation: none !important;
    transition: none !important;
  }
}

/* ========================================
   CONTOUR LINE PATTERN (REUSABLE)
   ======================================== */
.contour-bg {
  position: relative;
  overflow: hidden;
}

.contour-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(0,0,0,0.03) 80px,
      rgba(0,0,0,0.03) 82px
    );
  pointer-events: none;
  z-index: 1;
}

/* ========================================
   HEADER - Technical Surveyor Style
   ======================================== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 998;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 3px solid var(--surveyor-orange);
  /* Safe area support for iPhone notch/dynamic island */
  padding-top: env(safe-area-inset-top);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--forest-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--surveyor-orange);
  border-radius: 50%;
  box-shadow:
    0 0 0 3px rgba(232, 93, 4, 0.2),
    0 0 0 6px rgba(232, 93, 4, 0.1);
}

.logo span {
  color: var(--surveyor-orange);
}

.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.main-nav a {
  color: var(--forest-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--surveyor-orange);
  transition: width 0.3s;
}

.main-nav a:hover {
  color: var(--surveyor-orange);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--surveyor-orange);
  color: #fff;
  padding: 12px 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.nav-cta:hover {
  background: var(--earth-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.3);
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--forest-dark);
  transition: all 0.3s;
}

/* ========================================
   HERO - Diagonal Split Transformation
   ======================================== */
.hero {
  position: relative;
  min-height: 680px;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Diagonal split - overgrown to cleared */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 90, 69, 0.6) 0%, rgba(184, 111, 79, 0.5) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

/* Contour lines overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.02) 60px,
      rgba(255,255,255,0.02) 62px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.02) 60px,
      rgba(255,255,255,0.02) 62px
    );
  z-index: 3;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 1;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 32px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.hero-eyebrow {
  color: var(--surveyor-orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--surveyor-orange);
}

.hero-eyebrow::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--surveyor-orange);
  border-radius: 50%;
}

.hero h1 {
  font-size: 5rem;
  color: #fff;
  margin-bottom: 28px;
  line-height: 0.9;
  position: relative;
}

.hero h1 .highlight {
  color: var(--surveyor-orange);
  display: block;
  font-size: 5.5rem;
  margin-top: 12px;
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 120px;
  height: 4px;
  background: var(--surveyor-orange);
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 400;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--surveyor-orange);
  color: #fff;
  padding: 18px 38px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  transition: all 0.3s;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--earth-brown);
  transition: left 0.3s;
  z-index: 0;
}

.btn-hero-primary:hover::before {
  left: 0;
}

.btn-hero-primary span {
  position: relative;
  z-index: 1;
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  padding: 18px 38px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* Hero Visual - Survey Markers Grid */
.hero-visual {
  position: relative;
}

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

.survey-marker {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(232, 93, 4, 0.3);
  padding: 32px 24px;
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s;
}

.survey-marker:hover {
  border-color: var(--surveyor-orange);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}

.survey-marker::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 6px;
  height: 6px;
  background: var(--surveyor-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.2);
}

.marker-value {
  font-family: 'Anton', sans-serif;
  font-size: 2.8rem;
  color: var(--surveyor-orange);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}

.marker-label {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

/* ========================================
   SERVICES - Topographic Cards
   ======================================== */
.services-section {
  padding: 100px 32px;
  background: #fff;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 400px;
  background: var(--cream);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 70px;
  max-width: 800px;
}

.section-eyebrow {
  color: var(--surveyor-orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--surveyor-orange);
}

.section-header h2 {
  font-size: 3.8rem;
  margin-bottom: 24px;
  color: var(--forest-dark);
  line-height: 1;
}

.section-header h2 .highlight {
  color: var(--surveyor-orange);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ========================================
   UNIQUE SECTION HEADERS (Breaking Patterns)
   ======================================== */

/* Services Section Header - Left-Aligned with Line Accent */
.services-section .section-header {
  position: relative;
  text-align: left;
  max-width: 1400px;
  margin: 0 auto 80px;
}

.services-section .section-eyebrow {
  position: absolute;
  top: 0;
  right: 0;
}

.services-section .section-header h2 {
  font-size: 4.2rem;
  position: relative;
  padding-bottom: 24px;
}

.services-section .section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--surveyor-orange) 0px,
    var(--surveyor-orange) 10px,
    transparent 10px,
    transparent 20px
  );
}

.services-section .section-header p {
  columns: 2;
  column-gap: 40px;
  max-width: 900px;
  margin-top: 32px;
}

/* Why Choose Us Header - Staggered Split */
.why-section .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-section .section-eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}

.why-section .section-header h2 {
  font-size: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream);
}

.why-section .section-header h2 .line-1 {
  align-self: flex-start;
  margin-left: 20%;
}

.why-section .section-header h2 .line-2 {
  align-self: flex-end;
  margin-right: 20%;
}

.why-section .section-header h2::before,
.why-section .section-header h2::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surveyor-orange);
  box-shadow:
    0 0 0 3px rgba(255, 85, 0, 0.2),
    0 0 0 6px rgba(255, 85, 0, 0.1);
  position: absolute;
}

.why-section .section-header h2::before {
  left: calc(20% - 40px);
  top: 20px;
}

.why-section .section-header h2::after {
  right: calc(20% - 40px);
  bottom: 20px;
}

/* FAQ Section Header - Compressed with Number */
.faq-section .section-header {
  position: relative;
  padding: 40px;
  background:
    linear-gradient(var(--gray-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-border) 1px, transparent 1px);
  background-size: 30px 30px;
  margin-bottom: 60px;
}

.faq-section .section-eyebrow {
  font-size: 1rem;
  margin-bottom: 20px;
}

.faq-section .section-eyebrow::before {
  content: '08';
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  color: var(--surveyor-orange);
  margin-right: 16px;
  line-height: 1;
}

.faq-section .section-header h2 {
  font-size: 3.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.faq-section .section-header p {
  position: absolute;
  top: 40px;
  right: 40px;
  max-width: 320px;
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.7;
}

/* Contact Section Header - Rotated Treatment */
.contact-section .section-header {
  position: relative;
  text-align: left;
  margin-bottom: 60px;
}

.contact-section .section-header h2 {
  transform: rotate(-2deg);
  transform-origin: left top;
  font-size: 4rem;
  margin-bottom: 40px;
  position: relative;
}

.contact-section .section-header p {
  max-width: 600px;
  opacity: 0.8;
}

.contact-section .section-header::before,
.contact-section .section-header::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px solid var(--surveyor-orange);
}

.contact-section .section-header::before {
  top: -20px;
  left: -20px;
  border-right: none;
  border-bottom: none;
}

.contact-section .section-header::after {
  bottom: -20px;
  right: -20px;
  border-left: none;
  border-top: none;
}

/* Services Grid - Asymmetric Masonry */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

/* ZONE 1: Cards 1-2 - Horizontal Layout */
.service-card:nth-child(1),
.service-card:nth-child(2) {
  grid-column: span 6;
  display: flex;
  flex-direction: row;
  min-height: 280px;
}

.service-card:nth-child(1) .service-card-image,
.service-card:nth-child(2) .service-card-image {
  width: 40%;
  height: auto;
  flex-shrink: 0;
}

.service-card:nth-child(1) .service-card-content,
.service-card:nth-child(2) .service-card-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ZONE 2: Cards 3-5 - Vertical Layout (standard) */
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
}

/* ZONE 3: Cards 6-8 - Compact Layout */
.service-card:nth-child(6),
.service-card:nth-child(7),
.service-card:nth-child(8) {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
}

.service-card:nth-child(6) .service-card-image,
.service-card:nth-child(7) .service-card-image,
.service-card:nth-child(8) .service-card-image {
  height: 140px;
}

.service-card:nth-child(6) .service-card-content,
.service-card:nth-child(7) .service-card-content,
.service-card:nth-child(8) .service-card-content {
  padding: 24px 20px;
}

.service-card:nth-child(6) .service-card-image svg,
.service-card:nth-child(7) .service-card-image svg,
.service-card:nth-child(8) .service-card-image svg {
  width: 60px;
  height: 60px;
}

/* Contour lines on card hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(232, 93, 4, 0.05) 40px,
      rgba(232, 93, 4, 0.05) 42px
    );
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--surveyor-orange);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Progressive Elevation Gradient - Dark to Light */
.service-card:nth-child(1) .service-card-image {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-step-1) 100%);
}
.service-card:nth-child(2) .service-card-image {
  background: linear-gradient(135deg, var(--forest-step-1) 0%, var(--forest-mid) 100%);
}
.service-card:nth-child(3) .service-card-image {
  background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest-step-2) 100%);
}
.service-card:nth-child(4) .service-card-image {
  background: linear-gradient(135deg, var(--forest-step-2) 0%, var(--forest-step-3) 100%);
}
.service-card:nth-child(5) .service-card-image {
  background: linear-gradient(135deg, var(--forest-step-3) 0%, var(--forest-step-4) 100%);
}
.service-card:nth-child(6) .service-card-image {
  background: linear-gradient(135deg, var(--forest-step-4) 0%, var(--forest-step-5) 100%);
}
.service-card:nth-child(7) .service-card-image {
  background: linear-gradient(135deg, var(--forest-step-5) 0%, var(--forest-step-6) 100%);
}
.service-card:nth-child(8) .service-card-image {
  background: linear-gradient(135deg, var(--forest-step-6) 0%, var(--cleared-tan) 100%);
}

/* Elevation Markers */
.elevation-marker {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sky-blue);
  background: rgba(168, 197, 221, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  letter-spacing: 0.15em;
  z-index: 3;
}

.service-card-image svg {
  width: 80px;
  height: 80px;
  fill: var(--surveyor-orange);
  position: relative;
  z-index: 2;
  transition: transform 0.4s;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.4s;
}

.service-card:hover .service-card-image svg {
  transform: scale(1.1);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

/* Grid pattern on image area */
.service-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(232, 93, 4, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 93, 4, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: 1;
}

.service-card-content {
  padding: 32px 28px;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--forest-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-card p {
  color: var(--gray-text);
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 0.98rem;
}

.service-link {
  color: var(--surveyor-orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.service-link::after {
  content: '→';
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.service-link:hover {
  gap: 14px;
}

.service-link:hover::after {
  transform: translateX(4px);
}

/* ========================================
   WHY CHOOSE US - Elevation Steps
   ======================================== */
.why-section {
  padding: 100px 32px;
  background: var(--forest-dark);
  position: relative;
  overflow: hidden;
}

/* Topographic circle patterns */
.why-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(184, 111, 79, 0.08);
  z-index: 0;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 100px solid rgba(168, 197, 221, 0.06);
  z-index: 0;
}

.why-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-header .section-eyebrow {
  color: var(--surveyor-orange);
}

.why-header .section-eyebrow::before {
  background: var(--surveyor-orange);
}

.why-header h2 {
  font-size: 3.8rem;
  color: #fff;
  line-height: 1;
}

.why-header h2 .highlight {
  color: var(--surveyor-orange);
}

.why-header p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 24px auto 0;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.why-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(232, 93, 4, 0.2);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.why-item::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 8px;
  height: 8px;
  background: var(--surveyor-orange);
  border-radius: 50%;
  box-shadow:
    0 0 0 4px rgba(232, 93, 4, 0.2),
    0 0 0 8px rgba(232, 93, 4, 0.1);
}

.why-item:hover {
  border-color: var(--surveyor-orange);
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
}

.why-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  fill: var(--surveyor-orange);
}

.why-item h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.why-item p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-size: 0.98rem;
}

/* ========================================
   FAQ - Survey Document Style
   ======================================== */
.faq-section {
  padding: 100px 32px;
  background: var(--cream);
  position: relative;
}

/* Grid paper background */
.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(26, 61, 46, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 61, 46, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
  z-index: 0;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-header {
  text-align: center;
  margin-bottom: 70px;
}

.faq-header h2 {
  font-size: 3.8rem;
  line-height: 1;
}

.faq-header h2 .highlight {
  color: var(--surveyor-orange);
}

.faq-list {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-left: 4px solid var(--gray-border);
  transition: border-color 0.3s;
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
}

.faq-item[open] {
  border-left-color: var(--surveyor-orange);
}

.faq-item summary {
  padding: 28px 32px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--forest-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.3s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 2rem;
  font-weight: 400;
  color: var(--surveyor-orange);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 20px;
  font-family: 'Anton', sans-serif;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--cream);
}

.faq-item p {
  padding: 0 32px 32px 32px;
  color: var(--gray-text);
  line-height: 1.9;
  font-size: 1rem;
}

/* ========================================
   CONTACT FORM - Survey Data Collection
   ======================================== */
.contact-section {
  padding: 100px 32px;
  background: #fff;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: var(--forest-dark);
  z-index: 0;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 3.8rem;
  margin-bottom: 20px;
  line-height: 1;
}

.contact-header h2 .highlight {
  color: var(--surveyor-orange);
}

.contact-header p {
  font-size: 1.1rem;
  color: var(--gray-text);
}

.contact-form {
  background: #fff;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

/* Survey marker corner accent */
.contact-form::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  width: 12px;
  height: 12px;
  background: var(--surveyor-orange);
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(232, 93, 4, 0.15),
    0 0 0 12px rgba(232, 93, 4, 0.08);
  z-index: 1;
}

/* Grid background */
.contact-form::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(232, 93, 4, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 93, 4, 0.02) 1px, transparent 1px);
  background-size: 25px 25px;
  pointer-events: none;
  z-index: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--forest-dark);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--gray-border);
  background: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--surveyor-orange);
  background: #fff;
}

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

.form-submit-btn {
  width: 100%;
  background: var(--surveyor-orange);
  color: #fff;
  padding: 18px 40px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.08em;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  z-index: 1;
}

.form-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: var(--earth-brown);
  border-radius: 50%;
  transition: transform 0.5s;
  z-index: -1;
}

.form-submit-btn:hover::before {
  transform: translate(-50%, -50%) scale(2.5);
}

.form-submit-btn span {
  position: relative;
  z-index: 1;
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: form-spin 0.7s linear infinite;
  margin-right: 10px;
  vertical-align: middle;
}

@keyframes form-spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   MAPS SECTION
   ======================================== */
.maps-section {
  padding: 100px 32px;
  background: var(--cream);
}

.maps-header {
  text-align: center;
  margin-bottom: 60px;
}

.maps-header h2 {
  font-size: 3.8rem;
  line-height: 1;
}

.maps-header h2 .highlight {
  color: var(--surveyor-orange);
}

.maps-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Survey corner markers */
.maps-container::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border-left: 4px solid var(--surveyor-orange);
  border-top: 4px solid var(--surveyor-orange);
  z-index: 1;
}

.maps-container::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-right: 4px solid var(--surveyor-orange);
  border-bottom: 4px solid var(--surveyor-orange);
  z-index: 1;
}

.maps-container iframe {
  border-radius: 0;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.9);
  padding: 80px 32px 32px;
  position: relative;
}

/* Surveyor orange top border */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--surveyor-orange);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--surveyor-orange);
  border-radius: 50%;
  box-shadow:
    0 0 0 4px rgba(232, 93, 4, 0.2),
    0 0 0 8px rgba(232, 93, 4, 0.1);
}

.footer-logo span {
  color: var(--surveyor-orange);
}

.footer-section p {
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-section h4 {
  color: var(--surveyor-orange);
  margin-bottom: 20px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  font-weight: 500;
}

.footer-section a:hover {
  color: var(--surveyor-orange);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--surveyor-orange);
  margin: 0 10px;
}

/* ========================================
   MOBILE BOTTOM TOOLBAR
   ======================================== */
.mobile-lead-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 999;
  padding: 12px;
  border-top: 3px solid var(--surveyor-orange);
  /* Safe area support for iPhone home indicator */
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

.mlb-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.mlb-container a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--forest-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex: 1;
  padding: 8px;
  transition: color 0.3s;
}

.mlb-container a:hover {
  color: var(--surveyor-orange);
}
.mlb-chat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--forest-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex: 1;
  padding: 8px;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.mlb-chat-btn:hover {
  color: var(--surveyor-orange);
}
.breadcrumb-nav {
  background: var(--primary-dark);
  padding: 10px 32px;
}
.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb-list li {
  color: var(--gray-light);
}
.breadcrumb-list li + li::before {
  content: "›";
  margin-right: 8px;
  color: var(--accent);
}
.breadcrumb-list a {
  color: var(--accent);
  text-decoration: none;
}
.breadcrumb-list a:hover {
  text-decoration: underline;
}

.mlb-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero h1 .highlight {
    font-size: 4.2rem;
  }

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

  .service-card:nth-child(1),
  .service-card:nth-child(2) { grid-column: span 3; }

  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6),
  .service-card:nth-child(7),
  .service-card:nth-child(8) { grid-column: span 3; }

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

@media (max-width: 768px) {
  .header-container {
    padding: 16px 24px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    gap: 20px;
    border-top: 2px solid var(--surveyor-orange);
    z-index: 999;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 550px;
  }

  .hero-container {
    padding: 60px 24px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero h1 .highlight {
    font-size: 3.2rem;
  }

  .survey-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .survey-marker {
    padding: 24px 20px;
  }

  .marker-value {
    font-size: 2.2rem;
  }

  .services-section,
  .why-section,
  .faq-section,
  .contact-section,
  .maps-section {
    padding: 70px 24px;
  }

  .container,
  .why-container,
  .faq-container,
  .contact-container {
    padding: 0;
  }

  .section-header,
  .why-header,
  .faq-header,
  .contact-header,
  .maps-header {
    margin-bottom: 50px;
  }

  .section-header h2,
  .why-header h2,
  .faq-header h2,
  .contact-header h2,
  .maps-header h2 {
    font-size: 2.5rem;
  }

  .section-header p,
  .why-header p,
  .contact-header p {
    font-size: 1rem;
  }

  .services-grid .service-card {
    grid-column: span 12 !important;
  }

  .service-card-image {
    height: 180px;
  }

  .service-card-image svg {
    width: 60px;
    height: 60px;
  }

  .service-card-content {
    padding: 28px 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-item {
    padding: 32px 24px;
  }

  .faq-item summary {
    padding: 24px 24px;
    font-size: 0.95rem;
  }

  .faq-item p {
    padding: 0 24px 24px 24px;
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

  /* Services cards - stack vertically on mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6),
  .service-card:nth-child(7),
  .service-card:nth-child(8) {
    grid-column: span 1;
    flex-direction: column;
  }

  .service-card:nth-child(1) .service-card-image,
  .service-card:nth-child(2) .service-card-image {
    width: 100%;
    height: 200px;
  }

  .service-card:nth-child(1) .service-card-content,
  .service-card:nth-child(2) .service-card-content {
    width: 100%;
  }

  /* Section headers on mobile */
  .services-section .section-header p {
    columns: 1;
  }

  .services-section .section-header h2 {
    font-size: 2.8rem;
  }

  .why-section .section-header h2 .line-1,
  .why-section .section-header h2 .line-2 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    align-self: center !important;
  }

  .faq-section .section-header p {
    position: static;
    max-width: 100%;
    margin-top: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .mobile-lead-bar {
    display: block;
  }

  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }

  .contact-form {
    padding: 32px 24px;
  }

  .maps-container::before,
  .maps-container::after {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero-container {
    padding: 50px 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h1 .highlight {
    font-size: 2.6rem;
    margin-top: 8px;
  }

  .hero h1 .highlight::after {
    width: 80px;
    height: 3px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
  }

  .hero-eyebrow::before {
    width: 25px;
  }

  .survey-grid {
    gap: 12px;
  }

  .survey-marker {
    padding: 20px 16px;
  }

  .marker-value {
    font-size: 2rem;
  }

  .marker-label {
    font-size: 0.8rem;
  }

  .services-section,
  .why-section,
  .faq-section,
  .contact-section,
  .maps-section {
    padding: 60px 20px;
  }

  .section-header h2,
  .why-header h2,
  .faq-header h2,
  .contact-header h2,
  .maps-header h2 {
    font-size: 2rem;
  }

  .section-eyebrow {
    font-size: 0.75rem;
  }

  .section-eyebrow::before {
    width: 20px;
  }

  .service-card-content {
    padding: 24px 20px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .why-item {
    padding: 28px 20px;
  }

  .why-item h3 {
    font-size: 1.3rem;
  }

  .why-icon {
    width: 50px;
    height: 50px;
  }

  .faq-item summary {
    padding: 20px 20px;
    font-size: 0.9rem;
  }

  .faq-item summary::after {
    font-size: 1.5rem;
    margin-left: 12px;
  }

  .faq-item p {
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
  }

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

  .form-group label {
    font-size: 0.75rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .form-submit-btn {
    padding: 16px 32px;
    font-size: 0.9rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 16px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
    padding: 16px 32px;
  }

  .footer-content {
    padding: 0 20px;
  }

  .footer-logo {
    font-size: 1.6rem;
  }

  .footer-section h4 {
    font-size: 0.9rem;
  }

  .mlb-container a {
    font-size: 0.65rem;
  }

  .mlb-icon {
    width: 28px;
    height: 28px;
  }

  .maps-container::before,
  .maps-container::after {
    top: -12px;
    left: -12px;
    bottom: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
  }
}

/* ========================================
   iPhone 14 & Modern Smartphones (390-414px)
   Optimized for 390x844 viewport (iPhone 14/15)
   ======================================== */
@media (max-width: 414px) and (min-width: 360px) {
  /* Ensure minimum touch target sizes (44x44px minimum) */
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 12px;
  }

  .nav-toggle span {
    width: 24px;
  }

  /* Hero optimizations */
  .hero {
    min-height: 520px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero h1 .highlight {
    font-size: 2.8rem;
  }

  .hero-text {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  /* Button touch targets - ensure 44x44 minimum */
  .btn-hero-primary,
  .btn-hero-secondary {
    min-height: 48px;
    padding: 16px 28px;
    font-size: 0.9rem;
  }

  /* Survey markers - optimized grid for iPhone screen */
  .survey-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .survey-marker {
    padding: 22px 18px;
    min-height: 110px;
  }

  /* Form inputs - prevent zoom on iOS with 16px minimum */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents auto-zoom on iOS */
    padding: 14px 16px;
    min-height: 48px;
  }

  .form-group textarea {
    min-height: 140px;
  }

  .form-group label {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .form-submit-btn {
    min-height: 52px;
    padding: 18px 36px;
    font-size: 0.95rem;
  }

  /* FAQ touch targets */
  .faq-item summary {
    min-height: 64px;
    padding: 22px 20px;
    font-size: 0.92rem;
  }

  .faq-item summary::after {
    font-size: 1.6rem;
    min-width: 32px;
    text-align: center;
  }

  /* Service links - larger touch targets */
  .service-link {
    padding: 8px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Navigation links - minimum touch targets */
  .main-nav a {
    padding: 12px 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-cta {
    min-height: 48px;
    padding: 14px 24px;
  }

  /* Mobile lead bar - optimized for iPhone */
  .mlb-container a {
    min-height: 60px;
    min-width: 60px;
    padding: 10px;
  }

  .mlb-icon {
    width: 30px;
    height: 30px;
  }

  /* Section spacing optimizations */
  .services-section,
  .why-section,
  .faq-section,
  .contact-section,
  .maps-section {
    padding: 64px 20px;
  }

  /* Headings optimized for readability */
  .section-header h2,
  .why-header h2,
  .faq-header h2,
  .contact-header h2,
  .maps-header h2 {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  /* Service cards - optimized height */
  .service-card-image {
    height: 160px;
  }

  .service-card-image svg {
    width: 56px;
    height: 56px;
  }

  /* Contact form spacing */
  .contact-form {
    padding: 30px 20px;
  }

  .form-grid {
    gap: 20px;
  }

  /* Footer optimizations */
  .site-footer {
    padding: 60px 20px 24px;
  }

  .footer-content {
    gap: 36px;
  }
}

/* ========================================
   Landscape Orientation (Mobile Devices)
   Optimized for rotated iPhones & small tablets
   ======================================== */
@media (max-height: 500px) and (orientation: landscape) {
  /* Reduce vertical spacing in landscape */
  .hero {
    min-height: 400px;
  }

  .hero-container {
    padding: 40px 24px;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .hero h1 .highlight {
    font-size: 2.4rem;
    margin-top: 6px;
  }

  .hero-text {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    margin-bottom: 12px;
  }

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

  .survey-marker {
    padding: 16px 12px;
    min-height: 80px;
  }

  .marker-value {
    font-size: 1.6rem;
  }

  .marker-label {
    font-size: 0.7rem;
  }

  /* Compact sections in landscape */
  .services-section,
  .why-section,
  .faq-section,
  .contact-section,
  .maps-section {
    padding: 50px 24px;
  }

  .section-header,
  .why-header,
  .faq-header,
  .contact-header,
  .maps-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  /* Hide distance markers in landscape to save space */
  .distance-marker {
    margin: 40px auto;
  }

  /* Optimize chat widget for landscape */
  .chat-window {
    max-height: calc(100vh - 120px);
    height: calc(100vh - 120px);
  }

  /* Reduce form spacing */
  .contact-form {
    padding: 24px 20px;
  }

  .form-group textarea {
    min-height: 100px;
  }
}

/* ========================================
   High Resolution Displays (Retina)
   iPhone 14 has 3x pixel density
   ======================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Optimize for crisp rendering on high-DPI screens */
  .site-header {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Ensure SVG icons are crisp */
  svg {
    shape-rendering: geometricPrecision;
  }
}

/* ========================================
   CONTENT PROTECTION - MODE B
   ======================================== */

/* Disable text selection on content areas only */
h1, h2, h3, h4, h5, h6,
p, span, div, li, a,
.hero-text, .section-header,
.service-card, .why-item,
.faq-item, .footer-content {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Explicitly allow selection on form elements */
input, textarea, select,
input[type="text"],
input[type="email"],
input[type="tel"],
.chat-input,
.form-group input,
.form-group textarea,
.form-group select {
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
}

/* Content Protected Tooltip */
.content-protected-tooltip {
  position: fixed;
  background: var(--forest-dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 10000;
  box-shadow: 0 4px 20px var(--black-alpha-30);
  border: 2px solid var(--surveyor-orange);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  animation: tooltipFadeIn 0.3s ease-out;
}

.content-protected-tooltip::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 6px;
  height: 6px;
  background: var(--surveyor-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--orange-alpha-20);
}

.content-protected-tooltip.fade-out {
  animation: tooltipFadeOut 0.5s ease-out forwards;
}

@keyframes tooltipFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tooltipFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Service Cards Cascade */
@keyframes site-cascade-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: site-cascade-in 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }

/* Elevation Marker Pin Drop */
@keyframes site-pin-drop {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
  }
  60% {
    transform: translateY(4px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.elevation-marker {
  animation: site-pin-drop 0.5s ease-out backwards;
}

.service-card:nth-child(1) .elevation-marker { animation-delay: 0.2s; }
.service-card:nth-child(2) .elevation-marker { animation-delay: 0.3s; }
.service-card:nth-child(3) .elevation-marker { animation-delay: 0.4s; }
.service-card:nth-child(4) .elevation-marker { animation-delay: 0.5s; }
.service-card:nth-child(5) .elevation-marker { animation-delay: 0.6s; }
.service-card:nth-child(6) .elevation-marker { animation-delay: 0.7s; }
.service-card:nth-child(7) .elevation-marker { animation-delay: 0.8s; }
.service-card:nth-child(8) .elevation-marker { animation-delay: 0.9s; }

/* Heading Underline Draw */
@keyframes site-underline-draw {
  from {
    width: 0;
  }
  to {
    width: 200px;
  }
}

.services-section .section-header h2::after {
  animation: site-underline-draw 1s ease-out 0.5s backwards;
}

/* Distance Markers Fade In */
@keyframes site-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.4;
  }
}

.distance-marker {
  animation: site-fade-in 1s ease-out;
}

/* Compass Rose Spin-In */
@keyframes site-spin-in {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

.compass-rose {
  animation: site-spin-in 1s ease-out;
}

/* ========================================
   CHAT WIDGET STYLES
   ======================================== */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  font-family: 'Archivo', sans-serif;
  /* Safe area support for iPhone */
  bottom: max(20px, env(safe-area-inset-bottom));
  right: max(20px, env(safe-area-inset-right));
}

.chat-toggle {
  width: 60px;
  height: 60px;
  background: var(--gradient-orange);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--orange-alpha-40);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
}

.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 85, 0, 0.5);
}

.chat-toggle svg {
  fill: var(--white);
  transition: all 0.3s;
}

.chat-toggle .close-icon {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg);
}

.chat-widget.open .chat-toggle .chat-icon {
  opacity: 0;
  transform: rotate(90deg);
}

.chat-widget.open .chat-toggle .close-icon {
  opacity: 1;
  transform: rotate(0deg);
}

.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 550px;
  max-height: calc(100vh - 140px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px var(--black-alpha-20);
  display: none;
  flex-direction: column;
  overflow: hidden;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  box-sizing: border-box;
}

.chat-widget.open .chat-window {
  display: flex;
  animation: chatSlideIn 0.3s ease-out;
}

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

.chat-header {
  background: linear-gradient(135deg, var(--forest-dark), var(--forest-mid));
  padding: 20px;
  color: var(--white);
  position: relative;
}

.chat-header::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 8px;
  height: 8px;
  background: var(--surveyor-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--orange-alpha-20);
}

.chat-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: var(--orange-alpha-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-avatar svg {
  width: 24px;
  height: 24px;
  fill: var(--surveyor-orange);
}

.chat-title {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chat-status {
  font-size: 0.8rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--chat-online);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-message {
  display: flex;
  gap: 10px;
  animation: messageSlideIn 0.3s ease-out;
}

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

.message-content {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 8px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.bot-message .message-content {
  background: var(--white);
  border: 2px solid var(--gray-border);
  color: var(--gray-text);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.user-message {
  justify-content: flex-end;
}

.user-message .message-content {
  background: var(--gradient-orange);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.message-content p {
  margin: 0;
}

.message-content p + p {
  margin-top: 8px;
}

.chat-typing {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: 8px;
  width: fit-content;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.chat-typing.hidden {
  display: none;
}

.chat-typing span {
  width: 8px;
  height: 8px;
  background: var(--surveyor-orange);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite;
}

.chat-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
}

.chat-input-container {
  padding: 16px;
  background: var(--white);
  border-top: 2px solid var(--gray-border);
}

.chat-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.chat-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--gray-border);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.chat-input:focus {
  outline: none;
  border-color: var(--surveyor-orange);
}

.chat-send {
  width: 44px;
  height: 44px;
  background: var(--surveyor-orange);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.chat-send:hover {
  background: var(--cleared-tan);
  transform: scale(1.1);
}

.chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.chat-send svg {
  fill: var(--white);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .chat-widget {
    bottom: max(90px, calc(70px + env(safe-area-inset-bottom)));
    right: 12px;
    left: 12px;
  }

  .chat-window {
    width: 100%;
    right: 0;
    left: 0;
    height: calc(100vh - 200px);
    max-height: 500px;
    bottom: 70px;
  }

  .chat-toggle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    margin-left: auto;
  }
}

/* iPhone 14 and similar devices (390-414px) */
@media (max-width: 414px) {
  .chat-widget {
    bottom: max(85px, calc(65px + env(safe-area-inset-bottom)));
    right: 8px;
    left: 8px;
  }

  .chat-window {
    width: 100%;
    right: 0;
    left: 0;
    height: calc(100vh - 180px);
    max-height: 520px;
    bottom: 65px;
  }

  .chat-toggle {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }

  .chat-header {
    padding: 14px;
  }

  .chat-messages {
    padding: 14px;
    gap: 12px;
  }

  .chat-input-container {
    padding: 12px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }

  .chat-input {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px 14px;
  }

  .message-content {
    max-width: 85%;
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}

/* Scrollbar styling */
.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: var(--gray-light);
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--surveyor-orange);
  border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: var(--cleared-tan);
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .chat-widget {
    bottom: 80px;
    right: 8px;
    left: auto;
    max-width: 360px;
  }

  .chat-window {
    max-height: calc(100vh - 120px);
    height: calc(100vh - 120px);
    bottom: 60px;
    width: 360px;
  }

  .chat-header {
    padding: 10px 14px;
  }

  .chat-messages {
    padding: 10px;
  }

  .chat-input-container {
    padding: 8px;
  }

  .chat-toggle {
    width: 48px;
    height: 48px;
  }
}

/* Very small screens - extra compact */
@media (max-width: 360px) {
  .chat-widget {
    right: 4px;
    left: 4px;
  }

  .chat-window {
    width: 100%;
  }

  .chat-toggle {
    width: 48px;
    height: 48px;
  }
}

/* ========================================
   CLUSTER & RELATED SERVICE BLOCKS
   ======================================== */

.cluster-links {
  max-width: 860px;
  margin: 0 auto 2.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--surveyor-orange);
  border-radius: 0 6px 6px 0;
  background: var(--orange-alpha-05);
}
.cluster-links p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--gray-text);
  margin: 0;
}
.cluster-links a {
  color: var(--surveyor-orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.related-services-internal {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--orange-alpha-05);
  border-left: 3px solid var(--surveyor-orange);
  border-radius: 0 6px 6px 0;
}
.related-services-internal h3 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: var(--forest-dark);
}
.related-services-internal ul {
  margin: 0;
  padding-left: 1.25rem;
}
.related-services-internal li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--gray-text);
}
.related-services-internal a {
  color: var(--surveyor-orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.related-local-services {
  padding: 60px 32px;
  background: var(--forest-dark);
  color: var(--cream);
}
.related-local-services .container {
  max-width: 1000px;
  margin: 0 auto;
}
.related-local-services .section-eyebrow {
  display: block;
  margin-bottom: 0.5rem;
}
.related-local-services h2 {
  font-size: 2rem;
  margin: 0 0 2rem;
  color: var(--cream);
}
.related-local-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.related-local-card {
  background: var(--orange-alpha-08, rgba(255,85,0,0.08));
  border: 1px solid var(--orange-alpha-20, rgba(255,85,0,0.2));
  border-radius: 8px;
  padding: 1.5rem;
}
.related-local-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  color: var(--surveyor-orange);
}
.related-local-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--surveyor-orange);
  fill: none;
}
.related-local-card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--cream);
}
.related-local-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--white-alpha-80, rgba(255,255,255,0.8));
  margin: 0 0 1rem;
}
.related-local-card a {
  color: var(--surveyor-orange);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}
.related-local-card a:hover {
  text-decoration: underline;
}
