/* Font Awesome 6 Free - Custom subset for EgaraBuit
   Only includes icons actually used in the project (~39 of ~2000+)
   Font files still served from CDN */

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2');
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2') format('woff2');
}

.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
}

.fa,
.fas,
.fa-solid {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.fab,
.fa-brands {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
}

.fa,
.fas,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

/* Icon definitions — only the 39 icons actually used across the site */

.fa-phone::before { content: "\f095"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-times::before { content: "\f00d"; }
.fa-bars::before { content: "\f0c9"; }
.fa-arrow-up::before { content: "\f062"; }
.fa-arrow-right::before { content: "\f061"; }
.fa-check-circle::before { content: "\f058"; }
.fa-exclamation-triangle::before { content: "\f071"; }
.fa-spinner::before { content: "\f110"; }
.fa-paper-plane::before { content: "\f1d8"; }
.fa-map-marker-alt::before { content: "\f3c5"; }
.fa-bullseye::before { content: "\f140"; }
.fa-eye::before { content: "\f06e"; }
.fa-heart::before { content: "\f004"; }
.fa-certificate::before { content: "\f0a3"; }
.fa-shield-alt::before { content: "\f3ed"; }
.fa-award::before { content: "\f559"; }
.fa-handshake::before { content: "\f2b5"; }
.fa-briefcase::before { content: "\f0b1"; }
.fa-minus::before { content: "\f068"; }
.fa-plus::before { content: "\f067"; }
.fa-store::before { content: "\f54e"; }
.fa-building::before { content: "\f1ad"; }
.fa-industry::before { content: "\f275"; }
.fa-broom::before { content: "\f51a"; }
.fa-truck::before { content: "\f0d1"; }
.fa-recycle::before { content: "\f1b8"; }
.fa-clock::before { content: "\f017"; }
.fa-leaf::before { content: "\f06c"; }
.fa-users::before { content: "\f0c0"; }
.fa-check::before { content: "\f00c"; }
.fa-couch::before { content: "\f4b8"; }
.fa-edit::before { content: "\f044"; }
.fa-trash::before { content: "\f1f8"; }
.fa-ban::before { content: "\f05e"; }
.fa-download::before { content: "\f019"; }
.fa-pause::before { content: "\f04c"; }
.fa-calendar::before { content: "\f133"; }

/* Brands */
.fa-whatsapp::before { content: "\f232"; }

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

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