/* Non-critical CSS - loaded asynchronously after page load */

/* Footer styles */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #e5793b;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: #1f3b34;
  color: white;
  padding: 4rem 1rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* Testimonial Section */
.testimonial-section {
  padding: 4rem 1rem 3rem;
  background: rgba(167, 201, 202, 0.1);
}

.testimonial-card {
  max-width: 32rem;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: black;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Features Section */
.features-section {
  padding: 4rem 1rem 3rem;
  background: white;
  color: black;
}

.feature-card {
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
  padding: 4rem 1rem 3rem;
  background: white;
  color: black;
}

/* Additional utility classes */
.btn-full {
  width: 100%;
  display: block;
  text-align: center;
}

.quote-card {
  background: white;
  color: #1f3b34;
  padding: 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  max-width: 28rem;
  flex: 1;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.quote-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

@media (min-width: 640px) {
  .quote-card {
    padding: 1.5rem;
  }
}

/* Hero badges - both class names for compatibility */
.badges,
.hero-badges {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

@media (min-width: 640px) {
  .badges,
  .hero-badges {
    margin-top: 2.5rem;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .badges,
  .hero-badges {
    justify-content: flex-start;
  }
}

.tagline {
  background: rgba(229, 121, 59, 0.3);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

@media (min-width: 640px) {
  .tagline {
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.highlight {
  color: #e5793b;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Animation classes for better UX */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive improvements */
@media (max-width: 639px) {
  .hero-section {
    padding: 2rem 1rem;
    min-height: 350px;
  }

  .hero-content h1 {
    line-height: 1.2;
  }

  .quote-card {
    margin-top: 1rem;
    max-width: 100%;
  }

  .cta-section,
  .testimonial-section,
  .features-section,
  .about-section {
    padding: 2rem 1rem 2rem;
  }

  .badges,
  .hero-badges {
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .hero-badge {
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 479px) {
  .hero-section {
    padding: 1.5rem 1rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .quote-card {
    padding: 1rem;
  }

  .badges,
  .hero-badges {
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .badges span,
  .hero-badge span {
    font-size: 0.75rem;
  }
}