/* ========================================
   Aliso Viejo Moving Company - CSS
   Colors Inspired by Aliso Viejo Landscape
   Terracotta, Sage, Adobe, Sunset Tones
   ======================================== */

:root {
  /* Primary Colors - Aliso Viejo Inspired */
  --terracotta: #c85a3f;
  --terracotta-dark: #b4482c;
  --terracotta-light: #d4735e;
  --sage-green: #7a8450;
  --sage-dark: #6a7340;
  --sage-light: #8b9456;
  --sunset-orange: #e07a5f;
  --sunset-dark: #c96a4f;
  --sunset-light: #f4a261;
  --sky-blue: #5a9fb8;
  --sky-dark: #4a8fa8;
  --sky-light: #6ba8c4;
  
  /* Neutral - Adobe & Earth Tones */
  --warm-white: #faf8f5;
  --adobe-light: #f5e6d3;
  --adobe: #e9d8c6;
  --sand: #dcc9b3;
  --stone-light: #c4b5a3;
  --stone: #a89888;
  --earth-brown: #6b4423;
  --earth-dark: #5a3a1e;
  --charcoal: #3d3934;
  --deep-charcoal: #2a2622;
  
  /* Accent Colors */
  --coral: #ee8572;
  --clay: #a86f5c;
  --olive: #8b9456;
  --canyon-red: #b85042;
  
  /* Semantic Colors */
  --success: #7a8450;
  --warning: #e07a5f;
  --error: #b85042;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #c85a3f 0%, #e07a5f 50%, #f4a261 100%);
  --gradient-sunset: linear-gradient(135deg, #e07a5f 0%, #f4a261 100%);
  --gradient-earth: linear-gradient(135deg, #7a8450 0%, #8b9456 100%);
  --gradient-terracotta: linear-gradient(135deg, #c85a3f 0%, #d4735e 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(107, 68, 35, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(107, 68, 35, 0.15);
  --shadow-lg: 0 10px 15px -3px rgba(107, 68, 35, 0.2);
  --shadow-xl: 0 20px 25px -5px rgba(107, 68, 35, 0.25);
  --shadow-2xl: 0 25px 50px -12px rgba(107, 68, 35, 0.3);
  
  /* 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', 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;
  
  /* 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-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.625;
  color: var(--charcoal);
  background: 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: 1.25;
  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); 
}

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(--charcoal);
  line-height: 1.7;
}

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

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

a:focus-visible {
  outline: 2px solid var(--terracotta);
  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: 1.7;
  color: var(--earth-brown);
}

/* ========================================
   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: 900px;
  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(--earth-brown);
  line-height: 1.6;
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--terracotta);
  color: white;
  padding: var(--space-3) var(--space-6);
  border-radius: 0 0 var(--radius-md) 0;
  z-index: 1000;
  font-weight: 600;
  transition: top var(--transition-base);
}

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

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

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

.hero-av::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(244, 162, 97, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-av::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,64 Q300,100 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.85);
}

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

.breadcrumb-list a {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
/* Before this line */
.breadcrumb-list a:hover {
  text-decoration-color: white;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: white;
  padding: var(--space-2) var(--space-6);
  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.4);
  text-transform: uppercase;
}

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

.accent-text {
  color: #ffd7a8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.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.2);
  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.3);
  white-space: nowrap;
}

.hero-visual {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.btn-primary:hover {
  background: var(--adobe-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: var(--terracotta-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  transform: translateY(-3px);
}

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

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

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

.btn-block {
  width: 100%;
}

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

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

.stats-bar {
  background: linear-gradient(to bottom, var(--adobe-light), white);
  border-top: 1px solid var(--sand);
  padding: var(--space-16) 0;
}

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

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

.stat-number {
  font-size: var(--font-size-6xl);
  font-weight: 900;
  background: var(--gradient-terracotta);
  -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(--earth-brown);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========================================
   Why Choose Section
   ======================================== */

.why-choose-section {
  background: white;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: var(--space-16);
  margin-top: var(--space-12);
}

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

.content-subtitle {
  color: var(--terracotta);
  margin-top: var(--space-12);
  margin-bottom: var(--space-5);
  font-size: var(--font-size-2xl);
}

.intro-text {
  margin-bottom: var(--space-12);
  padding: var(--space-8);
  background: var(--adobe-light);
  border-radius: var(--radius-2xl);
  border-left: 5px solid var(--sunset-orange);
}

.intro-text p {
  margin-bottom: 0;
  color: var(--earth-brown);
  line-height: 1.8;
}

.feature-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.feature-block {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 2px solid var(--adobe);
  transition: all var(--transition-base);
}

.feature-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sunset-orange);
}

.feature-block h4 {
  color: var(--terracotta);
  margin-bottom: var(--space-3);
  font-size: var(--font-size-lg);
}

.feature-block p {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  margin-bottom: 0;
}

.sidebar-sticky {
  position: sticky;
  top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  height: fit-content;
}

.cta-box {
  background: var(--gradient-sunset);
  color: white;
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  text-align: center;
  gap: var(--space-6);
  box-shadow: var(--shadow-xl);
}

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

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

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-badges span {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.95);
}

.quick-facts {
  background: var(--adobe-light);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 2px solid var(--sand);
}

.quick-facts h4 {
  color: var(--terracotta);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--sunset-orange);
}

.quick-facts ul {
  list-style: none;
}

.quick-facts li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--sand);
  font-size: var(--font-size-sm);
  color: var(--charcoal);
}

.quick-facts li:last-child {
  border-bottom: none;
}

.quick-facts strong {
  color: var(--earth-brown);
}

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

.services-showcase {
  background: linear-gradient(to bottom, white, var(--adobe-light));
}

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

.service-item {
  background: white;
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  border: 2px solid var(--adobe);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sunset-orange);
}

.service-icon-wrapper {
  width: 72px;
  height: 72px;
  background: var(--gradient-earth);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  color: white;
  box-shadow: var(--shadow-md);
}

.service-title {
  color: var(--terracotta);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-xl);
}

.service-desc {
  color: var(--charcoal);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding-top: var(--space-4);
  border-top: 1px solid var(--adobe);
}

.service-features li {
  padding: var(--space-2) 0 var(--space-2) var(--space-6);
  position: relative;
  font-size: var(--font-size-sm);
  color: var(--earth-brown);
}

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

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

.neighborhoods-section {
  background: white;
  padding: var(--space-24) 0;
}

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

.neighborhood-card {
  background: linear-gradient(to bottom right, white, var(--adobe-light));
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  border: 2px solid var(--sand);
  transition: all var(--transition-base);
}

.neighborhood-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--terracotta);
}

.neighborhood-card h3 {
  color: var(--terracotta);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 3px solid var(--sunset-orange);
}

.neighborhood-card p {
  color: var(--earth-brown);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}

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

.neighborhood-card li {
  padding: var(--space-2) 0 var(--space-2) var(--space-6);
  position: relative;
  font-size: var(--font-size-sm);
  color: var(--charcoal);
  border-bottom: 1px solid var(--adobe);
}

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

.neighborhood-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage-green);
  font-weight: 700;
}

.coverage-highlight {
  margin-top: var(--space-16);
  padding: var(--space-10);
  background: var(--gradient-sunset);
  color: white;
  border-radius: var(--radius-2xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.coverage-highlight h3 {
  color: white;
  margin-bottom: var(--space-4);
}

.coverage-highlight p {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-size-lg);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.reviews-section {
  background: var(--adobe-light);
  padding: var(--space-24) 0;
}

.reviews-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-12);
  padding: var(--space-6);
  background: white;
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--terracotta);
}

.reviews-intro p {
  color: var(--earth-brown);
  font-size: var(--font-size-lg);
  margin-bottom: 0;
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 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: 5px solid var(--sunset-orange);
  transition: all var(--transition-base);
}

.review-card:hover {
  transform: translateY(-6px);
  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-orange);
  font-size: var(--font-size-xl);
  letter-spacing: 2px;
}

.review-card time {
  font-size: var(--font-size-sm);
  color: var(--stone);
}

.review-card blockquote {
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: var(--space-6);
  position: relative;
  padding-left: var(--space-8);
  line-height: 1.7;
}

.review-card blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -15px;
  font-size: 4rem;
  color: var(--terracotta);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding-top: var(--space-4);
  border-top: 1px solid var(--adobe);
}

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

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

.review-source {
  font-size: var(--font-size-xs);
  color: var(--sage-green);
  font-weight: 600;
  margin-top: var(--space-2);
}

.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-10);
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

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

.stat-value {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1;
}

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

.review-platforms p {
  font-size: var(--font-size-lg);
  color: var(--earth-brown);
  margin-bottom: var(--space-5);
  font-weight: 600;
}

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

.platform-links a {
  padding: var(--space-3) var(--space-6);
  background: var(--adobe);
  border: 2px solid var(--sand);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all var(--transition-base);
  color: var(--earth-brown);
}

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

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

.faq-section {
  background: white;
}

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

.faq-item {
  background: white;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-5);
  border: 2px solid var(--adobe);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--sand);
  box-shadow: var(--shadow-md);
}

.faq-item[open] {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-lg);
}

.faq-question {
  padding: var(--space-6);
  cursor: pointer;
  font-size: var(--font-size-lg);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  list-style: none;
  color: var(--deep-charcoal);
  background: linear-gradient(to right, transparent, var(--adobe-light));
}

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

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

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

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--terracotta);
  transition: all var(--transition-base);
  border-radius: 2px;
}

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

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

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

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

.faq-answer p {
  border-top: 1px solid var(--adobe);
  padding-top: var(--space-5);
  margin-bottom: 0;
  color: var(--charcoal);
  line-height: 1.7;
}

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

.quote-section {
  background: linear-gradient(135deg, var(--adobe-light) 0%, white 100%);
  padding: var(--space-24) 0;
}

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

.quote-form {
  background: white;
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  border: 2px solid var(--adobe);
  box-shadow: var(--shadow-xl);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  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(--earth-brown);
  font-size: var(--font-size-sm);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(200, 90, 63, 0.1);
  background: white;
}

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

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

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

.contact-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 2px solid var(--adobe);
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  color: var(--terracotta);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 3px solid var(--sunset-orange);
}

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

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

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

.contact-item strong {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--earth-brown);
}

.contact-link {
  font-weight: 600;
  font-size: var(--font-size-lg);
  color: var(--terracotta);
}

.contact-link:hover {
  color: var(--terracotta-dark);
}

.contact-item p {
  font-size: var(--font-size-sm);
  color: var(--charcoal);
  margin: 0;
  line-height: 1.5;
}

.guarantee-box {
  background: var(--gradient-earth);
  color: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
}

.guarantee-box h4 {
  color: white;
  margin-bottom: var(--space-5);
}

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

.guarantee-box li {
  padding: var(--space-2) 0;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.95);
}

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

.final-cta {
  background: var(--gradient-hero);
  color: white;
  padding: var(--space-24) 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(244, 162, 97, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-title {
  color: white;
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-5);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

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

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

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

.cta-features span {
  background: rgba(255, 255, 255, 0.2);
  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.3);
}

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

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

.page-footer p {
  font-size: var(--font-size-sm);
  margin: 0;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

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

@media (max-width: 1024px) {
  .hero-grid,
  .two-col-layout,
  .quote-layout {
    grid-template-columns: 1fr;
  }
  
  /* .hero-visual {
    order: -1;
  } */
  
  .sidebar-sticky {
    position: static;
  }
  
  .feature-blocks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2.25rem;
    --font-size-4xl: 1.875rem;
    --font-size-6xl: 3rem;
    --space-12: 2.5rem;
    --space-16: 3rem;
    --space-20: 4rem;
    --space-24: 5rem;
  }
  
  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
  {
    display: none;
  }
  .cta-features {
    flex-direction: column;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  
  .services-grid,
  .neighborhoods-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .trust-seal {
    transform: scale(0.8);
    top: -60px;
    right: -10px;
  }
}

@media (max-width: 480px) {
  :root {
    --space-4: 0.875rem;
    --space-6: 1.25rem;
    --space-8: 1.75rem;
  }
  
  .container {
    padding: 0 var(--space-4);
  }
  
  .hero-badge,
  .cta-badge {
    font-size: 0.7rem;
    padding: var(--space-2) var(--space-4);
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: var(--font-size-5xl);
  }
  
  .service-item,
  .review-card,
  .neighborhood-card {
    padding: var(--space-6);
  }
  
  .quote-form,
  .contact-card {
    padding: var(--space-6);
  }
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
  .hero-cta-group,
  .cta-section,
  .quote-form,
  .btn,
  .final-cta {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: black;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
  
  .service-item,
  .review-card,
  .neighborhood-card {
    page-break-inside: avoid;
    border: 1px solid black;
  }
}