/* Component Imports */
@import url('./components/Hero.css');
@import url('./components/Reviews.css');
@import url('./components/ServiceAreas.css');
@import url('./components/Services.css');
@import url('./components/WhyChoose.css');
@import url('./components/SchedulingWidget.css');
@import url('./components/TrustSignals.css');
@import url('./components/About.css');
@import url('./components/Contact.css');
@import url('./components/ServicePage.css');
@import url('./components/LocationPage.css');
@import url('./components/Careers.css');
@import url('./components/Footer.css');
@import url('./components/FloatingButtons.css');

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Brand Colors */
:root {
  --brand-primary: #BE1E2D;
  --brand-secondary: #0F2E6D;
  --brand-primary-hover: #A31B26;
  --brand-secondary-hover: #0A2456;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --blue-50: #eff6ff;
  --yellow-400: #fbbf24;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  scroll-behavior: smooth;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.bg-white { background-color: var(--white); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-gray-800 { background-color: var(--gray-800); }
.bg-gray-900 { background-color: var(--gray-900); }
.bg-blue-50 { background-color: var(--blue-50); }
.bg-brand-primary { background-color: var(--brand-primary); }
.bg-brand-secondary { background-color: var(--brand-secondary); }
.text-brand-primary { color: var(--brand-primary); }
.text-brand-secondary { color: var(--brand-secondary); }

/* Section Styles */
.section {
  position: relative;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Emergency Button Styles */
.btn-emergency {
  background: var(--brand-primary);
  color: white;
  border: 2px solid var(--brand-primary);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
}

.btn-emergency:hover {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(190, 30, 45, 0.3);
  text-decoration: none;
}

.btn-emergency.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile-specific styles can be added here */
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  /* Print-specific styles can be added here */
}
