/* Reset and base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fixed image styling for proper responsive behavior */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Color variables */
:root {
  /* Primary Colors - Deep Professional Blue */
  --primary: #0f172a;
  --primary-light: #1e293b;
  --primary-foreground: #ffffff;

  /* Secondary Colors - Clean Grays */
  --secondary: #f8fafc;
  --secondary-dark: #e2e8f0;
  --secondary-foreground: #334155;

  /* Accent Colors - Professional Orange */
  --accent: #ea580c;
  --accent-light: #fb923c;
  --accent-foreground: #ffffff;

  /* Background System */
  --background: #ffffff;
  --background-alt: #f8fafc;
  --foreground: #0f172a;

  /* Muted Colors */
  --muted: #f1f5f9;
  --muted-foreground: #64748b;

  /* Border System */
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Radius System */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
}

/* Typography - Mobile First */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}
h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
}
h4 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

p {
  line-height: 1.7;
  color: var(--muted-foreground);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

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

/* Layout utilities - Mobile First */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Added missing modern section containers */
.services-container,
.why-choose-container,
.service-areas-container,
.reviews-container,
.cta-container,
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Enhanced mobile-first responsive padding and spacing */
.px-4 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-6 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-8 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-12 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-16 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-24 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-32 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-12 {
  padding: 3rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

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

.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}

.space-y-1 > * + * {
  margin-top: 0.25rem;
}
.space-y-2 > * + * {
  margin-top: 0.5rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

/* Grid utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Color utilities */
.bg-white {
  background-color: #ffffff;
}
.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-accent {
  background-color: var(--accent);
}
.bg-muted {
  background-color: var(--muted);
}
.bg-background {
  background-color: var(--background);
}

.text-primary {
  color: var(--primary);
}
.text-primary-foreground {
  color: var(--primary-foreground);
}
.text-secondary-foreground {
  color: var(--secondary-foreground);
}
.text-accent-foreground {
  color: var(--accent-foreground);
}
.text-muted-foreground {
  color: var(--muted-foreground);
}
.text-foreground {
  color: var(--foreground);
}

/* Text utilities */
.text-center {
  text-align: center;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-6xl {
  font-size: 3.75rem;
}

.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.text-balance {
  text-wrap: balance;
}
.text-pretty {
  text-wrap: pretty;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Border utilities */
.rounded {
  border-radius: 0.25rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-full {
  border-radius: 9999px;
}

.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-t {
  border-top-width: 1px;
}

.border-border {
  border-color: var(--border);
}
.border-primary-foreground {
  border-color: var(--primary-foreground);
}

/* Shadow utilities */
.shadow-sm {
  box-shadow: var(--shadow-sm);
}
.shadow {
  box-shadow: var(--shadow);
}
.shadow-md {
  box-shadow: var(--shadow-md);
}
.shadow-lg {
  box-shadow: var(--shadow-lg);
}
.shadow-2xl {
  box-shadow: var(--shadow-xl);
}

/* Position utilities */
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.top-0 {
  top: 0;
}

/* Display utilities */
.hidden {
  display: none;
}
.block {
  display: block;
}

/* Width/Height utilities */
.w-full {
  width: 100%;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.w-16 {
  width: 4rem;
}

.h-auto {
  height: auto;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-16 {
  height: 4rem;
}

/* Z-index */
.z-50 {
  z-index: 50;
}

/* Transitions */
.transition-colors {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.transition-shadow {
  transition: box-shadow 0.15s ease-in-out;
}

/* Hover states */
.hover\:bg-accent\/90:hover {
  background-color: rgb(245 158 11 / 0.9);
}
.hover\:bg-primary-foreground:hover {
  background-color: var(--primary-foreground);
}
.hover\:text-primary:hover {
  color: var(--primary);
}
.hover\:text-accent:hover {
  color: var(--accent);
}
.hover\:shadow-md:hover {
  box-shadow: var(--shadow-md);
}
.hover\:underline:hover {
  text-decoration: underline;
}

/* Focus styles */
.focus-ring:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary);
}

/* Header styles - Mobile First */
.header-modern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo Design */
.logo-section {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin: 0;
}

.logo-tagline {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Navigation Links */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-weight: 500;
  color: var(--muted-foreground);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  position: relative;
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* CTA Section */
.nav-cta {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

.phone-info {
  text-align: right;
}

.phone-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone-number {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.cta-button {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--accent);
  color: var(--accent-foreground);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.cta-button:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.cta-button svg {
  width: 18px;
  height: 18px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 4px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-content {
  padding: var(--space-lg);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-md);
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: var(--radius);
  transition: all 0.2s ease;
  margin-bottom: var(--space-xs);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--secondary);
  color: var(--primary);
}

.mobile-cta {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  text-align: center;
}

.mobile-emergency {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: var(--accent);
  color: var(--accent-foreground);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius);
  font-weight: 600;
  width: 100%;
  min-height: 48px;
}

.mobile-call-btn svg {
  width: 20px;
  height: 20px;
}

/* Hero section - Mobile First */
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></svg>');
}

.hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-md);
  width: 100%;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-text-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent-light);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: white;
}

.hero-highlight {
  color: var(--accent-light);
  display: block;
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero-feature svg {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: var(--accent);
  color: var(--accent-foreground);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  min-height: 56px;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: transparent;
  color: white;
  padding: var(--space-md) var(--space-2xl);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  min-height: 56px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.btn-secondary svg {
  width: 18px;
  height: 18px;
}

/* Hero Image */
.hero-image-content {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: var(--accent);
  color: white;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.badge-content {
  text-align: center;
}

.badge-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* Added missing modern services section styles */
.services-modern {
  padding: var(--space-4xl) 0;
  background-color: var(--secondary);
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.services-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.service-card-modern {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

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

.service-card-modern.featured {
  border: 2px solid var(--accent);
}

.featured-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--accent);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
}

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

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-modern:hover .service-overlay {
  opacity: 1;
}

.service-icon-modern {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.service-icon-modern svg {
  width: 30px;
  height: 30px;
}

.service-content {
  padding: var(--space-xl);
}

.service-content h3 {
  margin-bottom: var(--space-md);
}

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

.service-features li {
  padding: var(--space-xs) 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  position: relative;
  padding-left: var(--space-lg);
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.service-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
}

.service-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--accent);
  font-weight: 600;
  transition: all 0.2s ease;
}

.service-link:hover {
  transform: translateX(4px);
}

.service-link.emergency {
  background: var(--accent);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
}

.service-link svg {
  width: 16px;
  height: 16px;
}

.additional-services {
  margin-top: var(--space-3xl);
  text-align: center;
}

.additional-services h3 {
  margin-bottom: var(--space-xl);
}

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

.additional-service {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.additional-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--primary);
}

.additional-icon svg {
  width: 24px;
  height: 24px;
}

.additional-service h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.additional-service p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Added missing why choose us modern styles */
.why-choose-modern {
  padding: var(--space-4xl) 0;
  background: white;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.feature-list-modern {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.feature-item-modern {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.feature-icon-modern {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.feature-icon-modern svg {
  width: 24px;
  height: 24px;
}

.feature-content-modern h3 {
  margin-bottom: var(--space-sm);
}

.why-choose-image {
  position: relative;
}

.why-choose-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.stats-overlay {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
}

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

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Added missing service areas modern styles */
.service-areas-modern {
  padding: var(--space-4xl) 0;
  background: var(--muted);
}

.service-areas-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

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

.area-card-modern {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}

.area-card-modern.primary {
  border: 2px solid var(--accent);
}

.area-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: white;
}

.area-icon svg {
  width: 24px;
  height: 24px;
}

.area-badge {
  position: absolute;
  top: -8px;
  right: var(--space-md);
  background: var(--accent);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
}

.area-card-modern h3 {
  margin-bottom: var(--space-xs);
}

.area-card-modern p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Added missing reviews modern styles */
.reviews-modern {
  padding: var(--space-4xl) 0;
  background: white;
}

.reviews-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.rating-summary {
  margin-top: var(--space-lg);
}

.stars-large {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
  color: var(--accent);
}

.stars-large svg {
  width: 24px;
  height: 24px;
}

.rating-text {
  color: var(--muted-foreground);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.review-card-modern {
  background: var(--secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.review-card-modern.featured {
  border: 2px solid var(--accent);
}

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

.reviewer-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.reviewer-details h4 {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.reviewer-details span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
}

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-card-modern blockquote {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  color: var(--foreground);
}

.review-service {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
}

/* Added missing CTA modern styles */
.cta-modern {
  padding: var(--space-4xl) 0;
  background: var(--primary);
  color: white;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: var(--space-lg);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: var(--accent);
  color: white;
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  min-height: 56px;
}

.cta-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: transparent;
  color: white;
  padding: var(--space-md) var(--space-2xl);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  min-height: 56px;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.cta-feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-feature svg {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
}

/* Added missing footer modern styles */
.footer-modern {
  background: var(--secondary);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-main {
  grid-column: span 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer-logo .logo-text h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.footer-logo .logo-text span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-info-modern {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.contact-item-modern {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-item-modern svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item-modern div {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-item-modern a {
  font-weight: 600;
  color: var(--primary);
}

.footer-section h4 {
  margin-bottom: var(--space-lg);
  color: var(--primary);
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-section ul li a {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-xl);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-badges {
  display: flex;
  gap: var(--space-sm);
}

.footer-badges .badge {
  background: var(--primary);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Services section - Mobile First */
.services-section {
  padding: 2.5rem 0; /* Reduced mobile padding */
  background-color: var(--secondary);
}

.services-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.services-header {
  text-align: center;
  margin-bottom: 2rem; /* Reduced mobile margin */
}

.services-header h2 {
  font-size: 1.5rem; /* Mobile-first font size */
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.services-header p {
  font-size: 1rem; /* Mobile-first font size */
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  text-wrap: pretty;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; /* Optimized mobile gap */
}

.service-card {
  background-color: #ffffff;
  padding: 1.5rem; /* Reduced mobile padding */
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease-in-out;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(30, 58, 138, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.service-card a {
  color: var(--primary);
  font-weight: 500;
}

/* Why choose us section */
.why-choose-section {
  padding: 4rem 0;
}

.why-choose-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.why-choose-text h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.feature-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-foreground);
}

.feature-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--muted-foreground);
  margin: 0;
}

.why-choose-image img {
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

/* Service areas section */
.service-areas-section {
  padding: 4rem 0;
  background-color: var(--muted);
}

.service-areas-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.service-areas-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.service-areas-header p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  text-wrap: pretty;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.area-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.area-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.area-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Customer review section */
.review-section {
  padding: 4rem 0;
}

.review-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.review-card {
  background-color: var(--secondary);
  padding: 2rem 3rem;
  border-radius: 0.5rem;
}

.stars {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.stars svg {
  width: 1.5rem;
  height: 1.5rem;
}

.review-card blockquote {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}

.review-card cite {
  font-size: 1.125rem;
  font-weight: 600;
  font-style: normal;
}

/* CTA section - Mobile First */
.cta-section {
  padding: 2.5rem 0; /* Reduced mobile padding */
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.cta-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.cta-content h2 {
  font-size: 1.5rem; /* Mobile-first font size */
  font-weight: 700;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.cta-content p {
  font-size: 1rem; /* Mobile-first font size */
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md); /* Reduced mobile gap */
  justify-content: center;
}

.cta-buttons a {
  padding: var(--space-sm) var(--space-lg); /* Mobile-optimized padding */
  border-radius: var(--radius);
  font-size: 1rem; /* Mobile-first font size */
  font-weight: 600;
  transition: all 0.15s ease-in-out;
  min-height: 48px; /* Minimum touch target size */
}

.cta-primary {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.cta-primary:hover {
  background-color: rgb(245 158 11 / 0.9);
}

.cta-secondary {
  border: 2px solid var(--primary-foreground);
  color: var(--primary-foreground);
}

.cta-secondary:hover {
  background-color: var(--primary-foreground);
  color: var(--primary);
}

/* Footer */
footer {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 3rem 0;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-main {
  grid-column: span 2;
}

.footer-main h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-main p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  text-wrap: pretty;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.contact-item a {
  transition: color 0.15s ease-in-out;
}

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

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section ul li {
  color: var(--muted-foreground);
}

.footer-section ul li a {
  color: var(--muted-foreground);
  transition: color 0.15s ease-in-out;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color 0.15s ease-in-out;
}

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

/* Responsive design - Progressive Enhancement */
@media (min-width: 480px) {
  /* Added small mobile breakpoint */
  header h1 {
    font-size: 1.125rem;
  }

  .hero-text h2 {
    font-size: 2.25rem;
  }

  .hero-text p {
    font-size: 1.125rem;
  }

  .services-header h2 {
    font-size: 1.75rem;
  }

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

@media (min-width: 640px) {
  /* Enhanced tablet styles */
  header .nav-container {
    height: 4rem;
  }

  header h1 {
    font-size: 1.25rem;
  }

  .hero-content {
    padding: 4rem 1rem 5rem;
    gap: 2.5rem;
  }

  .hero-text h2 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }

  .hero-buttons a {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }

  .cta-buttons {
    flex-direction: row;
    gap: 1rem;
  }

  .cta-buttons a {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }

  .cta-actions {
    flex-direction: row;
  }

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

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

  .services-section {
    padding: 3rem 0;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .footer-bottom {
    flex-direction: row;
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    margin-top: 0;
  }

  .additional-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  /* Enhanced desktop navigation */
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .nav-content {
    padding: 0 1rem;
  }

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

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

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

  .services-header h2 {
    font-size: 1.875rem;
  }

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

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

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

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

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

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

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

@media (min-width: 1024px) {
  /* Enhanced large screen styles */
  .hero-content {
    grid-template-columns: repeat(2, 1fr);
    padding: 6rem 1rem 8rem;
    gap: 3rem;
  }

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

  .hero-text h2 {
    font-size: 3rem;
  }

  .hero-text p {
    margin-bottom: 2rem;
  }

  .services-header h2 {
    font-size: 2.25rem;
  }

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

  .why-choose-text h2 {
    font-size: 2.25rem;
  }

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

  .services-grid-modern {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-areas-header h2 {
    font-size: 2.25rem;
  }

  .review-card blockquote {
    font-size: 1.5rem;
  }

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

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 1280px) {
  /* Added extra large screen support */
  .hero-text h2 {
    font-size: 3.75rem;
  }

  .container {
    padding: 0 1.5rem;
  }
}

/* Added mobile-specific utilities */
@media (max-width: 639px) {
  .mobile-center {
    text-align: center;
  }

  .mobile-full-width {
    width: 100%;
  }

  .mobile-stack > * {
    width: 100%;
    margin-bottom: 1rem;
  }

  .mobile-stack > *:last-child {
    margin-bottom: 0;
  }
}

/* Added touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  /* Touch device optimizations */
  button,
  a,
  .clickable {
    min-height: 44px;
    min-width: 44px;
  }

  .hero-buttons a,
  .cta-buttons a,
  header .cta-button {
    min-height: 48px;
  }
}

/* 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: 0;
}

/* Adding missing breadcrumbs, hero sections, and service detail styles for about, contact, and services pages */

/* Breadcrumbs Modern */
.breadcrumbs-modern {
  background: var(--secondary);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumbs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.breadcrumb-link svg {
  width: 16px;
  height: 16px;
}

.breadcrumb-separator {
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
}

.breadcrumb-separator svg {
  width: 14px;
  height: 14px;
}

.breadcrumb-item.current span {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
}

/* About Hero */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></svg>');
}

.about-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.about-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.about-hero p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  opacity: 0.9;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: var(--space-xs);
}

/* Contact Hero */
.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></svg>');
}

.contact-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.contact-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.contact-hero p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  opacity: 0.9;
}

.contact-hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-feature svg {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
}

.contact-hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

/* Services Hero */
.services-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></svg>');
}

.services-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.services-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.services-hero p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  opacity: 0.9;
}

.services-hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.services-hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

/* Emergency Banner */
.emergency-banner {
  background: var(--accent);
  color: white;
  padding: var(--space-xl) 0;
}

.emergency-banner-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.emergency-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

.emergency-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emergency-icon svg {
  width: 30px;
  height: 30px;
}

.emergency-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.emergency-text p {
  opacity: 0.9;
  font-size: 1rem;
}

.emergency-button {
  background: white;
  color: var(--accent);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.emergency-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* Service Detail Sections */
.services-detailed {
  padding: var(--space-4xl) 0;
}

.services-detailed-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-4xl);
}

.service-detail {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail.emergency {
  border: 2px solid var(--accent);
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl);
}

.service-detail-content.reverse {
  direction: rtl;
}

.service-detail-content.reverse > * {
  direction: ltr;
}

.service-detail-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--accent);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.service-badge.emergency {
  background: var(--accent);
  animation: pulse 2s infinite;
}

.service-badge svg {
  width: 16px;
  height: 16px;
}

.service-detail h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.service-detail p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.service-feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon.emergency {
  background: var(--accent);
  animation: pulse 2s infinite;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.feature-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.feature-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.service-pricing {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--secondary);
  border-radius: var(--radius);
  margin: var(--space-lg) 0;
}

.price-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.price-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-left: auto;
}

.service-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--accent);
  color: white;
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  width: fit-content;
}

.service-cta-button:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.service-cta-button.emergency {
  background: var(--accent);
  animation: pulse 2s infinite;
}

.service-cta-button svg {
  width: 20px;
  height: 20px;
}

.service-detail-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.image-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--accent);
  color: white;
  padding: var(--space-md);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.image-badge.emergency {
  background: var(--accent);
  animation: pulse 2s infinite;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.emergency-alert {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: var(--radius);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.alert-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alert-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.alert-content h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.alert-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Additional Services Modern */
.additional-services-modern {
  padding: var(--space-4xl) 0;
  background: var(--secondary);
}

.additional-services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.additional-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.additional-service-card {
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.additional-service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.additional-service-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

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

.service-list li {
  padding: var(--space-xs) 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  position: relative;
  padding-left: var(--space-lg);
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.125rem;
}

/* Adding Tailwind-style utility classes as custom CSS */

/* Layout utilities */
.py-16 {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

.px-4 {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.max-w-7xl {
  max-width: 1400px;
}

.max-w-4xl {
  max-width: 896px;
}

.max-w-3xl {
  max-width: 768px;
}

.max-w-2xl {
  max-width: 672px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

/* Typography utilities */
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

/* Spacing utilities */
.mb-12 {
  margin-bottom: var(--space-3xl);
}

.mb-8 {
  margin-bottom: var(--space-2xl);
}

.mb-6 {
  margin-bottom: var(--space-xl);
}

.mb-4 {
  margin-bottom: var(--space-lg);
}

.mb-3 {
  margin-bottom: var(--space-md);
}

.mb-2 {
  margin-bottom: var(--space-sm);
}

.space-y-4 > * + * {
  margin-top: var(--space-lg);
}

.space-y-8 > * + * {
  margin-top: var(--space-2xl);
}

.space-y-6 > * + * {
  margin-top: var(--space-xl);
}

.gap-12 {
  gap: var(--space-3xl);
}

.gap-8 {
  gap: var(--space-2xl);
}

.gap-6 {
  gap: var(--space-xl);
}

.gap-4 {
  gap: var(--space-lg);
}

/* Grid utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.items-center {
  align-items: center;
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

/* Background utilities */
.bg-white {
  background-color: white;
}

.bg-muted {
  background-color: var(--secondary);
}

.bg-secondary {
  background-color: var(--secondary);
}

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

.text-primary-foreground {
  color: white;
}

.text-primary-foreground\/90 {
  color: rgba(255, 255, 255, 0.9);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

/* Border utilities */
.rounded-lg {
  border-radius: var(--radius-lg);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

/* Sizing utilities */
.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.w-8 {
  width: 2rem;
}

.h-8 {
  height: 2rem;
}

.w-full {
  width: 100%;
}

.h-auto {
  height: auto;
}

/* Position utilities */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }

  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Adding responsive improvements for service detail sections */
@media (min-width: 768px) {
  .service-detail-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .contact-hero-actions,
  .services-hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  .emergency-banner-content {
    flex-direction: row;
    text-align: left;
  }

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

@media (min-width: 1024px) {
  .additional-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* Adding animation for emergency elements */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Adding focus ring utility */
.focus-ring:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Improving image responsiveness */
img {
  max-width: 100%;
  height: auto;
}

.service-detail-image img,
.hero-image {
  border-radius: var(--radius-lg);
}

/* Adding list utilities */
.list-disc {
  list-style-type: disc;
}

.pl-6 {
  padding-left: var(--space-xl);
}

.space-y-1 > * + * {
  margin-top: var(--space-xs);
}
