/* ========================================
   Lake Forest Movers - Professional CSS
   Forest Green, Lake Blue, Earth Tones
   ======================================== */

:root {
  /* Primary Colors - Forest & Lake Inspired */
  --forest-green: #0a7373;
  --forest-green-dark: #085858;
  --forest-green-light: #0d9494;
  --lake-blue: #1e88e5;
  --lake-blue-dark: #1565c0;
  --lake-blue-light: #42a5f5;
  --earth-orange: #ff8a50;
  --earth-orange-dark: #ff6f2c;
  
  /* Neutrals - Natural Tones */
  --warm-white: #fafaf8;
  --cream: #f5f4f1;
  --sand: #e8e6e1;
  --stone-light: #d1cfc9;
  --stone: #a8a6a0;
  --stone-dark: #78766f;
  --slate: #5a5850;
  --slate-dark: #3d3c38;
  --charcoal: #2a2926;
  --deep-charcoal: #1a1918;
  
  /* Accent Colors */
  --sage-green: #7fa084;
  --sky-light: #87ceeb;
  --sunset-amber: #ffb347;
  --earth-brown: #8b7355;
  
  /* Semantic Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: var(--lake-blue);
  
  /* Gradients */
  --gradient-forest: linear-gradient(135deg, #0a7373 0%, #085858 100%);
  --gradient-lake: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
  --gradient-hero: linear-gradient(135deg, #0a7373 0%, #0d9494 50%, #1e88e5 100%);
  --gradient-earth: linear-gradient(135deg, #8b7355 0%, #a8a6a0 100%);
  
  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  
  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-Index */
  --z-base: 0;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1050;
  --z-tooltip: 1070;
}

/* ========================================
   Base Reset & Defaults
   ======================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--leading-relaxed);
  color: var(--slate-dark);
  background-color: white;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--deep-charcoal);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
}

h3 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
}

h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-4);
  color: var(--slate-dark);
  line-height: var(--leading-relaxed);
}

a {
  color: var(--lake-blue);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

a:focus-visible {
  outline: 2px solid var(--lake-blue);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

strong {
  font-weight: 600;
  color: var(--deep-charcoal);
}

.lead-text {
  font-size: var(--font-size-lg);
  line-height: var(--leading-relaxed);
  color: var(--slate-dark);
}

/* ========================================
   Layout Components
   ======================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

section {
  padding: var(--space-20) 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-12);
}

.section-title {
  font-size: var(--font-size-4xl);
  color: var(--deep-charcoal);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--stone-dark);
  line-height: var(--leading-relaxed);
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--forest-green);
  color: white;
  padding: var(--space-3) var(--space-6);
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) 0;
  z-index: var(--z-tooltip);
  font-weight: 600;
  transition: top var(--transition-base);
}

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

/* ========================================
   Hero Section
   ======================================== */

.hero-lf {
  background: var(--gradient-hero);
  color: white;
  padding: var(--space-16) 0 var(--space-20);
  position: relative;
  overflow: hidden;
}

.hero-lf::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(30, 136, 229, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-lf::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,64 Q300,120 600,64 T1200,64 L1200,120 L0,120 Z" fill="white"/></svg>') no-repeat;
  background-size: cover;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-8);
}

.breadcrumb-list {
  display: flex;
  gap: var(--space-2);
  list-style: none;
  flex-wrap: wrap;
  font-size: var(--font-size-sm);
}

.breadcrumb-list li {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '›';
  margin-left: var(--space-2);
  opacity: 0.6;
}

.breadcrumb-list a {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-list a:hover {
  text-decoration-color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  color: white;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accent-text {
  color: var(--sky-light);
}

.hero-description {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.95);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.hero-cta-group {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  list-style: none;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  border: 4px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  height: auto;
}

.trust-seal {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  background: white;
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.seal-icon {
  width: 40px;
  height: 40px;
  background: var(--forest-green);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  flex-shrink: 0;
}

.seal-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.seal-text strong {
  color: var(--deep-charcoal);
  font-size: var(--font-size-sm);
}

.seal-text span {
  color: var(--stone-dark);
  font-size: var(--font-size-xs);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

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

.btn-primary:hover {
  background: var(--earth-orange-dark);
  border-color: var(--earth-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--forest-green);
  border-color: var(--forest-green);
}

.btn-outline:hover {
  background: var(--forest-green);
  color: white;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-lg);
}

.btn-block {
  width: 100%;
}

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

/* ========================================
   Stats Bar
   ======================================== */

.stats-bar {
  background: var(--cream);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: var(--space-12) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.stat-number {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  background: var(--gradient-forest);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--stone-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   About Section
   ======================================== */

.about-service-area {
  background: white;
}

.about-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-12);
  margin-top: var(--space-8);
}

.about-content {
  max-width: none;
}

.content-subtitle {
  color: var(--forest-green);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.check-list {
  list-style: none;
  margin: var(--space-6) 0;
}

.check-list li {
  padding: var(--space-3) 0 var(--space-3) var(--space-8);
  position: relative;
  color: var(--slate-dark);
  line-height: var(--leading-relaxed);
  border-bottom: 1px solid var(--sand);
}

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

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: 700;
  font-size: var(--font-size-xl);
}

.highlight-box {
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--earth-orange);
  margin-top: var(--space-8);
}

.highlight-box h4 {
  color: var(--forest-green);
  margin-bottom: var(--space-3);
}

.highlight-box p {
  margin-bottom: 0;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.info-card {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 2px solid var(--sand);
  display: flex;
  gap: var(--space-4);
  transition: all var(--transition-base);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--forest-green-light);
}

.card-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.card-body {
  flex: 1;
}

.card-title {
  font-size: var(--font-size-lg);
  color: var(--deep-charcoal);
  margin-bottom: var(--space-2);
}

.card-body p {
  font-size: var(--font-size-sm);
  color: var(--slate-dark);
  margin-bottom: 0;
}

.cta-card {
  background: var(--gradient-forest);
  color: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
}

.cta-card h3 {
  color: white;
  margin-bottom: var(--space-3);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
}

/* ========================================
   Services Showcase
   ======================================== */

.services-showcase {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.service-item {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  border: 2px solid var(--sand);
  transition: all var(--transition-base);
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--forest-green);
}

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--forest-green-light) 0%, var(--forest-green) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: white;
}

.service-title {
  color: var(--deep-charcoal);
  margin-bottom: var(--space-3);
  font-size: var(--font-size-xl);
}

.service-desc {
  color: var(--slate-dark);
  margin-bottom: var(--space-5);
  line-height: var(--leading-relaxed);
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: var(--space-2) 0 var(--space-2) var(--space-6);
  position: relative;
  color: var(--slate-dark);
  font-size: var(--font-size-sm);
  line-height: var(--leading-normal);
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--earth-orange);
  font-weight: 700;
}

/* ========================================
   Neighborhoods Section
   ======================================== */

.neighborhoods-section {
  background: white;
}

.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.neighborhood-group {
  background: var(--cream);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  border: 2px solid var(--sand);
}

.group-title {
  color: var(--forest-green);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 3px solid var(--earth-orange);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.group-title svg {
  flex-shrink: 0;
}

.location-list {
  list-style: none;
}

.location-list li {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

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

.location-list strong {
  color: var(--deep-charcoal);
  font-weight: 600;
}

.location-list span {
  color: var(--stone-dark);
  font-size: var(--font-size-sm);
}

.coverage-map-placeholder {
  margin-top: var(--space-16);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.coverage-map-placeholder img {
  width: 100%;
  height: auto;
}

/* ========================================
   Reviews Section
   ======================================== */

.reviews-section {
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.review-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--earth-orange);
  transition: all var(--transition-base);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-5);
}

.stars {
  color: var(--sunset-amber);
  font-size: var(--font-size-lg);
  letter-spacing: 2px;
}

.review-date {
  font-size: var(--font-size-sm);
  color: var(--stone-dark);
}

.review-card blockquote {
  font-style: italic;
  color: var(--slate-dark);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  position: relative;
  padding-left: var(--space-6);
}

.review-card blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: var(--font-size-5xl);
  color: var(--forest-green-light);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.review-author strong {
  color: var(--deep-charcoal);
  font-weight: 600;
}

.review-author span {
  font-size: var(--font-size-sm);
  color: var(--stone-dark);
}

.review-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-16);
  padding: var(--space-8);
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.summary-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.stat-value {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--forest-green);
  line-height: 1;
}

.review-platforms {
  text-align: center;
  margin-top: var(--space-12);
  padding: var(--space-8);
  background: white;
  border-radius: var(--radius-xl);
}

.platforms-intro {
  font-size: var(--font-size-lg);
  color: var(--slate-dark);
  margin-bottom: (var--space-5);
}

.platforms-links {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  flex-wrap: wrap;
}

.platforms-links a {
  padding: var(--space-3) var(--space-6);
  background: var(--cream);
  border: 2px solid var(--sand);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all var(--transition-base);
  color: var(--slate-dark);
}

.platforms-links a:hover {
  border-color: var(--lake-blue);
  background: var(--lake-blue);
  color: white;
  transform: translateY(-2px);
}

/* ========================================
   Tips Section
   ======================================== */

.tips-section {
  background: white;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.tip-card {
  background: var(--cream);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  border-left: 4px solid var(--forest-green);
  box-shadow: var(--shadow-md);
}

.tip-title {
  color: var(--deep-charcoal);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-5);
}

.tip-content h4 {
  color: var(--forest-green);
  font-size: var(--font-size-base);
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
}

.tip-content ul {
  list-style: none;
  margin-bottom: var(--space-4);
}

.tip-content li {
  padding: var(--space-2) 0;
  color: var(--slate-dark);
  font-size: var(--font-size-sm);
  line-height: var(--leading-relaxed);
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-section {
  background: var(--cream);
}

.faq-container {
  max-width: 900px;
  margin: var(--space-12) auto 0;
}

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  border: 2px solid var(--sand);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--forest-green-light);
}

.faq-item[open] {
  border-color: var(--forest-green);
}

.faq-question {
  padding: var(--space-5);
  cursor: pointer;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--deep-charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  list-style: none;
  user-select: none;
}

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

.faq-question:hover {
  color: var(--forest-green);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--transition-base);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--forest-green);
  transition: all var(--transition-base);
}

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

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

.faq-item[open] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 var(--space-5) var(--space-5);
}

.faq-answer p {
  color: var(--slate-dark);
  line-height: var(--leading-relaxed);
  border-top: 1px solid var(--sand);
  padding-top: var(--space-4);
  margin-bottom: 0;
}

/* ========================================
   Quote Form Section
   ======================================== */

.quote-section {
  background: white;
}

.quote-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-12);
  margin-top: var(--space-12);
}

.quote-form {
  background: var(--cream);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  border: 2px solid var(--sand);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.form-group label {
  font-weight: 600;
  color: var(--slate-dark);
  font-size: var(--font-size-sm);
}

.required {
  color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--sand);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
  background: white;
  color: var(--slate-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(10, 115, 115, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--stone);
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

fieldset legend {
  font-weight: 600;
  color: var(--slate-dark);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-4);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  font-weight: 400;
  color: var(--slate-dark);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  cursor: pointer;
  margin: 0;
}

.checkbox-label.consent {
  grid-column: 1 / -1;
}

.form-note {
  text-align: center;
  color: var(--stone-dark);
  font-size: var(--font-size-sm);
  margin-top: var(--space-4);
  line-height: var(--leading-relaxed);
}

.form-note a {
  font-weight: 600;
}

.quote-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info-card,
.guarantee-card {
  background: var(--cream);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 2px solid var(--sand);
}

.contact-info-card h3,
.guarantee-card h3 {
  color: var(--forest-green);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 3px solid var(--earth-orange);
}

.contact-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--sand);
}

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

.contact-item svg {
  flex-shrink: 0;
  color: var(--forest-green);
}

.contact-item strong {
  display: block;
  color: var(--deep-charcoal);
  margin-bottom: var(--space-1);
  font-size: var(--font-size-sm);
}

.contact-item a {
  font-weight: 600;
}

.contact-item p {
  font-size: var(--font-size-sm);
  color: var(--slate-dark);
  margin: 0;
  line-height: var(--leading-normal);
}

.guarantee-card ul {
  list-style: none;
}

.guarantee-card li {
  padding: var(--space-3) 0 var(--space-3) var(--space-6);
  position: relative;
  color: var(--slate-dark);
  font-size: var(--font-size-sm);
  border-bottom: 1px solid var(--sand);
}

.guarantee-card li:last-child {
  border-bottom: none;
}

.guarantee-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: 700;
  font-size: var(--font-size-lg);
}

.badges-display {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  padding: var(--space-6);
  background: white;
  border-radius: var(--radius-xl);
  border: 2px solid var(--sand);
}

.badges-display img {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition-base);
}

.badges-display img:hover {
  opacity: 1;
}

/* ========================================
   Final CTA
   ======================================== */

.final-cta {
  background: var(--gradient-hero);
  color: white;
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(30, 136, 229, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-title {
  color: white;
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-4);
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-8);
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.cta-features {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

.cta-features li {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--font-size-sm);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ========================================
   Footer
   ======================================== */

.page-footer {
  background: var(--charcoal);
  color: var(--stone-light);
  padding: var(--space-8) 0;
  text-align: center;
}

.footer-text {
  font-size: var(--font-size-sm);
  color: var(--stone-light);
  margin: 0;
}

.footer-text a {
  color: var(--stone-light);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.footer-text a:hover {
  color: white;
  text-decoration-color: white;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
  }
  
  .hero-grid,
  .about-layout,
  .quote-layout {
    grid-template-columns: 1fr;
  }
  
  
}

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.75rem;
    --space-12: 2rem;
    --space-16: 3rem;
    --space-20: 4rem;
  }
  
  
  .container {
    padding: 0 var(--space-4);
  }
  
  section {
    padding: var(--space-12) 0;
  }
  
  .hero-cta-group,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group .btn,
  .cta-buttons .btn {
    width: 100%;
  }
  
  .hero-features,
  .cta-features {
    flex-direction: column;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  
  .services-grid,
  .neighborhoods-grid,
  .reviews-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --space-4: 0.75rem;
    --space-6: 1rem;
    --space-8: 1.5rem;
  }
  
  .container {
    padding: 0 var(--space-3);
  }
  
  .hero-badge {
    font-size: 0.7rem;
    padding: var(--space-2) var(--space-3);
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: var(--font-size-4xl);
  }
  
  .trust-seal {
    bottom: var(--space-4);
    right: var(--space-4);
    padding: var(--space-3);
  }
  
  .service-item,
  .review-card,
  .tip-card {
    padding: var(--space-6);
  }
  
  .quote-form {
    padding: var(--space-6);
  }
}

/* ========================================
   Accessibility
   ======================================== */

/* Focus styles */
*:focus-visible {
  outline: 3px solid var(--forest-green);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

button:focus-visible,
a:focus-visible {
  outline-offset: 4px;
}

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

/* High contrast mode */
@media (prefers-contrast: high) {
  .btn {
    border-width: 3px;
  }
  
  .service-item,
  .review-card,
  .faq-item {
    border-width: 3px;
  }
}

/* Print styles */
@media print {
  .hero-cta-group,
  .cta-section,
  .quote-form,
  .btn {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: black;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
  
  .service-item,
  .review-card {
    page-break-inside: avoid;
    border: 1px solid black;
  }
  
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
  }
}

/* ========================================
   Utility Classes
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none; }
.visible { display: block; }

/* Loading state */
.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid var(--sand);
  border-top-color: var(--forest-green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Smooth animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}