/* Custom Icons - No external CDN dependencies */
@font-face {
    font-family: 'BespakIcons';
    src: local('Segoe UI Symbol'), local('Arial Unicode MS');
}

/* Base icon styles */
.fas, .fab {
    font-family: 'BespakIcons', sans-serif;
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Icon Unicode mappings */
.fas.fa-bars::before { content: '\2630'; } /* ☰ */
.fas.fa-bolt::before { content: '\26A1'; } /* ⚡ */
.fas.fa-car::before { content: '\1F697'; } /* 🚗 */
.fas.fa-home::before { content: '\1F3E0'; } /* 🏠 */
.fas.fa-wifi::before { content: '\1F4F6'; } /* 📶 */
.fas.fa-shield-alt::before { content: '\1F6E1'; } /* 🛡️ */
.fas.fa-certificate::before { content: '\1F3A8'; } /* 🎨 */
.fas.fa-microchip::before { content: '\1F4BB'; } /* 💻 */
.fas.fa-industry::before { content: '\1F3ED'; } /* 🏭 */
.fas.fa-flask::before { content: '\1F9EA'; } /* 🧪 */
.fas.fa-tools::before { content: '\1F9FE'; } /* 🛠️ */
.fas.fa-warehouse::before { content: '\1F3E2'; } /* 🏢 */
.fas.fa-times::before { content: '\2716'; } /* ✖ */
.fas.fa-arrow-right::before { content: '\2192'; } /* → */
.fas.fa-list-check::before { content: '\2611'; } /* ☑ */
.fas.fa-table::before { content: '\2206'; } /* ∆ */
.fas.fa-user::before { content: '\1F464'; } /* 👤 */
.fas.fa-building::before { content: '\1F3E2'; } /* 🏢 */
.fas.fa-envelope::before { content: '\2709'; } /* ✉ */
.fas.fa-phone::before { content: '\260E'; } /* ☎ */
.fas.fa-boxes::before { content: '\1F4E6'; } /* 📦 */
.fas.fa-edit::before { content: '\270D'; } /* ✍ */
.fas.fa-paper-plane::before { content: '\2709'; } /* ✉ */
.fas.fa-check-circle::before { content: '\2705'; } /* ✅ */
.fas.fa-exclamation-circle::before { content: '\26A0'; } /* ⚠ */
.fas.fa-spinner::before { content: '\269B'; } /* ⚛ */
.fas.fa-charging-station::before { content: '\1F50B'; } /* 🔋 */
.fas.fa-ev-station::before { content: '\1F50B'; } /* 🔋 */
.fas.fa-factory::before { content: '\1F3ED'; } /* 🏭 */
.fas.fa-blog::before { content: '\1F4DD'; } /* 📝 */
.fas.fa-mobile-alt::before { content: '\1F4F1'; } /* 📱 */
.fas.fa-temperature-high::before { content: '\1F321'; } /* 🌡 */

/* WhatsApp icon */
.fab.fa-whatsapp::before { content: '\1F4AC'; } /* 💬 */

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

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