/* FontAwesome Fallback CSS - Local Icons */
.fa, .fas, .far, .fab, .fal, .fad {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "Font Awesome 5 Pro", sans-serif;
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/* Essential icons for the website */
.fa-phone::before { content: "📞"; }
.fa-phone-alt::before { content: "📞"; }
.fa-envelope::before { content: "✉️"; }
.fa-map-marker-alt::before { content: "📍"; }
.fa-location-arrow::before { content: "📍"; }
.fa-clock::before { content: "🕐"; }
.fa-calendar-check::before { content: "📅"; }
.fa-calendar-day::before { content: "📅"; }
.fa-user::before { content: "👤"; }
.fa-user-md::before { content: "👨‍⚕️"; }
.fa-home::before { content: "🏠"; }
.fa-tags::before { content: "🏷️"; }
.fa-leaf::before { content: "🌿"; }
.fa-seedling::before { content: "🌱"; }
.fa-gem::before { content: "💎"; }
.fa-spa::before { content: "🧘"; }
.fa-laser::before { content: "⚡"; }
.fa-calculator::before { content: "🧮"; }
.fa-brain::before { content: "🧠"; }
.fa-chart-line::before { content: "📈"; }
.fa-chart-pie::before { content: "📊"; }
.fa-info-circle::before { content: "ℹ️"; }
.fa-check-circle::before { content: "✅"; }
.fa-paper-plane::before { content: "✈️"; }
.fa-spinner::before { content: "⏳"; }
.fa-whatsapp::before { content: "💬"; }
.fa-instagram::before { content: "📷"; }
.fa-code::before { content: "💻"; }
.fa-bars::before { content: "☰"; }
.fa-times::before { content: "✕"; }
.fa-arrow-right::before { content: "←"; }
.fa-arrow-left::before { content: "→"; }
.fa-star::before { content: "⭐"; }
.fa-quote-left::before { content: """; }
.fa-quote-right::before { content: """; }

/* Animation classes */
.fa-spin {
  animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Size classes */
.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }
.fa-lg { font-size: 1.33333em; }
.fa-sm { font-size: 0.875em; }
.fa-xs { font-size: 0.75em; }

/* Utility classes */
.me-1 { margin-left: 0.25rem; }
.me-2 { margin-left: 0.5rem; }
.me-3 { margin-left: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.text-primary { color: #00a86b; }
.text-success { color: #28a745; }
.text-muted { color: #6c757d; }
