/* 中嘉金屬網站圖示系統 */
/* 使用Unicode符號作為圖示 */

/* 基礎圖示類別 */
[class^="icon-"], [class*=" icon-"] {
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    line-height: 1;
    font-variant: normal;
    text-transform: none;
}

/* 圖示定義 */
.icon-location::before { content: "📍"; }
.icon-phone::before { content: "📞"; }
.icon-email::before { content: "✉️"; }
.icon-clock::before { content: "🕐"; }
.icon-experience::before { content: "🏆"; }
.icon-global::before { content: "🌍"; }
.icon-sustainability::before { content: "♻️"; }
.icon-quality::before { content: "✅"; }
.icon-service::before { content: "🛠️"; }
.icon-trust::before { content: "🤝"; }
.icon-recycle::before { content: "♻️"; }
.icon-leaf::before { content: "🌿"; }
.icon-globe::before { content: "🌍"; }
.icon-integrity::before { content: "🤝"; }
.icon-excellence::before { content: "⭐"; }
.icon-innovation::before { content: "💡"; }
.icon-responsibility::before { content: "🛡️"; }
.icon-shield-check::before { content: "🛡️"; }
.icon-price-tag::before { content: "🏷️"; }
.icon-eco::before { content: "🌱"; }
.icon-message::before { content: "💬"; }
.icon-arrow-left::before { content: "←"; }
.icon-arrow-right::before { content: "→"; }
.icon-arrow-down::before { content: "↓"; }

/* 組織架構圖標 */
.icon-users::before { content: "👥"; }
.icon-crown::before { content: "👑"; }
.icon-briefcase::before { content: "💼"; }
.icon-settings::before { content: "⚙️"; }
.icon-handshake::before { content: "🤝"; }
.icon-factory::before { content: "🏭"; }
.icon-calculator::before { content: "🧮"; }
.icon-computer::before { content: "💻"; }
.icon-target::before { content: "🎯"; }
.icon-communication::before { content: "📢"; }
.icon-growth::before { content: "📈"; }
.icon-team::before { content: "👨‍👩‍👧‍👦"; }

/* 簡化版圖示（備用） */
.icon-simple {
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.icon-simple.icon-location::before { content: "⚫"; }
.icon-simple.icon-phone::before { content: "☎"; }
.icon-simple.icon-email::before { content: "@"; }
.icon-simple.icon-clock::before { content: "●"; }

/* 圖示大小變化 */
.icon-lg {
    font-size: 1.5em;
}

.icon-xl {
    font-size: 2em;
}

.icon-2x {
    font-size: 2em;
}

.icon-3x {
    font-size: 3em;
} 