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

:root {
  /* Colors */
  --primary: #dc2626;
  --primary-foreground: #ffffff;
  --accent: #f59e0b;
  --accent-foreground: #000000;
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --card: #ffffff;
  --border: #e2e8f0;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 4rem 1rem;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

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

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

.logo-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background: color-mix(in srgb, var(--primary) 90%, black);
}

.button-icon {
  width: 1rem;
  height: 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary) 10%, transparent),
    var(--background),
    color-mix(in srgb, var(--accent) 5%, transparent)
  );
  padding: var(--section-padding);
}

.hero-content {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-title-accent {
  display: block;
  color: var(--primary);
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-bottom: 3rem;
}

.main-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.main-cta-button:hover {
  background: color-mix(in srgb, var(--primary) 90%, black);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
}

.availability-icon {
  width: 1rem;
  height: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: color-mix(in srgb, var(--card) 50%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.stat-icon {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
  margin: 0 auto 0.75rem;
}

.stat-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* Quick Navigation */
.quick-nav {
  position: sticky;
  top: 4rem;
  z-index: 40;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.quick-nav-title {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.quick-nav-buttons {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.quick-nav-buttons::-webkit-scrollbar {
  display: none;
}

.nav-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.nav-chip:hover {
  background: color-mix(
    in srgb,
    var(--accent) 10%,
    var(--background)
  );
  border-color: var(--accent);
}

.nav-chip.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.chip-icon {
  width: 1rem;
  height: 1rem;
}

/* Service Sections */
.service-section {
  padding: var(--section-padding);
}

.service-section:nth-child(even) {
  background: color-mix(in srgb, var(--muted) 30%, transparent);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}

.section-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 4rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.section-cta:hover {
  background: color-mix(in srgb, var(--primary) 90%, black);
}

/* Alternative background for sections */
.alt-bg {
  background: color-mix(in srgb, var(--muted) 30%, transparent);
}

/* How It Works Section */
.how-it-works-section {
  padding: var(--section-padding);
}

.section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-large {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.step-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.step-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

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

.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: var(--accent-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.benefit-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

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

.cta-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
}

/* Coverage Section */
.coverage-section {
  padding: var(--section-padding);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.coverage-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
}

.coverage-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.coverage-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  text-align: center;
}

.coverage-subtitle {
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 1.5rem;
}

.coverage-zones {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.zone-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: color-mix(in srgb, var(--muted) 50%, transparent);
  border-radius: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.zone-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.zone-indicator.primary {
  background: var(--primary);
}

.zone-indicator.accent {
  background: var(--accent);
}

.zone-indicator.muted {
  background: var(--muted-foreground);
}

@media only screen and (max-width: 768px) {
  .zone-indicator {
    display: none;
  }
}

.zone-label {
  font-weight: 500;
  color: var(--foreground);
  flex: 1;
  margin-left: 0.75rem;
}

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

.response-times {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.time-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid;
}

.time-item.primary-bg {
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  border-color: color-mix(in srgb, var(--primary) 20%, transparent);
}

.time-item.accent-bg {
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border-color: color-mix(in srgb, var(--accent) 20%, transparent);
}

.time-item.muted-bg {
  background: color-mix(in srgb, var(--muted) 50%, transparent);
  border-color: var(--border);
}

.time-zone {
  font-weight: 600;
  color: var(--foreground);
}

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

.time-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.time-value.primary {
  color: var(--primary);
}

.time-value.accent {
  color: var(--accent);
}

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

/* Pricing Section */
.pricing-section {
  padding: var(--section-padding);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-check {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.875rem;
  color: var(--foreground);
}

.pricing-button {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.pricing-button:hover {
  background: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
}

/* Reviews Section */
.reviews-section {
  padding: var(--section-padding);
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

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

.trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.trust-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--accent);
}

.star {
  font-size: 1.25rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-weight: 600;
  color: var(--foreground);
}

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

.review-stars {
  color: var(--accent);
}

.review-text {
  color: var(--foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

/* FAQs Section */
.faqs-section {
  padding: var(--section-padding);
}

.faqs-accordion {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
}

.faq-trigger:hover {
  background: color-mix(in srgb, var(--muted) 50%, transparent);
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.faq-content {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

.faq-answer {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-top: 8px;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
}

.accordion-trigger:hover {
  background: color-mix(in srgb, var(--muted) 50%, transparent);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.accordion-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.accordion-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

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

.accordion-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.accordion-item.open .accordion-content {
  display: block;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.service-card {
  background: color-mix(in srgb, var(--muted) 30%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
  border-radius: 0.5rem;
  padding: 1rem;
}

.service-card-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.service-card-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.service-card-button {
  padding: 0.5rem 1rem;
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.service-card-button:hover {
  background: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(
    135deg,
    var(--primary),
    color-mix(in srgb, var(--primary) 85%, black)
  );
  color: var(--primary-foreground);
  padding: 4rem 1rem;
  margin-top: 2rem;
}

.final-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.final-cta-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.final-cta-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.final-cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.final-cta-feature span {
  font-size: 0.875rem;
  opacity: 0.9;
}

.final-cta-action {
  text-align: center;
}

.emergency-number {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.emergency-label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.emergency-phone {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.emergency-availability {
  font-size: 0.875rem;
  opacity: 0.8;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  border: none;
  border-radius: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.final-cta-button:hover {
  background: color-mix(in srgb, var(--accent) 90%, black);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.final-cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.guarantee-icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

/* Footer */
.footer {
  background: var(--muted);
  padding: 2rem 1rem;
  /* margin-top: 4rem; */
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

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

.footer-contact {
  text-align: right;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    /* align-items: flex-start; */
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    gap: 2rem;
  }

  .zone-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .zone-label {
    margin-left: 0;
  }

  .time-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .final-cta-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .final-cta-features {
    align-items: center;
  }

  .emergency-phone {
    font-size: 2rem;
  }

  .final-cta-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .main-cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .final-cta-section {
    padding: 3rem 1rem;
  }

  .emergency-number {
    padding: 1.5rem;
  }

  .emergency-phone {
    font-size: 1.75rem;
  }

  .final-cta-guarantee {
    flex-direction: column;
    gap: 0.25rem;
  }
}
