body { font-family: 'Hanken Grotesk', sans-serif; }
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block; vertical-align: middle;
}
.glass-panel {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
}
.industrial-shadow { box-shadow: 0px 4px 20px rgba(12,75,134,0.05); }
.hover-lift { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0px 12px 30px rgba(12,75,134,0.1); }
.card-lift { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease; }
.card-lift:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,52,98,0.12); }

/* Mobile menu animation */
#mobile-menu { transition: max-height 0.35s ease, opacity 0.3s ease; max-height: 0; opacity: 0; overflow: hidden; }
#mobile-menu.open { max-height: 500px; opacity: 1; }

/* Utility class to hide scrollbars on horizontal sliders */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Custom TomSelect overrides for header */
.ts-wrapper.global-search-ts {
    width: 285px;
    transition: all 0.3s ease;
}
.ts-wrapper.global-search-ts.focus {
    width: 385px;
}
.ts-wrapper.global-search-ts .ts-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 8px 16px;
    color: #fff;
    box-shadow: none;
}
.ts-wrapper.global-search-ts.focus .ts-control {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffe088;
}
.ts-wrapper.global-search-ts .ts-control input {
    color: #fff;
    font-family: 'Hanken Grotesk', sans-serif;
}
.ts-wrapper.global-search-ts .ts-control input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.ts-wrapper.global-search-ts .ts-dropdown {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #c2c6d1;
    box-shadow: 0px 10px 40px rgba(0,0,0,0.2);
    margin-top: 8px;
    font-family: 'Hanken Grotesk', sans-serif;
}
.ts-wrapper.global-search-ts .optgroup-header {
    background: #f0f3ff;
    color: #727781;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    padding: 8px 16px;
}
.ts-wrapper.global-search-ts .option {
    padding: 10px 16px;
    font-size: 14px;
    color: #003462;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
}
.ts-wrapper.global-search-ts .option:hover,
.ts-wrapper.global-search-ts .option.active {
    background: #f0f3ff;
    color: #735c00;
}
.ts-search-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #c2c6d1;
}


/* Rich Text Styles for WYSIWYG Description */
.rich-text-content ul { list-style-type: disc; margin-left: 1.5rem; margin-bottom: 1rem; }
.rich-text-content ol { list-style-type: decimal; margin-left: 1.5rem; margin-bottom: 1rem; }
.rich-text-content li { margin-bottom: 0.25rem; }
.rich-text-content p { margin-bottom: 1rem; }
.rich-text-content p:last-child { margin-bottom: 0; }
.rich-text-content em, .rich-text-content i { font-style: italic; }
.rich-text-content strong, .rich-text-content b { font-weight: bold; }
.rich-text-content h1, .rich-text-content h2, .rich-text-content h3, .rich-text-content h4 { 
    font-weight: bold; margin-top: 1.5rem; margin-bottom: 0.75rem; color: #003462; 
}
.rich-text-content a { color: #003462; text-decoration: underline; }
