/* =============================================
   Royse City Junk Removal - Main Stylesheet
   roysecityjunkremoval.com
   ============================================= */

/* === CSS Variables === */
:root {
  --primary: #6CBE45;
  --primary-dark: #4d8e2c;
  --primary-light: #89d460;
  --primary-glow: rgba(108, 190, 69, 0.12);
  --dark: #0e1210;
  --dark-secondary: #181e16;
  --text: #2a3328;
  --text-light: #566052;
  --text-muted: #8a9e88;
  --white: #ffffff;
  --off-white: #f7fcf4;
  --light-bg: #f0f7eb;
  --border: #d2e8c4;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.14);
  --shadow-green: 0 6px 24px rgba(108,190,69,0.25);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-heading: 'Montserrat', 'Arial Black', sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --transition: 0.28s ease;
  --container: 1200px;
}

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--primary); }

ul { list-style: none; }

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--light-bg);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(108,190,69,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark-secondary);
  color: var(--primary);
  border-color: var(--dark-secondary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

/* === Top Bar === */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0;
  font-size: 0.82rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: var(--primary);
  font-weight: 600;
}

.top-bar a:hover { color: var(--primary-light); }

.top-bar-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar-links a {
  color: rgba(255,255,255,0.75);
}

.top-bar-links a:hover { color: var(--primary); }

/* === Header === */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 56px;
  width: auto;
}

/* === Navigation === */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-dark);
  background: var(--primary-glow);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
}

.phone-link:hover { color: var(--primary-dark); }

.phone-icon {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  flex-shrink: 0;
}

/* === Hamburger === */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* === Hero Section === */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 60%, #1a2e14 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,190,69,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108,190,69,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(108,190,69,0.15);
  border: 1px solid rgba(108,190,69,0.35);
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.hero h1 span {
  color: var(--primary);
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.hero-areas {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-heading);
  font-weight: 600;
}

.trust-icon {
  color: var(--primary);
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(108,190,69,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.hero-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}

.hero-service-item::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}

/* === Trust Strip === */
.trust-strip {
  background: var(--primary);
  padding: 1.5rem 0;
}

.trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.trust-strip-icon { display: none; }

/* === Services Section === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-card .service-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.service-card .service-link:hover { color: var(--primary); }

/* === How It Works === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  opacity: 0.3;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-green);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-light);
}

/* === Service Areas Section === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.area-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
  transform: translateY(-3px);
}

.area-icon { display: none; }

.area-card h3 {
  font-size: 1rem;
  color: var(--dark);
}

.area-card .zip {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.area-card .primary-badge {
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 700;
  background: var(--primary-glow);
  color: var(--primary-dark);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.areas-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.areas-note a {
  color: var(--primary-dark);
  font-weight: 600;
}

/* === Why Choose Us === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon-wrap {
  flex-shrink: 0;
  width: 4px;
  height: 44px;
  background: var(--primary);
  border-radius: 4px;
}

.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--dark);
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* === Testimonials === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-green);
  border-color: var(--primary);
}

.stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
}

.author-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === FAQ Section === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--light-bg);
}

.faq-item.open .faq-question {
  background: var(--primary-glow);
  color: var(--primary-dark);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 0.75rem;
  color: var(--text-light);
}

.faq-item.open .faq-chevron {
  background: var(--primary);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  background: var(--white);
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}

.faq-answer-inner ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.faq-answer-inner li {
  margin-bottom: 0.3rem;
}

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2e14 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(108,190,69,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* === Contact Section === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.contact-detail-text a,
.contact-detail-text p {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
  margin: 0;
}

.contact-detail-text a:hover { color: var(--primary-dark); }

/* === Contact Form === */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,190,69,0.28);
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

/* === Footer === */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.footer-phone {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-phone:hover { color: var(--primary-light); }

.footer-email {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-email:hover { color: var(--primary-light); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--primary); }

.footer-areas {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-address {
  margin-top: 0.5rem;
}

.footer-address p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-address strong {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

.footer-bottom a:hover { color: var(--primary); }

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

/* === Page Hero (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(108,190,69,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0.75rem auto 0;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255,255,255,0.75);
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }

/* === City Pages === */
.city-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.city-section:last-child { border-bottom: none; }

.city-section:nth-child(even) { background: var(--light-bg); }

.city-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.city-badge {
  display: inline-block;
  background: var(--primary-glow);
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
}

/* === Services Page === */
.services-detail-grid {
  display: grid;
  gap: 3rem;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.service-detail-item:nth-child(even) {
  direction: rtl;
}

.service-detail-item:nth-child(even) > * {
  direction: ltr;
}

.service-detail-content h2 {
  margin-bottom: 1rem;
}

.service-detail-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-detail-content ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-detail-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.service-detail-visual {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
}

.service-detail-visual .service-big-icon {
  font-size: 5rem;
  display: block;
  margin-bottom: 1rem;
}

.service-detail-visual h3 {
  margin-bottom: 0.5rem;
}

.service-detail-visual p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

/* === Contact Page === */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: none;
}

/* === Utility Classes === */
.text-center { text-align: center; }
.text-green { color: var(--primary-dark); }
.text-white { color: var(--white); }
.font-bold { font-weight: 700; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* === Divider === */
.divider {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 1rem auto 1.5rem;
}

.divider-left { margin-left: 0; }

/* === Responsive === */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-visual {
    display: none;
  }
  .hero {
    padding: 70px 0 60px;
  }
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .steps-grid::before { display: none; }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  .contact-method-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-item,
  .service-detail-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .top-bar-links { display: none; }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    z-index: 1002;
    padding: 2rem;
  }

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

  .main-nav a {
    color: var(--white);
    font-size: 1.3rem;
    padding: 0.75rem 2rem;
    width: 100%;
    text-align: center;
  }

  .main-nav a:hover {
    background: rgba(108,190,69,0.15);
    color: var(--primary-light);
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .menu-toggle.open span { background: var(--white); }

  .header-cta .btn { display: none; }

  .phone-link {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-strip-inner {
    gap: 1.5rem;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .city-header {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-stat-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .container { padding: 0 1rem; }

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

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

  .trust-strip-inner {
    justify-content: flex-start;
    gap: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-banner .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.55s ease forwards;
}

/* === Print === */
@media print {
  .site-header, .top-bar, .cta-banner, .site-footer, .menu-toggle { display: none; }
  .section { padding: 30px 0; }
  body { font-size: 12pt; }
}

/* =============================================
   EXTENDED COMPONENTS — Premium Design System
   ============================================= */

/* === Stats Bar === */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-block {
  padding: 1rem;
  border-right: 1px solid var(--border);
}
.stat-block:last-child { border-right: none; }
.stat-block-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-block-unit {
  font-size: 1.2rem;
  color: var(--primary-dark);
}
.stat-block-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}
.stat-block-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* === Review Bar === */
.review-bar {
  background: var(--dark);
  padding: 1.2rem 0;
  overflow: hidden;
}
.review-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.review-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}
.review-badge-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.review-badge-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
}
.review-badge-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
}
.review-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

/* === Pricing Section === */
.pricing-section {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
}
.pricing-section .section-header .eyebrow { background: rgba(108,190,69,.15); border-color: rgba(108,190,69,.3); }
.pricing-section .section-header h2 { color: var(--white); }
.pricing-section .section-header p { color: rgba(255,255,255,.65); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.pricing-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(108,190,69,.2);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  background: rgba(108,190,69,.1);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(108,190,69,.2);
}
.pricing-card.featured {
  background: var(--primary);
  border-color: var(--primary);
}
.pricing-card.featured:hover {
  background: var(--primary-light);
}
.pricing-card.featured .pricing-card-name,
.pricing-card.featured .pricing-card-items li {
  color: var(--white);
}
.pricing-card.featured .pricing-card-price {
  color: var(--white);
}
.pricing-popular {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--dark);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}
.pricing-truck {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}
.pricing-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.pricing-card-price {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
  font-style: italic;
}
.pricing-card-items {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pricing-card-items li {
  font-size: 0.82rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.pricing-card-items li::before {
  content: '✓';
  color: var(--primary-light);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.pricing-card.featured .pricing-card-items li::before { color: rgba(255,255,255,.9); }
.pricing-note {
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: 0.85rem;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-note strong { color: var(--primary-light); }

/* === What We Accept === */
.accept-section { padding: 80px 0; }
.accept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.accept-column h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.accept-column.yes h3 { color: var(--primary-dark); }
.accept-column.no  h3 { color: #c0392b; }
.accept-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.accept-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
}
.accept-column.yes .accept-item {
  background: #e8f5e0;
  color: #2d6a0d;
  border: 1px solid #b8dfa0;
}
.accept-column.no .accept-item {
  background: #fde8e8;
  color: #9b2c2c;
  border: 1px solid #f5b8b8;
}
.accept-icon { display: none; }

/* === Process Steps (enhanced) === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  counter-reset: steps;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.process-step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
  transform: translateY(-4px);
}
.process-step::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  right: -1.25rem;
  width: 2.5rem;
  height: 2px;
  background: var(--border);
}
.process-step:last-child::after { display: none; }
.process-step-icon { display: none; }
.process-step-num {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 28px;
  height: 28px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-muted);
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.process-step p  { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* === Service Cards Enhanced === */
.service-card-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card-v2:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
  transform: translateY(-5px);
}
.service-card-v2-header {
  padding: 1.75rem 1.75rem 1.25rem;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
}
.service-card-v2-icon { display: none; }
.service-card-v2-header {
  border-top: 4px solid var(--primary);
}
._service-card-v2-icon-unused {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-green);
}
.service-card-v2-header h3 { font-size: 1.1rem; margin: 0; }
.service-card-v2-body {
  padding: 1.25rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-v2-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  flex: 1;
}
.service-mini-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.service-mini-list li {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.service-mini-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.service-card-v2-footer {
  padding: 1rem 1.75rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.service-price-tag {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-glow);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}

/* === City Cards Enhanced === */
.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}
.city-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
  transform: translateY(-3px);
}
.city-card-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2e14 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.city-card-banner h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0;
}
.city-zip-badge {
  background: rgba(108,190,69,.2);
  border: 1px solid rgba(108,190,69,.3);
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  white-space: nowrap;
}
.city-card-body {
  padding: 1.25rem 1.5rem;
}
.city-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.city-card-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.city-meta-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

/* === Testimonial Cards Enhanced === */
.testimonial-card-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.testimonial-card-v2:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
  transform: translateY(-3px);
}
.testimonial-card-v2 .quote-icon {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
  opacity: 0.6;
}
.testimonial-card-v2 blockquote {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin: 0 0 1.5rem;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-info { flex: 1; }
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
}
.testimonial-city {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.testimonial-rating {
  color: #f5a623;
  font-size: 0.85rem;
}
.testimonial-source {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* === Call-Out Box === */
.callout-box {
  background: linear-gradient(135deg, var(--primary-glow) 0%, transparent 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}
.callout-box-icon { display: none; }
.callout-box h4 { color: var(--primary-dark); margin-bottom: 0.4rem; }
.callout-box p  { font-size: 0.92rem; color: var(--text-light); margin: 0; }

/* === Alert Banner === */
.alert-banner {
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}
.alert-banner a { color: var(--white); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* === Section Tabs (service nav) === */
.services-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1.5rem 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 3rem;
}
.services-toc a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  transition: all var(--transition);
}
.services-toc a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* === Service Detail Section === */
.service-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-section:last-child { border-bottom: none; }
.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: start;
}
.service-section-inner.reverse {
  grid-template-columns: 420px 1fr;
}
.service-section-inner.reverse .service-section-aside {
  order: -1;
}
.service-section-content h2 { margin-bottom: 0.75rem; }
.service-section-content .lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.service-section-content p { color: var(--text-light); font-size: 0.95rem; }
.service-check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
.service-check-list li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}
.service-check-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.05em;
}
.service-section-aside {
  position: sticky;
  top: 120px;
}
.service-aside-card {
  background: linear-gradient(145deg, var(--dark) 0%, #1a2e14 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.service-aside-icon-block {
  padding: 2.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.service-aside-icon-block .big-icon { display: none; }
.service-aside-icon-block h3 { color: var(--white); font-size: 1.2rem; }
.service-aside-cta {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-aside-cta a { text-align: center; justify-content: center; }

/* === About Page Components === */
.mission-block {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2e14 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  color: var(--white);
}
.mission-block h2 { color: var(--white); margin-bottom: 1rem; }
.mission-block p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

.credentials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.credential-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  transition: all var(--transition);
}
.credential-badge:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
}
.credential-badge-icon { display: none; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
  transform: translateY(-3px);
}
.team-avatar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.team-info { padding: 1.25rem; }
.team-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.team-role { font-size: 0.82rem; color: var(--text-muted); }

/* === Contact Page Components === */
.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-method-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  transition: all var(--transition);
  text-decoration: none;
}
.contact-method-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
  transform: translateY(-3px);
}
.contact-method-card.featured {
  border-color: var(--primary);
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.contact-method-card.featured .contact-method-label { color: var(--primary); }
.contact-method-card.featured .contact-method-title,
.contact-method-card.featured .contact-method-desc,
.contact-method-card.featured .contact-method-note { color: rgba(255,255,255,0.85); }
.contact-method-card.featured .contact-method-title { color: #fff; }
.contact-method-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(108,190,69,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.contact-method-card.featured .contact-method-icon {
  background: var(--primary);
  color: var(--dark);
}
.contact-method-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}
.contact-method-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0.25rem 0 0;
  line-height: 1.2;
}
.contact-method-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0.25rem 0 0;
  line-height: 1.55;
  flex: 1;
}
.contact-method-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.3rem 0.75rem;
  background: var(--light-bg);
  border-radius: 50px;
  border: 1px solid var(--border);
}
.contact-method-card.featured .contact-method-note {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}
.contact-method-value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
}
.contact-method-card:hover .contact-method-value { color: var(--primary-dark); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr td {
  padding: 0.65rem 0.5rem 0.65rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  width: 40%;
}
.hours-table td:nth-child(2) { color: var(--text); }
.hours-table td:last-child { text-align: right; }
.hours-table tr.open-day td:first-child { color: var(--dark); }
.hours-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
}
.hours-status.open {
  background: rgba(108,190,69,0.12);
  color: var(--primary-dark);
  border: 1px solid rgba(108,190,69,0.3);
}
.hours-status.closed {
  background: rgba(0,0,0,0.05);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.hours-closed { color: var(--text-muted) !important; }

/* === Sticky CTA Mobile === */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 1rem;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
  gap: 0.75rem;
}
.sticky-cta-mobile a {
  flex: 1;
  text-align: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .sticky-cta-mobile { display: flex; }
  body { padding-bottom: 80px; }

  /* Responsive: stats bar */
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-block:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-block:nth-child(n+3) { border-bottom: none; }

  /* Responsive: pricing */
  .pricing-grid { grid-template-columns: 1fr 1fr; }

  /* Responsive: accept */
  .accept-grid { grid-template-columns: 1fr; }

  /* Responsive: process steps */
  .process-steps { grid-template-columns: 1fr; }
  .process-step::after { display: none; }

  /* Responsive: service sections */
  .service-section-inner,
  .service-section-inner.reverse { grid-template-columns: 1fr; }
  .service-section-inner.reverse .service-section-aside { order: 0; }
  .service-section-aside { position: static; }

  /* Responsive: contact method cards */
  .contact-method-grid { grid-template-columns: 1fr; }

  /* Responsive: service check list */
  .service-check-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   TRADES RESKIN — Grounded, Clean Aesthetic
   Simple service company, not a tech startup.
   ============================================= */

/* Tighter radius feels like a contractor, not an app */
:root {
  --radius: 5px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --shadow-green: 0 2px 10px rgba(0,0,0,0.09);
}

/* Remove radial-glow pseudo-elements on dark sections */
.hero::before,
.hero::after,
.cta-banner::before,
.page-hero::before {
  display: none;
}

/* Flatten hero — drop the third green-tinted gradient stop */
.hero {
  background: linear-gradient(180deg, #111811 0%, var(--dark) 100%);
}

/* Page hero and CTA banner: solid dark, no gradient hints */
.page-hero,
.cta-banner {
  background: var(--dark);
}

/* Dark blocks: flat, no gradient */
.mission-block,
.city-card-banner,
.service-aside-card {
  background: var(--dark);
}

/* Buttons: no green glow, no bounce on hover */
.btn-primary {
  box-shadow: none;
}
.btn-primary:hover,
.btn-dark:hover,
.btn-outline:hover {
  transform: none;
  box-shadow: none;
}

/* Eyebrow label: plain uppercase with a green underline — not a pill badge */
.section-header .eyebrow {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--primary);
  padding: 0 0 0.35rem 0;
  border-radius: 0;
  margin-bottom: 1rem;
  display: inline-block;
}

/* Service card v2 header: flat off-white, no gradient */
.service-card-v2-header {
  background: var(--off-white);
}

/* Callout box: flat background */
.callout-box {
  background: var(--off-white);
}

/* Hero visual cards: no glass morphism */
.hero-card {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(255,255,255,0.07);
}

/* Avatars: flat solid color */
.testimonial-avatar {
  background: var(--primary-dark);
}
.team-avatar {
  background: var(--dark-secondary);
}

/* Process step number: no green glow */
.step-num {
  box-shadow: none;
}

/* Steps connector line: plain border, no gradient */
.steps-grid::before {
  background: var(--border);
  opacity: 1;
}

/* Remove all card lift-on-hover — no translateY bounce */
.service-card:hover,
.area-card:hover,
.service-card-v2:hover,
.pricing-card:hover,
.city-card:hover,
.testimonial-card:hover,
.testimonial-card-v2:hover,
.process-step:hover,
.team-card:hover,
.contact-method-card:hover {
  transform: none;
}

/* Replace green-tinted hover shadows with a subtle neutral shadow */
.service-card:hover,
.area-card:hover,
.service-card-v2:hover,
.city-card:hover,
.testimonial-card:hover,
.testimonial-card-v2:hover,
.process-step:hover,
.team-card:hover,
.credential-badge:hover,
.contact-method-card:hover {
  box-shadow: var(--shadow-sm);
}

/* FAQ open: no green shadow */
.faq-item.open {
  box-shadow: none;
}

/* Pricing: neutral hover shadow */
.pricing-card:hover {
  box-shadow: var(--shadow);
  transform: none;
}

/* =============================================
   MOBILE SIMPLIFICATION
   Incredibly simple on small screens.
   Primary action: call the number.
   ============================================= */

@media (max-width: 768px) {

  /* Remove the top bar — redundant on mobile, just adds scroll debt */
  .top-bar { display: none; }

  /* Tighter hero: remove redundant city list + checkmarks */
  /* The trust strip below and the footer already cover this info */
  .hero { padding: 44px 0 36px; }
  .hero-areas { display: none; }
  .hero-trust { display: none; }

  /* Tighter section padding at tablet/phone */
  .section { padding: 48px 0; }
  .pricing-section { padding: 48px 0; }
  .accept-section { padding: 48px 0; }
  .cta-banner { padding: 48px 0; }

  /* Trust strip: scroll horizontally instead of wrapping into a clumsy multi-row block */
  .trust-strip { padding: 0.85rem 0; }
  .trust-strip-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 1.5rem;
    gap: 1.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trust-strip-inner::-webkit-scrollbar { display: none; }
  .trust-strip-item {
    flex-shrink: 0;
    font-size: 0.82rem;
  }

  /* Service cards on mobile: hide the mini-lists */
  /* Title + one-line description is enough to scan 12 cards */
  .service-mini-list { display: none; }

  /* Smaller section headers on mobile */
  .section-header { margin-bottom: 2rem; }
  .section-header p { font-size: 1rem; }

  /* Stats bar: tighter on mobile */
  .stats-bar { padding: 1.75rem 0; }

  /* Process steps: tighter on mobile */
  .process-step { padding: 1.75rem 1.25rem; }

  /* CTA phone number: smaller on very narrow screens */
  .cta-phone { font-size: 1.25rem; }

  /* Hero h1 tighter leading on mobile */
  .hero h1 { margin-bottom: 0.75rem; }
  .hero-cta { margin-bottom: 1.5rem; }
  .hero-sub { margin-bottom: 0.5rem; }
}

/* ===================================================
   SKIP NAVIGATION — accessibility
   =================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* ===================================================
   FINAL POLISH — cleaner trade-company finish
   =================================================== */

/* Neutralize the over-greened palette.
   Result: dark + white + ONE brand green.           */
:root {
  --off-white:  #f8f8f6;   /* was #f7fcf4 — greenish tint */
  --light-bg:   #f4f4f2;   /* was #f0f7eb — noticeably green */
  --border:     #e0deda;   /* was #d2e8c4 — green tint on 30+ elements */
  --text-muted: #888888;   /* was #8a9e88 — greenish */
}

/* Header: clean border instead of floating shadow */
.site-header { box-shadow: none; border-bottom: 1px solid var(--border); }
.site-header.scrolled { box-shadow: none; border-bottom: 1px solid var(--border); }

/* Accept section: neutral tints, color only on the text */
.accept-column.yes .accept-item { background: #f6faf2; border-color: #cce0b0; color: #2d5c10; }
.accept-column.no  .accept-item { background: #fdf5f5; border-color: #e8c4c4; color: #8b2020; }

/* Featured contact card: remove default green glow */
.contact-method-card.featured { box-shadow: none; }
.contact-method-card:hover { box-shadow: var(--shadow-sm); }

/* ===========================
   BLACK HEADER
=========================== */
.site-header {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: none;
}
.site-header.scrolled {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: none;
}

/* Nav links — white on black */
.main-nav a {
  color: rgba(255,255,255,.8);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.07);
}

/* Phone number link — white */
.phone-link {
  color: var(--white);
}
.phone-link:hover { color: var(--primary); }

/* Hamburger bars — white */
.menu-toggle span {
  background: var(--white);
}

/* ===========================
   SPACING & RESPONSIVE POLISH
=========================== */

/* Services TOC: sticky so it stays visible while scrolling a long page */
.services-toc {
  position: sticky;
  top: 70px;
  background: var(--white);
  z-index: 100;
  padding: 0.9rem 0;
  margin-bottom: 2rem;
}

/* Services aside sticky top: account for full header stack height */
/* (already set to 120px above — reinforced here for specificity) */

/* Service check list: 1 column below 1000px so items aren't squeezed */
@media (max-width: 1000px) {
  .service-check-list {
    grid-template-columns: 1fr;
  }
}

/* Page hero: reduce vertical padding on tablet/mobile */
@media (max-width: 768px) {
  .page-hero { padding: 40px 0; }
}

/* Service section: less padding on mobile */
@media (max-width: 768px) {
  .service-section { padding: 2.5rem 0; }
}

/* Contact form: tighter padding on mobile */
@media (max-width: 768px) {
  .contact-form { padding: 1.5rem; }
}

/* Footer grid: 2×2 on tablet before jumping to 1 column */
@media (max-width: 1000px) and (min-width: 641px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Footer bottom: stack vertically on mobile */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* Container: tighter padding on very small phones */
@media (max-width: 400px) {
  .container { padding: 0 1rem; }
}

/* Logo: shrink on small phones so header doesn't overflow */
@media (max-width: 600px) {
  .logo-link img { height: 44px; }
}

/* Sticky mobile CTA: tighten padding so button text doesn't wrap */
@media (max-width: 400px) {
  .sticky-cta-mobile { padding: 0.75rem; gap: 0.5rem; }
  .sticky-cta-mobile a { font-size: 0.88rem; padding: 0.7rem 0.5rem; }
}

/* Hero CTA buttons: stack vertically on small screens */
@media (max-width: 500px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   MONOCHROMATIC RESKIN
   Green is reserved for: .alert-banner + .btn-primary only.
   Everything else uses dark / neutral tones.
   ============================================================ */

/* --- Global links: dark text, not green --- */
a { color: var(--text); }
a:hover { color: var(--dark); }

/* --- Trust strip: black bar, not green --- */
.trust-strip {
  background: var(--dark);
}
.trust-strip-item svg { color: rgba(255,255,255,.6); }

/* --- Hero: remove green glow overlays --- */
.hero::before,
.hero::after { display: none; }

/* --- Hero badge: neutral dark chip --- */
.hero-badge {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.15);
}

/* --- Hero h1 accent span: white, not green --- */
.hero h1 span { color: var(--white); }

/* --- Hero stats: white numbers --- */
.hero-stat-number { color: var(--white); }

/* --- Section eyebrows: dark pill, white text --- */
.section-header .eyebrow {
  background: rgba(0,0,0,.08);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* --- City badge on city pages: neutral chip --- */
.city-badge {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.15);
}

/* --- Process step numbers: dark circle --- */
.step-num {
  background: var(--dark);
  color: var(--white);
  box-shadow: none;
}

/* --- Process connector line: neutral gradient --- */
.steps-grid::before {
  background: linear-gradient(90deg, var(--border) 0%, var(--border) 100%);
}

/* --- FAQ open state: neutral, not green --- */
.faq-item.open {
  border-color: var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.faq-item.open .faq-question {
  background: var(--light-bg);
  color: var(--dark);
}
.faq-item.open .faq-chevron {
  background: var(--dark);
  color: var(--white);
}

/* --- Callout / info boxes: dark left border --- */
.callout-box {
  border-left-color: var(--dark);
  background: var(--light-bg);
}

/* --- Pricing card featured highlight: neutral border --- */
.pricing-card { border-color: var(--border); }
.pricing-card.featured { border-color: var(--dark); }
.pricing-card .badge { background: var(--dark); color: var(--white); }

/* --- Service cards: dark top accent strip --- */
.service-card::before { background: var(--dark); }
.service-card h3 a { color: var(--dark); }
.service-card h3 a:hover { color: var(--text); }

/* --- Services TOC: dark active/hover state --- */
.services-toc a:hover,
.services-toc a.active {
  background: var(--light-bg);
  border-color: var(--dark);
  color: var(--dark);
}

/* --- Service checklist checkmarks: dark --- */
.service-check-list li::before { color: var(--dark); }

/* --- Process step cards on services page: dark border/dot --- */
.process-step { border-color: var(--border); }
.process-step-dot {
  background: var(--dark);
  box-shadow: none;
}

/* --- CTA section phone link: white, not green --- */
.cta-phone { color: var(--white); }
.cta-phone:hover { color: rgba(255,255,255,.8); }

/* --- Contact icon circles: dark neutral --- */
.contact-detail-icon {
  background: var(--light-bg);
  color: var(--dark);
  box-shadow: none;
}

/* --- Contact method cards: neutral border/shadow --- */
.contact-method-card {
  border-color: var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.contact-method-card:hover {
  border-color: var(--dark);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.contact-method-card.featured {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  border-color: var(--dark);
}
.contact-method-card .contact-method-icon {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

/* --- Stat numbers on pages: dark, not green --- */
.stat-number { color: var(--dark); }

/* --- Footer links: white hover, not green --- */
.footer-col ul li a:hover { color: var(--white); }

/* --- Inline text links in prose: dark underlined --- */
.service-section-content a,
.city-content a {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: var(--border);
}
.service-section-content a:hover,
.city-content a:hover {
  color: var(--text);
  text-decoration-color: var(--text);
}
