@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('../fonts/inter/inter-latin.woff2') format('woff2');
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f1923;
    color: #ffffff;
}

.bg-accent { background-color: #3b82f6; }
.bg-navy-dark { background-color: #0f1923; }
.bg-navy-light { background-color: #1a2940; }
.bg-quote {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        url('../images/quote-bg.jpg') no-repeat center center / cover;
}
.text-accent { color: #3b82f6; }
.text-logo { font-size: 32px; }
.border-navy { border-color: #2a3a5a; }
.nav-link:hover { color: #3b82f6; transition: 0.3s; }
.active-nav { color: #3b82f6; border-bottom: 2px solid #3b82f6; }

.jusheng-form input,
.jusheng-form select,
.jusheng-form textarea {
    background-color: #1a2940;
    border: 1px solid #2a3a5a;
    color: white;
    padding: 0.75rem 1rem !important;
    border-radius: 0.5rem;
    width: 100%;
    transition: 0.3s;
}

.jusheng-form input:focus,
.jusheng-form select:focus,
.jusheng-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.jusheng-notice {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.jusheng-notice--success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
}

.jusheng-notice--error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.custom-logo {
    max-height: 3rem;
    width: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.workshop-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.factory-assets-section .h-48 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.factory-assets-section .bg-navy-dark {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.capability-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #1a2940;
}

.capability-cover__img,
.capability-cover img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}

.workshop-gallery-pager {
    overflow: hidden;
    width: 100%;
}

.workshop-gallery-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease;
    will-change: transform;
}

.workshop-gallery-page {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
}

/* Social dock / cards */
.jusheng-social-dock {
    position: fixed;
    top: 50%;
    right: 16px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: translateY(-50%);
}

.jusheng-social-dock .jusheng-social-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #e5e7eb;
    text-decoration: none;
    overflow: visible;
}

.jusheng-social-dock .jusheng-social-icon__badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid #2a3a5a;
    background: rgba(15, 25, 35, 0.92);
    color: #9ca3af;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.jusheng-social-dock .jusheng-social-icon__label {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(15, 25, 35, 0.96);
    border: 1px solid #2a3a5a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(8px, -50%);
    transition: opacity 0.22s ease, transform 0.22s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.jusheng-social-dock .jusheng-social-icon__label::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #2a3a5a;
    border-bottom: 1px solid #2a3a5a;
    background: rgba(15, 25, 35, 0.96);
    transform: translateY(-50%) rotate(-45deg);
}

.jusheng-social-icon,
.jusheng-social-card {
    transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.jusheng-social-icon iconify-icon {
    color: inherit;
    transition: transform 0.25s ease, color 0.25s ease;
}

.jusheng-social-card__icon {
    transition: transform 0.25s ease;
}

.jusheng-social-dock .jusheng-social-icon:hover .jusheng-social-icon__badge,
.jusheng-social-dock .jusheng-social-icon:focus-visible .jusheng-social-icon__badge {
    transform: translateX(-4px) scale(1.06);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.jusheng-social-dock .jusheng-social-icon:hover .jusheng-social-icon__label,
.jusheng-social-dock .jusheng-social-icon:focus-visible .jusheng-social-icon__label {
    opacity: 1;
    transform: translate(0, -50%);
}

.jusheng-social-dock .jusheng-social-icon:hover iconify-icon,
.jusheng-social-dock .jusheng-social-icon:focus-visible iconify-icon {
    transform: scale(1.08);
}

.jusheng-social-dock .jusheng-social-icon--facebook:hover .jusheng-social-icon__badge,
.jusheng-social-dock .jusheng-social-icon--facebook:focus-visible .jusheng-social-icon__badge {
    color: #fff;
    background: #2563eb;
    border-color: #2563eb;
}

.jusheng-social-dock .jusheng-social-icon--twitter:hover .jusheng-social-icon__badge,
.jusheng-social-dock .jusheng-social-icon--twitter:focus-visible .jusheng-social-icon__badge {
    color: #fff;
    background: #0ea5e9;
    border-color: #0ea5e9;
}

.jusheng-social-dock .jusheng-social-icon--linkedin:hover .jusheng-social-icon__badge,
.jusheng-social-dock .jusheng-social-icon--linkedin:focus-visible .jusheng-social-icon__badge {
    color: #fff;
    background: #3b82f6;
    border-color: #3b82f6;
}

.jusheng-social-dock .jusheng-social-icon--whatsapp:hover .jusheng-social-icon__badge,
.jusheng-social-dock .jusheng-social-icon--whatsapp:focus-visible .jusheng-social-icon__badge {
    color: #fff;
    background: #22c55e;
    border-color: #22c55e;
}

.jusheng-social-dock .jusheng-social-icon--tiktok:hover .jusheng-social-icon__badge,
.jusheng-social-dock .jusheng-social-icon--tiktok:focus-visible .jusheng-social-icon__badge {
    color: #fff;
    background: #ec4899;
    border-color: #ec4899;
}

.jusheng-social-dock .jusheng-social-icon--skype:hover .jusheng-social-icon__badge,
.jusheng-social-dock .jusheng-social-icon--skype:focus-visible .jusheng-social-icon__badge {
    color: #fff;
    background: #38bdf8;
    border-color: #38bdf8;
}

.jusheng-social-card:hover {
    transform: translateY(-2px);
    background-color: #243552;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.jusheng-social-card:hover .jusheng-social-card__icon {
    transform: scale(1.08);
}

.jusheng-social-card--facebook:hover { border-color: #2563eb; }
.jusheng-social-card--facebook:hover .jusheng-social-card__label { color: #2563eb; }

.jusheng-social-card--twitter:hover { border-color: #0ea5e9; }
.jusheng-social-card--twitter:hover .jusheng-social-card__label { color: #0ea5e9; }

.jusheng-social-card--linkedin:hover { border-color: #3b82f6; }
.jusheng-social-card--linkedin:hover .jusheng-social-card__label { color: #3b82f6; }

.jusheng-social-card--whatsapp:hover { border-color: #22c55e; }
.jusheng-social-card--whatsapp:hover .jusheng-social-card__label { color: #22c55e; }

.jusheng-social-card--tiktok:hover { border-color: #ec4899; }
.jusheng-social-card--tiktok:hover .jusheng-social-card__label { color: #ec4899; }

.jusheng-social-card--skype:hover { border-color: #38bdf8; }
.jusheng-social-card--skype:hover .jusheng-social-card__label { color: #38bdf8; }

@media (max-width: 767px) {
    .jusheng-social-dock {
        right: 10px;
        gap: 8px;
    }

    .jusheng-social-dock .jusheng-social-icon,
    .jusheng-social-dock .jusheng-social-icon__badge {
        width: 38px;
        height: 38px;
    }

    .jusheng-social-dock .jusheng-social-icon__label {
        display: none;
    }
}
