/* ================================
   Lee Junk Removal - Main Stylesheet
   Brand Colors from scraped manifest:
   Primary: #6abf16 (green)
   Accent: #1675bf (blue)
   Dark: #252525 (h1)
   Gray: #585858 (body)
   Light Gray: #d7d6d6 (backgrounds)
   ================================ */

/* CSS Variables */
:root {
  --primary: #6abf16;
  --primary-dark: #5aa814;
  --primary-light: #7ed321;
  --accent: #1675bf;
  --accent-dark: #125a99;
  --dark: #252525;
  --gray: #585858;
  --light-gray: #d7d6d6;
  --white: #ffffff;
  --black: #000000;
  
  --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --container-width: 1200px;
  --header-height: 100px;
  --header-height-mobile: 70px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  --transition: 0.3s ease;
}

/* Font Face - Self Hosted */
@font-face {
  font-family: 'Roboto';
  src: url('/fonts/roboto-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/roboto-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/roboto-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
  background-color: var(--white);
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  line-height: 1.2;
}

h1 {
  color: var(--dark);
  font-weight: 900;
  font-size: 2.5rem;
}

h2 {
  color: var(--primary);
  font-weight: 700;
  font-size: 2rem;
}

h3 {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.5rem;
}

h4, h5, h6 {
  color: var(--dark);
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

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

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

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

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  display: flex;
  align-items: center;
}

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

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1rem;
  height: var(--header-height);
}

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

.logo {
  height: 60px;
  width: auto;
}

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

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav-link {
  color: var(--gray);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color var(--transition);
}

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

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--gray);
}

.dropdown-menu li a:hover {
  background-color: var(--light-gray);
  color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--gray);
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  bottom: -7px;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
}

.phone-icon::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.01 15.38c-1.23 0-2.42-.2-3.53-.56a.977.977 0 00-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Trust Bar */
.trust-bar {
  background-color: var(--light-gray);
  padding: 1.5rem 0;
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.trust-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.trust-item span {
  font-weight: 700;
  color: var(--dark);
}

.trust-item .stars {
  display: flex;
  gap: 2px;
}

/* Content Section */
.content-section {
  padding: 4rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
}

.content-main h2 {
  margin-top: 2rem;
}

.content-main h2:first-child {
  margin-top: 0;
}

/* Sidebar */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.sidebar-widget h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
}

/* Quote Form Widget */
.quote-form-widget {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.quote-form-widget h3 {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.3);
}

.quote-form .form-group {
  margin-bottom: 1rem;
}

.quote-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 1rem;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(255,255,255,0.5);
}

.quote-form .btn {
  margin-top: 0.5rem;
  background-color: var(--white);
  color: var(--primary);
}

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

.form-note {
  font-size: 0.75rem;
  opacity: 0.9;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* Service/Location List Widget */
.service-list,
.location-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li,
.location-list li {
  border-bottom: 1px solid var(--light-gray);
}

.service-list li:last-child,
.location-list li:last-child {
  border-bottom: none;
}

.service-list a,
.location-list a {
  display: block;
  padding: 0.75rem 0;
  color: var(--gray);
  transition: all var(--transition);
}

.service-list a:hover,
.location-list a:hover,
.service-list li.active a,
.location-list li.active a {
  color: var(--primary);
  padding-left: 0.5rem;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-card {
  display: block;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

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

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.875rem;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--white);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary);
}

.cta-section .btn-primary:hover {
  background-color: var(--dark);
  color: var(--white);
}

.cta-section .btn-secondary {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.cta-section .btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* Footer */
.site-footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  opacity: 0.8;
}

.footer-contact h3,
.footer-services h3,
.footer-locations h3 {
  color: var(--primary);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.footer-contact address {
  font-style: normal;
  margin-bottom: 1rem;
}

.footer-contact a {
  color: var(--white);
}

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

.footer-services ul,
.footer-locations ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-services li,
.footer-locations li {
  margin-bottom: 0.5rem;
}

.footer-services a,
.footer-locations a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.footer-services a:hover,
.footer-locations a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--white);
  transition: color var(--transition);
}

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

.footer-copyright {
  text-align: right;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-copyright p {
  margin: 0;
}

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

/* Nearby Areas */
.nearby-areas {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: var(--radius-md);
}

.nearby-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nearby-list li {
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}

/* 404 Page */
.page-404 {
  text-align: center;
  padding: 4rem 1rem;
}

.page-404 h1 {
  font-size: 6rem;
  color: var(--primary);
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    height: var(--header-height-mobile);
  }
  
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .nav-item {
    border-bottom: 1px solid var(--light-gray);
  }
  
  .nav-link {
    display: block;
    padding: 1rem 0;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    display: none;
  }
  
  .has-dropdown.active .dropdown-menu {
    display: block;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-cta .btn {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .trust-items {
    gap: 1.5rem;
  }
  
  .trust-item {
    flex: 0 0 calc(50% - 0.75rem);
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    padding-right: 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

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

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

  .cta-buttons .btn {
    width: 100%;
  }

  .trust-item {
    flex: 0 0 100%;
  }
}

/* ================================
   ANIMATIONS & UTILITY CLASSES
   ================================ */

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(106, 191, 22, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(106, 191, 22, 0.8);
  }
}

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-pulse,
  .btn-glow {
    animation: none;
  }
}

/* Button Animations */
.btn-pulse {
  animation: pulse 2s infinite;
}

.btn-glow {
  animation: glow 2s infinite;
}

/* ================================
   HERO SECTION ENHANCEMENTS
   ================================ */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(106, 191, 22, 0.9);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Ensure hero content has enough top padding for badge */
.hero-home .hero-content {
  padding-top: 4.5rem;
}

.hero-badge .badge-stars {
  display: flex;
}

.hero-checklist {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 500;
}

.hero-checklist svg {
  color: var(--primary);
}

@media (max-width: 768px) {
  .hero-checklist {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ================================
   TRUST BAR ENHANCEMENTS
   ================================ */

.trust-bar {
  background-color: var(--white);
  padding: 2rem 0;
  border-bottom: 3px solid var(--primary);
}

.trust-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(106, 191, 22, 0.1), rgba(106, 191, 22, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.trust-icon-circle img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.trust-icon-stars {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.2));
}

.trust-label {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.trust-sublabel {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
}

/* ================================
   SECTION EYEBROW
   ================================ */

.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-eyebrow-light {
  color: var(--white);
}

.section-intro {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.section-outro {
  margin-top: 2rem;
  font-size: 1rem;
}

/* ================================
   WHY CHOOSE US / FEATURE CARDS
   ================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-card:hover .icon-circle {
  transform: scale(1.1);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform var(--transition);
}

.icon-circle-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.icon-circle-blue {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.icon-circle-green {
  background: linear-gradient(135deg, #28a745, #1e7e34);
}

.feature-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.feature-highlight {
  display: inline-block;
  background: rgba(106, 191, 22, 0.1);
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ================================
   SPLIT LAYOUT SECTIONS
   ================================ */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-layout-reverse {
  direction: rtl;
}

.split-layout-reverse > * {
  direction: ltr;
}

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

.split-content h3 {
  margin-bottom: 1.5rem;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.image-frame {
  position: relative;
}

.image-frame img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.image-frame-green::before {
  border-color: var(--primary);
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-layout-reverse {
    direction: ltr;
  }

  .image-frame::before {
    display: none;
  }

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

/* ================================
   IMAGE CARD GRID (Services)
   ================================ */

.image-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.image-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.image-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.image-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.image-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6));
}

.image-card-content {
  padding: 1.5rem;
}

.image-card-content h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.image-card-content p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.image-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.image-card-link svg {
  transition: transform var(--transition);
}

.image-card:hover .image-card-link svg {
  transform: translateX(5px);
}

/* ================================
   SECTION DIVIDER
   ================================ */

.section-divider {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-divider-top {
  top: 0;
}

.section-divider svg {
  width: 100%;
  height: 60px;
}

.services-section {
  position: relative;
  padding-top: 5rem;
}

/* ================================
   CATEGORY CARDS (What We Remove)
   ================================ */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.category-card:hover .category-header svg {
  animation: bounce 0.6s ease;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.category-header-orange {
  background: linear-gradient(135deg, #f5a623, #e08e0b);
}

.category-header-blue {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.category-header-green {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.category-header-purple {
  background: linear-gradient(135deg, #8e44ad, #6c3483);
}

.category-list {
  list-style: none;
  margin: 0;
  padding: 1.25rem;
}

.category-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--gray);
  border-bottom: 1px solid var(--light-gray);
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list li svg {
  flex-shrink: 0;
}

.category-list a {
  color: var(--gray);
}

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

/* ================================
   ESTATE CARDS
   ================================ */

.estate-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.estate-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.estate-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.estate-card-header-blue {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.estate-card-header-red {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.estate-card ul {
  list-style: none;
  margin: 0;
  padding: 1rem;
}

.estate-card li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--gray);
}

.estate-card-note {
  padding: 0.5rem 1rem 1rem;
  margin: 0;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .estate-cards {
    grid-template-columns: 1fr;
  }
}

/* ================================
   LOCATION CARDS (Service Areas)
   ================================ */

.location-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.location-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-top: 3px solid transparent;
}

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

.location-card:hover .location-icon svg {
  animation: bounce 0.6s ease;
}

.location-card-img {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.location-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.location-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5));
}

.location-card-content {
  padding: 1.25rem;
}

.location-icon {
  display: inline-flex;
  margin-bottom: 0.5rem;
}

.location-card-content h3 {
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.location-card-content p {
  color: var(--gray);
  font-size: 0.85rem;
  margin: 0;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */

.testimonials-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 37, 37, 0.92);
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-heading {
  color: var(--white) !important;
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
}

.testimonial-quote-mark {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  color: rgba(106, 191, 22, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial-avatar-j {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.testimonial-avatar-c {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.testimonial-avatar-k {
  background: linear-gradient(135deg, #27ae60, #1e8449);
}

.testimonial-avatar-b {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.testimonial-info strong {
  display: block;
  color: var(--dark);
  font-size: 0.9rem;
}

.testimonial-source {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-top: 0.25rem;
}

.testimonial-source-yelp {
  background: #d32323;
  color: var(--white);
}

.testimonial-source-google {
  background: #4285f4;
  color: var(--white);
}

@media (max-width: 768px) {
  .testimonials-section {
    background-attachment: scroll;
  }
}

/* ================================
   CTA SECTION WITH BACKGROUND
   ================================ */

.cta-with-bg {
  position: relative;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(106, 191, 22, 0.92), rgba(90, 168, 20, 0.95));
}

.cta-with-bg .container {
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
  font-size: 2.75rem;
}

/* ================================
   STATS BAR
   ================================ */

.stats-bar {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem 0;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--medium-gray);
  margin-top: 0.5rem;
}

.stats-bar-light .stat-number {
  color: var(--white);
}

.stats-bar-light .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }
  .stats-bar {
    gap: 1.5rem;
  }
  .stat-item {
    flex: 0 0 45%;
  }
}

/* ================================
   PROCESS STEPS
   ================================ */

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
}

.process-step {
  flex: 1;
  text-align: center;
  max-width: 240px;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--medium-gray);
}

.process-connector {
  flex: 0 0 auto;
  width: 60px;
  height: 2px;
  background: var(--primary);
  margin-top: 30px;
  opacity: 0.3;
}

@media (max-width: 992px) {
  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }
  .process-step {
    flex: 0 0 45%;
    margin-bottom: 2rem;
  }
  .process-connector {
    display: none;
  }
}

@media (max-width: 576px) {
  .process-step {
    flex: 0 0 100%;
  }
}

/* ================================
   FAQ ACCORDION
   ================================ */

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
}

.faq-content-column {
  min-width: 0;
}

.faq-sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.faq-category {
  margin-bottom: 2.5rem;
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--light-gray);
}

.faq-accordion {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-item:last-child {
  border-bottom: none;
}

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

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

.faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary);
}

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

.faq-item.active .faq-question {
  background: var(--light-gray);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

.still-questions-card {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  text-align: center;
}

.still-questions-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.still-questions-card p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    position: static;
  }
}

/* ================================
   CONTACT PAGE LAYOUT
   ================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
}

.contact-form-column,
.contact-info-column {
  min-width: 0;
}

.enhanced-contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(106, 191, 22, 0.15);
}

.btn-block {
  width: 100%;
}

.form-trust-signals {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-gray);
  flex-wrap: wrap;
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}

.contact-info-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon-phone {
  background: var(--primary);
}

.contact-info-icon-email {
  background: var(--accent);
}

.contact-info-icon-location {
  background: #e74c3c;
}

.contact-info-icon-hours {
  background: #3498db;
}

.contact-info-content h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: block;
}

a.contact-info-value:hover {
  color: var(--primary);
}

.contact-info-content p {
  font-size: 0.875rem;
  color: var(--medium-gray);
  margin-top: 0.25rem;
}

.contact-info-content address {
  font-style: normal;
}

.contact-social {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-gray);
}

.contact-social h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.2s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link-facebook {
  background: #4267B2;
}

.social-link-yelp {
  background: #d32323;
}

.social-link-google {
  background: #4285f4;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.quick-contact-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quick-contact-item h3 {
  margin: 1rem 0 0.5rem;
}

.quick-contact-item p {
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .quick-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   LOCATION TAGS
   ================================ */

.location-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.location-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.location-tag:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.location-tag-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.location-tag-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ================================
   LOCATION CARDS (Enhanced)
   ================================ */

.location-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.location-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-top-color: var(--primary);
}

.location-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.location-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.location-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.location-card-content {
  padding: 1.5rem;
}

.location-icon {
  margin-bottom: 0.5rem;
}

.location-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.location-card-content p {
  color: var(--medium-gray);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

/* ================================
   HERO CHECKLIST
   ================================ */

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--white);
}

.hero-checklist svg {
  color: var(--primary);
}

@media (max-width: 576px) {
  .hero-checklist {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

/* ================================
   CHECKLIST GRID
   ================================ */

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.checklist-item svg {
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .checklist-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   BADGE STARS IN HERO
   ================================ */

.badge-stars {
  display: inline-flex;
  gap: 2px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* ================================
   SECTION INTRO TEXT
   ================================ */

.section-intro {
  font-size: 1.125rem;
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
}

/* ================================
   PAGE INTRO SECTION
   ================================ */

.page-intro {
  background: var(--white);
}

.page-intro .intro-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(106, 191, 22, 0.1);
  color: var(--primary-dark);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
}

.intro-badge svg {
  color: var(--primary);
}

/* ================================
   CATEGORY CARDS (Service/Location Pages)
   ================================ */

.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-top: 4px solid var(--primary);
}

.category-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: var(--dark);
}

.item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.item-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--gray);
  border-bottom: 1px solid var(--light-gray);
}

.item-list li:last-child {
  border-bottom: none;
}

.item-list li::before {
  content: "\2713";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ================================
   BENEFITS GRID
   ================================ */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-weight: 500;
  color: var(--dark);
}

.benefit-item svg {
  flex-shrink: 0;
}

/* ================================
   COMMUNITY PILLS
   ================================ */

.community-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.community-pill {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9375rem;
  color: var(--gray);
  transition: all var(--transition);
}

.community-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ================================
   FEATURED TESTIMONIAL CARD
   ================================ */

.testimonial-card-featured {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-card-featured .testimonial-quote-mark {
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 6rem;
  color: rgba(106, 191, 22, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card-featured .testimonial-stars {
  justify-content: center;
  margin-bottom: 1.25rem;
}

.testimonial-card-featured .testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card-featured .testimonial-author {
  justify-content: center;
}

/* ================================
   MOBILE SIDEBAR SECTION
   ================================ */

.mobile-sidebar-section {
  display: none;
  background: var(--white);
}

@media (max-width: 992px) {
  .mobile-sidebar-section {
    display: block;
  }

  .page-intro .content-sidebar {
    display: none;
  }
}

/* ================================
   SECTION OUTRO TEXT
   ================================ */

.section-outro {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 1.5rem;
}

/* ================================
   STICKY CTA BAR
   ================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 0.75rem 1rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-cta-text {
  color: white;
  font-weight: 600;
  display: none;
}

@media (min-width: 768px) {
  .sticky-cta-text {
    display: block;
  }
}

.sticky-cta-buttons {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

@media (min-width: 768px) {
  .sticky-cta-buttons {
    width: auto;
  }
}

.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sticky-cta-call {
  background: white;
  color: var(--primary);
}

.sticky-cta-text-btn {
  background: rgba(255,255,255,0.2);
  color: white;
}

.sticky-cta-quote {
  background: var(--secondary, var(--gray));
  color: white;
}

.sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Add bottom padding to body to prevent content overlap */
body {
  padding-bottom: 70px;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 60px;
  }
}

/* ================================
   FAQ STYLES (Details/Summary)
   ================================ */

.faq-section {
  padding: 4rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark);
  list-style: none;
}

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

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

details[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray);
  line-height: 1.6;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: underline;
}

/* ================================
   PROBLEM STATEMENT
   ================================ */

.problem-statement-card {
  background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
  border-left: 4px solid var(--primary);
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.problem-icon {
  flex-shrink: 0;
}

.problem-statement-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
}

@media (max-width: 768px) {
  .problem-statement-card {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ================================
   PROSE STYLING
   ================================ */

.prose {
  max-width: 800px;
  margin: 0 auto;
}

.prose p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.prose a {
  color: var(--primary);
  text-decoration: underline;
}

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

/* ================================
   RELATED SERVICE LINKS
   ================================ */

.related-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.related-service-link {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.related-service-link:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: white;
}

/* ================================
   INLINE ITEMS & BENEFITS (Sidebar Fill)
   ================================ */

.inline-items-list,
.inline-benefits {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-gray, #eee);
}

.inline-items-list h3,
.inline-benefits h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.compact-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
}

@media (max-width: 576px) {
  .compact-checklist {
    grid-template-columns: 1fr;
  }
}

.compact-checklist li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.compact-checklist li svg {
  flex-shrink: 0;
}

.compact-checklist li a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.compact-checklist li a:hover {
  color: var(--primary);
}

.inline-items-more {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.inline-items-more a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.inline-items-more a:hover {
  text-decoration: underline;
}

/* ================================
   Callback Modal
   ================================ */
.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.callback-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.callback-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.callback-modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 450px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
}

.callback-modal[aria-hidden="false"] .callback-modal-content {
  transform: translateY(0) scale(1);
}

.callback-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--gray);
  transition: color 0.2s ease;
  border-radius: 50%;
}

.callback-modal-close:hover {
  color: var(--dark);
  background: var(--light-gray);
}

.callback-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.callback-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  color: white;
  margin-bottom: 1rem;
}

.callback-modal-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: var(--dark);
}

.callback-modal-header p {
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

/* Callback Form */
.callback-form .form-group {
  margin-bottom: 1rem;
}

.callback-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.callback-form label .required {
  color: #e74c3c;
}

.callback-form input[type="text"],
.callback-form input[type="tel"] {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.callback-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(106, 191, 22, 0.15);
}

/* Checkbox Group */
.checkbox-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.callback-form .btn-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.callback-modal-note {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--gray);
}

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

/* Callback Trigger Button */
.callback-trigger {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(22, 117, 191, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-weight: 600;
  font-size: 0.9rem;
}

.callback-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 117, 191, 0.5);
}

.callback-trigger span {
  display: none;
}

@media (min-width: 768px) {
  .callback-trigger {
    bottom: 30px;
    right: 30px;
  }

  .callback-trigger span {
    display: inline;
  }
}

/* Body scroll lock when modal open */
body.modal-open {
  overflow: hidden;
}

/* ================================
   FAQ Accordion (Homepage)
   ================================ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  transition: background-color 0.2s ease;
}

.faq-accordion-trigger:hover {
  background: var(--light-gray);
}

.faq-accordion-trigger svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-accordion-item[aria-expanded="true"] .faq-accordion-trigger svg {
  transform: rotate(180deg);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-accordion-item[aria-expanded="true"] .faq-accordion-content {
  max-height: 500px;
}

.faq-accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray);
  line-height: 1.7;
}

.faq-accordion-body p {
  margin: 0 0 1rem;
}

.faq-accordion-body p:last-child {
  margin-bottom: 0;
}

/* ================================
   Video Section
   ================================ */
.video-section {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper video,
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.video-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(106, 191, 22, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-poster:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(106, 191, 22, 0.5);
}

.video-play-btn svg {
  margin-left: 4px;
}
