:root{--page-title-display:none;}/* Start custom CSS *//* ==========================================================
   HANSVUE - INDUSTRIAL X-RAY INSPECTION
   GLOBAL CUSTOM CSS FOR ELEMENTOR (ROBUST VERSION)
========================================================== */

/* 1. CSS VARIABLES */
:root {
    --c-deep-navy: #002244;
    --c-technical-blue: #0056b3;
    --c-technical-blue-hover: #004491;
    --c-surface: #f8f9fa;
    --c-surface-grey: #f1f3f5;
    --c-surface-variant: #e1e3e4;
    --c-white: #ffffff;
    --c-text-main: #1a1a1a;
    --c-text-muted: #43474f;
    --c-primary-fixed: #d5e3ff;
    --c-primary-fixed-dim: #a7c8ff;
    --c-secondary-fixed: #d7e2ff;
    --c-error: #ba1a1a;
    --c-error-bg: rgba(186, 26, 26, 0.1);

    --f-display: 'Montserrat', sans-serif;
    --f-body: 'Inter', sans-serif;

    --spacing-gutter: 24px;
    --spacing-section: 80px;
    --spacing-card-gap: 24px;

    --radius-sm: 0.125rem;
    --radius-md: 0.25rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 2. BASE TYPOGRAPHY & RESET (To override WordPress themes) */
html, body {
    overflow-x: hidden; /* Mencegah scrollbar horizontal akibat trik 100vw */
}

.hv-wrapper {
    font-family: var(--f-body);
    color: var(--c-text-main);
    line-height: 1.6;
    background-color: var(--c-surface);
    box-sizing: border-box;
    
    /* TRIK FORCE FULL WIDTH (Memaksa keluar dari Box Container Elementor) */
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.hv-wrapper *, .hv-wrapper *::before, .hv-wrapper *::after {
    box-sizing: border-box;
}

.hv-wrapper p {
    margin-top: 0;
    margin-bottom: 0;
}

.hv-wrapper h1, .hv-wrapper h2, .hv-wrapper h3, .hv-wrapper h4 {
    font-family: var(--f-display);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0;
}

.hv-display-lg { font-size: 48px; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.hv-headline-lg { font-size: 32px; font-weight: 600; line-height: 1.3; }
.hv-headline-md { font-size: 24px; font-weight: 600; line-height: 1.4; }
.hv-body-lg { font-size: 18px; font-weight: 400; line-height: 1.6; }
.hv-body-md { font-size: 16px; font-weight: 400; line-height: 1.6; }
.hv-label-sm { font-size: 14px; font-weight: 600; line-height: 1.2; letter-spacing: 0.05em; text-transform: uppercase; }

@media (max-width: 768px) {
    .hv-display-lg { font-size: 36px; }
    .hv-headline-lg { font-size: 28px; }
}

.hv-text-navy { color: var(--c-deep-navy); }
.hv-text-blue { color: var(--c-technical-blue); }
.hv-text-muted { color: var(--c-text-muted); }
.hv-text-white { color: var(--c-white); }

/* 3. LAYOUT */
.hv-container { max-width: 1280px; margin: 0 auto; padding-left: var(--spacing-gutter); padding-right: var(--spacing-gutter); }
.hv-section { padding: var(--spacing-section) 0; }
.hv-section-white { background-color: var(--c-white); }
.hv-section-surface { background-color: var(--c-surface); }
.hv-section-grey { background-color: var(--c-surface-grey); }
.hv-section-navy { background-color: var(--c-deep-navy); color: var(--c-white); }

.hv-grid { display: grid; gap: var(--spacing-card-gap); }
.hv-grid-2 { grid-template-columns: repeat(2, 1fr); }
.hv-grid-4 { grid-template-columns: repeat(4, 1fr); }
.hv-grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 992px) { .hv-grid-4, .hv-grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .hv-grid-2, .hv-grid-4, .hv-grid-5 { grid-template-columns: 1fr; } }

.hv-flex-center { display: flex; align-items: center; justify-content: center; }
.hv-flex-between { display: flex; align-items: center; justify-content: space-between; }
.hv-flex-gap-4 { display: flex; align-items: center; gap: 16px; }
.hv-flex-gap-2 { display: flex; align-items: center; gap: 8px; }

/* 4. UI ELEMENTS */
.hv-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 32px; border-radius: var(--radius-md);
    font-family: var(--f-body); font-weight: 600; font-size: 14px;
    letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none;
    transition: all 0.3s ease; cursor: pointer; border: 1px solid transparent;
}
.hv-btn-primary { background-color: var(--c-technical-blue); color: var(--c-white); box-shadow: 0 10px 15px -3px rgba(0, 86, 179, 0.2); }
.hv-btn-primary:hover { background-color: var(--c-technical-blue-hover); transform: translateY(-2px); color: var(--c-white); }
.hv-btn-outline { background-color: transparent; color: var(--c-technical-blue); border-color: var(--c-technical-blue); }
.hv-btn-outline:hover { background-color: var(--c-surface-grey); }

.hv-card { background-color: var(--c-white); padding: 32px; border-radius: var(--radius-md); border: 1px solid var(--c-surface-variant); transition: all 0.3s ease; }
.hv-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.hv-icon-box {
    width: 48px; height: 48px; border-radius: var(--radius-md); background-color: var(--c-primary-fixed);
    color: var(--c-technical-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: transform 0.3s ease;
}
.hv-card:hover .hv-icon-box { transform: scale(1.1); }
.material-symbols-outlined { font-family: 'Material Symbols Outlined' !important; font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

/* FAQ Accordion */
.hv-accordion { background-color: var(--c-white); border: 1px solid var(--c-surface-variant); border-radius: var(--radius-lg); margin-bottom: 16px; box-shadow: var(--shadow-sm); overflow: hidden; }
.hv-accordion summary { display: flex; justify-content: space-between; align-items: center; padding: 24px; cursor: pointer; font-family: var(--f-display); font-weight: 600; font-size: 18px; color: var(--c-deep-navy); list-style: none; margin: 0; }
.hv-accordion summary::-webkit-details-marker { display: none; }
.hv-accordion p { padding: 0 24px 24px 24px; color: var(--c-text-muted); margin: 0; }
.hv-accordion[open] summary .hv-icon-expand { transform: rotate(180deg); }
.hv-icon-expand { transition: transform 0.3s ease; color: var(--c-technical-blue); }

/* 5. SCROLL REVEAL ANIMATIONS (Progressive Enhancement) */
/* State awal: terlihat normal. Tidak akan hilang jika JS diblokir Elementor */
.hv-reveal, .hv-reveal-left, .hv-reveal-right { 
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); 
}

/* State tersembunyi: HANYA aktif jika script JS berhasil berjalan */
body.js-ready .hv-reveal { opacity: 0; transform: translateY(30px); }
body.js-ready .hv-reveal-left { opacity: 0; transform: translateX(-40px); }
body.js-ready .hv-reveal-right { opacity: 0; transform: translateX(40px); }

/* State muncul (saat discroll) */
body.js-ready .hv-reveal.active, 
body.js-ready .hv-reveal-left.active, 
body.js-ready .hv-reveal-right.active {
    opacity: 1; transform: translate(0, 0);
}

.hv-delay-1 { transition-delay: 0.1s; }
.hv-delay-2 { transition-delay: 0.2s; }
.hv-delay-3 { transition-delay: 0.3s; }
.hv-delay-4 { transition-delay: 0.4s; }
/* 6. INFINITE MARQUEE CAROUSEL */
.hv-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 32px 0;
    display: flex;
    background: transparent;
}

/* Efek gradient putih/pudar di ujung kiri dan kanan agar logo seakan menghilang */
.hv-marquee::before, .hv-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hv-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--c-surface) 0%, transparent 100%);
}

.hv-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--c-surface) 0%, transparent 100%);
}

.hv-marquee-track {
    display: flex;
    gap: 80px; /* Jarak antar grup logo */
    width: max-content;
    animation: hv-marquee-scroll 35s linear infinite;
}

.hv-marquee-group {
    display: flex;
    gap: 80px; /* Jarak antar logo di dalam grup */
    align-items: center;
}

/* Pause animasi saat mouse diarahkan (Hover) */
.hv-marquee:hover .hv-marquee-track {
    animation-play-state: paused;
}

.hv-client-logo {
    height: 48px; /* Tinggi maksimal logo */
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}

.hv-client-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Animasi geser super halus */
@keyframes hv-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 40px)); } /* Geser tepat 1 grup logo (50% dari total + setengah dari gap 80px) */
}
/* Backgrounds */
.hv-bg-dot-pattern { background-image: radial-gradient(var(--c-deep-navy) 1px, transparent 1px); background-size: 20px 20px; opacity: 0.05; }
.hv-bg-dot-pattern-light { background-image: radial-gradient(var(--c-white) 1px, transparent 1px); background-size: 24px 24px; opacity: 0.1; }/* End custom CSS */