/*
 * Icons CSS - Alternative à Font Awesome
 * Utilise des symboles Unicode et des emojis
 */

/* Fallback pour les icônes Font Awesome */
.fa-solid, .fa-regular, .fa-brands {
    font-family: Arial, sans-serif;
    font-style: normal;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* Navigation et UI */
.fa-bars::before { content: "☰"; }
.fa-times::before, .fa-close::before { content: "✕"; }
.fa-arrow-right::before { content: "→"; }
.fa-arrow-left::before { content: "←"; }

/* Contact */
.fa-phone::before { content: "📞"; }
.fa-envelope::before { content: "✉️"; }
.fa-map-marker-alt::before, .fa-location-dot::before { content: "📍"; }

/* Validation et Status */
.fa-check::before { content: "✓"; }
.fa-check-circle::before { content: "✓"; color: inherit; }

/* Services */
.fa-home::before { content: "🏠"; }
.fa-building::before { content: "🏢"; }
.fa-box-open::before, .fa-box::before { content: "📦"; }

/* Temps */
.fa-clock::before { content: "🕐"; }
.fa-calendar::before { content: "📅"; }

/* Qualité */
.fa-star::before { content: "⭐"; }
.fa-leaf::before { content: "🍃"; }

/* Style global pour les icônes colorées */
.text-accent .fa-check::before,
.text-accent .fa-check-circle::before {
    color: var(--color-accent);
}

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

/* Amélioration visuelle des icônes */
.fa-solid, .fa-regular {
    min-width: 1em;
    text-align: center;
}
