/* ========================================
   Laguna Hills Movers - Modern CSS
   Inspired by Laguna Hills: Ocean blues, sunset oranges, coastal sophistication
   ======================================== */

:root {
  /* Primary Colors - Ocean & Coast Inspired */
  --laguna-blue: #0077be;
  --laguna-blue-dark: #005a8f;
  --laguna-blue-light: #339fd9;
  --sunset-coral: #ff7a59;
  --sunset-coral-dark: #ff5733;
  --sunset-coral-light: #ff9d80;
  --coastal-teal: #00a896;
  --coastal-teal-dark: #007d6f;
  
  /* Neutrals - Sand & Stone */
  --sand-50: #fafaf9;
  --sand-100: #f5f5f4;
  --sand-200: #e7e5e4;
  --sand-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  
  /* Accent Colors */
  --ocean-deep: #004c6d;
  --sky-blue: #87ceeb;
  --sand-gold: #f4a460;
  --sage-green: #8fbc8f;
  
  /* Semantic Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: var(--laguna-blue);
  
  /* Gradients - Coastal Inspired */
  --gradient-ocean: linear-gradient(135deg, #0077be 0%, #00a896 100%);
  --gradient-sunset: linear-gradient(135deg, #ff7a59 0%, #ff5733 100%);
  --gradient-hero: linear-gradient(135deg, #0077be 0%, #005a8f 50%, #004c6d 100%);
  --gradient-coastal: linear-gradient(to right, #87ceeb 0%, #0077be 100%);
  
  /* Shadows - Soft & Natural */
  --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 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  /* Spacing System */
  --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;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 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);
  --transition-slower: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-Index Scale */
  --z-base: 0;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ========================================
   Base Styles & Reset
   ======================================== */

*,
*::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(--stone-800);
  background-color: white;
  overflow-x: hidden;
}

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

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

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--laguna-blue);
  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);
}

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

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

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

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

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

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

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

p {
  margin-bottom: var(--space-4);
  color: var(--stone-700);
}

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

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

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

strong {
  font-weight: 600;
  color: var(--stone-900);
}

/* ========================================
   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(--stone-900);
  margin-bottom: var(--space-4);
}

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

/* ========================================
   Hero Section - Laguna Hills Inspired
   ======================================== */

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

.hero-location::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(135, 206, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-location::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 60 C 300 110, 600 10, 900 60 L 900 0 L 1200 60 L 1200 120 L 0 120 Z" fill="white"/></svg>') repeat-x;
  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;
}

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

.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-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.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);
}

.location-name {
  color: var(--sky-blue);
  display: inline-block;
}

.hero-subtitle {
  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 {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   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: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--sunset-coral);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--sunset-coral-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--laguna-blue);
  border: 2px solid white;
}

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

.btn-outline {
  background: transparent;
  color: var(--laguna-blue);
  border: 2px solid var(--laguna-blue);
}

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

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

/* ========================================
   Trust Bar with Stats
   ======================================== */

.trust-bar-local {
  background: var(--sand-50);
  border-top: 1px solid var(--sand-200);
  border-bottom: 1px solid var(--sand-200);
  padding: var(--space-12) 0;
}

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

.trust-number {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  background: var(--gradient-ocean);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
  line-height: 1;
}

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

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

.about-location {
  background: white;
}

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

.about-text h3 {
  color: var(--laguna-blue);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.benefits-list {
  list-style: none;
  margin-bottom: var(--space-6);
}

.benefits-list li {
  padding: var(--space-3) 0 var(--space-3) var(--space-8);
  position: relative;
  color: var(--stone-700);
  line-height: var(--leading-relaxed);
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--coastal-teal);
  font-weight: 700;
  font-size: var(--font-size-lg);
}

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

.stat-card {
  background: linear-gradient(135deg, var(--sand-50) 0%, white 100%);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 2px solid var(--sand-200);
  display: flex;
  gap: var(--space-4);
  align-items: center;
  transition: all var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--laguna-blue-light);
}

.stat-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.stat-info {
  flex: 1;
}

.stat-card .stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--laguna-blue);
  margin-bottom: var(--space-1);
  background: none;
  -webkit-text-fill-color: var(--laguna-blue);
}

.stat-card .stat-label {
  font-size: var(--font-size-sm);
  color: var(--stone-600);
  text-transform: none;
  letter-spacing: normal;
}

/* ========================================
   Services Grid
   ======================================== */

.services-location {
  background: var(--sand-50);
}

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

.service-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  border: 2px solid var(--sand-200);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--laguna-blue);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  line-height: 1;
}

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

.service-description {
  color: var(--stone-600);
  margin-bottom: var(--space-4);
  flex-grow: 1;
  line-height: var(--leading-relaxed);
}

.service-features {
  list-style: none;
  margin-bottom: var(--space-6);
}

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

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

.service-link {
  color: var(--laguna-blue);
  font-weight: 600;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.service-link:hover {
  color: var(--laguna-blue-dark);
  gap: var(--space-3);
}

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

.neighborhoods {
  background: white;
}

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

.neighborhood-column h3 {
  color: var(--laguna-blue);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 3px solid var(--sunset-coral);
}

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

.neighborhood-list li {
  padding: var(--space-3) 0 var(--space-3) var(--space-6);
  position: relative;
  color: var(--stone-700);
  line-height: var(--leading-relaxed);
  border-bottom: 1px solid var(--sand-200);
}

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

.neighborhood-list li::before {
  content: '📍';
  position: absolute;
  left: 0;
  font-size: var(--font-size-sm);
}

.neighborhoods-cta {
  text-align: center;
  margin-top: var(--space-12);
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--sand-50) 0%, white 100%);
  border-radius: var(--radius-2xl);
  border: 2px dashed var(--sand-300);
}

.neighborhoods-cta p {
  font-size: var(--font-size-lg);
  color: var(--stone-700);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

/* ========================================
   Moving Process Timeline
   ======================================== */

.moving-process {
  background: var(--sand-50);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
  position: relative;
}

.process-step {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 2px solid var(--sand-200);
  position: relative;
  transition: all var(--transition-base);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coastal-teal);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-ocean);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  font-weight: 800;
  margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-md);
}

.process-step h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
  color: var(--stone-900);
}

.process-step p {
  font-size: var(--font-size-sm);
  color: var(--stone-600);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

/* ========================================
   Testimonials
   ======================================== */

.testimonials-local {
  background: white;
}

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

.testimonial-card {
  background: linear-gradient(135deg, var(--sand-50) 0%, white 100%);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--sunset-coral);
  transition: all var(--transition-base);
}

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

.rating {
  color: var(--sand-gold);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

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

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

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

.testimonial-author strong {
  color: var(--stone-900);
  font-weight: 600;
}

.testimonial-author span,
.testimonial-author time {
  font-size: var(--font-size-sm);
  color: var(--stone-500);
}

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

.review-platforms h3 {
  font-size: var(--font-size-lg);
  color: var(--stone-700);
  margin-bottom: var(--space-4);
}

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

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

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

/* ========================================
   Why Choose / Benefits
   ======================================== */

.why-choose {
  background: var(--sand-50);
}

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

.benefit-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 2px solid var(--sand-200);
  transition: all var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--coastal-teal);
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-4);
  line-height: 1;
}

/* ========================================
   Laguna Hills Movers - Complete CSS
   Inspired by Laguna Hills: Ocean blues, sunset oranges, coastal sophistication
   ======================================== */

:root {
  /* Primary Colors - Ocean & Coast Inspired */
  --laguna-blue: #0077be;
  --laguna-blue-dark: #005a8f;
  --laguna-blue-light: #339fd9;
  --sunset-coral: #ff7a59;
  --sunset-coral-dark: #ff5733;
  --sunset-coral-light: #ff9d80;
  --coastal-teal: #00a896;
  --coastal-teal-dark: #007d6f;
  
  /* Neutrals - Sand & Stone */
  --sand-50: #fafaf9;
  --sand-100: #f5f5f4;
  --sand-200: #e7e5e4;
  --sand-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  
  /* Accent Colors */
  --ocean-deep: #004c6d;
  --sky-blue: #87ceeb;
  --sand-gold: #f4a460;
  --sage-green: #8fbc8f;
  
  /* Semantic Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: var(--laguna-blue);
  
  /* Gradients - Coastal Inspired */
  --gradient-ocean: linear-gradient(135deg, #0077be 0%, #00a896 100%);
  --gradient-sunset: linear-gradient(135deg, #ff7a59 0%, #ff5733 100%);
  --gradient-hero: linear-gradient(135deg, #0077be 0%, #005a8f 50%, #004c6d 100%);
  --gradient-coastal: linear-gradient(to right, #87ceeb 0%, #0077be 100%);
  
  /* Shadows - Soft & Natural */
  --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 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  /* Spacing System */
  --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;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 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);
  --transition-slower: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-Index Scale */
  --z-base: 0;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ========================================
   Base Styles & Reset
   ======================================== */

*,
*::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(--stone-800);
  background-color: white;
  overflow-x: hidden;
}

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

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

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

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--laguna-blue);
  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;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--stone-900);
  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);
}

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

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

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

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

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

strong {
  font-weight: 600;
  color: var(--stone-900);
}


.why-choose {
  background: var(--sand-50);
}

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

.benefit-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 2px solid var(--sand-200);
  transition: all var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--coastal-teal);
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-4);
  line-height: 1;
}

.benefit-card h3 {
  color: var(--stone-900);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.benefit-card p {
  color: var(--stone-600);
  font-size: var(--font-size-sm);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

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

.faq-local {
  background: white;
}

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

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

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

.faq-question {
  margin: 0;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);
  background: linear-gradient(to right, transparent, var(--sand-50));
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--stone-900);
  transition: all var(--transition-base);
}

.faq-trigger:hover {
  color: var(--laguna-blue);
}

.faq-trigger[aria-expanded="true"] {
  color: var(--laguna-blue);
  background: var(--sand-50);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--laguna-blue);
  line-height: 1;
  transition: transform var(--transition-base);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 var(--space-6) var(--space-6);
  border-top: 1px solid var(--sand-200);
  padding-top: var(--space-5);
}

.faq-answer div {
  color: var(--stone-700);
  line-height: var(--leading-relaxed);
}

/* ========================================
   CTA Section
   ======================================== */

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

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(135, 206, 235, 0.2) 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);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.cta-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
}

.availability-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

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

/* ========================================
   Contact Form & Location Info
   ======================================== */

.location-info {
  background: var(--sand-50);
}

.location-content {
  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(--sand-200);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--stone-700);
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--laguna-blue);
  box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.1);
}

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

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

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

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

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

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

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

.location-details h3 {
  color: var(--laguna-blue);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 3px solid var(--sunset-coral);
}

.detail-item {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 2px solid var(--sand-200);
}

.detail-item strong {
  display: block;
  color: var(--stone-900);
  margin-bottom: var(--space-3);
  font-size: var(--font-size-base);
}

.detail-item p {
  color: var(--stone-600);
  font-size: var(--font-size-sm);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

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

.detail-item li {
  padding: var(--space-2) 0 var(--space-2) var(--space-6);
  position: relative;
  color: var(--stone-600);
  font-size: var(--font-size-sm);
  border-bottom: 1px solid var(--sand-200);
}

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

.detail-item li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sunset-coral);
  font-weight: 700;
}

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

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

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

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

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

.footer-note {
  background: var(--stone-800);
  color: var(--stone-400);
  padding: var(--space-8) 0;
  text-align: center;
  font-size: var(--font-size-sm);
}

.footer-note p {
  color: var(--stone-400);
  margin: 0;
}

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

@media (max-width: 1024px) {
  .hero-content,
  .about-content,
  .location-content {
    grid-template-columns: 1fr;
  }
  
  /* .hero-image {
    order: -1;
  } */
}

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2.25rem;
    --font-size-4xl: 1.875rem;
    --space-12: 2.5rem;
    --space-16: 3rem;
    --space-20: 4rem;
  }
  
  
  section {
    padding: var(--space-12) 0;
  }
  
  .container {
    padding: 0 var(--space-4);
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn,
  .cta-buttons .btn {
    width: 100%;
  }
  
  .trust-items {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  
  .services-grid,
  .neighborhoods-grid,
  .testimonials-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.5rem;
  }
  
  .trust-items {
    grid-template-columns: 1fr;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .service-card,
  .benefit-card,
  .testimonial-card {
    padding: var(--space-6);
  }
  
  .quote-form {
    padding: var(--space-6);
  }
}

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

@media print {
  .hero-cta,
  .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-card,
  .testimonial-card {
    page-break-inside: avoid;
    border: 1px solid black;
  }
}

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

@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-card,
  .benefit-card,
  .faq-item {
    border-width: 3px;
  }
}